commit f0b8392c5583e2bdca390b29c80cbab307294b75 Author: maher Date: Sun Dec 28 13:49:00 2025 +0100 first commit diff --git a/.editorconfig b/.editorconfig new file mode 100755 index 0000000..6699076 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,17 @@ +# editorconfig.org + +root = true + +[*] +charset = utf-8 +end_of_line = lf +indent_size = 4 +indent_style = space +insert_final_newline = true +trim_trailing_whitespace = true + +[{compose.yaml,compose.*.yaml}] +indent_size = 2 + +[*.md] +trim_trailing_whitespace = false diff --git a/.env b/.env new file mode 100755 index 0000000..1482ba8 --- /dev/null +++ b/.env @@ -0,0 +1,31 @@ +# In all environments, the following files are loaded if they exist, +# the latter taking precedence over the former: +# +# * .env contains default values for the environment variables needed by the app +# * .env.local uncommitted file with local overrides +# * .env.$APP_ENV committed environment-specific defaults +# * .env.$APP_ENV.local uncommitted environment-specific overrides +# +# Real environment variables win over .env files. +# +# DO NOT DEFINE PRODUCTION SECRETS IN THIS FILE NOR IN ANY OTHER COMMITTED FILES. +# https://symfony.com/doc/current/configuration/secrets.html +# +# Run "composer dump-env prod" to compile .env files for production use (requires symfony/flex >=1.2). +# https://symfony.com/doc/current/best_practices.html#use-environment-variables-for-infrastructure-configuration + +###> symfony/framework-bundle ### +APP_ENV=dev +APP_SECRET= +APP_SHARE_DIR=var/share +###< symfony/framework-bundle ### + +###> symfony/routing ### +# Configure how to generate URLs in non-HTTP contexts, such as CLI commands. +# See https://symfony.com/doc/current/routing.html#generating-urls-in-commands +DEFAULT_URI=http://localhost +###< symfony/routing ### + +###> doctrine/doctrine-bundle ### +DATABASE_URL=mysql://root:root@172.28.2.1:3306/stat_partner?mariadb-10.4.10 +###< doctrine/doctrine-bundle ### diff --git a/.env.dev b/.env.dev new file mode 100755 index 0000000..8abe4dd --- /dev/null +++ b/.env.dev @@ -0,0 +1,4 @@ + +###> symfony/framework-bundle ### +APP_SECRET=688481bef7d5e191556e200f2393e069 +###< symfony/framework-bundle ### diff --git a/.gitignore b/.gitignore new file mode 100755 index 0000000..a67f91e --- /dev/null +++ b/.gitignore @@ -0,0 +1,10 @@ + +###> symfony/framework-bundle ### +/.env.local +/.env.local.php +/.env.*.local +/config/secrets/prod/prod.decrypt.private.php +/public/bundles/ +/var/ +/vendor/ +###< symfony/framework-bundle ### diff --git a/README.md b/README.md new file mode 100644 index 0000000..e69de29 diff --git a/bin/console b/bin/console new file mode 100755 index 0000000..d8d530e --- /dev/null +++ b/bin/console @@ -0,0 +1,21 @@ +#!/usr/bin/env php +=8.4", + "ext-ctype": "*", + "ext-iconv": "*", + "doctrine/doctrine-bundle": "*", + "doctrine/doctrine-migrations-bundle": "^4.0", + "doctrine/orm": "*", + "symfony/asset": "8.0.*", + "symfony/console": "8.0.*", + "symfony/dotenv": "8.0.*", + "symfony/flex": "^2", + "symfony/form": "8.0.*", + "symfony/framework-bundle": "8.0.*", + "symfony/runtime": "8.0.*", + "symfony/security-bundle": "8.0.*", + "symfony/translation": "8.0.*", + "symfony/twig-bundle": "8.0.*", + "symfony/validator": "8.0.*", + "symfony/yaml": "8.0.*" + }, + "require-dev": { + "symfony/maker-bundle": "^1.65", + "symfony/stopwatch": "8.0.*", + "symfony/web-profiler-bundle": "8.0.*" + }, + "config": { + "allow-plugins": { + "php-http/discovery": true, + "symfony/flex": true, + "symfony/runtime": true + }, + "bump-after-update": true, + "sort-packages": true + }, + "autoload": { + "psr-4": { + "App\\": "src/" + } + }, + "autoload-dev": { + "psr-4": { + "App\\Tests\\": "tests/" + } + }, + "replace": { + "symfony/polyfill-ctype": "*", + "symfony/polyfill-iconv": "*", + "symfony/polyfill-php72": "*", + "symfony/polyfill-php73": "*", + "symfony/polyfill-php74": "*", + "symfony/polyfill-php80": "*", + "symfony/polyfill-php81": "*", + "symfony/polyfill-php82": "*", + "symfony/polyfill-php83": "*", + "symfony/polyfill-php84": "*" + }, + "scripts": { + "auto-scripts": { + "cache:clear": "symfony-cmd", + "assets:install %PUBLIC_DIR%": "symfony-cmd" + }, + "post-install-cmd": [ + "@auto-scripts" + ], + "post-update-cmd": [ + "@auto-scripts" + ] + }, + "conflict": { + "symfony/symfony": "*" + }, + "extra": { + "symfony": { + "allow-contrib": false, + "require": "8.0.*" + } + } +} diff --git a/composer.lock b/composer.lock new file mode 100755 index 0000000..3d8d930 --- /dev/null +++ b/composer.lock @@ -0,0 +1,5720 @@ +{ + "_readme": [ + "This file locks the dependencies of your project to a known state", + "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", + "This file is @generated automatically" + ], + "content-hash": "a65a9ed16594341ca6c22d4c6316bce1", + "packages": [ + { + "name": "doctrine/collections", + "version": "2.4.0", + "source": { + "type": "git", + "url": "https://github.com/doctrine/collections.git", + "reference": "9acfeea2e8666536edff3d77c531261c63680160" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/doctrine/collections/zipball/9acfeea2e8666536edff3d77c531261c63680160", + "reference": "9acfeea2e8666536edff3d77c531261c63680160", + "shasum": "" + }, + "require": { + "doctrine/deprecations": "^1", + "php": "^8.1", + "symfony/polyfill-php84": "^1.30" + }, + "require-dev": { + "doctrine/coding-standard": "^14", + "ext-json": "*", + "phpstan/phpstan": "^2.1.30", + "phpstan/phpstan-phpunit": "^2.0.7", + "phpunit/phpunit": "^10.5.58 || ^11.5.42 || ^12.4" + }, + "type": "library", + "autoload": { + "psr-4": { + "Doctrine\\Common\\Collections\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Guilherme Blanco", + "email": "guilhermeblanco@gmail.com" + }, + { + "name": "Roman Borschel", + "email": "roman@code-factory.org" + }, + { + "name": "Benjamin Eberlei", + "email": "kontakt@beberlei.de" + }, + { + "name": "Jonathan Wage", + "email": "jonwage@gmail.com" + }, + { + "name": "Johannes Schmitt", + "email": "schmittjoh@gmail.com" + } + ], + "description": "PHP Doctrine Collections library that adds additional functionality on top of PHP arrays.", + "homepage": "https://www.doctrine-project.org/projects/collections.html", + "keywords": [ + "array", + "collections", + "iterators", + "php" + ], + "support": { + "issues": "https://github.com/doctrine/collections/issues", + "source": "https://github.com/doctrine/collections/tree/2.4.0" + }, + "funding": [ + { + "url": "https://www.doctrine-project.org/sponsorship.html", + "type": "custom" + }, + { + "url": "https://www.patreon.com/phpdoctrine", + "type": "patreon" + }, + { + "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcollections", + "type": "tidelift" + } + ], + "time": "2025-10-25T09:18:13+00:00" + }, + { + "name": "doctrine/dbal", + "version": "4.4.1", + "source": { + "type": "git", + "url": "https://github.com/doctrine/dbal.git", + "reference": "3d544473fb93f5c25b483ea4f4ce99f8c4d9d44c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/doctrine/dbal/zipball/3d544473fb93f5c25b483ea4f4ce99f8c4d9d44c", + "reference": "3d544473fb93f5c25b483ea4f4ce99f8c4d9d44c", + "shasum": "" + }, + "require": { + "doctrine/deprecations": "^1.1.5", + "php": "^8.2", + "psr/cache": "^1|^2|^3", + "psr/log": "^1|^2|^3" + }, + "require-dev": { + "doctrine/coding-standard": "14.0.0", + "fig/log-test": "^1", + "jetbrains/phpstorm-stubs": "2023.2", + "phpstan/phpstan": "2.1.30", + "phpstan/phpstan-phpunit": "2.0.7", + "phpstan/phpstan-strict-rules": "^2", + "phpunit/phpunit": "11.5.23", + "slevomat/coding-standard": "8.24.0", + "squizlabs/php_codesniffer": "4.0.0", + "symfony/cache": "^6.3.8|^7.0|^8.0", + "symfony/console": "^5.4|^6.3|^7.0|^8.0" + }, + "suggest": { + "symfony/console": "For helpful console commands such as SQL execution and import of files." + }, + "type": "library", + "autoload": { + "psr-4": { + "Doctrine\\DBAL\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Guilherme Blanco", + "email": "guilhermeblanco@gmail.com" + }, + { + "name": "Roman Borschel", + "email": "roman@code-factory.org" + }, + { + "name": "Benjamin Eberlei", + "email": "kontakt@beberlei.de" + }, + { + "name": "Jonathan Wage", + "email": "jonwage@gmail.com" + } + ], + "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.", + "homepage": "https://www.doctrine-project.org/projects/dbal.html", + "keywords": [ + "abstraction", + "database", + "db2", + "dbal", + "mariadb", + "mssql", + "mysql", + "oci8", + "oracle", + "pdo", + "pgsql", + "postgresql", + "queryobject", + "sasql", + "sql", + "sqlite", + "sqlserver", + "sqlsrv" + ], + "support": { + "issues": "https://github.com/doctrine/dbal/issues", + "source": "https://github.com/doctrine/dbal/tree/4.4.1" + }, + "funding": [ + { + "url": "https://www.doctrine-project.org/sponsorship.html", + "type": "custom" + }, + { + "url": "https://www.patreon.com/phpdoctrine", + "type": "patreon" + }, + { + "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdbal", + "type": "tidelift" + } + ], + "time": "2025-12-04T10:11:03+00:00" + }, + { + "name": "doctrine/deprecations", + "version": "1.1.5", + "source": { + "type": "git", + "url": "https://github.com/doctrine/deprecations.git", + "reference": "459c2f5dd3d6a4633d3b5f46ee2b1c40f57d3f38" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/doctrine/deprecations/zipball/459c2f5dd3d6a4633d3b5f46ee2b1c40f57d3f38", + "reference": "459c2f5dd3d6a4633d3b5f46ee2b1c40f57d3f38", + "shasum": "" + }, + "require": { + "php": "^7.1 || ^8.0" + }, + "conflict": { + "phpunit/phpunit": "<=7.5 || >=13" + }, + "require-dev": { + "doctrine/coding-standard": "^9 || ^12 || ^13", + "phpstan/phpstan": "1.4.10 || 2.1.11", + "phpstan/phpstan-phpunit": "^1.0 || ^2", + "phpunit/phpunit": "^7.5 || ^8.5 || ^9.6 || ^10.5 || ^11.5 || ^12", + "psr/log": "^1 || ^2 || ^3" + }, + "suggest": { + "psr/log": "Allows logging deprecations via PSR-3 logger implementation" + }, + "type": "library", + "autoload": { + "psr-4": { + "Doctrine\\Deprecations\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "A small layer on top of trigger_error(E_USER_DEPRECATED) or PSR-3 logging with options to disable all deprecations or selectively for packages.", + "homepage": "https://www.doctrine-project.org/", + "support": { + "issues": "https://github.com/doctrine/deprecations/issues", + "source": "https://github.com/doctrine/deprecations/tree/1.1.5" + }, + "time": "2025-04-07T20:06:18+00:00" + }, + { + "name": "doctrine/doctrine-bundle", + "version": "3.2.1", + "source": { + "type": "git", + "url": "https://github.com/doctrine/DoctrineBundle.git", + "reference": "02f382e06c1422eac22054e9b0a57430cca5b0bc" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/doctrine/DoctrineBundle/zipball/02f382e06c1422eac22054e9b0a57430cca5b0bc", + "reference": "02f382e06c1422eac22054e9b0a57430cca5b0bc", + "shasum": "" + }, + "require": { + "doctrine/dbal": "^4.0", + "doctrine/deprecations": "^1.0", + "doctrine/persistence": "^4", + "doctrine/sql-formatter": "^1.0.1", + "php": "^8.4", + "symfony/cache": "^6.4 || ^7.0 || ^8.0", + "symfony/config": "^6.4 || ^7.0 || ^8.0", + "symfony/console": "^6.4 || ^7.0 || ^8.0", + "symfony/dependency-injection": "^6.4 || ^7.0 || ^8.0", + "symfony/doctrine-bridge": "^6.4.3 || ^7.0.3 || ^8.0", + "symfony/framework-bundle": "^6.4 || ^7.0 || ^8.0", + "symfony/service-contracts": "^3" + }, + "conflict": { + "doctrine/orm": "<3.0 || >=4.0", + "twig/twig": "<3.0.4" + }, + "require-dev": { + "doctrine/coding-standard": "^14", + "doctrine/orm": "^3.4.4", + "phpstan/phpstan": "2.1.1", + "phpstan/phpstan-phpunit": "2.0.3", + "phpstan/phpstan-strict-rules": "^2", + "phpstan/phpstan-symfony": "^2.0", + "phpunit/phpunit": "^12.3.10", + "psr/log": "^3.0", + "symfony/doctrine-messenger": "^6.4 || ^7.0 || ^8.0", + "symfony/expression-language": "^6.4 || ^7.0 || ^8.0", + "symfony/messenger": "^6.4 || ^7.0 || ^8.0", + "symfony/property-info": "^6.4 || ^7.0 || ^8.0", + "symfony/security-bundle": "^6.4 || ^7.0 || ^8.0", + "symfony/stopwatch": "^6.4 || ^7.0 || ^8.0", + "symfony/string": "^6.4 || ^7.0 || ^8.0", + "symfony/twig-bridge": "^6.4 || ^7.0 || ^8.0", + "symfony/validator": "^6.4 || ^7.0 || ^8.0", + "symfony/web-profiler-bundle": "^6.4 || ^7.0 || ^8.0", + "symfony/yaml": "^6.4 || ^7.0 || ^8.0", + "twig/twig": "^3.21.1" + }, + "suggest": { + "doctrine/orm": "The Doctrine ORM integration is optional in the bundle.", + "ext-pdo": "*", + "symfony/web-profiler-bundle": "To use the data collector." + }, + "type": "symfony-bundle", + "autoload": { + "psr-4": { + "Doctrine\\Bundle\\DoctrineBundle\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Benjamin Eberlei", + "email": "kontakt@beberlei.de" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + }, + { + "name": "Doctrine Project", + "homepage": "https://www.doctrine-project.org/" + } + ], + "description": "Symfony DoctrineBundle", + "homepage": "https://www.doctrine-project.org", + "keywords": [ + "database", + "dbal", + "orm", + "persistence" + ], + "support": { + "issues": "https://github.com/doctrine/DoctrineBundle/issues", + "source": "https://github.com/doctrine/DoctrineBundle/tree/3.2.1" + }, + "funding": [ + { + "url": "https://www.doctrine-project.org/sponsorship.html", + "type": "custom" + }, + { + "url": "https://www.patreon.com/phpdoctrine", + "type": "patreon" + }, + { + "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdoctrine-bundle", + "type": "tidelift" + } + ], + "time": "2025-12-22T09:52:21+00:00" + }, + { + "name": "doctrine/doctrine-migrations-bundle", + "version": "4.0.0", + "source": { + "type": "git", + "url": "https://github.com/doctrine/DoctrineMigrationsBundle.git", + "reference": "20505da78735744fb4a42a3bb9a416b345ad6f7c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/doctrine/DoctrineMigrationsBundle/zipball/20505da78735744fb4a42a3bb9a416b345ad6f7c", + "reference": "20505da78735744fb4a42a3bb9a416b345ad6f7c", + "shasum": "" + }, + "require": { + "doctrine/dbal": "^4", + "doctrine/doctrine-bundle": "^3", + "doctrine/migrations": "^3.2", + "php": "^8.4", + "psr/log": "^3", + "symfony/config": "^6.4 || ^7.0 || ^8.0", + "symfony/console": "^6.4 || ^7.0 || ^8.0", + "symfony/dependency-injection": "^6.4 || ^7.0 || ^8.0", + "symfony/deprecation-contracts": "^3", + "symfony/framework-bundle": "^6.4 || ^7.0 || ^8.0", + "symfony/http-foundation": "^6.4 || ^7.0 || ^8.0", + "symfony/http-kernel": "^6.4 || ^7.0 || ^8.0", + "symfony/service-contracts": "^3.0" + }, + "require-dev": { + "composer/semver": "^3.0", + "doctrine/coding-standard": "^14", + "doctrine/orm": "^3", + "phpstan/phpstan": "^2", + "phpstan/phpstan-deprecation-rules": "^2", + "phpstan/phpstan-phpunit": "^2", + "phpstan/phpstan-strict-rules": "^2", + "phpstan/phpstan-symfony": "^2", + "phpunit/phpunit": "^12.5", + "symfony/var-exporter": "^6.4 || ^7 || ^8" + }, + "type": "symfony-bundle", + "autoload": { + "psr-4": { + "Doctrine\\Bundle\\MigrationsBundle\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Doctrine Project", + "homepage": "https://www.doctrine-project.org" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony DoctrineMigrationsBundle", + "homepage": "https://www.doctrine-project.org", + "keywords": [ + "dbal", + "migrations", + "schema" + ], + "support": { + "issues": "https://github.com/doctrine/DoctrineMigrationsBundle/issues", + "source": "https://github.com/doctrine/DoctrineMigrationsBundle/tree/4.0.0" + }, + "funding": [ + { + "url": "https://www.doctrine-project.org/sponsorship.html", + "type": "custom" + }, + { + "url": "https://www.patreon.com/phpdoctrine", + "type": "patreon" + }, + { + "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdoctrine-migrations-bundle", + "type": "tidelift" + } + ], + "time": "2025-12-05T08:14:38+00:00" + }, + { + "name": "doctrine/event-manager", + "version": "2.0.1", + "source": { + "type": "git", + "url": "https://github.com/doctrine/event-manager.git", + "reference": "b680156fa328f1dfd874fd48c7026c41570b9c6e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/doctrine/event-manager/zipball/b680156fa328f1dfd874fd48c7026c41570b9c6e", + "reference": "b680156fa328f1dfd874fd48c7026c41570b9c6e", + "shasum": "" + }, + "require": { + "php": "^8.1" + }, + "conflict": { + "doctrine/common": "<2.9" + }, + "require-dev": { + "doctrine/coding-standard": "^12", + "phpstan/phpstan": "^1.8.8", + "phpunit/phpunit": "^10.5", + "vimeo/psalm": "^5.24" + }, + "type": "library", + "autoload": { + "psr-4": { + "Doctrine\\Common\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Guilherme Blanco", + "email": "guilhermeblanco@gmail.com" + }, + { + "name": "Roman Borschel", + "email": "roman@code-factory.org" + }, + { + "name": "Benjamin Eberlei", + "email": "kontakt@beberlei.de" + }, + { + "name": "Jonathan Wage", + "email": "jonwage@gmail.com" + }, + { + "name": "Johannes Schmitt", + "email": "schmittjoh@gmail.com" + }, + { + "name": "Marco Pivetta", + "email": "ocramius@gmail.com" + } + ], + "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.", + "homepage": "https://www.doctrine-project.org/projects/event-manager.html", + "keywords": [ + "event", + "event dispatcher", + "event manager", + "event system", + "events" + ], + "support": { + "issues": "https://github.com/doctrine/event-manager/issues", + "source": "https://github.com/doctrine/event-manager/tree/2.0.1" + }, + "funding": [ + { + "url": "https://www.doctrine-project.org/sponsorship.html", + "type": "custom" + }, + { + "url": "https://www.patreon.com/phpdoctrine", + "type": "patreon" + }, + { + "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager", + "type": "tidelift" + } + ], + "time": "2024-05-22T20:47:39+00:00" + }, + { + "name": "doctrine/inflector", + "version": "2.1.0", + "source": { + "type": "git", + "url": "https://github.com/doctrine/inflector.git", + "reference": "6d6c96277ea252fc1304627204c3d5e6e15faa3b" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/doctrine/inflector/zipball/6d6c96277ea252fc1304627204c3d5e6e15faa3b", + "reference": "6d6c96277ea252fc1304627204c3d5e6e15faa3b", + "shasum": "" + }, + "require": { + "php": "^7.2 || ^8.0" + }, + "require-dev": { + "doctrine/coding-standard": "^12.0 || ^13.0", + "phpstan/phpstan": "^1.12 || ^2.0", + "phpstan/phpstan-phpunit": "^1.4 || ^2.0", + "phpstan/phpstan-strict-rules": "^1.6 || ^2.0", + "phpunit/phpunit": "^8.5 || ^12.2" + }, + "type": "library", + "autoload": { + "psr-4": { + "Doctrine\\Inflector\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Guilherme Blanco", + "email": "guilhermeblanco@gmail.com" + }, + { + "name": "Roman Borschel", + "email": "roman@code-factory.org" + }, + { + "name": "Benjamin Eberlei", + "email": "kontakt@beberlei.de" + }, + { + "name": "Jonathan Wage", + "email": "jonwage@gmail.com" + }, + { + "name": "Johannes Schmitt", + "email": "schmittjoh@gmail.com" + } + ], + "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", + "inflector", + "lowercase", + "manipulation", + "php", + "plural", + "singular", + "strings", + "uppercase", + "words" + ], + "support": { + "issues": "https://github.com/doctrine/inflector/issues", + "source": "https://github.com/doctrine/inflector/tree/2.1.0" + }, + "funding": [ + { + "url": "https://www.doctrine-project.org/sponsorship.html", + "type": "custom" + }, + { + "url": "https://www.patreon.com/phpdoctrine", + "type": "patreon" + }, + { + "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector", + "type": "tidelift" + } + ], + "time": "2025-08-10T19:31:58+00:00" + }, + { + "name": "doctrine/instantiator", + "version": "2.0.0", + "source": { + "type": "git", + "url": "https://github.com/doctrine/instantiator.git", + "reference": "c6222283fa3f4ac679f8b9ced9a4e23f163e80d0" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/doctrine/instantiator/zipball/c6222283fa3f4ac679f8b9ced9a4e23f163e80d0", + "reference": "c6222283fa3f4ac679f8b9ced9a4e23f163e80d0", + "shasum": "" + }, + "require": { + "php": "^8.1" + }, + "require-dev": { + "doctrine/coding-standard": "^11", + "ext-pdo": "*", + "ext-phar": "*", + "phpbench/phpbench": "^1.2", + "phpstan/phpstan": "^1.9.4", + "phpstan/phpstan-phpunit": "^1.3", + "phpunit/phpunit": "^9.5.27", + "vimeo/psalm": "^5.4" + }, + "type": "library", + "autoload": { + "psr-4": { + "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Marco Pivetta", + "email": "ocramius@gmail.com", + "homepage": "https://ocramius.github.io/" + } + ], + "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors", + "homepage": "https://www.doctrine-project.org/projects/instantiator.html", + "keywords": [ + "constructor", + "instantiate" + ], + "support": { + "issues": "https://github.com/doctrine/instantiator/issues", + "source": "https://github.com/doctrine/instantiator/tree/2.0.0" + }, + "funding": [ + { + "url": "https://www.doctrine-project.org/sponsorship.html", + "type": "custom" + }, + { + "url": "https://www.patreon.com/phpdoctrine", + "type": "patreon" + }, + { + "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator", + "type": "tidelift" + } + ], + "time": "2022-12-30T00:23:10+00:00" + }, + { + "name": "doctrine/lexer", + "version": "3.0.1", + "source": { + "type": "git", + "url": "https://github.com/doctrine/lexer.git", + "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/doctrine/lexer/zipball/31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd", + "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd", + "shasum": "" + }, + "require": { + "php": "^8.1" + }, + "require-dev": { + "doctrine/coding-standard": "^12", + "phpstan/phpstan": "^1.10", + "phpunit/phpunit": "^10.5", + "psalm/plugin-phpunit": "^0.18.3", + "vimeo/psalm": "^5.21" + }, + "type": "library", + "autoload": { + "psr-4": { + "Doctrine\\Common\\Lexer\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Guilherme Blanco", + "email": "guilhermeblanco@gmail.com" + }, + { + "name": "Roman Borschel", + "email": "roman@code-factory.org" + }, + { + "name": "Johannes Schmitt", + "email": "schmittjoh@gmail.com" + } + ], + "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.", + "homepage": "https://www.doctrine-project.org/projects/lexer.html", + "keywords": [ + "annotations", + "docblock", + "lexer", + "parser", + "php" + ], + "support": { + "issues": "https://github.com/doctrine/lexer/issues", + "source": "https://github.com/doctrine/lexer/tree/3.0.1" + }, + "funding": [ + { + "url": "https://www.doctrine-project.org/sponsorship.html", + "type": "custom" + }, + { + "url": "https://www.patreon.com/phpdoctrine", + "type": "patreon" + }, + { + "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer", + "type": "tidelift" + } + ], + "time": "2024-02-05T11:56:58+00:00" + }, + { + "name": "doctrine/migrations", + "version": "3.9.5", + "source": { + "type": "git", + "url": "https://github.com/doctrine/migrations.git", + "reference": "1b823afbc40f932dae8272574faee53f2755eac5" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/doctrine/migrations/zipball/1b823afbc40f932dae8272574faee53f2755eac5", + "reference": "1b823afbc40f932dae8272574faee53f2755eac5", + "shasum": "" + }, + "require": { + "composer-runtime-api": "^2", + "doctrine/dbal": "^3.6 || ^4", + "doctrine/deprecations": "^0.5.3 || ^1", + "doctrine/event-manager": "^1.2 || ^2.0", + "php": "^8.1", + "psr/log": "^1.1.3 || ^2 || ^3", + "symfony/console": "^5.4 || ^6.0 || ^7.0 || ^8.0", + "symfony/stopwatch": "^5.4 || ^6.0 || ^7.0 || ^8.0", + "symfony/var-exporter": "^6.2 || ^7.0 || ^8.0" + }, + "conflict": { + "doctrine/orm": "<2.12 || >=4" + }, + "require-dev": { + "doctrine/coding-standard": "^14", + "doctrine/orm": "^2.13 || ^3", + "doctrine/persistence": "^2 || ^3 || ^4", + "doctrine/sql-formatter": "^1.0", + "ext-pdo_sqlite": "*", + "fig/log-test": "^1", + "phpstan/phpstan": "^2", + "phpstan/phpstan-deprecation-rules": "^2", + "phpstan/phpstan-phpunit": "^2", + "phpstan/phpstan-strict-rules": "^2", + "phpstan/phpstan-symfony": "^2", + "phpunit/phpunit": "^10.3 || ^11.0 || ^12.0", + "symfony/cache": "^5.4 || ^6.0 || ^7.0 || ^8.0", + "symfony/process": "^5.4 || ^6.0 || ^7.0 || ^8.0", + "symfony/yaml": "^5.4 || ^6.0 || ^7.0 || ^8.0" + }, + "suggest": { + "doctrine/sql-formatter": "Allows to generate formatted SQL with the diff command.", + "symfony/yaml": "Allows the use of yaml for migration configuration files." + }, + "bin": [ + "bin/doctrine-migrations" + ], + "type": "library", + "autoload": { + "psr-4": { + "Doctrine\\Migrations\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Benjamin Eberlei", + "email": "kontakt@beberlei.de" + }, + { + "name": "Jonathan Wage", + "email": "jonwage@gmail.com" + }, + { + "name": "Michael Simonson", + "email": "contact@mikesimonson.com" + } + ], + "description": "PHP Doctrine Migrations project offer additional functionality on top of the database abstraction layer (DBAL) for versioning your database schema and easily deploying changes to it. It is a very easy to use and a powerful tool.", + "homepage": "https://www.doctrine-project.org/projects/migrations.html", + "keywords": [ + "database", + "dbal", + "migrations" + ], + "support": { + "issues": "https://github.com/doctrine/migrations/issues", + "source": "https://github.com/doctrine/migrations/tree/3.9.5" + }, + "funding": [ + { + "url": "https://www.doctrine-project.org/sponsorship.html", + "type": "custom" + }, + { + "url": "https://www.patreon.com/phpdoctrine", + "type": "patreon" + }, + { + "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fmigrations", + "type": "tidelift" + } + ], + "time": "2025-11-20T11:15:36+00:00" + }, + { + "name": "doctrine/orm", + "version": "3.6.0", + "source": { + "type": "git", + "url": "https://github.com/doctrine/orm.git", + "reference": "d4e9276e79602b1eb4c4029c6c999b0d93478e2f" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/doctrine/orm/zipball/d4e9276e79602b1eb4c4029c6c999b0d93478e2f", + "reference": "d4e9276e79602b1eb4c4029c6c999b0d93478e2f", + "shasum": "" + }, + "require": { + "composer-runtime-api": "^2", + "doctrine/collections": "^2.2", + "doctrine/dbal": "^3.8.2 || ^4", + "doctrine/deprecations": "^0.5.3 || ^1", + "doctrine/event-manager": "^1.2 || ^2", + "doctrine/inflector": "^1.4 || ^2.0", + "doctrine/instantiator": "^1.3 || ^2", + "doctrine/lexer": "^3", + "doctrine/persistence": "^3.3.1 || ^4", + "ext-ctype": "*", + "php": "^8.1", + "psr/cache": "^1 || ^2 || ^3", + "symfony/console": "^5.4 || ^6.0 || ^7.0 || ^8.0", + "symfony/var-exporter": "^6.3.9 || ^7.0 || ^8.0" + }, + "require-dev": { + "doctrine/coding-standard": "^14.0", + "phpbench/phpbench": "^1.0", + "phpstan/extension-installer": "^1.4", + "phpstan/phpstan": "2.1.23", + "phpstan/phpstan-deprecation-rules": "^2", + "phpunit/phpunit": "^10.5.0 || ^11.5", + "psr/log": "^1 || ^2 || ^3", + "symfony/cache": "^5.4 || ^6.2 || ^7.0 || ^8.0" + }, + "suggest": { + "ext-dom": "Provides support for XSD validation for XML mapping files", + "symfony/cache": "Provides cache support for Setup Tool with doctrine/cache 2.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Doctrine\\ORM\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Guilherme Blanco", + "email": "guilhermeblanco@gmail.com" + }, + { + "name": "Roman Borschel", + "email": "roman@code-factory.org" + }, + { + "name": "Benjamin Eberlei", + "email": "kontakt@beberlei.de" + }, + { + "name": "Jonathan Wage", + "email": "jonwage@gmail.com" + }, + { + "name": "Marco Pivetta", + "email": "ocramius@gmail.com" + } + ], + "description": "Object-Relational-Mapper for PHP", + "homepage": "https://www.doctrine-project.org/projects/orm.html", + "keywords": [ + "database", + "orm" + ], + "support": { + "issues": "https://github.com/doctrine/orm/issues", + "source": "https://github.com/doctrine/orm/tree/3.6.0" + }, + "time": "2025-12-19T20:36:14+00:00" + }, + { + "name": "doctrine/persistence", + "version": "4.1.1", + "source": { + "type": "git", + "url": "https://github.com/doctrine/persistence.git", + "reference": "b9c49ad3558bb77ef973f4e173f2e9c2eca9be09" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/doctrine/persistence/zipball/b9c49ad3558bb77ef973f4e173f2e9c2eca9be09", + "reference": "b9c49ad3558bb77ef973f4e173f2e9c2eca9be09", + "shasum": "" + }, + "require": { + "doctrine/event-manager": "^1 || ^2", + "php": "^8.1", + "psr/cache": "^1.0 || ^2.0 || ^3.0" + }, + "require-dev": { + "doctrine/coding-standard": "^14", + "phpstan/phpstan": "2.1.30", + "phpstan/phpstan-phpunit": "^2", + "phpstan/phpstan-strict-rules": "^2", + "phpunit/phpunit": "^10.5.58 || ^12", + "symfony/cache": "^4.4 || ^5.4 || ^6.0 || ^7.0", + "symfony/finder": "^4.4 || ^5.4 || ^6.0 || ^7.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Doctrine\\Persistence\\": "src/Persistence" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Guilherme Blanco", + "email": "guilhermeblanco@gmail.com" + }, + { + "name": "Roman Borschel", + "email": "roman@code-factory.org" + }, + { + "name": "Benjamin Eberlei", + "email": "kontakt@beberlei.de" + }, + { + "name": "Jonathan Wage", + "email": "jonwage@gmail.com" + }, + { + "name": "Johannes Schmitt", + "email": "schmittjoh@gmail.com" + }, + { + "name": "Marco Pivetta", + "email": "ocramius@gmail.com" + } + ], + "description": "The Doctrine Persistence project is a set of shared interfaces and functionality that the different Doctrine object mappers share.", + "homepage": "https://www.doctrine-project.org/projects/persistence.html", + "keywords": [ + "mapper", + "object", + "odm", + "orm", + "persistence" + ], + "support": { + "issues": "https://github.com/doctrine/persistence/issues", + "source": "https://github.com/doctrine/persistence/tree/4.1.1" + }, + "funding": [ + { + "url": "https://www.doctrine-project.org/sponsorship.html", + "type": "custom" + }, + { + "url": "https://www.patreon.com/phpdoctrine", + "type": "patreon" + }, + { + "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fpersistence", + "type": "tidelift" + } + ], + "time": "2025-10-16T20:13:18+00:00" + }, + { + "name": "doctrine/sql-formatter", + "version": "1.5.3", + "source": { + "type": "git", + "url": "https://github.com/doctrine/sql-formatter.git", + "reference": "a8af23a8e9d622505baa2997465782cbe8bb7fc7" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/doctrine/sql-formatter/zipball/a8af23a8e9d622505baa2997465782cbe8bb7fc7", + "reference": "a8af23a8e9d622505baa2997465782cbe8bb7fc7", + "shasum": "" + }, + "require": { + "php": "^8.1" + }, + "require-dev": { + "doctrine/coding-standard": "^14", + "ergebnis/phpunit-slow-test-detector": "^2.20", + "phpstan/phpstan": "^2.1.31", + "phpunit/phpunit": "^10.5.58" + }, + "bin": [ + "bin/sql-formatter" + ], + "type": "library", + "autoload": { + "psr-4": { + "Doctrine\\SqlFormatter\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Jeremy Dorn", + "email": "jeremy@jeremydorn.com", + "homepage": "https://jeremydorn.com/" + } + ], + "description": "a PHP SQL highlighting library", + "homepage": "https://github.com/doctrine/sql-formatter/", + "keywords": [ + "highlight", + "sql" + ], + "support": { + "issues": "https://github.com/doctrine/sql-formatter/issues", + "source": "https://github.com/doctrine/sql-formatter/tree/1.5.3" + }, + "time": "2025-10-26T09:35:14+00:00" + }, + { + "name": "psr/cache", + "version": "3.0.0", + "source": { + "type": "git", + "url": "https://github.com/php-fig/cache.git", + "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf", + "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf", + "shasum": "" + }, + "require": { + "php": ">=8.0.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "Psr\\Cache\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "https://www.php-fig.org/" + } + ], + "description": "Common interface for caching libraries", + "keywords": [ + "cache", + "psr", + "psr-6" + ], + "support": { + "source": "https://github.com/php-fig/cache/tree/3.0.0" + }, + "time": "2021-02-03T23:26:27+00:00" + }, + { + "name": "psr/clock", + "version": "1.0.0", + "source": { + "type": "git", + "url": "https://github.com/php-fig/clock.git", + "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d", + "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d", + "shasum": "" + }, + "require": { + "php": "^7.0 || ^8.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Psr\\Clock\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "https://www.php-fig.org/" + } + ], + "description": "Common interface for reading the clock.", + "homepage": "https://github.com/php-fig/clock", + "keywords": [ + "clock", + "now", + "psr", + "psr-20", + "time" + ], + "support": { + "issues": "https://github.com/php-fig/clock/issues", + "source": "https://github.com/php-fig/clock/tree/1.0.0" + }, + "time": "2022-11-25T14:36:26+00:00" + }, + { + "name": "psr/container", + "version": "2.0.2", + "source": { + "type": "git", + "url": "https://github.com/php-fig/container.git", + "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963", + "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963", + "shasum": "" + }, + "require": { + "php": ">=7.4.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "Psr\\Container\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "https://www.php-fig.org/" + } + ], + "description": "Common Container Interface (PHP FIG PSR-11)", + "homepage": "https://github.com/php-fig/container", + "keywords": [ + "PSR-11", + "container", + "container-interface", + "container-interop", + "psr" + ], + "support": { + "issues": "https://github.com/php-fig/container/issues", + "source": "https://github.com/php-fig/container/tree/2.0.2" + }, + "time": "2021-11-05T16:47:00+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" + ], + "support": { + "issues": "https://github.com/php-fig/event-dispatcher/issues", + "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0" + }, + "time": "2019-01-08T18:20:26+00:00" + }, + { + "name": "psr/log", + "version": "3.0.2", + "source": { + "type": "git", + "url": "https://github.com/php-fig/log.git", + "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/log/zipball/f16e1d5863e37f8d8c2a01719f5b34baa2b714d3", + "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3", + "shasum": "" + }, + "require": { + "php": ">=8.0.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.x-dev" + } + }, + "autoload": { + "psr-4": { + "Psr\\Log\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "https://www.php-fig.org/" + } + ], + "description": "Common interface for logging libraries", + "homepage": "https://github.com/php-fig/log", + "keywords": [ + "log", + "psr", + "psr-3" + ], + "support": { + "source": "https://github.com/php-fig/log/tree/3.0.2" + }, + "time": "2024-09-11T13:17:53+00:00" + }, + { + "name": "symfony/asset", + "version": "v8.0.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/asset.git", + "reference": "e07d70cfca384c1eabee192fdeedb6850c1c840b" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/asset/zipball/e07d70cfca384c1eabee192fdeedb6850c1c840b", + "reference": "e07d70cfca384c1eabee192fdeedb6850c1c840b", + "shasum": "" + }, + "require": { + "php": ">=8.4" + }, + "require-dev": { + "symfony/http-client": "^7.4|^8.0", + "symfony/http-foundation": "^7.4|^8.0", + "symfony/http-kernel": "^7.4|^8.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\Asset\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Manages URL generation and versioning of web assets such as CSS stylesheets, JavaScript files and image files", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/asset/tree/v8.0.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2025-08-04T07:36:47+00:00" + }, + { + "name": "symfony/cache", + "version": "v8.0.1", + "source": { + "type": "git", + "url": "https://github.com/symfony/cache.git", + "reference": "0e67dc8145810d4e1c0d13c0e1d29ceb930b1c8e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/cache/zipball/0e67dc8145810d4e1c0d13c0e1d29ceb930b1c8e", + "reference": "0e67dc8145810d4e1c0d13c0e1d29ceb930b1c8e", + "shasum": "" + }, + "require": { + "php": ">=8.4", + "psr/cache": "^2.0|^3.0", + "psr/log": "^1.1|^2|^3", + "symfony/cache-contracts": "^3.6", + "symfony/service-contracts": "^2.5|^3", + "symfony/var-exporter": "^7.4|^8.0" + }, + "conflict": { + "doctrine/dbal": "<4.3", + "ext-redis": "<6.1", + "ext-relay": "<0.12.1" + }, + "provide": { + "psr/cache-implementation": "2.0|3.0", + "psr/simple-cache-implementation": "1.0|2.0|3.0", + "symfony/cache-implementation": "1.1|2.0|3.0" + }, + "require-dev": { + "cache/integration-tests": "dev-master", + "doctrine/dbal": "^4.3", + "predis/predis": "^1.1|^2.0", + "psr/simple-cache": "^1.0|^2.0|^3.0", + "symfony/clock": "^7.4|^8.0", + "symfony/config": "^7.4|^8.0", + "symfony/dependency-injection": "^7.4|^8.0", + "symfony/filesystem": "^7.4|^8.0", + "symfony/http-kernel": "^7.4|^8.0", + "symfony/messenger": "^7.4|^8.0", + "symfony/var-dumper": "^7.4|^8.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\Cache\\": "" + }, + "classmap": [ + "Traits/ValueWrapper.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": "Provides extended PSR-6, PSR-16 (and tags) implementations", + "homepage": "https://symfony.com", + "keywords": [ + "caching", + "psr6" + ], + "support": { + "source": "https://github.com/symfony/cache/tree/v8.0.1" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2025-12-04T18:17:06+00:00" + }, + { + "name": "symfony/cache-contracts", + "version": "v3.6.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/cache-contracts.git", + "reference": "5d68a57d66910405e5c0b63d6f0af941e66fc868" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/5d68a57d66910405e5c0b63d6f0af941e66fc868", + "reference": "5d68a57d66910405e5c0b63d6f0af941e66fc868", + "shasum": "" + }, + "require": { + "php": ">=8.1", + "psr/cache": "^3.0" + }, + "type": "library", + "extra": { + "thanks": { + "url": "https://github.com/symfony/contracts", + "name": "symfony/contracts" + }, + "branch-alias": { + "dev-main": "3.6-dev" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Contracts\\Cache\\": "" + } + }, + "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": "Generic abstractions related to caching", + "homepage": "https://symfony.com", + "keywords": [ + "abstractions", + "contracts", + "decoupling", + "interfaces", + "interoperability", + "standards" + ], + "support": { + "source": "https://github.com/symfony/cache-contracts/tree/v3.6.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2025-03-13T15:25:07+00:00" + }, + { + "name": "symfony/clock", + "version": "v8.0.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/clock.git", + "reference": "832119f9b8dbc6c8e6f65f30c5969eca1e88764f" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/clock/zipball/832119f9b8dbc6c8e6f65f30c5969eca1e88764f", + "reference": "832119f9b8dbc6c8e6f65f30c5969eca1e88764f", + "shasum": "" + }, + "require": { + "php": ">=8.4", + "psr/clock": "^1.0" + }, + "provide": { + "psr/clock-implementation": "1.0" + }, + "type": "library", + "autoload": { + "files": [ + "Resources/now.php" + ], + "psr-4": { + "Symfony\\Component\\Clock\\": "" + }, + "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": "Decouples applications from the system clock", + "homepage": "https://symfony.com", + "keywords": [ + "clock", + "psr20", + "time" + ], + "support": { + "source": "https://github.com/symfony/clock/tree/v8.0.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2025-11-12T15:46:48+00:00" + }, + { + "name": "symfony/config", + "version": "v8.0.1", + "source": { + "type": "git", + "url": "https://github.com/symfony/config.git", + "reference": "a5a054e613da565d46183a845ae4c0c996a3fbce" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/config/zipball/a5a054e613da565d46183a845ae4c0c996a3fbce", + "reference": "a5a054e613da565d46183a845ae4c0c996a3fbce", + "shasum": "" + }, + "require": { + "php": ">=8.4", + "symfony/deprecation-contracts": "^2.5|^3", + "symfony/filesystem": "^7.4|^8.0", + "symfony/polyfill-ctype": "^1.8" + }, + "conflict": { + "symfony/service-contracts": "<2.5" + }, + "require-dev": { + "symfony/event-dispatcher": "^7.4|^8.0", + "symfony/finder": "^7.4|^8.0", + "symfony/messenger": "^7.4|^8.0", + "symfony/service-contracts": "^2.5|^3", + "symfony/yaml": "^7.4|^8.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\Config\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Helps you find, load, combine, autofill and validate configuration values of any kind", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/config/tree/v8.0.1" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2025-12-05T14:08:45+00:00" + }, + { + "name": "symfony/console", + "version": "v8.0.1", + "source": { + "type": "git", + "url": "https://github.com/symfony/console.git", + "reference": "fcb73f69d655b48fcb894a262f074218df08bd58" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/console/zipball/fcb73f69d655b48fcb894a262f074218df08bd58", + "reference": "fcb73f69d655b48fcb894a262f074218df08bd58", + "shasum": "" + }, + "require": { + "php": ">=8.4", + "symfony/polyfill-mbstring": "^1.0", + "symfony/service-contracts": "^2.5|^3", + "symfony/string": "^7.4|^8.0" + }, + "provide": { + "psr/log-implementation": "1.0|2.0|3.0" + }, + "require-dev": { + "psr/log": "^1|^2|^3", + "symfony/config": "^7.4|^8.0", + "symfony/dependency-injection": "^7.4|^8.0", + "symfony/event-dispatcher": "^7.4|^8.0", + "symfony/http-foundation": "^7.4|^8.0", + "symfony/http-kernel": "^7.4|^8.0", + "symfony/lock": "^7.4|^8.0", + "symfony/messenger": "^7.4|^8.0", + "symfony/process": "^7.4|^8.0", + "symfony/stopwatch": "^7.4|^8.0", + "symfony/var-dumper": "^7.4|^8.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\Console\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Eases the creation of beautiful and testable command line interfaces", + "homepage": "https://symfony.com", + "keywords": [ + "cli", + "command-line", + "console", + "terminal" + ], + "support": { + "source": "https://github.com/symfony/console/tree/v8.0.1" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2025-12-05T15:25:33+00:00" + }, + { + "name": "symfony/dependency-injection", + "version": "v8.0.2", + "source": { + "type": "git", + "url": "https://github.com/symfony/dependency-injection.git", + "reference": "90f6c3364b8f444f85bdb6939664c80af9e0d576" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/90f6c3364b8f444f85bdb6939664c80af9e0d576", + "reference": "90f6c3364b8f444f85bdb6939664c80af9e0d576", + "shasum": "" + }, + "require": { + "php": ">=8.4", + "psr/container": "^1.1|^2.0", + "symfony/deprecation-contracts": "^2.5|^3", + "symfony/service-contracts": "^3.6", + "symfony/var-exporter": "^7.4|^8.0" + }, + "conflict": { + "ext-psr": "<1.1|>=2" + }, + "provide": { + "psr/container-implementation": "1.1|2.0", + "symfony/service-implementation": "1.1|2.0|3.0" + }, + "require-dev": { + "symfony/config": "^7.4|^8.0", + "symfony/expression-language": "^7.4|^8.0", + "symfony/yaml": "^7.4|^8.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\DependencyInjection\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Allows you to standardize and centralize the way objects are constructed in your application", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/dependency-injection/tree/v8.0.2" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2025-12-08T06:57:48+00:00" + }, + { + "name": "symfony/deprecation-contracts", + "version": "v3.6.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/deprecation-contracts.git", + "reference": "63afe740e99a13ba87ec199bb07bbdee937a5b62" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/63afe740e99a13ba87ec199bb07bbdee937a5b62", + "reference": "63afe740e99a13ba87ec199bb07bbdee937a5b62", + "shasum": "" + }, + "require": { + "php": ">=8.1" + }, + "type": "library", + "extra": { + "thanks": { + "url": "https://github.com/symfony/contracts", + "name": "symfony/contracts" + }, + "branch-alias": { + "dev-main": "3.6-dev" + } + }, + "autoload": { + "files": [ + "function.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": "A generic function and convention to trigger deprecation notices", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/deprecation-contracts/tree/v3.6.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-09-25T14:21:43+00:00" + }, + { + "name": "symfony/doctrine-bridge", + "version": "v8.0.1", + "source": { + "type": "git", + "url": "https://github.com/symfony/doctrine-bridge.git", + "reference": "f57b37e61ab378bca98ffa038a786a24d574bec6" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/doctrine-bridge/zipball/f57b37e61ab378bca98ffa038a786a24d574bec6", + "reference": "f57b37e61ab378bca98ffa038a786a24d574bec6", + "shasum": "" + }, + "require": { + "doctrine/event-manager": "^2", + "doctrine/persistence": "^3.1|^4", + "php": ">=8.4", + "symfony/polyfill-ctype": "^1.8", + "symfony/polyfill-mbstring": "^1.0", + "symfony/service-contracts": "^2.5|^3" + }, + "conflict": { + "doctrine/collections": "<1.8", + "doctrine/dbal": "<4.3", + "doctrine/lexer": "<1.1", + "doctrine/orm": "<3.4", + "symfony/property-info": "<8.0" + }, + "require-dev": { + "doctrine/collections": "^1.8|^2.0", + "doctrine/data-fixtures": "^1.1|^2", + "doctrine/dbal": "^4.3", + "doctrine/orm": "^3.4", + "psr/log": "^1|^2|^3", + "symfony/cache": "^7.4|^8.0", + "symfony/config": "^7.4|^8.0", + "symfony/dependency-injection": "^7.4|^8.0", + "symfony/doctrine-messenger": "^7.4|^8.0", + "symfony/expression-language": "^7.4|^8.0", + "symfony/form": "^7.4|^8.0", + "symfony/http-kernel": "^7.4|^8.0", + "symfony/lock": "^7.4|^8.0", + "symfony/messenger": "^7.4|^8.0", + "symfony/property-access": "^7.4|^8.0", + "symfony/property-info": "^8.0", + "symfony/security-core": "^7.4|^8.0", + "symfony/stopwatch": "^7.4|^8.0", + "symfony/translation": "^7.4|^8.0", + "symfony/type-info": "^7.4|^8.0", + "symfony/uid": "^7.4|^8.0", + "symfony/validator": "^7.4|^8.0", + "symfony/var-dumper": "^7.4|^8.0" + }, + "type": "symfony-bridge", + "autoload": { + "psr-4": { + "Symfony\\Bridge\\Doctrine\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Provides integration for Doctrine with various Symfony components", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/doctrine-bridge/tree/v8.0.1" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2025-12-04T18:17:06+00:00" + }, + { + "name": "symfony/dotenv", + "version": "v8.0.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/dotenv.git", + "reference": "460b4067a85288c59a59ce8c1bfb3942e71fd85c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/dotenv/zipball/460b4067a85288c59a59ce8c1bfb3942e71fd85c", + "reference": "460b4067a85288c59a59ce8c1bfb3942e71fd85c", + "shasum": "" + }, + "require": { + "php": ">=8.4" + }, + "require-dev": { + "symfony/console": "^7.4|^8.0", + "symfony/process": "^7.4|^8.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\Dotenv\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Registers environment variables from a .env file", + "homepage": "https://symfony.com", + "keywords": [ + "dotenv", + "env", + "environment" + ], + "support": { + "source": "https://github.com/symfony/dotenv/tree/v8.0.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2025-11-16T10:17:21+00:00" + }, + { + "name": "symfony/error-handler", + "version": "v8.0.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/error-handler.git", + "reference": "d77ec7dda0c274178745d152e82baf7ea827fd73" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/error-handler/zipball/d77ec7dda0c274178745d152e82baf7ea827fd73", + "reference": "d77ec7dda0c274178745d152e82baf7ea827fd73", + "shasum": "" + }, + "require": { + "php": ">=8.4", + "psr/log": "^1|^2|^3", + "symfony/polyfill-php85": "^1.32", + "symfony/var-dumper": "^7.4|^8.0" + }, + "conflict": { + "symfony/deprecation-contracts": "<2.5" + }, + "require-dev": { + "symfony/console": "^7.4|^8.0", + "symfony/deprecation-contracts": "^2.5|^3", + "symfony/http-kernel": "^7.4|^8.0", + "symfony/serializer": "^7.4|^8.0", + "symfony/webpack-encore-bundle": "^1.0|^2.0" + }, + "bin": [ + "Resources/bin/patch-type-declarations" + ], + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\ErrorHandler\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Provides tools to manage errors and ease debugging PHP code", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/error-handler/tree/v8.0.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2025-11-05T14:36:47+00:00" + }, + { + "name": "symfony/event-dispatcher", + "version": "v8.0.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/event-dispatcher.git", + "reference": "573f95783a2ec6e38752979db139f09fec033f03" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/573f95783a2ec6e38752979db139f09fec033f03", + "reference": "573f95783a2ec6e38752979db139f09fec033f03", + "shasum": "" + }, + "require": { + "php": ">=8.4", + "symfony/event-dispatcher-contracts": "^2.5|^3" + }, + "conflict": { + "symfony/security-http": "<7.4", + "symfony/service-contracts": "<2.5" + }, + "provide": { + "psr/event-dispatcher-implementation": "1.0", + "symfony/event-dispatcher-implementation": "2.0|3.0" + }, + "require-dev": { + "psr/log": "^1|^2|^3", + "symfony/config": "^7.4|^8.0", + "symfony/dependency-injection": "^7.4|^8.0", + "symfony/error-handler": "^7.4|^8.0", + "symfony/expression-language": "^7.4|^8.0", + "symfony/framework-bundle": "^7.4|^8.0", + "symfony/http-foundation": "^7.4|^8.0", + "symfony/service-contracts": "^2.5|^3", + "symfony/stopwatch": "^7.4|^8.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\EventDispatcher\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/event-dispatcher/tree/v8.0.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2025-10-30T14:17:19+00:00" + }, + { + "name": "symfony/event-dispatcher-contracts", + "version": "v3.6.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/event-dispatcher-contracts.git", + "reference": "59eb412e93815df44f05f342958efa9f46b1e586" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/59eb412e93815df44f05f342958efa9f46b1e586", + "reference": "59eb412e93815df44f05f342958efa9f46b1e586", + "shasum": "" + }, + "require": { + "php": ">=8.1", + "psr/event-dispatcher": "^1" + }, + "type": "library", + "extra": { + "thanks": { + "url": "https://github.com/symfony/contracts", + "name": "symfony/contracts" + }, + "branch-alias": { + "dev-main": "3.6-dev" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Contracts\\EventDispatcher\\": "" + } + }, + "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": "Generic abstractions related to dispatching event", + "homepage": "https://symfony.com", + "keywords": [ + "abstractions", + "contracts", + "decoupling", + "interfaces", + "interoperability", + "standards" + ], + "support": { + "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.6.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-09-25T14:21:43+00:00" + }, + { + "name": "symfony/filesystem", + "version": "v8.0.1", + "source": { + "type": "git", + "url": "https://github.com/symfony/filesystem.git", + "reference": "d937d400b980523dc9ee946bb69972b5e619058d" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/filesystem/zipball/d937d400b980523dc9ee946bb69972b5e619058d", + "reference": "d937d400b980523dc9ee946bb69972b5e619058d", + "shasum": "" + }, + "require": { + "php": ">=8.4", + "symfony/polyfill-ctype": "~1.8", + "symfony/polyfill-mbstring": "~1.8" + }, + "require-dev": { + "symfony/process": "^7.4|^8.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\Filesystem\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Provides basic utilities for the filesystem", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/filesystem/tree/v8.0.1" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2025-12-01T09:13:36+00:00" + }, + { + "name": "symfony/finder", + "version": "v8.0.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/finder.git", + "reference": "7598dd5770580fa3517ec83e8da0c9b9e01f4291" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/finder/zipball/7598dd5770580fa3517ec83e8da0c9b9e01f4291", + "reference": "7598dd5770580fa3517ec83e8da0c9b9e01f4291", + "shasum": "" + }, + "require": { + "php": ">=8.4" + }, + "require-dev": { + "symfony/filesystem": "^7.4|^8.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\Finder\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Finds files and directories via an intuitive fluent interface", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/finder/tree/v8.0.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2025-11-05T14:36:47+00:00" + }, + { + "name": "symfony/flex", + "version": "v2.10.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/flex.git", + "reference": "9cd384775973eabbf6e8b05784dda279fc67c28d" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/flex/zipball/9cd384775973eabbf6e8b05784dda279fc67c28d", + "reference": "9cd384775973eabbf6e8b05784dda279fc67c28d", + "shasum": "" + }, + "require": { + "composer-plugin-api": "^2.1", + "php": ">=8.1" + }, + "conflict": { + "composer/semver": "<1.7.2", + "symfony/dotenv": "<5.4" + }, + "require-dev": { + "composer/composer": "^2.1", + "symfony/dotenv": "^6.4|^7.4|^8.0", + "symfony/filesystem": "^6.4|^7.4|^8.0", + "symfony/phpunit-bridge": "^6.4|^7.4|^8.0", + "symfony/process": "^6.4|^7.4|^8.0" + }, + "type": "composer-plugin", + "extra": { + "class": "Symfony\\Flex\\Flex" + }, + "autoload": { + "psr-4": { + "Symfony\\Flex\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien.potencier@gmail.com" + } + ], + "description": "Composer plugin for Symfony", + "support": { + "issues": "https://github.com/symfony/flex/issues", + "source": "https://github.com/symfony/flex/tree/v2.10.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2025-11-16T09:38:19+00:00" + }, + { + "name": "symfony/form", + "version": "v8.0.1", + "source": { + "type": "git", + "url": "https://github.com/symfony/form.git", + "reference": "02bd42a77e595298dcfef4ec259f4adda332fadb" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/form/zipball/02bd42a77e595298dcfef4ec259f4adda332fadb", + "reference": "02bd42a77e595298dcfef4ec259f4adda332fadb", + "shasum": "" + }, + "require": { + "php": ">=8.4", + "symfony/event-dispatcher": "^7.4|^8.0", + "symfony/options-resolver": "^7.4|^8.0", + "symfony/polyfill-ctype": "^1.8", + "symfony/polyfill-intl-icu": "^1.21", + "symfony/polyfill-mbstring": "^1.0", + "symfony/property-access": "^7.4|^8.0", + "symfony/service-contracts": "^2.5|^3" + }, + "conflict": { + "symfony/intl": "<7.4", + "symfony/translation-contracts": "<2.5", + "symfony/validator": "<7.4" + }, + "require-dev": { + "doctrine/collections": "^1.0|^2.0", + "symfony/clock": "^7.4|^8.0", + "symfony/config": "^7.4|^8.0", + "symfony/console": "^7.4|^8.0", + "symfony/dependency-injection": "^7.4|^8.0", + "symfony/expression-language": "^7.4|^8.0", + "symfony/html-sanitizer": "^7.4|^8.0", + "symfony/http-foundation": "^7.4|^8.0", + "symfony/http-kernel": "^7.4|^8.0", + "symfony/intl": "^7.4|^8.0", + "symfony/security-core": "^7.4|^8.0", + "symfony/security-csrf": "^7.4|^8.0", + "symfony/translation": "^7.4|^8.0", + "symfony/uid": "^7.4|^8.0", + "symfony/validator": "^7.4|^8.0", + "symfony/var-dumper": "^7.4|^8.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\Form\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Allows to easily create, process and reuse HTML forms", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/form/tree/v8.0.1" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2025-12-05T14:08:45+00:00" + }, + { + "name": "symfony/framework-bundle", + "version": "v8.0.1", + "source": { + "type": "git", + "url": "https://github.com/symfony/framework-bundle.git", + "reference": "194b5edd7a00703aaf836b56bbf079cd6c4d4a87" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/framework-bundle/zipball/194b5edd7a00703aaf836b56bbf079cd6c4d4a87", + "reference": "194b5edd7a00703aaf836b56bbf079cd6c4d4a87", + "shasum": "" + }, + "require": { + "composer-runtime-api": ">=2.1", + "ext-xml": "*", + "php": ">=8.4", + "symfony/cache": "^7.4|^8.0", + "symfony/config": "^7.4|^8.0", + "symfony/dependency-injection": "^7.4|^8.0", + "symfony/deprecation-contracts": "^2.5|^3", + "symfony/error-handler": "^7.4|^8.0", + "symfony/event-dispatcher": "^7.4|^8.0", + "symfony/filesystem": "^7.4|^8.0", + "symfony/finder": "^7.4|^8.0", + "symfony/http-foundation": "^7.4|^8.0", + "symfony/http-kernel": "^7.4|^8.0", + "symfony/polyfill-mbstring": "^1.0", + "symfony/polyfill-php85": "^1.32", + "symfony/routing": "^7.4|^8.0" + }, + "conflict": { + "doctrine/persistence": "<1.3", + "phpdocumentor/reflection-docblock": "<3.2.2", + "phpdocumentor/type-resolver": "<1.4.0", + "symfony/console": "<7.4", + "symfony/form": "<7.4", + "symfony/json-streamer": "<7.4", + "symfony/messenger": "<7.4", + "symfony/security-csrf": "<7.4", + "symfony/serializer": "<7.4", + "symfony/translation": "<7.4", + "symfony/webhook": "<7.4", + "symfony/workflow": "<7.4" + }, + "require-dev": { + "doctrine/persistence": "^1.3|^2|^3", + "dragonmantank/cron-expression": "^3.1", + "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0", + "phpstan/phpdoc-parser": "^1.0|^2.0", + "seld/jsonlint": "^1.10", + "symfony/asset": "^7.4|^8.0", + "symfony/asset-mapper": "^7.4|^8.0", + "symfony/browser-kit": "^7.4|^8.0", + "symfony/clock": "^7.4|^8.0", + "symfony/console": "^7.4|^8.0", + "symfony/css-selector": "^7.4|^8.0", + "symfony/dom-crawler": "^7.4|^8.0", + "symfony/dotenv": "^7.4|^8.0", + "symfony/expression-language": "^7.4|^8.0", + "symfony/form": "^7.4|^8.0", + "symfony/html-sanitizer": "^7.4|^8.0", + "symfony/http-client": "^7.4|^8.0", + "symfony/json-streamer": "^7.4|^8.0", + "symfony/lock": "^7.4|^8.0", + "symfony/mailer": "^7.4|^8.0", + "symfony/messenger": "^7.4|^8.0", + "symfony/mime": "^7.4|^8.0", + "symfony/notifier": "^7.4|^8.0", + "symfony/object-mapper": "^7.4|^8.0", + "symfony/polyfill-intl-icu": "^1.0", + "symfony/process": "^7.4|^8.0", + "symfony/property-info": "^7.4|^8.0", + "symfony/rate-limiter": "^7.4|^8.0", + "symfony/runtime": "^7.4|^8.0", + "symfony/scheduler": "^7.4|^8.0", + "symfony/security-bundle": "^7.4|^8.0", + "symfony/semaphore": "^7.4|^8.0", + "symfony/serializer": "^7.4|^8.0", + "symfony/stopwatch": "^7.4|^8.0", + "symfony/string": "^7.4|^8.0", + "symfony/translation": "^7.4|^8.0", + "symfony/twig-bundle": "^7.4|^8.0", + "symfony/type-info": "^7.4.1|^8.0.1", + "symfony/uid": "^7.4|^8.0", + "symfony/validator": "^7.4|^8.0", + "symfony/web-link": "^7.4|^8.0", + "symfony/webhook": "^7.4|^8.0", + "symfony/workflow": "^7.4|^8.0", + "symfony/yaml": "^7.4|^8.0" + }, + "type": "symfony-bundle", + "autoload": { + "psr-4": { + "Symfony\\Bundle\\FrameworkBundle\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Provides a tight integration between Symfony components and the Symfony full-stack framework", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/framework-bundle/tree/v8.0.1" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2025-12-06T16:55:34+00:00" + }, + { + "name": "symfony/http-foundation", + "version": "v8.0.1", + "source": { + "type": "git", + "url": "https://github.com/symfony/http-foundation.git", + "reference": "3690740e2e8b19d877f20d4f10b7a489cddf0fe2" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/http-foundation/zipball/3690740e2e8b19d877f20d4f10b7a489cddf0fe2", + "reference": "3690740e2e8b19d877f20d4f10b7a489cddf0fe2", + "shasum": "" + }, + "require": { + "php": ">=8.4", + "symfony/polyfill-mbstring": "^1.1" + }, + "conflict": { + "doctrine/dbal": "<4.3" + }, + "require-dev": { + "doctrine/dbal": "^4.3", + "predis/predis": "^1.1|^2.0", + "symfony/cache": "^7.4|^8.0", + "symfony/clock": "^7.4|^8.0", + "symfony/dependency-injection": "^7.4|^8.0", + "symfony/expression-language": "^7.4|^8.0", + "symfony/http-kernel": "^7.4|^8.0", + "symfony/mime": "^7.4|^8.0", + "symfony/rate-limiter": "^7.4|^8.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\HttpFoundation\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Defines an object-oriented layer for the HTTP specification", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/http-foundation/tree/v8.0.1" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2025-12-07T11:23:24+00:00" + }, + { + "name": "symfony/http-kernel", + "version": "v8.0.2", + "source": { + "type": "git", + "url": "https://github.com/symfony/http-kernel.git", + "reference": "bcef77a3c8ae8934ce7067172e2a1a6491a62a7d" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/http-kernel/zipball/bcef77a3c8ae8934ce7067172e2a1a6491a62a7d", + "reference": "bcef77a3c8ae8934ce7067172e2a1a6491a62a7d", + "shasum": "" + }, + "require": { + "php": ">=8.4", + "psr/log": "^1|^2|^3", + "symfony/error-handler": "^7.4|^8.0", + "symfony/event-dispatcher": "^7.4|^8.0", + "symfony/http-foundation": "^7.4|^8.0", + "symfony/polyfill-ctype": "^1.8" + }, + "conflict": { + "symfony/flex": "<2.10", + "symfony/http-client-contracts": "<2.5", + "symfony/translation-contracts": "<2.5", + "twig/twig": "<3.21" + }, + "provide": { + "psr/log-implementation": "1.0|2.0|3.0" + }, + "require-dev": { + "psr/cache": "^1.0|^2.0|^3.0", + "symfony/browser-kit": "^7.4|^8.0", + "symfony/clock": "^7.4|^8.0", + "symfony/config": "^7.4|^8.0", + "symfony/console": "^7.4|^8.0", + "symfony/css-selector": "^7.4|^8.0", + "symfony/dependency-injection": "^7.4|^8.0", + "symfony/dom-crawler": "^7.4|^8.0", + "symfony/expression-language": "^7.4|^8.0", + "symfony/finder": "^7.4|^8.0", + "symfony/http-client-contracts": "^2.5|^3", + "symfony/process": "^7.4|^8.0", + "symfony/property-access": "^7.4|^8.0", + "symfony/routing": "^7.4|^8.0", + "symfony/serializer": "^7.4|^8.0", + "symfony/stopwatch": "^7.4|^8.0", + "symfony/translation": "^7.4|^8.0", + "symfony/translation-contracts": "^2.5|^3", + "symfony/uid": "^7.4|^8.0", + "symfony/validator": "^7.4|^8.0", + "symfony/var-dumper": "^7.4|^8.0", + "symfony/var-exporter": "^7.4|^8.0", + "twig/twig": "^3.21" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\HttpKernel\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Provides a structured process for converting a Request into a Response", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/http-kernel/tree/v8.0.2" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2025-12-08T07:59:34+00:00" + }, + { + "name": "symfony/options-resolver", + "version": "v8.0.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/options-resolver.git", + "reference": "d2b592535ffa6600c265a3893a7f7fd2bad82dd7" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/options-resolver/zipball/d2b592535ffa6600c265a3893a7f7fd2bad82dd7", + "reference": "d2b592535ffa6600c265a3893a7f7fd2bad82dd7", + "shasum": "" + }, + "require": { + "php": ">=8.4", + "symfony/deprecation-contracts": "^2.5|^3" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\OptionsResolver\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Provides an improved replacement for the array_replace PHP function", + "homepage": "https://symfony.com", + "keywords": [ + "config", + "configuration", + "options" + ], + "support": { + "source": "https://github.com/symfony/options-resolver/tree/v8.0.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2025-11-12T15:55:31+00:00" + }, + { + "name": "symfony/password-hasher", + "version": "v8.0.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/password-hasher.git", + "reference": "80e7c7e3fdb27214ba3af9fd449cb638aa98daa4" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/password-hasher/zipball/80e7c7e3fdb27214ba3af9fd449cb638aa98daa4", + "reference": "80e7c7e3fdb27214ba3af9fd449cb638aa98daa4", + "shasum": "" + }, + "require": { + "php": ">=8.4" + }, + "require-dev": { + "symfony/console": "^7.4|^8.0", + "symfony/security-core": "^7.4|^8.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\PasswordHasher\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Robin Chalas", + "email": "robin.chalas@gmail.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Provides password hashing utilities", + "homepage": "https://symfony.com", + "keywords": [ + "hashing", + "password" + ], + "support": { + "source": "https://github.com/symfony/password-hasher/tree/v8.0.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2025-08-13T16:50:52+00:00" + }, + { + "name": "symfony/polyfill-intl-grapheme", + "version": "v1.33.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-intl-grapheme.git", + "reference": "380872130d3a5dd3ace2f4010d95125fde5d5c70" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/380872130d3a5dd3ace2f4010d95125fde5d5c70", + "reference": "380872130d3a5dd3ace2f4010d95125fde5d5c70", + "shasum": "" + }, + "require": { + "php": ">=7.2" + }, + "suggest": { + "ext-intl": "For best performance" + }, + "type": "library", + "extra": { + "thanks": { + "url": "https://github.com/symfony/polyfill", + "name": "symfony/polyfill" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Intl\\Grapheme\\": "" + } + }, + "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" + ], + "support": { + "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.33.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2025-06-27T09:58:17+00:00" + }, + { + "name": "symfony/polyfill-intl-icu", + "version": "v1.33.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-intl-icu.git", + "reference": "bfc8fa13dbaf21d69114b0efcd72ab700fb04d0c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-intl-icu/zipball/bfc8fa13dbaf21d69114b0efcd72ab700fb04d0c", + "reference": "bfc8fa13dbaf21d69114b0efcd72ab700fb04d0c", + "shasum": "" + }, + "require": { + "php": ">=7.2" + }, + "suggest": { + "ext-intl": "For best performance and support of other locales than \"en\"" + }, + "type": "library", + "extra": { + "thanks": { + "url": "https://github.com/symfony/polyfill", + "name": "symfony/polyfill" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Intl\\Icu\\": "" + }, + "classmap": [ + "Resources/stubs" + ], + "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 polyfill for intl's ICU-related data and classes", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "icu", + "intl", + "polyfill", + "portable", + "shim" + ], + "support": { + "source": "https://github.com/symfony/polyfill-intl-icu/tree/v1.33.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2025-06-20T22:24:30+00:00" + }, + { + "name": "symfony/polyfill-intl-normalizer", + "version": "v1.33.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-intl-normalizer.git", + "reference": "3833d7255cc303546435cb650316bff708a1c75c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c", + "reference": "3833d7255cc303546435cb650316bff708a1c75c", + "shasum": "" + }, + "require": { + "php": ">=7.2" + }, + "suggest": { + "ext-intl": "For best performance" + }, + "type": "library", + "extra": { + "thanks": { + "url": "https://github.com/symfony/polyfill", + "name": "symfony/polyfill" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Intl\\Normalizer\\": "" + }, + "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" + ], + "support": { + "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.33.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-09-09T11:45:10+00:00" + }, + { + "name": "symfony/polyfill-mbstring", + "version": "v1.33.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-mbstring.git", + "reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/6d857f4d76bd4b343eac26d6b539585d2bc56493", + "reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493", + "shasum": "" + }, + "require": { + "ext-iconv": "*", + "php": ">=7.2" + }, + "provide": { + "ext-mbstring": "*" + }, + "suggest": { + "ext-mbstring": "For best performance" + }, + "type": "library", + "extra": { + "thanks": { + "url": "https://github.com/symfony/polyfill", + "name": "symfony/polyfill" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Mbstring\\": "" + } + }, + "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 the Mbstring extension", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "mbstring", + "polyfill", + "portable", + "shim" + ], + "support": { + "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.33.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-12-23T08:48:59+00:00" + }, + { + "name": "symfony/polyfill-php85", + "version": "v1.33.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-php85.git", + "reference": "d4e5fcd4ab3d998ab16c0db48e6cbb9a01993f91" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-php85/zipball/d4e5fcd4ab3d998ab16c0db48e6cbb9a01993f91", + "reference": "d4e5fcd4ab3d998ab16c0db48e6cbb9a01993f91", + "shasum": "" + }, + "require": { + "php": ">=7.2" + }, + "type": "library", + "extra": { + "thanks": { + "url": "https://github.com/symfony/polyfill", + "name": "symfony/polyfill" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Php85\\": "" + }, + "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 backporting some PHP 8.5+ features to lower PHP versions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "polyfill", + "portable", + "shim" + ], + "support": { + "source": "https://github.com/symfony/polyfill-php85/tree/v1.33.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2025-06-23T16:12:55+00:00" + }, + { + "name": "symfony/property-access", + "version": "v8.0.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/property-access.git", + "reference": "74df691dfb7f9b161b7d8cd1695bb918c68f16b5" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/property-access/zipball/74df691dfb7f9b161b7d8cd1695bb918c68f16b5", + "reference": "74df691dfb7f9b161b7d8cd1695bb918c68f16b5", + "shasum": "" + }, + "require": { + "php": ">=8.4", + "symfony/property-info": "^7.4|^8.0" + }, + "require-dev": { + "symfony/cache": "^7.4|^8.0", + "symfony/var-exporter": "^7.4|^8.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\PropertyAccess\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Provides functions to read and write from/to an object or array using a simple string notation", + "homepage": "https://symfony.com", + "keywords": [ + "access", + "array", + "extraction", + "index", + "injection", + "object", + "property", + "property-path", + "reflection" + ], + "support": { + "source": "https://github.com/symfony/property-access/tree/v8.0.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2025-08-12T11:06:01+00:00" + }, + { + "name": "symfony/property-info", + "version": "v8.0.1", + "source": { + "type": "git", + "url": "https://github.com/symfony/property-info.git", + "reference": "afbad53529b39e4c48a3584d87d0afef2375ee31" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/property-info/zipball/afbad53529b39e4c48a3584d87d0afef2375ee31", + "reference": "afbad53529b39e4c48a3584d87d0afef2375ee31", + "shasum": "" + }, + "require": { + "php": ">=8.4", + "symfony/string": "^7.4|^8.0", + "symfony/type-info": "^7.4.1|^8.0.1" + }, + "conflict": { + "phpdocumentor/reflection-docblock": "<5.2", + "phpdocumentor/type-resolver": "<1.5.1" + }, + "require-dev": { + "phpdocumentor/reflection-docblock": "^5.2", + "phpstan/phpdoc-parser": "^1.0|^2.0", + "symfony/cache": "^7.4|^8.0", + "symfony/dependency-injection": "^7.4|^8.0", + "symfony/serializer": "^7.4|^8.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\PropertyInfo\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Kévin Dunglas", + "email": "dunglas@gmail.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Extracts information about PHP class' properties using metadata of popular sources", + "homepage": "https://symfony.com", + "keywords": [ + "doctrine", + "phpdoc", + "property", + "symfony", + "type", + "validator" + ], + "support": { + "source": "https://github.com/symfony/property-info/tree/v8.0.1" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2025-12-05T14:08:45+00:00" + }, + { + "name": "symfony/routing", + "version": "v8.0.1", + "source": { + "type": "git", + "url": "https://github.com/symfony/routing.git", + "reference": "bc8fa314a61fb7c4190e964b18a5bd000d3b45ce" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/routing/zipball/bc8fa314a61fb7c4190e964b18a5bd000d3b45ce", + "reference": "bc8fa314a61fb7c4190e964b18a5bd000d3b45ce", + "shasum": "" + }, + "require": { + "php": ">=8.4", + "symfony/deprecation-contracts": "^2.5|^3" + }, + "require-dev": { + "psr/log": "^1|^2|^3", + "symfony/config": "^7.4|^8.0", + "symfony/dependency-injection": "^7.4|^8.0", + "symfony/expression-language": "^7.4|^8.0", + "symfony/http-foundation": "^7.4|^8.0", + "symfony/yaml": "^7.4|^8.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\Routing\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Maps an HTTP request to a set of configuration variables", + "homepage": "https://symfony.com", + "keywords": [ + "router", + "routing", + "uri", + "url" + ], + "support": { + "source": "https://github.com/symfony/routing/tree/v8.0.1" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2025-12-01T09:13:36+00:00" + }, + { + "name": "symfony/runtime", + "version": "v8.0.1", + "source": { + "type": "git", + "url": "https://github.com/symfony/runtime.git", + "reference": "73b34037b23db051048ba2873031ddb89be9f19d" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/runtime/zipball/73b34037b23db051048ba2873031ddb89be9f19d", + "reference": "73b34037b23db051048ba2873031ddb89be9f19d", + "shasum": "" + }, + "require": { + "composer-plugin-api": "^1.0|^2.0", + "php": ">=8.4" + }, + "conflict": { + "symfony/error-handler": "<7.4" + }, + "require-dev": { + "composer/composer": "^2.6", + "symfony/console": "^7.4|^8.0", + "symfony/dotenv": "^7.4|^8.0", + "symfony/http-foundation": "^7.4|^8.0", + "symfony/http-kernel": "^7.4|^8.0" + }, + "type": "composer-plugin", + "extra": { + "class": "Symfony\\Component\\Runtime\\Internal\\ComposerPlugin" + }, + "autoload": { + "psr-4": { + "Symfony\\Component\\Runtime\\": "", + "Symfony\\Runtime\\Symfony\\Component\\": "Internal/" + }, + "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": "Enables decoupling PHP applications from global state", + "homepage": "https://symfony.com", + "keywords": [ + "runtime" + ], + "support": { + "source": "https://github.com/symfony/runtime/tree/v8.0.1" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2025-12-05T14:08:45+00:00" + }, + { + "name": "symfony/security-bundle", + "version": "v8.0.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/security-bundle.git", + "reference": "fa06c8b5b8e7c1290827a7ac6d16f3203b54e1b2" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/security-bundle/zipball/fa06c8b5b8e7c1290827a7ac6d16f3203b54e1b2", + "reference": "fa06c8b5b8e7c1290827a7ac6d16f3203b54e1b2", + "shasum": "" + }, + "require": { + "composer-runtime-api": ">=2.1", + "ext-xml": "*", + "php": ">=8.4", + "symfony/clock": "^7.4|^8.0", + "symfony/config": "^7.4|^8.0", + "symfony/dependency-injection": "^7.4|^8.0", + "symfony/event-dispatcher": "^7.4|^8.0", + "symfony/http-foundation": "^7.4|^8.0", + "symfony/http-kernel": "^7.4|^8.0", + "symfony/password-hasher": "^7.4|^8.0", + "symfony/security-core": "^7.4|^8.0", + "symfony/security-csrf": "^7.4|^8.0", + "symfony/security-http": "^7.4|^8.0", + "symfony/service-contracts": "^2.5|^3" + }, + "require-dev": { + "symfony/asset": "^7.4|^8.0", + "symfony/browser-kit": "^7.4|^8.0", + "symfony/console": "^7.4|^8.0", + "symfony/css-selector": "^7.4|^8.0", + "symfony/dom-crawler": "^7.4|^8.0", + "symfony/expression-language": "^7.4|^8.0", + "symfony/form": "^7.4|^8.0", + "symfony/framework-bundle": "^7.4|^8.0", + "symfony/http-client": "^7.4|^8.0", + "symfony/ldap": "^7.4|^8.0", + "symfony/process": "^7.4|^8.0", + "symfony/rate-limiter": "^7.4|^8.0", + "symfony/runtime": "^7.4|^8.0", + "symfony/serializer": "^7.4|^8.0", + "symfony/translation": "^7.4|^8.0", + "symfony/twig-bridge": "^7.4|^8.0", + "symfony/twig-bundle": "^7.4|^8.0", + "symfony/validator": "^7.4|^8.0", + "symfony/yaml": "^7.4|^8.0", + "web-token/jwt-library": "^3.3.2|^4.0" + }, + "type": "symfony-bundle", + "autoload": { + "psr-4": { + "Symfony\\Bundle\\SecurityBundle\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Provides a tight integration of the Security component into the Symfony full-stack framework", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/security-bundle/tree/v8.0.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2025-11-14T10:04:00+00:00" + }, + { + "name": "symfony/security-core", + "version": "v8.0.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/security-core.git", + "reference": "a8e8cd91374f02c58e48d4d60ea30875179410b5" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/security-core/zipball/a8e8cd91374f02c58e48d4d60ea30875179410b5", + "reference": "a8e8cd91374f02c58e48d4d60ea30875179410b5", + "shasum": "" + }, + "require": { + "php": ">=8.4", + "symfony/event-dispatcher-contracts": "^2.5|^3", + "symfony/password-hasher": "^7.4|^8.0", + "symfony/service-contracts": "^2.5|^3" + }, + "require-dev": { + "psr/cache": "^1.0|^2.0|^3.0", + "psr/container": "^1.1|^2.0", + "psr/log": "^1|^2|^3", + "symfony/cache": "^7.4|^8.0", + "symfony/dependency-injection": "^7.4|^8.0", + "symfony/event-dispatcher": "^7.4|^8.0", + "symfony/expression-language": "^7.4|^8.0", + "symfony/http-foundation": "^7.4|^8.0", + "symfony/ldap": "^7.4|^8.0", + "symfony/string": "^7.4|^8.0", + "symfony/translation": "^7.4|^8.0", + "symfony/validator": "^7.4|^8.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\Security\\Core\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony Security Component - Core Library", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/security-core/tree/v8.0.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2025-11-27T08:09:45+00:00" + }, + { + "name": "symfony/security-csrf", + "version": "v8.0.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/security-csrf.git", + "reference": "ee98194163a0acd06a8079de32f06cc8e03884f6" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/security-csrf/zipball/ee98194163a0acd06a8079de32f06cc8e03884f6", + "reference": "ee98194163a0acd06a8079de32f06cc8e03884f6", + "shasum": "" + }, + "require": { + "php": ">=8.4", + "symfony/security-core": "^7.4|^8.0" + }, + "require-dev": { + "psr/log": "^1|^2|^3", + "symfony/http-foundation": "^7.4|^8.0", + "symfony/http-kernel": "^7.4|^8.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\Security\\Csrf\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony Security Component - CSRF Library", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/security-csrf/tree/v8.0.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2025-11-27T08:09:45+00:00" + }, + { + "name": "symfony/security-http", + "version": "v8.0.1", + "source": { + "type": "git", + "url": "https://github.com/symfony/security-http.git", + "reference": "6bd07ace6a4cf7f082bf6cf30f084068bdde07c8" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/security-http/zipball/6bd07ace6a4cf7f082bf6cf30f084068bdde07c8", + "reference": "6bd07ace6a4cf7f082bf6cf30f084068bdde07c8", + "shasum": "" + }, + "require": { + "php": ">=8.4", + "symfony/http-foundation": "^7.4|^8.0", + "symfony/http-kernel": "^7.4|^8.0", + "symfony/polyfill-mbstring": "^1.0", + "symfony/property-access": "^7.4|^8.0", + "symfony/security-core": "^7.4|^8.0", + "symfony/service-contracts": "^2.5|^3" + }, + "conflict": { + "symfony/http-client-contracts": "<3.0" + }, + "require-dev": { + "psr/log": "^1|^2|^3", + "symfony/cache": "^7.4|^8.0", + "symfony/clock": "^7.4|^8.0", + "symfony/expression-language": "^7.4|^8.0", + "symfony/http-client": "^7.4|^8.0", + "symfony/http-client-contracts": "^3.0", + "symfony/rate-limiter": "^7.4|^8.0", + "symfony/routing": "^7.4|^8.0", + "symfony/security-csrf": "^7.4|^8.0", + "symfony/translation": "^7.4|^8.0", + "web-token/jwt-library": "^3.3.2|^4.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\Security\\Http\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony Security Component - HTTP Integration", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/security-http/tree/v8.0.1" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2025-12-05T14:08:45+00:00" + }, + { + "name": "symfony/service-contracts", + "version": "v3.6.1", + "source": { + "type": "git", + "url": "https://github.com/symfony/service-contracts.git", + "reference": "45112560a3ba2d715666a509a0bc9521d10b6c43" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/service-contracts/zipball/45112560a3ba2d715666a509a0bc9521d10b6c43", + "reference": "45112560a3ba2d715666a509a0bc9521d10b6c43", + "shasum": "" + }, + "require": { + "php": ">=8.1", + "psr/container": "^1.1|^2.0", + "symfony/deprecation-contracts": "^2.5|^3" + }, + "conflict": { + "ext-psr": "<1.1|>=2" + }, + "type": "library", + "extra": { + "thanks": { + "url": "https://github.com/symfony/contracts", + "name": "symfony/contracts" + }, + "branch-alias": { + "dev-main": "3.6-dev" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Contracts\\Service\\": "" + }, + "exclude-from-classmap": [ + "/Test/" + ] + }, + "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": "Generic abstractions related to writing services", + "homepage": "https://symfony.com", + "keywords": [ + "abstractions", + "contracts", + "decoupling", + "interfaces", + "interoperability", + "standards" + ], + "support": { + "source": "https://github.com/symfony/service-contracts/tree/v3.6.1" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2025-07-15T11:30:57+00:00" + }, + { + "name": "symfony/stopwatch", + "version": "v8.0.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/stopwatch.git", + "reference": "67df1914c6ccd2d7b52f70d40cf2aea02159d942" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/stopwatch/zipball/67df1914c6ccd2d7b52f70d40cf2aea02159d942", + "reference": "67df1914c6ccd2d7b52f70d40cf2aea02159d942", + "shasum": "" + }, + "require": { + "php": ">=8.4", + "symfony/service-contracts": "^2.5|^3" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\Stopwatch\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Provides a way to profile code", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/stopwatch/tree/v8.0.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2025-08-04T07:36:47+00:00" + }, + { + "name": "symfony/string", + "version": "v8.0.1", + "source": { + "type": "git", + "url": "https://github.com/symfony/string.git", + "reference": "ba65a969ac918ce0cc3edfac6cdde847eba231dc" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/string/zipball/ba65a969ac918ce0cc3edfac6cdde847eba231dc", + "reference": "ba65a969ac918ce0cc3edfac6cdde847eba231dc", + "shasum": "" + }, + "require": { + "php": ">=8.4", + "symfony/polyfill-ctype": "^1.8", + "symfony/polyfill-intl-grapheme": "^1.33", + "symfony/polyfill-intl-normalizer": "^1.0", + "symfony/polyfill-mbstring": "^1.0" + }, + "conflict": { + "symfony/translation-contracts": "<2.5" + }, + "require-dev": { + "symfony/emoji": "^7.4|^8.0", + "symfony/http-client": "^7.4|^8.0", + "symfony/intl": "^7.4|^8.0", + "symfony/translation-contracts": "^2.5|^3.0", + "symfony/var-exporter": "^7.4|^8.0" + }, + "type": "library", + "autoload": { + "files": [ + "Resources/functions.php" + ], + "psr-4": { + "Symfony\\Component\\String\\": "" + }, + "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": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way", + "homepage": "https://symfony.com", + "keywords": [ + "grapheme", + "i18n", + "string", + "unicode", + "utf-8", + "utf8" + ], + "support": { + "source": "https://github.com/symfony/string/tree/v8.0.1" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2025-12-01T09:13:36+00:00" + }, + { + "name": "symfony/translation", + "version": "v8.0.1", + "source": { + "type": "git", + "url": "https://github.com/symfony/translation.git", + "reference": "770e3b8b0ba8360958abedcabacd4203467333ca" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/translation/zipball/770e3b8b0ba8360958abedcabacd4203467333ca", + "reference": "770e3b8b0ba8360958abedcabacd4203467333ca", + "shasum": "" + }, + "require": { + "php": ">=8.4", + "symfony/polyfill-mbstring": "^1.0", + "symfony/translation-contracts": "^3.6.1" + }, + "conflict": { + "nikic/php-parser": "<5.0", + "symfony/http-client-contracts": "<2.5", + "symfony/service-contracts": "<2.5" + }, + "provide": { + "symfony/translation-implementation": "2.3|3.0" + }, + "require-dev": { + "nikic/php-parser": "^5.0", + "psr/log": "^1|^2|^3", + "symfony/config": "^7.4|^8.0", + "symfony/console": "^7.4|^8.0", + "symfony/dependency-injection": "^7.4|^8.0", + "symfony/finder": "^7.4|^8.0", + "symfony/http-client-contracts": "^2.5|^3.0", + "symfony/http-kernel": "^7.4|^8.0", + "symfony/intl": "^7.4|^8.0", + "symfony/polyfill-intl-icu": "^1.21", + "symfony/routing": "^7.4|^8.0", + "symfony/service-contracts": "^2.5|^3", + "symfony/yaml": "^7.4|^8.0" + }, + "type": "library", + "autoload": { + "files": [ + "Resources/functions.php" + ], + "psr-4": { + "Symfony\\Component\\Translation\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Provides tools to internationalize your application", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/translation/tree/v8.0.1" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2025-12-01T09:13:36+00:00" + }, + { + "name": "symfony/translation-contracts", + "version": "v3.6.1", + "source": { + "type": "git", + "url": "https://github.com/symfony/translation-contracts.git", + "reference": "65a8bc82080447fae78373aa10f8d13b38338977" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/65a8bc82080447fae78373aa10f8d13b38338977", + "reference": "65a8bc82080447fae78373aa10f8d13b38338977", + "shasum": "" + }, + "require": { + "php": ">=8.1" + }, + "type": "library", + "extra": { + "thanks": { + "url": "https://github.com/symfony/contracts", + "name": "symfony/contracts" + }, + "branch-alias": { + "dev-main": "3.6-dev" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Contracts\\Translation\\": "" + }, + "exclude-from-classmap": [ + "/Test/" + ] + }, + "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": "Generic abstractions related to translation", + "homepage": "https://symfony.com", + "keywords": [ + "abstractions", + "contracts", + "decoupling", + "interfaces", + "interoperability", + "standards" + ], + "support": { + "source": "https://github.com/symfony/translation-contracts/tree/v3.6.1" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2025-07-15T13:41:35+00:00" + }, + { + "name": "symfony/twig-bridge", + "version": "v8.0.1", + "source": { + "type": "git", + "url": "https://github.com/symfony/twig-bridge.git", + "reference": "a5d2d4fdd63a0c96fe9dd28e7c3cf21512689f7b" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/twig-bridge/zipball/a5d2d4fdd63a0c96fe9dd28e7c3cf21512689f7b", + "reference": "a5d2d4fdd63a0c96fe9dd28e7c3cf21512689f7b", + "shasum": "" + }, + "require": { + "php": ">=8.4", + "symfony/translation-contracts": "^2.5|^3", + "twig/twig": "^3.21" + }, + "conflict": { + "phpdocumentor/reflection-docblock": "<3.2.2", + "phpdocumentor/type-resolver": "<1.4.0" + }, + "require-dev": { + "egulias/email-validator": "^2.1.10|^3|^4", + "league/html-to-markdown": "^5.0", + "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0", + "symfony/asset": "^7.4|^8.0", + "symfony/asset-mapper": "^7.4|^8.0", + "symfony/console": "^7.4|^8.0", + "symfony/dependency-injection": "^7.4|^8.0", + "symfony/emoji": "^7.4|^8.0", + "symfony/expression-language": "^7.4|^8.0", + "symfony/finder": "^7.4|^8.0", + "symfony/form": "^7.4.1|^8.0.1", + "symfony/html-sanitizer": "^7.4|^8.0", + "symfony/http-foundation": "^7.4|^8.0", + "symfony/http-kernel": "^7.4|^8.0", + "symfony/intl": "^7.4|^8.0", + "symfony/mime": "^7.4|^8.0", + "symfony/polyfill-intl-icu": "^1.0", + "symfony/property-info": "^7.4|^8.0", + "symfony/routing": "^7.4|^8.0", + "symfony/security-acl": "^2.8|^3.0", + "symfony/security-core": "^7.4|^8.0", + "symfony/security-csrf": "^7.4|^8.0", + "symfony/security-http": "^7.4|^8.0", + "symfony/serializer": "^7.4|^8.0", + "symfony/stopwatch": "^7.4|^8.0", + "symfony/translation": "^7.4|^8.0", + "symfony/validator": "^7.4|^8.0", + "symfony/web-link": "^7.4|^8.0", + "symfony/workflow": "^7.4|^8.0", + "symfony/yaml": "^7.4|^8.0", + "twig/cssinliner-extra": "^3", + "twig/inky-extra": "^3", + "twig/markdown-extra": "^3" + }, + "type": "symfony-bridge", + "autoload": { + "psr-4": { + "Symfony\\Bridge\\Twig\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Provides integration for Twig with various Symfony components", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/twig-bridge/tree/v8.0.1" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2025-12-05T14:08:45+00:00" + }, + { + "name": "symfony/twig-bundle", + "version": "v8.0.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/twig-bundle.git", + "reference": "4505b860fb07951521ae55eec43007eef67222a5" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/twig-bundle/zipball/4505b860fb07951521ae55eec43007eef67222a5", + "reference": "4505b860fb07951521ae55eec43007eef67222a5", + "shasum": "" + }, + "require": { + "composer-runtime-api": ">=2.1", + "php": ">=8.4", + "symfony/config": "^7.4|^8.0", + "symfony/dependency-injection": "^7.4|^8.0", + "symfony/http-foundation": "^7.4|^8.0", + "symfony/http-kernel": "^7.4|^8.0", + "symfony/twig-bridge": "^7.4|^8.0" + }, + "require-dev": { + "symfony/asset": "^7.4|^8.0", + "symfony/expression-language": "^7.4|^8.0", + "symfony/finder": "^7.4|^8.0", + "symfony/form": "^7.4|^8.0", + "symfony/framework-bundle": "^7.4|^8.0", + "symfony/routing": "^7.4|^8.0", + "symfony/runtime": "^7.4|^8.0", + "symfony/stopwatch": "^7.4|^8.0", + "symfony/translation": "^7.4|^8.0", + "symfony/web-link": "^7.4|^8.0", + "symfony/yaml": "^7.4|^8.0" + }, + "type": "symfony-bundle", + "autoload": { + "psr-4": { + "Symfony\\Bundle\\TwigBundle\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Provides a tight integration of Twig into the Symfony full-stack framework", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/twig-bundle/tree/v8.0.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2025-10-07T12:38:08+00:00" + }, + { + "name": "symfony/type-info", + "version": "v8.0.1", + "source": { + "type": "git", + "url": "https://github.com/symfony/type-info.git", + "reference": "bb091cec1f70383538c7d000699781813f8d1a6a" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/type-info/zipball/bb091cec1f70383538c7d000699781813f8d1a6a", + "reference": "bb091cec1f70383538c7d000699781813f8d1a6a", + "shasum": "" + }, + "require": { + "php": ">=8.4", + "psr/container": "^1.1|^2.0" + }, + "conflict": { + "phpstan/phpdoc-parser": "<1.30" + }, + "require-dev": { + "phpstan/phpdoc-parser": "^1.30|^2.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\TypeInfo\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Mathias Arlaud", + "email": "mathias.arlaud@gmail.com" + }, + { + "name": "Baptiste LEDUC", + "email": "baptiste.leduc@gmail.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Extracts PHP types information.", + "homepage": "https://symfony.com", + "keywords": [ + "PHPStan", + "phpdoc", + "symfony", + "type" + ], + "support": { + "source": "https://github.com/symfony/type-info/tree/v8.0.1" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2025-12-05T14:08:45+00:00" + }, + { + "name": "symfony/validator", + "version": "v8.0.2", + "source": { + "type": "git", + "url": "https://github.com/symfony/validator.git", + "reference": "9a98d365b29a4f6116a2e2b6ca62d8a7179a86e1" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/validator/zipball/9a98d365b29a4f6116a2e2b6ca62d8a7179a86e1", + "reference": "9a98d365b29a4f6116a2e2b6ca62d8a7179a86e1", + "shasum": "" + }, + "require": { + "php": ">=8.4", + "symfony/polyfill-ctype": "^1.8", + "symfony/polyfill-mbstring": "^1.0", + "symfony/translation-contracts": "^2.5|^3" + }, + "conflict": { + "doctrine/lexer": "<1.1", + "symfony/doctrine-bridge": "<7.4" + }, + "require-dev": { + "egulias/email-validator": "^2.1.10|^3|^4", + "symfony/cache": "^7.4|^8.0", + "symfony/config": "^7.4|^8.0", + "symfony/console": "^7.4|^8.0", + "symfony/dependency-injection": "^7.4|^8.0", + "symfony/expression-language": "^7.4|^8.0", + "symfony/finder": "^7.4|^8.0", + "symfony/http-client": "^7.4|^8.0", + "symfony/http-foundation": "^7.4|^8.0", + "symfony/http-kernel": "^7.4|^8.0", + "symfony/intl": "^7.4|^8.0", + "symfony/mime": "^7.4|^8.0", + "symfony/process": "^7.4|^8.0", + "symfony/property-access": "^7.4|^8.0", + "symfony/property-info": "^7.4|^8.0", + "symfony/string": "^7.4|^8.0", + "symfony/translation": "^7.4|^8.0", + "symfony/type-info": "^7.4|^8.0", + "symfony/yaml": "^7.4|^8.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\Validator\\": "" + }, + "exclude-from-classmap": [ + "/Tests/", + "/Resources/bin/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Provides tools to validate values", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/validator/tree/v8.0.2" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2025-12-08T06:57:48+00:00" + }, + { + "name": "symfony/var-dumper", + "version": "v8.0.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/var-dumper.git", + "reference": "d2a2476c93b58ac5292145e9fac1ff76a21d1ce2" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/var-dumper/zipball/d2a2476c93b58ac5292145e9fac1ff76a21d1ce2", + "reference": "d2a2476c93b58ac5292145e9fac1ff76a21d1ce2", + "shasum": "" + }, + "require": { + "php": ">=8.4", + "symfony/polyfill-mbstring": "^1.0" + }, + "conflict": { + "symfony/console": "<7.4", + "symfony/error-handler": "<7.4" + }, + "require-dev": { + "symfony/console": "^7.4|^8.0", + "symfony/http-kernel": "^7.4|^8.0", + "symfony/process": "^7.4|^8.0", + "symfony/uid": "^7.4|^8.0", + "twig/twig": "^3.12" + }, + "bin": [ + "Resources/bin/var-dump-server" + ], + "type": "library", + "autoload": { + "files": [ + "Resources/functions/dump.php" + ], + "psr-4": { + "Symfony\\Component\\VarDumper\\": "" + }, + "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": "Provides mechanisms for walking through any arbitrary PHP variable", + "homepage": "https://symfony.com", + "keywords": [ + "debug", + "dump" + ], + "support": { + "source": "https://github.com/symfony/var-dumper/tree/v8.0.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2025-10-28T09:34:19+00:00" + }, + { + "name": "symfony/var-exporter", + "version": "v8.0.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/var-exporter.git", + "reference": "7345f46c251f2eb27c7b3ebdb5bb076b3ffcae04" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/var-exporter/zipball/7345f46c251f2eb27c7b3ebdb5bb076b3ffcae04", + "reference": "7345f46c251f2eb27c7b3ebdb5bb076b3ffcae04", + "shasum": "" + }, + "require": { + "php": ">=8.4" + }, + "require-dev": { + "symfony/property-access": "^7.4|^8.0", + "symfony/serializer": "^7.4|^8.0", + "symfony/var-dumper": "^7.4|^8.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\VarExporter\\": "" + }, + "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": "Allows exporting any serializable PHP data structure to plain PHP code", + "homepage": "https://symfony.com", + "keywords": [ + "clone", + "construct", + "export", + "hydrate", + "instantiate", + "lazy-loading", + "proxy", + "serialize" + ], + "support": { + "source": "https://github.com/symfony/var-exporter/tree/v8.0.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2025-11-05T18:53:00+00:00" + }, + { + "name": "symfony/yaml", + "version": "v8.0.1", + "source": { + "type": "git", + "url": "https://github.com/symfony/yaml.git", + "reference": "7a1a90ba1df6e821a6b53c4cabdc32a56cabfb14" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/yaml/zipball/7a1a90ba1df6e821a6b53c4cabdc32a56cabfb14", + "reference": "7a1a90ba1df6e821a6b53c4cabdc32a56cabfb14", + "shasum": "" + }, + "require": { + "php": ">=8.4", + "symfony/polyfill-ctype": "^1.8" + }, + "conflict": { + "symfony/console": "<7.4" + }, + "require-dev": { + "symfony/console": "^7.4|^8.0" + }, + "bin": [ + "Resources/bin/yaml-lint" + ], + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\Yaml\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Loads and dumps YAML files", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/yaml/tree/v8.0.1" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2025-12-04T18:17:06+00:00" + }, + { + "name": "twig/twig", + "version": "v3.22.2", + "source": { + "type": "git", + "url": "https://github.com/twigphp/Twig.git", + "reference": "946ddeafa3c9f4ce279d1f34051af041db0e16f2" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/twigphp/Twig/zipball/946ddeafa3c9f4ce279d1f34051af041db0e16f2", + "reference": "946ddeafa3c9f4ce279d1f34051af041db0e16f2", + "shasum": "" + }, + "require": { + "php": ">=8.1.0", + "symfony/deprecation-contracts": "^2.5|^3", + "symfony/polyfill-ctype": "^1.8", + "symfony/polyfill-mbstring": "^1.3" + }, + "require-dev": { + "phpstan/phpstan": "^2.0", + "psr/container": "^1.0|^2.0", + "symfony/phpunit-bridge": "^5.4.9|^6.4|^7.0" + }, + "type": "library", + "autoload": { + "files": [ + "src/Resources/core.php", + "src/Resources/debug.php", + "src/Resources/escaper.php", + "src/Resources/string_loader.php" + ], + "psr-4": { + "Twig\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com", + "homepage": "http://fabien.potencier.org", + "role": "Lead Developer" + }, + { + "name": "Twig Team", + "role": "Contributors" + }, + { + "name": "Armin Ronacher", + "email": "armin.ronacher@active-4.com", + "role": "Project Founder" + } + ], + "description": "Twig, the flexible, fast, and secure template language for PHP", + "homepage": "https://twig.symfony.com", + "keywords": [ + "templating" + ], + "support": { + "issues": "https://github.com/twigphp/Twig/issues", + "source": "https://github.com/twigphp/Twig/tree/v3.22.2" + }, + "funding": [ + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/twig/twig", + "type": "tidelift" + } + ], + "time": "2025-12-14T11:28:47+00:00" + } + ], + "packages-dev": [ + { + "name": "nikic/php-parser", + "version": "v5.7.0", + "source": { + "type": "git", + "url": "https://github.com/nikic/PHP-Parser.git", + "reference": "dca41cd15c2ac9d055ad70dbfd011130757d1f82" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/dca41cd15c2ac9d055ad70dbfd011130757d1f82", + "reference": "dca41cd15c2ac9d055ad70dbfd011130757d1f82", + "shasum": "" + }, + "require": { + "ext-ctype": "*", + "ext-json": "*", + "ext-tokenizer": "*", + "php": ">=7.4" + }, + "require-dev": { + "ircmaxell/php-yacc": "^0.0.7", + "phpunit/phpunit": "^9.0" + }, + "bin": [ + "bin/php-parse" + ], + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "5.x-dev" + } + }, + "autoload": { + "psr-4": { + "PhpParser\\": "lib/PhpParser" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Nikita Popov" + } + ], + "description": "A PHP parser written in PHP", + "keywords": [ + "parser", + "php" + ], + "support": { + "issues": "https://github.com/nikic/PHP-Parser/issues", + "source": "https://github.com/nikic/PHP-Parser/tree/v5.7.0" + }, + "time": "2025-12-06T11:56:16+00:00" + }, + { + "name": "symfony/maker-bundle", + "version": "v1.65.1", + "source": { + "type": "git", + "url": "https://github.com/symfony/maker-bundle.git", + "reference": "eba30452d212769c9a5bcf0716959fd8ba1e54e3" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/maker-bundle/zipball/eba30452d212769c9a5bcf0716959fd8ba1e54e3", + "reference": "eba30452d212769c9a5bcf0716959fd8ba1e54e3", + "shasum": "" + }, + "require": { + "doctrine/inflector": "^2.0", + "nikic/php-parser": "^5.0", + "php": ">=8.1", + "symfony/config": "^6.4|^7.0|^8.0", + "symfony/console": "^6.4|^7.0|^8.0", + "symfony/dependency-injection": "^6.4|^7.0|^8.0", + "symfony/deprecation-contracts": "^2.2|^3", + "symfony/filesystem": "^6.4|^7.0|^8.0", + "symfony/finder": "^6.4|^7.0|^8.0", + "symfony/framework-bundle": "^6.4|^7.0|^8.0", + "symfony/http-kernel": "^6.4|^7.0|^8.0", + "symfony/process": "^6.4|^7.0|^8.0" + }, + "conflict": { + "doctrine/doctrine-bundle": "<2.10", + "doctrine/orm": "<2.15" + }, + "require-dev": { + "composer/semver": "^3.0", + "doctrine/doctrine-bundle": "^2.5.0|^3.0.0", + "doctrine/orm": "^2.15|^3", + "doctrine/persistence": "^3.1|^4.0", + "symfony/http-client": "^6.4|^7.0|^8.0", + "symfony/phpunit-bridge": "^6.4.1|^7.0|^8.0", + "symfony/security-core": "^6.4|^7.0|^8.0", + "symfony/security-http": "^6.4|^7.0|^8.0", + "symfony/yaml": "^6.4|^7.0|^8.0", + "twig/twig": "^3.0|^4.x-dev" + }, + "type": "symfony-bundle", + "extra": { + "branch-alias": { + "dev-main": "1.x-dev" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Bundle\\MakerBundle\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony Maker helps you create empty commands, controllers, form classes, tests and more so you can forget about writing boilerplate code.", + "homepage": "https://symfony.com/doc/current/bundles/SymfonyMakerBundle/index.html", + "keywords": [ + "code generator", + "dev", + "generator", + "scaffold", + "scaffolding" + ], + "support": { + "issues": "https://github.com/symfony/maker-bundle/issues", + "source": "https://github.com/symfony/maker-bundle/tree/v1.65.1" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2025-12-02T07:14:37+00:00" + }, + { + "name": "symfony/process", + "version": "v8.0.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/process.git", + "reference": "a0a750500c4ce900d69ba4e9faf16f82c10ee149" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/process/zipball/a0a750500c4ce900d69ba4e9faf16f82c10ee149", + "reference": "a0a750500c4ce900d69ba4e9faf16f82c10ee149", + "shasum": "" + }, + "require": { + "php": ">=8.4" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\Process\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Executes commands in sub-processes", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/process/tree/v8.0.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2025-10-16T16:25:44+00:00" + }, + { + "name": "symfony/web-profiler-bundle", + "version": "v8.0.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/web-profiler-bundle.git", + "reference": "82503c06aa67202092a3bc06c6ea6aaec53a2fd2" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/web-profiler-bundle/zipball/82503c06aa67202092a3bc06c6ea6aaec53a2fd2", + "reference": "82503c06aa67202092a3bc06c6ea6aaec53a2fd2", + "shasum": "" + }, + "require": { + "composer-runtime-api": ">=2.1", + "php": ">=8.4", + "symfony/config": "^7.4|^8.0", + "symfony/framework-bundle": "^7.4|^8.0", + "symfony/http-kernel": "^7.4|^8.0", + "symfony/routing": "^7.4|^8.0", + "symfony/twig-bundle": "^7.4|^8.0" + }, + "conflict": { + "symfony/serializer": "<7.4", + "symfony/workflow": "<7.4" + }, + "require-dev": { + "symfony/browser-kit": "^7.4|^8.0", + "symfony/console": "^7.4|^8.0", + "symfony/css-selector": "^7.4|^8.0", + "symfony/runtime": "^7.4|^8.0", + "symfony/stopwatch": "^7.4|^8.0" + }, + "type": "symfony-bundle", + "autoload": { + "psr-4": { + "Symfony\\Bundle\\WebProfilerBundle\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Provides a development tool that gives detailed information about the execution of any request", + "homepage": "https://symfony.com", + "keywords": [ + "dev" + ], + "support": { + "source": "https://github.com/symfony/web-profiler-bundle/tree/v8.0.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2025-11-20T12:42:53+00:00" + } + ], + "aliases": [], + "minimum-stability": "stable", + "stability-flags": {}, + "prefer-stable": true, + "prefer-lowest": false, + "platform": { + "php": ">=8.4", + "ext-ctype": "*", + "ext-iconv": "*" + }, + "platform-dev": {}, + "plugin-api-version": "2.6.0" +} diff --git a/config/bundles.php b/config/bundles.php new file mode 100755 index 0000000..ceed9f1 --- /dev/null +++ b/config/bundles.php @@ -0,0 +1,11 @@ + ['all' => true], + Symfony\Bundle\MakerBundle\MakerBundle::class => ['dev' => true], + Symfony\Bundle\TwigBundle\TwigBundle::class => ['all' => true], + Doctrine\Bundle\DoctrineBundle\DoctrineBundle::class => ['all' => true], + Doctrine\Bundle\MigrationsBundle\DoctrineMigrationsBundle::class => ['all' => true], + Symfony\Bundle\SecurityBundle\SecurityBundle::class => ['all' => true], + Symfony\Bundle\WebProfilerBundle\WebProfilerBundle::class => ['dev' => true, 'test' => true], +]; diff --git a/config/packages/cache.yaml b/config/packages/cache.yaml new file mode 100755 index 0000000..6899b72 --- /dev/null +++ b/config/packages/cache.yaml @@ -0,0 +1,19 @@ +framework: + cache: + # Unique name of your app: used to compute stable namespaces for cache keys. + #prefix_seed: your_vendor_name/app_name + + # The "app" cache stores to the filesystem by default. + # The data in this cache should persist between deploys. + # Other options include: + + # Redis + #app: cache.adapter.redis + #default_redis_provider: redis://localhost + + # APCu (not recommended with heavy random-write workloads as memory fragmentation can cause perf issues) + #app: cache.adapter.apcu + + # Namespaced pools use the above "app" backend by default + #pools: + #my.dedicated.cache: null diff --git a/config/packages/csrf.yaml b/config/packages/csrf.yaml new file mode 100644 index 0000000..40d4040 --- /dev/null +++ b/config/packages/csrf.yaml @@ -0,0 +1,11 @@ +# Enable stateless CSRF protection for forms and logins/logouts +framework: + form: + csrf_protection: + token_id: submit + + csrf_protection: + stateless_token_ids: + - submit + - authenticate + - logout diff --git a/config/packages/doctrine.yaml b/config/packages/doctrine.yaml new file mode 100755 index 0000000..6c57caf --- /dev/null +++ b/config/packages/doctrine.yaml @@ -0,0 +1,48 @@ +doctrine: + dbal: + url: '%env(resolve:DATABASE_URL)%' + + # IMPORTANT: You MUST configure your server version, + # either here or in the DATABASE_URL env var (see .env file) + #server_version: '16' + + profiling_collect_backtrace: '%kernel.debug%' + orm: + validate_xml_mapping: true + naming_strategy: doctrine.orm.naming_strategy.underscore_number_aware + identity_generation_preferences: + Doctrine\DBAL\Platforms\PostgreSQLPlatform: identity + auto_mapping: true + mappings: + App: + type: attribute + is_bundle: false + dir: '%kernel.project_dir%/src/Entity' + prefix: 'App\Entity' + alias: App + controller_resolver: + auto_mapping: false + +when@test: + doctrine: + dbal: + # "TEST_TOKEN" is typically set by ParaTest + dbname_suffix: '_test%env(default::TEST_TOKEN)%' + +when@prod: + doctrine: + orm: + query_cache_driver: + type: pool + pool: doctrine.system_cache_pool + result_cache_driver: + type: pool + pool: doctrine.result_cache_pool + + framework: + cache: + pools: + doctrine.result_cache_pool: + adapter: cache.app + doctrine.system_cache_pool: + adapter: cache.system diff --git a/config/packages/doctrine_migrations.yaml b/config/packages/doctrine_migrations.yaml new file mode 100755 index 0000000..29231d9 --- /dev/null +++ b/config/packages/doctrine_migrations.yaml @@ -0,0 +1,6 @@ +doctrine_migrations: + migrations_paths: + # namespace is arbitrary but should be different from App\Migrations + # as migrations classes should NOT be autoloaded + 'DoctrineMigrations': '%kernel.project_dir%/migrations' + enable_profiler: false diff --git a/config/packages/framework.yaml b/config/packages/framework.yaml new file mode 100755 index 0000000..7e1ee1f --- /dev/null +++ b/config/packages/framework.yaml @@ -0,0 +1,15 @@ +# see https://symfony.com/doc/current/reference/configuration/framework.html +framework: + secret: '%env(APP_SECRET)%' + + # Note that the session will be started ONLY if you read or write from it. + session: true + + #esi: true + #fragments: true + +when@test: + framework: + test: true + session: + storage_factory_id: session.storage.factory.mock_file diff --git a/config/packages/property_info.yaml b/config/packages/property_info.yaml new file mode 100755 index 0000000..dd31b9d --- /dev/null +++ b/config/packages/property_info.yaml @@ -0,0 +1,3 @@ +framework: + property_info: + with_constructor_extractor: true diff --git a/config/packages/routing.yaml b/config/packages/routing.yaml new file mode 100755 index 0000000..0f34f87 --- /dev/null +++ b/config/packages/routing.yaml @@ -0,0 +1,10 @@ +framework: + router: + # Configure how to generate URLs in non-HTTP contexts, such as CLI commands. + # See https://symfony.com/doc/current/routing.html#generating-urls-in-commands + default_uri: '%env(DEFAULT_URI)%' + +when@prod: + framework: + router: + strict_requirements: null diff --git a/config/packages/security.yaml b/config/packages/security.yaml new file mode 100755 index 0000000..480e2d3 --- /dev/null +++ b/config/packages/security.yaml @@ -0,0 +1,42 @@ +security: + # https://symfony.com/doc/current/security.html#registering-the-user-hashing-passwords + password_hashers: + Symfony\Component\Security\Core\User\PasswordAuthenticatedUserInterface: 'auto' + # https://symfony.com/doc/current/security.html#loading-the-user-the-user-provider + providers: + app_user_provider: + entity: + class: App\Entity\User + property: email + firewalls: + dev: + pattern: ^/(_(profiler|wdt)|css|images|js)/ + security: false + main: + lazy: true + provider: app_user_provider + custom_authenticator: App\Security\LoginAuthenticator + logout: + path: security_logout + remember_me: + secret: '%kernel.secret%' # required + always_remember_me: true + # Easy way to control access for large sections of your site + # Note: Only the *first* access control that matches will be used + access_control: + - { path: ^/authentication, roles: PUBLIC_ACCESS } + - { path: ^/demo, roles: PUBLIC_ACCESS } + - { path: ^/, roles: ROLE_USER } + +when@test: + security: + password_hashers: + # By default, password hashers are resource intensive and take time. This is + # important to generate secure password hashes. In tests however, secure hashes + # are not important, waste resources and increase test times. The following + # reduces the work factor to the lowest possible values. + Symfony\Component\Security\Core\User\PasswordAuthenticatedUserInterface: + algorithm: auto + cost: 4 # Lowest possible value for bcrypt + time_cost: 3 # Lowest possible value for argon + memory_cost: 10 # Lowest possible value for argon \ No newline at end of file diff --git a/config/packages/translation.yaml b/config/packages/translation.yaml new file mode 100755 index 0000000..490bfc2 --- /dev/null +++ b/config/packages/translation.yaml @@ -0,0 +1,5 @@ +framework: + default_locale: en + translator: + default_path: '%kernel.project_dir%/translations' + providers: diff --git a/config/packages/twig.yaml b/config/packages/twig.yaml new file mode 100755 index 0000000..f0980aa --- /dev/null +++ b/config/packages/twig.yaml @@ -0,0 +1,7 @@ +twig: + file_name_pattern: '*.twig' + form_themes: ['bootstrap_4_layout.html.twig'] + +when@test: + twig: + strict_variables: true diff --git a/config/packages/validator.yaml b/config/packages/validator.yaml new file mode 100755 index 0000000..dd47a6a --- /dev/null +++ b/config/packages/validator.yaml @@ -0,0 +1,11 @@ +framework: + validation: + # Enables validator auto-mapping support. + # For instance, basic validation constraints will be inferred from Doctrine's metadata. + #auto_mapping: + # App\Entity\: [] + +when@test: + framework: + validation: + not_compromised_password: false diff --git a/config/packages/web_profiler.yaml b/config/packages/web_profiler.yaml new file mode 100755 index 0000000..0eac3c9 --- /dev/null +++ b/config/packages/web_profiler.yaml @@ -0,0 +1,13 @@ +when@dev: + web_profiler: + toolbar: true + + framework: + profiler: + collect_serializer_data: true + +when@test: + framework: + profiler: + collect: false + collect_serializer_data: true diff --git a/config/preload.php b/config/preload.php new file mode 100755 index 0000000..5ebcdb2 --- /dev/null +++ b/config/preload.php @@ -0,0 +1,5 @@ + [ + * 'App\\' => [ + * 'resource' => '../src/', + * ], + * ], + * ]); + * ``` + * + * @psalm-type ImportsConfig = list + * @psalm-type ParametersConfig = array|null>|null> + * @psalm-type ArgumentsType = list|array + * @psalm-type CallType = array|array{0:string, 1?:ArgumentsType, 2?:bool}|array{method:string, arguments?:ArgumentsType, returns_clone?:bool} + * @psalm-type TagsType = list>> // arrays inside the list must have only one element, with the tag name as the key + * @psalm-type CallbackType = string|array{0:string|ReferenceConfigurator,1:string}|\Closure|ReferenceConfigurator|ExpressionConfigurator + * @psalm-type DeprecationType = array{package: string, version: string, message?: string} + * @psalm-type DefaultsType = array{ + * public?: bool, + * tags?: TagsType, + * resource_tags?: TagsType, + * autowire?: bool, + * autoconfigure?: bool, + * bind?: array, + * } + * @psalm-type InstanceofType = array{ + * shared?: bool, + * lazy?: bool|string, + * public?: bool, + * properties?: array, + * configurator?: CallbackType, + * calls?: list, + * tags?: TagsType, + * resource_tags?: TagsType, + * autowire?: bool, + * bind?: array, + * constructor?: string, + * } + * @psalm-type DefinitionType = array{ + * class?: string, + * file?: string, + * parent?: string, + * shared?: bool, + * synthetic?: bool, + * lazy?: bool|string, + * public?: bool, + * abstract?: bool, + * deprecated?: DeprecationType, + * factory?: CallbackType, + * configurator?: CallbackType, + * arguments?: ArgumentsType, + * properties?: array, + * calls?: list, + * tags?: TagsType, + * resource_tags?: TagsType, + * decorates?: string, + * decoration_inner_name?: string, + * decoration_priority?: int, + * decoration_on_invalid?: 'exception'|'ignore'|null, + * autowire?: bool, + * autoconfigure?: bool, + * bind?: array, + * constructor?: string, + * from_callable?: CallbackType, + * } + * @psalm-type AliasType = string|array{ + * alias: string, + * public?: bool, + * deprecated?: DeprecationType, + * } + * @psalm-type PrototypeType = array{ + * resource: string, + * namespace?: string, + * exclude?: string|list, + * parent?: string, + * shared?: bool, + * lazy?: bool|string, + * public?: bool, + * abstract?: bool, + * deprecated?: DeprecationType, + * factory?: CallbackType, + * arguments?: ArgumentsType, + * properties?: array, + * configurator?: CallbackType, + * calls?: list, + * tags?: TagsType, + * resource_tags?: TagsType, + * autowire?: bool, + * autoconfigure?: bool, + * bind?: array, + * constructor?: string, + * } + * @psalm-type StackType = array{ + * stack: list>, + * public?: bool, + * deprecated?: DeprecationType, + * } + * @psalm-type ServicesConfig = array{ + * _defaults?: DefaultsType, + * _instanceof?: InstanceofType, + * ... + * } + * @psalm-type ExtensionType = array + * @psalm-type FrameworkConfig = array{ + * secret?: scalar|null, + * http_method_override?: bool, // Set true to enable support for the '_method' request parameter to determine the intended HTTP method on POST requests. // Default: false + * allowed_http_method_override?: list|null, + * trust_x_sendfile_type_header?: scalar|null, // Set true to enable support for xsendfile in binary file responses. // Default: "%env(bool:default::SYMFONY_TRUST_X_SENDFILE_TYPE_HEADER)%" + * ide?: scalar|null, // Default: "%env(default::SYMFONY_IDE)%" + * test?: bool, + * default_locale?: scalar|null, // Default: "en" + * set_locale_from_accept_language?: bool, // Whether to use the Accept-Language HTTP header to set the Request locale (only when the "_locale" request attribute is not passed). // Default: false + * set_content_language_from_locale?: bool, // Whether to set the Content-Language HTTP header on the Response using the Request locale. // Default: false + * enabled_locales?: list, + * trusted_hosts?: list, + * trusted_proxies?: mixed, // Default: ["%env(default::SYMFONY_TRUSTED_PROXIES)%"] + * trusted_headers?: list, + * error_controller?: scalar|null, // Default: "error_controller" + * handle_all_throwables?: bool, // HttpKernel will handle all kinds of \Throwable. // Default: true + * csrf_protection?: bool|array{ + * enabled?: scalar|null, // Default: null + * stateless_token_ids?: list, + * check_header?: scalar|null, // Whether to check the CSRF token in a header in addition to a cookie when using stateless protection. // Default: false + * cookie_name?: scalar|null, // The name of the cookie to use when using stateless protection. // Default: "csrf-token" + * }, + * form?: bool|array{ // Form configuration + * enabled?: bool, // Default: true + * csrf_protection?: array{ + * enabled?: scalar|null, // Default: null + * token_id?: scalar|null, // Default: null + * field_name?: scalar|null, // Default: "_token" + * field_attr?: array, + * }, + * }, + * http_cache?: bool|array{ // HTTP cache configuration + * enabled?: bool, // Default: false + * debug?: bool, // Default: "%kernel.debug%" + * trace_level?: "none"|"short"|"full", + * trace_header?: scalar|null, + * default_ttl?: int, + * private_headers?: list, + * skip_response_headers?: list, + * allow_reload?: bool, + * allow_revalidate?: bool, + * stale_while_revalidate?: int, + * stale_if_error?: int, + * terminate_on_cache_hit?: bool, + * }, + * esi?: bool|array{ // ESI configuration + * enabled?: bool, // Default: false + * }, + * ssi?: bool|array{ // SSI configuration + * enabled?: bool, // Default: false + * }, + * fragments?: bool|array{ // Fragments configuration + * enabled?: bool, // Default: false + * hinclude_default_template?: scalar|null, // Default: null + * path?: scalar|null, // Default: "/_fragment" + * }, + * profiler?: bool|array{ // Profiler configuration + * enabled?: bool, // Default: false + * collect?: bool, // Default: true + * collect_parameter?: scalar|null, // The name of the parameter to use to enable or disable collection on a per request basis. // Default: null + * only_exceptions?: bool, // Default: false + * only_main_requests?: bool, // Default: false + * dsn?: scalar|null, // Default: "file:%kernel.cache_dir%/profiler" + * collect_serializer_data?: true, // Default: true + * }, + * workflows?: bool|array{ + * enabled?: bool, // Default: false + * workflows?: array, + * definition_validators?: list, + * support_strategy?: scalar|null, + * initial_marking?: list, + * events_to_dispatch?: list|null, + * places?: list, + * }>, + * transitions: list, + * to?: list, + * weight?: int, // Default: 1 + * metadata?: list, + * }>, + * metadata?: list, + * }>, + * }, + * router?: bool|array{ // Router configuration + * enabled?: bool, // Default: false + * resource: scalar|null, + * type?: scalar|null, + * default_uri?: scalar|null, // The default URI used to generate URLs in a non-HTTP context. // Default: null + * http_port?: scalar|null, // Default: 80 + * https_port?: scalar|null, // Default: 443 + * strict_requirements?: scalar|null, // set to true to throw an exception when a parameter does not match the requirements set to false to disable exceptions when a parameter does not match the requirements (and return null instead) set to null to disable parameter checks against requirements 'true' is the preferred configuration in development mode, while 'false' or 'null' might be preferred in production // Default: true + * utf8?: bool, // Default: true + * }, + * session?: bool|array{ // Session configuration + * enabled?: bool, // Default: false + * storage_factory_id?: scalar|null, // Default: "session.storage.factory.native" + * handler_id?: scalar|null, // Defaults to using the native session handler, or to the native *file* session handler if "save_path" is not null. + * name?: scalar|null, + * cookie_lifetime?: scalar|null, + * cookie_path?: scalar|null, + * cookie_domain?: scalar|null, + * cookie_secure?: true|false|"auto", // Default: "auto" + * cookie_httponly?: bool, // Default: true + * cookie_samesite?: null|"lax"|"strict"|"none", // Default: "lax" + * use_cookies?: bool, + * gc_divisor?: scalar|null, + * gc_probability?: scalar|null, + * gc_maxlifetime?: scalar|null, + * save_path?: scalar|null, // Defaults to "%kernel.cache_dir%/sessions" if the "handler_id" option is not null. + * metadata_update_threshold?: int, // Seconds to wait between 2 session metadata updates. // Default: 0 + * }, + * request?: bool|array{ // Request configuration + * enabled?: bool, // Default: false + * formats?: array>, + * }, + * assets?: bool|array{ // Assets configuration + * enabled?: bool, // Default: true + * strict_mode?: bool, // Throw an exception if an entry is missing from the manifest.json. // Default: false + * version_strategy?: scalar|null, // Default: null + * version?: scalar|null, // Default: null + * version_format?: scalar|null, // Default: "%%s?%%s" + * json_manifest_path?: scalar|null, // Default: null + * base_path?: scalar|null, // Default: "" + * base_urls?: list, + * packages?: array, + * }>, + * }, + * asset_mapper?: bool|array{ // Asset Mapper configuration + * enabled?: bool, // Default: false + * paths?: array, + * excluded_patterns?: list, + * exclude_dotfiles?: bool, // If true, any files starting with "." will be excluded from the asset mapper. // Default: true + * server?: bool, // If true, a "dev server" will return the assets from the public directory (true in "debug" mode only by default). // Default: true + * public_prefix?: scalar|null, // The public path where the assets will be written to (and served from when "server" is true). // Default: "/assets/" + * missing_import_mode?: "strict"|"warn"|"ignore", // Behavior if an asset cannot be found when imported from JavaScript or CSS files - e.g. "import './non-existent.js'". "strict" means an exception is thrown, "warn" means a warning is logged, "ignore" means the import is left as-is. // Default: "warn" + * extensions?: array, + * importmap_path?: scalar|null, // The path of the importmap.php file. // Default: "%kernel.project_dir%/importmap.php" + * importmap_polyfill?: scalar|null, // The importmap name that will be used to load the polyfill. Set to false to disable. // Default: "es-module-shims" + * importmap_script_attributes?: array, + * vendor_dir?: scalar|null, // The directory to store JavaScript vendors. // Default: "%kernel.project_dir%/assets/vendor" + * precompress?: bool|array{ // Precompress assets with Brotli, Zstandard and gzip. + * enabled?: bool, // Default: false + * formats?: list, + * extensions?: list, + * }, + * }, + * translator?: bool|array{ // Translator configuration + * enabled?: bool, // Default: true + * fallbacks?: list, + * logging?: bool, // Default: false + * formatter?: scalar|null, // Default: "translator.formatter.default" + * cache_dir?: scalar|null, // Default: "%kernel.cache_dir%/translations" + * default_path?: scalar|null, // The default path used to load translations. // Default: "%kernel.project_dir%/translations" + * paths?: list, + * pseudo_localization?: bool|array{ + * enabled?: bool, // Default: false + * accents?: bool, // Default: true + * expansion_factor?: float, // Default: 1.0 + * brackets?: bool, // Default: true + * parse_html?: bool, // Default: false + * localizable_html_attributes?: list, + * }, + * providers?: array, + * locales?: list, + * }>, + * globals?: array, + * domain?: string, + * }>, + * }, + * validation?: bool|array{ // Validation configuration + * enabled?: bool, // Default: true + * enable_attributes?: bool, // Default: true + * static_method?: list, + * translation_domain?: scalar|null, // Default: "validators" + * email_validation_mode?: "html5"|"html5-allow-no-tld"|"strict", // Default: "html5" + * mapping?: array{ + * paths?: list, + * }, + * not_compromised_password?: bool|array{ + * enabled?: bool, // When disabled, compromised passwords will be accepted as valid. // Default: true + * endpoint?: scalar|null, // API endpoint for the NotCompromisedPassword Validator. // Default: null + * }, + * disable_translation?: bool, // Default: false + * auto_mapping?: array, + * }>, + * }, + * serializer?: bool|array{ // Serializer configuration + * enabled?: bool, // Default: false + * enable_attributes?: bool, // Default: true + * name_converter?: scalar|null, + * circular_reference_handler?: scalar|null, + * max_depth_handler?: scalar|null, + * mapping?: array{ + * paths?: list, + * }, + * default_context?: list, + * named_serializers?: array, + * include_built_in_normalizers?: bool, // Whether to include the built-in normalizers // Default: true + * include_built_in_encoders?: bool, // Whether to include the built-in encoders // Default: true + * }>, + * }, + * property_access?: bool|array{ // Property access configuration + * enabled?: bool, // Default: true + * magic_call?: bool, // Default: false + * magic_get?: bool, // Default: true + * magic_set?: bool, // Default: true + * throw_exception_on_invalid_index?: bool, // Default: false + * throw_exception_on_invalid_property_path?: bool, // Default: true + * }, + * type_info?: bool|array{ // Type info configuration + * enabled?: bool, // Default: true + * aliases?: array, + * }, + * property_info?: bool|array{ // Property info configuration + * enabled?: bool, // Default: true + * with_constructor_extractor?: bool, // Registers the constructor extractor. // Default: true + * }, + * cache?: array{ // Cache configuration + * prefix_seed?: scalar|null, // Used to namespace cache keys when using several apps with the same shared backend. // Default: "_%kernel.project_dir%.%kernel.container_class%" + * app?: scalar|null, // App related cache pools configuration. // Default: "cache.adapter.filesystem" + * system?: scalar|null, // System related cache pools configuration. // Default: "cache.adapter.system" + * directory?: scalar|null, // Default: "%kernel.share_dir%/pools/app" + * default_psr6_provider?: scalar|null, + * default_redis_provider?: scalar|null, // Default: "redis://localhost" + * default_valkey_provider?: scalar|null, // Default: "valkey://localhost" + * default_memcached_provider?: scalar|null, // Default: "memcached://localhost" + * default_doctrine_dbal_provider?: scalar|null, // Default: "database_connection" + * default_pdo_provider?: scalar|null, // Default: null + * pools?: array, + * tags?: scalar|null, // Default: null + * public?: bool, // Default: false + * default_lifetime?: scalar|null, // Default lifetime of the pool. + * provider?: scalar|null, // Overwrite the setting from the default provider for this adapter. + * early_expiration_message_bus?: scalar|null, + * clearer?: scalar|null, + * }>, + * }, + * php_errors?: array{ // PHP errors handling configuration + * log?: mixed, // Use the application logger instead of the PHP logger for logging PHP errors. // Default: true + * throw?: bool, // Throw PHP errors as \ErrorException instances. // Default: true + * }, + * exceptions?: array, + * web_link?: bool|array{ // Web links configuration + * enabled?: bool, // Default: false + * }, + * lock?: bool|string|array{ // Lock configuration + * enabled?: bool, // Default: false + * resources?: array>, + * }, + * semaphore?: bool|string|array{ // Semaphore configuration + * enabled?: bool, // Default: false + * resources?: array, + * }, + * messenger?: bool|array{ // Messenger configuration + * enabled?: bool, // Default: false + * routing?: array, + * }>, + * serializer?: array{ + * default_serializer?: scalar|null, // Service id to use as the default serializer for the transports. // Default: "messenger.transport.native_php_serializer" + * symfony_serializer?: array{ + * format?: scalar|null, // Serialization format for the messenger.transport.symfony_serializer service (which is not the serializer used by default). // Default: "json" + * context?: array, + * }, + * }, + * transports?: array, + * failure_transport?: scalar|null, // Transport name to send failed messages to (after all retries have failed). // Default: null + * retry_strategy?: string|array{ + * service?: scalar|null, // Service id to override the retry strategy entirely. // Default: null + * max_retries?: int, // Default: 3 + * delay?: int, // Time in ms to delay (or the initial value when multiplier is used). // Default: 1000 + * multiplier?: float, // If greater than 1, delay will grow exponentially for each retry: this delay = (delay * (multiple ^ retries)). // Default: 2 + * max_delay?: int, // Max time in ms that a retry should ever be delayed (0 = infinite). // Default: 0 + * jitter?: float, // Randomness to apply to the delay (between 0 and 1). // Default: 0.1 + * }, + * rate_limiter?: scalar|null, // Rate limiter name to use when processing messages. // Default: null + * }>, + * failure_transport?: scalar|null, // Transport name to send failed messages to (after all retries have failed). // Default: null + * stop_worker_on_signals?: list, + * default_bus?: scalar|null, // Default: null + * buses?: array, + * }>, + * }>, + * }, + * scheduler?: bool|array{ // Scheduler configuration + * enabled?: bool, // Default: false + * }, + * disallow_search_engine_index?: bool, // Enabled by default when debug is enabled. // Default: true + * http_client?: bool|array{ // HTTP Client configuration + * enabled?: bool, // Default: false + * max_host_connections?: int, // The maximum number of connections to a single host. + * default_options?: array{ + * headers?: array, + * vars?: array, + * max_redirects?: int, // The maximum number of redirects to follow. + * http_version?: scalar|null, // The default HTTP version, typically 1.1 or 2.0, leave to null for the best version. + * resolve?: array, + * proxy?: scalar|null, // The URL of the proxy to pass requests through or null for automatic detection. + * no_proxy?: scalar|null, // A comma separated list of hosts that do not require a proxy to be reached. + * timeout?: float, // The idle timeout, defaults to the "default_socket_timeout" ini parameter. + * max_duration?: float, // The maximum execution time for the request+response as a whole. + * bindto?: scalar|null, // A network interface name, IP address, a host name or a UNIX socket to bind to. + * verify_peer?: bool, // Indicates if the peer should be verified in a TLS context. + * verify_host?: bool, // Indicates if the host should exist as a certificate common name. + * cafile?: scalar|null, // A certificate authority file. + * capath?: scalar|null, // A directory that contains multiple certificate authority files. + * local_cert?: scalar|null, // A PEM formatted certificate file. + * local_pk?: scalar|null, // A private key file. + * passphrase?: scalar|null, // The passphrase used to encrypt the "local_pk" file. + * ciphers?: scalar|null, // A list of TLS ciphers separated by colons, commas or spaces (e.g. "RC3-SHA:TLS13-AES-128-GCM-SHA256"...) + * peer_fingerprint?: array{ // Associative array: hashing algorithm => hash(es). + * sha1?: mixed, + * pin-sha256?: mixed, + * md5?: mixed, + * }, + * crypto_method?: scalar|null, // The minimum version of TLS to accept; must be one of STREAM_CRYPTO_METHOD_TLSv*_CLIENT constants. + * extra?: array, + * rate_limiter?: scalar|null, // Rate limiter name to use for throttling requests. // Default: null + * caching?: bool|array{ // Caching configuration. + * enabled?: bool, // Default: false + * cache_pool?: string, // The taggable cache pool to use for storing the responses. // Default: "cache.http_client" + * shared?: bool, // Indicates whether the cache is shared (public) or private. // Default: true + * max_ttl?: int, // The maximum TTL (in seconds) allowed for cached responses. Null means no cap. // Default: null + * }, + * retry_failed?: bool|array{ + * enabled?: bool, // Default: false + * retry_strategy?: scalar|null, // service id to override the retry strategy. // Default: null + * http_codes?: array, + * }>, + * max_retries?: int, // Default: 3 + * delay?: int, // Time in ms to delay (or the initial value when multiplier is used). // Default: 1000 + * multiplier?: float, // If greater than 1, delay will grow exponentially for each retry: delay * (multiple ^ retries). // Default: 2 + * max_delay?: int, // Max time in ms that a retry should ever be delayed (0 = infinite). // Default: 0 + * jitter?: float, // Randomness in percent (between 0 and 1) to apply to the delay. // Default: 0.1 + * }, + * }, + * mock_response_factory?: scalar|null, // The id of the service that should generate mock responses. It should be either an invokable or an iterable. + * scoped_clients?: array, + * headers?: array, + * max_redirects?: int, // The maximum number of redirects to follow. + * http_version?: scalar|null, // The default HTTP version, typically 1.1 or 2.0, leave to null for the best version. + * resolve?: array, + * proxy?: scalar|null, // The URL of the proxy to pass requests through or null for automatic detection. + * no_proxy?: scalar|null, // A comma separated list of hosts that do not require a proxy to be reached. + * timeout?: float, // The idle timeout, defaults to the "default_socket_timeout" ini parameter. + * max_duration?: float, // The maximum execution time for the request+response as a whole. + * bindto?: scalar|null, // A network interface name, IP address, a host name or a UNIX socket to bind to. + * verify_peer?: bool, // Indicates if the peer should be verified in a TLS context. + * verify_host?: bool, // Indicates if the host should exist as a certificate common name. + * cafile?: scalar|null, // A certificate authority file. + * capath?: scalar|null, // A directory that contains multiple certificate authority files. + * local_cert?: scalar|null, // A PEM formatted certificate file. + * local_pk?: scalar|null, // A private key file. + * passphrase?: scalar|null, // The passphrase used to encrypt the "local_pk" file. + * ciphers?: scalar|null, // A list of TLS ciphers separated by colons, commas or spaces (e.g. "RC3-SHA:TLS13-AES-128-GCM-SHA256"...). + * peer_fingerprint?: array{ // Associative array: hashing algorithm => hash(es). + * sha1?: mixed, + * pin-sha256?: mixed, + * md5?: mixed, + * }, + * crypto_method?: scalar|null, // The minimum version of TLS to accept; must be one of STREAM_CRYPTO_METHOD_TLSv*_CLIENT constants. + * extra?: array, + * rate_limiter?: scalar|null, // Rate limiter name to use for throttling requests. // Default: null + * caching?: bool|array{ // Caching configuration. + * enabled?: bool, // Default: false + * cache_pool?: string, // The taggable cache pool to use for storing the responses. // Default: "cache.http_client" + * shared?: bool, // Indicates whether the cache is shared (public) or private. // Default: true + * max_ttl?: int, // The maximum TTL (in seconds) allowed for cached responses. Null means no cap. // Default: null + * }, + * retry_failed?: bool|array{ + * enabled?: bool, // Default: false + * retry_strategy?: scalar|null, // service id to override the retry strategy. // Default: null + * http_codes?: array, + * }>, + * max_retries?: int, // Default: 3 + * delay?: int, // Time in ms to delay (or the initial value when multiplier is used). // Default: 1000 + * multiplier?: float, // If greater than 1, delay will grow exponentially for each retry: delay * (multiple ^ retries). // Default: 2 + * max_delay?: int, // Max time in ms that a retry should ever be delayed (0 = infinite). // Default: 0 + * jitter?: float, // Randomness in percent (between 0 and 1) to apply to the delay. // Default: 0.1 + * }, + * }>, + * }, + * mailer?: bool|array{ // Mailer configuration + * enabled?: bool, // Default: false + * message_bus?: scalar|null, // The message bus to use. Defaults to the default bus if the Messenger component is installed. // Default: null + * dsn?: scalar|null, // Default: null + * transports?: array, + * envelope?: array{ // Mailer Envelope configuration + * sender?: scalar|null, + * recipients?: list, + * allowed_recipients?: list, + * }, + * headers?: array, + * dkim_signer?: bool|array{ // DKIM signer configuration + * enabled?: bool, // Default: false + * key?: scalar|null, // Key content, or path to key (in PEM format with the `file://` prefix) // Default: "" + * domain?: scalar|null, // Default: "" + * select?: scalar|null, // Default: "" + * passphrase?: scalar|null, // The private key passphrase // Default: "" + * options?: array, + * }, + * smime_signer?: bool|array{ // S/MIME signer configuration + * enabled?: bool, // Default: false + * key?: scalar|null, // Path to key (in PEM format) // Default: "" + * certificate?: scalar|null, // Path to certificate (in PEM format without the `file://` prefix) // Default: "" + * passphrase?: scalar|null, // The private key passphrase // Default: null + * extra_certificates?: scalar|null, // Default: null + * sign_options?: int, // Default: null + * }, + * smime_encrypter?: bool|array{ // S/MIME encrypter configuration + * enabled?: bool, // Default: false + * repository?: scalar|null, // S/MIME certificate repository service. This service shall implement the `Symfony\Component\Mailer\EventListener\SmimeCertificateRepositoryInterface`. // Default: "" + * cipher?: int, // A set of algorithms used to encrypt the message // Default: null + * }, + * }, + * secrets?: bool|array{ + * enabled?: bool, // Default: true + * vault_directory?: scalar|null, // Default: "%kernel.project_dir%/config/secrets/%kernel.runtime_environment%" + * local_dotenv_file?: scalar|null, // Default: "%kernel.project_dir%/.env.%kernel.runtime_environment%.local" + * decryption_env_var?: scalar|null, // Default: "base64:default::SYMFONY_DECRYPTION_SECRET" + * }, + * notifier?: bool|array{ // Notifier configuration + * enabled?: bool, // Default: false + * message_bus?: scalar|null, // The message bus to use. Defaults to the default bus if the Messenger component is installed. // Default: null + * chatter_transports?: array, + * texter_transports?: array, + * notification_on_failed_messages?: bool, // Default: false + * channel_policy?: array>, + * admin_recipients?: list, + * }, + * rate_limiter?: bool|array{ // Rate limiter configuration + * enabled?: bool, // Default: false + * limiters?: array, + * limit?: int, // The maximum allowed hits in a fixed interval or burst. + * interval?: scalar|null, // Configures the fixed interval if "policy" is set to "fixed_window" or "sliding_window". The value must be a number followed by "second", "minute", "hour", "day", "week" or "month" (or their plural equivalent). + * rate?: array{ // Configures the fill rate if "policy" is set to "token_bucket". + * interval?: scalar|null, // Configures the rate interval. The value must be a number followed by "second", "minute", "hour", "day", "week" or "month" (or their plural equivalent). + * amount?: int, // Amount of tokens to add each interval. // Default: 1 + * }, + * }>, + * }, + * uid?: bool|array{ // Uid configuration + * enabled?: bool, // Default: false + * default_uuid_version?: 7|6|4|1, // Default: 7 + * name_based_uuid_version?: 5|3, // Default: 5 + * name_based_uuid_namespace?: scalar|null, + * time_based_uuid_version?: 7|6|1, // Default: 7 + * time_based_uuid_node?: scalar|null, + * }, + * html_sanitizer?: bool|array{ // HtmlSanitizer configuration + * enabled?: bool, // Default: false + * sanitizers?: array, + * block_elements?: list, + * drop_elements?: list, + * allow_attributes?: array, + * drop_attributes?: array, + * force_attributes?: array>, + * force_https_urls?: bool, // Transforms URLs using the HTTP scheme to use the HTTPS scheme instead. // Default: false + * allowed_link_schemes?: list, + * allowed_link_hosts?: list|null, + * allow_relative_links?: bool, // Allows relative URLs to be used in links href attributes. // Default: false + * allowed_media_schemes?: list, + * allowed_media_hosts?: list|null, + * allow_relative_medias?: bool, // Allows relative URLs to be used in media source attributes (img, audio, video, ...). // Default: false + * with_attribute_sanitizers?: list, + * without_attribute_sanitizers?: list, + * max_input_length?: int, // The maximum length allowed for the sanitized input. // Default: 0 + * }>, + * }, + * webhook?: bool|array{ // Webhook configuration + * enabled?: bool, // Default: false + * message_bus?: scalar|null, // The message bus to use. // Default: "messenger.default_bus" + * routing?: array, + * }, + * remote-event?: bool|array{ // RemoteEvent configuration + * enabled?: bool, // Default: false + * }, + * json_streamer?: bool|array{ // JSON streamer configuration + * enabled?: bool, // Default: false + * }, + * } + * @psalm-type MakerConfig = array{ + * root_namespace?: scalar|null, // Default: "App" + * generate_final_classes?: bool, // Default: true + * generate_final_entities?: bool, // Default: false + * } + * @psalm-type TwigConfig = array{ + * form_themes?: list, + * globals?: array, + * autoescape_service?: scalar|null, // Default: null + * autoescape_service_method?: scalar|null, // Default: null + * cache?: scalar|null, // Default: true + * charset?: scalar|null, // Default: "%kernel.charset%" + * debug?: bool, // Default: "%kernel.debug%" + * strict_variables?: bool, // Default: "%kernel.debug%" + * auto_reload?: scalar|null, + * optimizations?: int, + * default_path?: scalar|null, // The default path used to load templates. // Default: "%kernel.project_dir%/templates" + * file_name_pattern?: list, + * paths?: array, + * date?: array{ // The default format options used by the date filter. + * format?: scalar|null, // Default: "F j, Y H:i" + * interval_format?: scalar|null, // Default: "%d days" + * timezone?: scalar|null, // The timezone used when formatting dates, when set to null, the timezone returned by date_default_timezone_get() is used. // Default: null + * }, + * number_format?: array{ // The default format options for the number_format filter. + * decimals?: int, // Default: 0 + * decimal_point?: scalar|null, // Default: "." + * thousands_separator?: scalar|null, // Default: "," + * }, + * mailer?: array{ + * html_to_text_converter?: scalar|null, // A service implementing the "Symfony\Component\Mime\HtmlToTextConverter\HtmlToTextConverterInterface". // Default: null + * }, + * } + * @psalm-type DoctrineConfig = array{ + * dbal?: array{ + * default_connection?: scalar|null, + * types?: array, + * driver_schemes?: array, + * connections?: array, + * mapping_types?: array, + * default_table_options?: array, + * schema_manager_factory?: scalar|null, // Default: "doctrine.dbal.default_schema_manager_factory" + * result_cache?: scalar|null, + * replicas?: array, + * }>, + * }, + * orm?: array{ + * default_entity_manager?: scalar|null, + * enable_native_lazy_objects?: bool, // Deprecated: The "enable_native_lazy_objects" option is deprecated and will be removed in DoctrineBundle 4.0, as native lazy objects are now always enabled. // Default: true + * controller_resolver?: bool|array{ + * enabled?: bool, // Default: true + * auto_mapping?: bool, // Deprecated: The "doctrine.orm.controller_resolver.auto_mapping.auto_mapping" option is deprecated and will be removed in DoctrineBundle 4.0, as it only accepts `false` since 3.0. // Set to true to enable using route placeholders as lookup criteria when the primary key doesn't match the argument name // Default: false + * evict_cache?: bool, // Set to true to fetch the entity from the database instead of using the cache, if any // Default: false + * }, + * entity_managers?: array, + * }>, + * }>, + * }, + * connection?: scalar|null, + * class_metadata_factory_name?: scalar|null, // Default: "Doctrine\\ORM\\Mapping\\ClassMetadataFactory" + * default_repository_class?: scalar|null, // Default: "Doctrine\\ORM\\EntityRepository" + * auto_mapping?: scalar|null, // Default: false + * naming_strategy?: scalar|null, // Default: "doctrine.orm.naming_strategy.default" + * quote_strategy?: scalar|null, // Default: "doctrine.orm.quote_strategy.default" + * typed_field_mapper?: scalar|null, // Default: "doctrine.orm.typed_field_mapper.default" + * entity_listener_resolver?: scalar|null, // Default: null + * fetch_mode_subselect_batch_size?: scalar|null, + * repository_factory?: scalar|null, // Default: "doctrine.orm.container_repository_factory" + * schema_ignore_classes?: list, + * validate_xml_mapping?: bool, // Set to "true" to opt-in to the new mapping driver mode that was added in Doctrine ORM 2.14 and will be mandatory in ORM 3.0. See https://github.com/doctrine/orm/pull/6728. // Default: false + * second_level_cache?: array{ + * region_cache_driver?: string|array{ + * type?: scalar|null, // Default: null + * id?: scalar|null, + * pool?: scalar|null, + * }, + * region_lock_lifetime?: scalar|null, // Default: 60 + * log_enabled?: bool, // Default: true + * region_lifetime?: scalar|null, // Default: 3600 + * enabled?: bool, // Default: true + * factory?: scalar|null, + * regions?: array, + * loggers?: array, + * }, + * hydrators?: array, + * mappings?: array, + * dql?: array{ + * string_functions?: array, + * numeric_functions?: array, + * datetime_functions?: array, + * }, + * filters?: array, + * }>, + * identity_generation_preferences?: array, + * }>, + * resolve_target_entities?: array, + * }, + * } + * @psalm-type DoctrineMigrationsConfig = array{ + * enable_service_migrations?: bool, // Whether to enable fetching migrations from the service container. // Default: false + * migrations_paths?: array, + * services?: array, + * factories?: array, + * storage?: array{ // Storage to use for migration status metadata. + * table_storage?: array{ // The default metadata storage, implemented as a table in the database. + * table_name?: scalar|null, // Default: null + * version_column_name?: scalar|null, // Default: null + * version_column_length?: scalar|null, // Default: null + * executed_at_column_name?: scalar|null, // Default: null + * execution_time_column_name?: scalar|null, // Default: null + * }, + * }, + * migrations?: list, + * connection?: scalar|null, // Connection name to use for the migrations database. // Default: null + * em?: scalar|null, // Entity manager name to use for the migrations database (available when doctrine/orm is installed). // Default: null + * all_or_nothing?: scalar|null, // Run all migrations in a transaction. // Default: false + * check_database_platform?: scalar|null, // Adds an extra check in the generated migrations to allow execution only on the same platform as they were initially generated on. // Default: true + * custom_template?: scalar|null, // Custom template path for generated migration classes. // Default: null + * organize_migrations?: scalar|null, // Organize migrations mode. Possible values are: "BY_YEAR", "BY_YEAR_AND_MONTH", false // Default: false + * enable_profiler?: bool, // Whether or not to enable the profiler collector to calculate and visualize migration status. This adds some queries overhead. // Default: false + * transactional?: bool, // Whether or not to wrap migrations in a single transaction. // Default: true + * } + * @psalm-type SecurityConfig = array{ + * access_denied_url?: scalar|null, // Default: null + * session_fixation_strategy?: "none"|"migrate"|"invalidate", // Default: "migrate" + * expose_security_errors?: \Symfony\Component\Security\Http\Authentication\ExposeSecurityLevel::None|\Symfony\Component\Security\Http\Authentication\ExposeSecurityLevel::AccountStatus|\Symfony\Component\Security\Http\Authentication\ExposeSecurityLevel::All, // Default: "none" + * erase_credentials?: bool, // Default: true + * access_decision_manager?: array{ + * strategy?: "affirmative"|"consensus"|"unanimous"|"priority", + * service?: scalar|null, + * strategy_service?: scalar|null, + * allow_if_all_abstain?: bool, // Default: false + * allow_if_equal_granted_denied?: bool, // Default: true + * }, + * password_hashers?: array, + * hash_algorithm?: scalar|null, // Name of hashing algorithm for PBKDF2 (i.e. sha256, sha512, etc..) See hash_algos() for a list of supported algorithms. // Default: "sha512" + * key_length?: scalar|null, // Default: 40 + * ignore_case?: bool, // Default: false + * encode_as_base64?: bool, // Default: true + * iterations?: scalar|null, // Default: 5000 + * cost?: int, // Default: null + * memory_cost?: scalar|null, // Default: null + * time_cost?: scalar|null, // Default: null + * id?: scalar|null, + * }>, + * providers?: array, + * }, + * entity?: array{ + * class: scalar|null, // The full entity class name of your user class. + * property?: scalar|null, // Default: null + * manager_name?: scalar|null, // Default: null + * }, + * memory?: array{ + * users?: array, + * }>, + * }, + * ldap?: array{ + * service: scalar|null, + * base_dn: scalar|null, + * search_dn?: scalar|null, // Default: null + * search_password?: scalar|null, // Default: null + * extra_fields?: list, + * default_roles?: list, + * role_fetcher?: scalar|null, // Default: null + * uid_key?: scalar|null, // Default: "sAMAccountName" + * filter?: scalar|null, // Default: "({uid_key}={user_identifier})" + * password_attribute?: scalar|null, // Default: null + * }, + * }>, + * firewalls: array, + * security?: bool, // Default: true + * user_checker?: scalar|null, // The UserChecker to use when authenticating users in this firewall. // Default: "security.user_checker" + * request_matcher?: scalar|null, + * access_denied_url?: scalar|null, + * access_denied_handler?: scalar|null, + * entry_point?: scalar|null, // An enabled authenticator name or a service id that implements "Symfony\Component\Security\Http\EntryPoint\AuthenticationEntryPointInterface". + * provider?: scalar|null, + * stateless?: bool, // Default: false + * lazy?: bool, // Default: false + * context?: scalar|null, + * logout?: array{ + * enable_csrf?: bool|null, // Default: null + * csrf_token_id?: scalar|null, // Default: "logout" + * csrf_parameter?: scalar|null, // Default: "_csrf_token" + * csrf_token_manager?: scalar|null, + * path?: scalar|null, // Default: "/logout" + * target?: scalar|null, // Default: "/" + * invalidate_session?: bool, // Default: true + * clear_site_data?: list<"*"|"cache"|"cookies"|"storage"|"executionContexts">, + * delete_cookies?: array, + * }, + * switch_user?: array{ + * provider?: scalar|null, + * parameter?: scalar|null, // Default: "_switch_user" + * role?: scalar|null, // Default: "ROLE_ALLOWED_TO_SWITCH" + * target_route?: scalar|null, // Default: null + * }, + * required_badges?: list, + * custom_authenticators?: list, + * login_throttling?: array{ + * limiter?: scalar|null, // A service id implementing "Symfony\Component\HttpFoundation\RateLimiter\RequestRateLimiterInterface". + * max_attempts?: int, // Default: 5 + * interval?: scalar|null, // Default: "1 minute" + * lock_factory?: scalar|null, // The service ID of the lock factory used by the login rate limiter (or null to disable locking). // Default: null + * cache_pool?: string, // The cache pool to use for storing the limiter state // Default: "cache.rate_limiter" + * storage_service?: string, // The service ID of a custom storage implementation, this precedes any configured "cache_pool" // Default: null + * }, + * x509?: array{ + * provider?: scalar|null, + * user?: scalar|null, // Default: "SSL_CLIENT_S_DN_Email" + * credentials?: scalar|null, // Default: "SSL_CLIENT_S_DN" + * user_identifier?: scalar|null, // Default: "emailAddress" + * }, + * remote_user?: array{ + * provider?: scalar|null, + * user?: scalar|null, // Default: "REMOTE_USER" + * }, + * login_link?: array{ + * check_route: scalar|null, // Route that will validate the login link - e.g. "app_login_link_verify". + * check_post_only?: scalar|null, // If true, only HTTP POST requests to "check_route" will be handled by the authenticator. // Default: false + * signature_properties: list, + * lifetime?: int, // The lifetime of the login link in seconds. // Default: 600 + * max_uses?: int, // Max number of times a login link can be used - null means unlimited within lifetime. // Default: null + * used_link_cache?: scalar|null, // Cache service id used to expired links of max_uses is set. + * success_handler?: scalar|null, // A service id that implements Symfony\Component\Security\Http\Authentication\AuthenticationSuccessHandlerInterface. + * failure_handler?: scalar|null, // A service id that implements Symfony\Component\Security\Http\Authentication\AuthenticationFailureHandlerInterface. + * provider?: scalar|null, // The user provider to load users from. + * secret?: scalar|null, // Default: "%kernel.secret%" + * always_use_default_target_path?: bool, // Default: false + * default_target_path?: scalar|null, // Default: "/" + * login_path?: scalar|null, // Default: "/login" + * target_path_parameter?: scalar|null, // Default: "_target_path" + * use_referer?: bool, // Default: false + * failure_path?: scalar|null, // Default: null + * failure_forward?: bool, // Default: false + * failure_path_parameter?: scalar|null, // Default: "_failure_path" + * }, + * form_login?: array{ + * provider?: scalar|null, + * remember_me?: bool, // Default: true + * success_handler?: scalar|null, + * failure_handler?: scalar|null, + * check_path?: scalar|null, // Default: "/login_check" + * use_forward?: bool, // Default: false + * login_path?: scalar|null, // Default: "/login" + * username_parameter?: scalar|null, // Default: "_username" + * password_parameter?: scalar|null, // Default: "_password" + * csrf_parameter?: scalar|null, // Default: "_csrf_token" + * csrf_token_id?: scalar|null, // Default: "authenticate" + * enable_csrf?: bool, // Default: false + * post_only?: bool, // Default: true + * form_only?: bool, // Default: false + * always_use_default_target_path?: bool, // Default: false + * default_target_path?: scalar|null, // Default: "/" + * target_path_parameter?: scalar|null, // Default: "_target_path" + * use_referer?: bool, // Default: false + * failure_path?: scalar|null, // Default: null + * failure_forward?: bool, // Default: false + * failure_path_parameter?: scalar|null, // Default: "_failure_path" + * }, + * form_login_ldap?: array{ + * provider?: scalar|null, + * remember_me?: bool, // Default: true + * success_handler?: scalar|null, + * failure_handler?: scalar|null, + * check_path?: scalar|null, // Default: "/login_check" + * use_forward?: bool, // Default: false + * login_path?: scalar|null, // Default: "/login" + * username_parameter?: scalar|null, // Default: "_username" + * password_parameter?: scalar|null, // Default: "_password" + * csrf_parameter?: scalar|null, // Default: "_csrf_token" + * csrf_token_id?: scalar|null, // Default: "authenticate" + * enable_csrf?: bool, // Default: false + * post_only?: bool, // Default: true + * form_only?: bool, // Default: false + * always_use_default_target_path?: bool, // Default: false + * default_target_path?: scalar|null, // Default: "/" + * target_path_parameter?: scalar|null, // Default: "_target_path" + * use_referer?: bool, // Default: false + * failure_path?: scalar|null, // Default: null + * failure_forward?: bool, // Default: false + * failure_path_parameter?: scalar|null, // Default: "_failure_path" + * service?: scalar|null, // Default: "ldap" + * dn_string?: scalar|null, // Default: "{user_identifier}" + * query_string?: scalar|null, + * search_dn?: scalar|null, // Default: "" + * search_password?: scalar|null, // Default: "" + * }, + * json_login?: array{ + * provider?: scalar|null, + * remember_me?: bool, // Default: true + * success_handler?: scalar|null, + * failure_handler?: scalar|null, + * check_path?: scalar|null, // Default: "/login_check" + * use_forward?: bool, // Default: false + * login_path?: scalar|null, // Default: "/login" + * username_path?: scalar|null, // Default: "username" + * password_path?: scalar|null, // Default: "password" + * }, + * json_login_ldap?: array{ + * provider?: scalar|null, + * remember_me?: bool, // Default: true + * success_handler?: scalar|null, + * failure_handler?: scalar|null, + * check_path?: scalar|null, // Default: "/login_check" + * use_forward?: bool, // Default: false + * login_path?: scalar|null, // Default: "/login" + * username_path?: scalar|null, // Default: "username" + * password_path?: scalar|null, // Default: "password" + * service?: scalar|null, // Default: "ldap" + * dn_string?: scalar|null, // Default: "{user_identifier}" + * query_string?: scalar|null, + * search_dn?: scalar|null, // Default: "" + * search_password?: scalar|null, // Default: "" + * }, + * access_token?: array{ + * provider?: scalar|null, + * remember_me?: bool, // Default: true + * success_handler?: scalar|null, + * failure_handler?: scalar|null, + * realm?: scalar|null, // Default: null + * token_extractors?: list, + * token_handler: string|array{ + * id?: scalar|null, + * oidc_user_info?: string|array{ + * base_uri: scalar|null, // Base URI of the userinfo endpoint on the OIDC server, or the OIDC server URI to use the discovery (require "discovery" to be configured). + * discovery?: array{ // Enable the OIDC discovery. + * cache?: array{ + * id: scalar|null, // Cache service id to use to cache the OIDC discovery configuration. + * }, + * }, + * claim?: scalar|null, // Claim which contains the user identifier (e.g. sub, email, etc.). // Default: "sub" + * client?: scalar|null, // HttpClient service id to use to call the OIDC server. + * }, + * oidc?: array{ + * discovery?: array{ // Enable the OIDC discovery. + * base_uri: list, + * cache?: array{ + * id: scalar|null, // Cache service id to use to cache the OIDC discovery configuration. + * }, + * }, + * claim?: scalar|null, // Claim which contains the user identifier (e.g.: sub, email..). // Default: "sub" + * audience: scalar|null, // Audience set in the token, for validation purpose. + * issuers: list, + * algorithms: list, + * keyset?: scalar|null, // JSON-encoded JWKSet used to sign the token (must contain a list of valid public keys). + * encryption?: bool|array{ + * enabled?: bool, // Default: false + * enforce?: bool, // When enabled, the token shall be encrypted. // Default: false + * algorithms: list, + * keyset: scalar|null, // JSON-encoded JWKSet used to decrypt the token (must contain a list of valid private keys). + * }, + * }, + * cas?: array{ + * validation_url: scalar|null, // CAS server validation URL + * prefix?: scalar|null, // CAS prefix // Default: "cas" + * http_client?: scalar|null, // HTTP Client service // Default: null + * }, + * oauth2?: scalar|null, + * }, + * }, + * http_basic?: array{ + * provider?: scalar|null, + * realm?: scalar|null, // Default: "Secured Area" + * }, + * http_basic_ldap?: array{ + * provider?: scalar|null, + * realm?: scalar|null, // Default: "Secured Area" + * service?: scalar|null, // Default: "ldap" + * dn_string?: scalar|null, // Default: "{user_identifier}" + * query_string?: scalar|null, + * search_dn?: scalar|null, // Default: "" + * search_password?: scalar|null, // Default: "" + * }, + * remember_me?: array{ + * secret?: scalar|null, // Default: "%kernel.secret%" + * service?: scalar|null, + * user_providers?: list, + * catch_exceptions?: bool, // Default: true + * signature_properties?: list, + * token_provider?: string|array{ + * service?: scalar|null, // The service ID of a custom remember-me token provider. + * doctrine?: bool|array{ + * enabled?: bool, // Default: false + * connection?: scalar|null, // Default: null + * }, + * }, + * token_verifier?: scalar|null, // The service ID of a custom rememberme token verifier. + * name?: scalar|null, // Default: "REMEMBERME" + * lifetime?: int, // Default: 31536000 + * path?: scalar|null, // Default: "/" + * domain?: scalar|null, // Default: null + * secure?: true|false|"auto", // Default: false + * httponly?: bool, // Default: true + * samesite?: null|"lax"|"strict"|"none", // Default: null + * always_remember_me?: bool, // Default: false + * remember_me_parameter?: scalar|null, // Default: "_remember_me" + * }, + * }>, + * access_control?: list, + * attributes?: array, + * route?: scalar|null, // Default: null + * methods?: list, + * allow_if?: scalar|null, // Default: null + * roles?: list, + * }>, + * role_hierarchy?: array>, + * } + * @psalm-type WebProfilerConfig = array{ + * toolbar?: bool|array{ // Profiler toolbar configuration + * enabled?: bool, // Default: false + * ajax_replace?: bool, // Replace toolbar on AJAX requests // Default: false + * }, + * intercept_redirects?: bool, // Default: false + * excluded_ajax_paths?: scalar|null, // Default: "^/((index|app(_[\\w]+)?)\\.php/)?_wdt" + * } + * @psalm-type ConfigType = array{ + * imports?: ImportsConfig, + * parameters?: ParametersConfig, + * services?: ServicesConfig, + * framework?: FrameworkConfig, + * twig?: TwigConfig, + * doctrine?: DoctrineConfig, + * doctrine_migrations?: DoctrineMigrationsConfig, + * security?: SecurityConfig, + * "when@dev"?: array{ + * imports?: ImportsConfig, + * parameters?: ParametersConfig, + * services?: ServicesConfig, + * framework?: FrameworkConfig, + * maker?: MakerConfig, + * twig?: TwigConfig, + * doctrine?: DoctrineConfig, + * doctrine_migrations?: DoctrineMigrationsConfig, + * security?: SecurityConfig, + * web_profiler?: WebProfilerConfig, + * }, + * "when@prod"?: array{ + * imports?: ImportsConfig, + * parameters?: ParametersConfig, + * services?: ServicesConfig, + * framework?: FrameworkConfig, + * twig?: TwigConfig, + * doctrine?: DoctrineConfig, + * doctrine_migrations?: DoctrineMigrationsConfig, + * security?: SecurityConfig, + * }, + * "when@test"?: array{ + * imports?: ImportsConfig, + * parameters?: ParametersConfig, + * services?: ServicesConfig, + * framework?: FrameworkConfig, + * twig?: TwigConfig, + * doctrine?: DoctrineConfig, + * doctrine_migrations?: DoctrineMigrationsConfig, + * security?: SecurityConfig, + * web_profiler?: WebProfilerConfig, + * }, + * ..., + * }> + * } + */ +final class App +{ + /** + * @param ConfigType $config + * + * @psalm-return ConfigType + */ + public static function config(array $config): array + { + return AppReference::config($config); + } +} + +namespace Symfony\Component\Routing\Loader\Configurator; + +/** + * This class provides array-shapes for configuring the routes of an application. + * + * Example: + * + * ```php + * // config/routes.php + * namespace Symfony\Component\Routing\Loader\Configurator; + * + * return Routes::config([ + * 'controllers' => [ + * 'resource' => 'routing.controllers', + * ], + * ]); + * ``` + * + * @psalm-type RouteConfig = array{ + * path: string|array, + * controller?: string, + * methods?: string|list, + * requirements?: array, + * defaults?: array, + * options?: array, + * host?: string|array, + * schemes?: string|list, + * condition?: string, + * locale?: string, + * format?: string, + * utf8?: bool, + * stateless?: bool, + * } + * @psalm-type ImportConfig = array{ + * resource: string, + * type?: string, + * exclude?: string|list, + * prefix?: string|array, + * name_prefix?: string, + * trailing_slash_on_root?: bool, + * controller?: string, + * methods?: string|list, + * requirements?: array, + * defaults?: array, + * options?: array, + * host?: string|array, + * schemes?: string|list, + * condition?: string, + * locale?: string, + * format?: string, + * utf8?: bool, + * stateless?: bool, + * } + * @psalm-type AliasConfig = array{ + * alias: string, + * deprecated?: array{package:string, version:string, message?:string}, + * } + * @psalm-type RoutesConfig = array{ + * "when@dev"?: array, + * "when@prod"?: array, + * "when@test"?: array, + * ... + * } + */ +final class Routes +{ + /** + * @param RoutesConfig $config + * + * @psalm-return RoutesConfig + */ + public static function config(array $config): array + { + return $config; + } +} diff --git a/config/routes.yaml b/config/routes.yaml new file mode 100755 index 0000000..cef258c --- /dev/null +++ b/config/routes.yaml @@ -0,0 +1,11 @@ +# yaml-language-server: $schema=../vendor/symfony/routing/Loader/schema/routing.schema.json + +# This file is the entry point to configure the routes of your app. +# Methods with the #[Route] attribute are automatically imported. +# See also https://symfony.com/doc/current/routing.html + +# To list all registered routes, run the following command: +# bin/console debug:router + +controllers: + resource: routing.controllers diff --git a/config/routes/framework.yaml b/config/routes/framework.yaml new file mode 100755 index 0000000..bc1feac --- /dev/null +++ b/config/routes/framework.yaml @@ -0,0 +1,4 @@ +when@dev: + _errors: + resource: '@FrameworkBundle/Resources/config/routing/errors.php' + prefix: /_error diff --git a/config/routes/security.yaml b/config/routes/security.yaml new file mode 100755 index 0000000..f853be1 --- /dev/null +++ b/config/routes/security.yaml @@ -0,0 +1,3 @@ +_security_logout: + resource: security.route_loader.logout + type: service diff --git a/config/routes/web_profiler.yaml b/config/routes/web_profiler.yaml new file mode 100755 index 0000000..b3b7b4b --- /dev/null +++ b/config/routes/web_profiler.yaml @@ -0,0 +1,8 @@ +when@dev: + web_profiler_wdt: + resource: '@WebProfilerBundle/Resources/config/routing/wdt.php' + prefix: /_wdt + + web_profiler_profiler: + resource: '@WebProfilerBundle/Resources/config/routing/profiler.php' + prefix: /_profiler diff --git a/config/services.yaml b/config/services.yaml new file mode 100755 index 0000000..79b8ce2 --- /dev/null +++ b/config/services.yaml @@ -0,0 +1,23 @@ +# yaml-language-server: $schema=../vendor/symfony/dependency-injection/Loader/schema/services.schema.json + +# This file is the entry point to configure your own services. +# Files in the packages/ subdirectory configure your dependencies. +# See also https://symfony.com/doc/current/service_container/import.html + +# Put parameters here that don't need to change on each machine where the app is deployed +# https://symfony.com/doc/current/best_practices.html#use-parameters-for-application-configuration +parameters: + +services: + # default configuration for services in *this* file + _defaults: + autowire: true # Automatically injects dependencies in your services. + autoconfigure: true # Automatically registers your services as commands, event subscribers, etc. + + # makes classes in src/ available to be used as services + # this creates a service per class whose id is the fully-qualified class name + App\: + resource: '../src/' + + # add more service definitions when explicit configuration is needed + # please note that last definitions always *replace* previous ones diff --git a/migrations/.gitignore b/migrations/.gitignore new file mode 100755 index 0000000..e69de29 diff --git a/public/assets/css/azia.css b/public/assets/css/azia.css new file mode 100755 index 0000000..636e96f --- /dev/null +++ b/public/assets/css/azia.css @@ -0,0 +1,37519 @@ +/* +* Azia v1.0.0 (https://www.bootstrapdash.com/demo/azia/v1.0/) +* Copyright 2019 BootstrapDash +* Licensed under BootstrapDash License +* +* +* ------ Table Of Contents ------- +* +* 1. FONTS IMPORT +* 2. BOOTSTRAP FRAMEWORK +* 3. BOOTSTRAP OVERRIDES +* 3.1 Accordion +* 3.2 Alerts +* 3.3 Badge +* 3.4 Breadcrumb +* 3.5 Buttons +* 3.6 Cards +* 3.7 Carousel +* 3.8 Dropdown +* 3.9 Forms +* 3.10 Grid +* 3.11 Input Group +* 3.12 Modal +* 3.13 Nav +* 3.14 Pagination +* 3.15 Popover +* 3.16 Progress +* 3.17 Table +* 3.18 Toast +* 3.19 Tooltip +* 4. CUSTOM ELEMENT STYLES +* 4.1 Accordion +* 4.2 Buttons +* 4.3 Charts +* 4.4 Forms +* 4.5 Image +* 4.6 List +* 4.7 Modal +* 4.8 Nav +* 5. CUSTOM VENDOR STYLES +* 5.1 DataTables +* 5.2 DatePicker +* 5.3 DateTimePicker +* 5.4 jQuery Steps +* 5.5 jQVMap +* 5.6 Morris +* 5.7 Parsley +* 5.8 Quill +* 5.9 RangSlider +* 5.10 Scrollbar +* 5.11 Select2 +* 5.12 Spectrum +* 6. PAGE LAYOUT STYLES +* 6.1 Content +* 6.2 Footer +* 6.3 Global +* 6.4 Header +* 6.5 Iconbar +* 6.6 Navbar +* 6.7 Navbar Variant +* 6.8 Sidebar +* 7. TEMPLATE STYLES +* 7.1 Demo +* 7.2 Calendar +* 7.3 Chat +* 7.4 Contacts +* 7.5 Invoice +* 7.6 Mail +* 7.7 Profile +* 7.8 Signin +* 7.9 Signup +* 7.10 Error +* 8. DASHBOARD STYLES +* 8.1 Dashboard One +* 8.2 Dashboard Two +* 8.3 Dashboard Three +* 8.4 Dashboard Four +* 8.5 Dashboard Five +* 8.6 Dashboard Six +* 8.7 Dashboard Seven +* 8.8 Dashboard Eight +* 8.9 Dashboard Nine +* 8.10 Dashboard Ten +* 9. UTILITIES/HELPER CLASSES +* 9.1 Background +* 9.2 Border +* 9.3 Height +* 9.4 Margin +* 9.5 Misc +* 9.6 Padding +* 9.7 Position +* 9.8 Typography +* 9.9 Width +* +*/ +/* ############### FONTS IMPORT ############### */ +@import url("https://fonts.googleapis.com/css?family=Roboto:300,400,500,700,900"); +@import url("https://fonts.googleapis.com/css?family=Montserrat:300,400,500,600,700,800"); +@import url("https://fonts.googleapis.com/css?family=Raleway:400,500,600,700,800"); +/* ############### BOOTSTRAP FRAMEWORK ############### */ +/*! + * Bootstrap v4.5.2 (https://getbootstrap.com/) + * Copyright 2011-2020 The Bootstrap Authors + * Copyright 2011-2020 Twitter, Inc. + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) + */ +:root { + --blue: #3366ff; + --indigo: #5b47fb; + --purple: #6f42c1; + --pink: #f10075; + --red: #dc3545; + --orange: #fd7e14; + --yellow: #ffc107; + --green: #3bb001; + --teal: #00cccc; + --cyan: #17a2b8; + --white: #fff; + --gray: #7987a1; + --gray-dark: #3b4863; + --primary: #3366ff; + --secondary: #7987a1; + --success: #3bb001; + --info: #17a2b8; + --warning: #ffc107; + --danger: #dc3545; + --light: #f4f5f8; + --dark: #3b4863; + --breakpoint-xs: 0; + --breakpoint-sm: 576px; + --breakpoint-md: 768px; + --breakpoint-lg: 992px; + --breakpoint-xl: 1200px; + --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; + --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; } + +*, +*::before, +*::after { + box-sizing: border-box; } + +html { + font-family: sans-serif; + line-height: 1.15; + -webkit-text-size-adjust: 100%; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); } + +article, aside, figcaption, figure, footer, header, hgroup, main, nav, section { + display: block; } + +body { + margin: 0; + font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; + font-size: 0.875rem; + font-weight: 400; + line-height: 1.5; + color: #031b4e; + text-align: left; + background-color: #fff; } + +[tabindex="-1"]:focus:not(:focus-visible) { + outline: 0 !important; } + +hr { + box-sizing: content-box; + height: 0; + overflow: visible; } + +h1, h2, h3, h4, h5, h6 { + margin-top: 0; + margin-bottom: 0.5rem; } + +p { + margin-top: 0; + margin-bottom: 1rem; } + +abbr[title], +abbr[data-original-title] { + text-decoration: underline; + text-decoration: underline dotted; + cursor: help; + border-bottom: 0; + text-decoration-skip-ink: none; } + +address { + margin-bottom: 1rem; + font-style: normal; + line-height: inherit; } + +ol, +ul, +dl { + margin-top: 0; + margin-bottom: 1rem; } + +ol ol, +ul ul, +ol ul, +ul ol { + margin-bottom: 0; } + +dt { + font-weight: 700; } + +dd { + margin-bottom: .5rem; + margin-left: 0; } + +blockquote { + margin: 0 0 1rem; } + +b, +strong { + font-weight: bolder; } + +small { + font-size: 80%; } + +sub, +sup { + position: relative; + font-size: 75%; + line-height: 0; + vertical-align: baseline; } + +sub { + bottom: -.25em; } + +sup { + top: -.5em; } + +a { + color: #3366ff; + text-decoration: none; + background-color: transparent; } + a:hover { + color: #0039e6; + text-decoration: none; } + +a:not([href]):not([class]) { + color: inherit; + text-decoration: none; } + a:not([href]):not([class]):hover { + color: inherit; + text-decoration: none; } + +pre, +code, +kbd, +samp { + font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; + font-size: 1em; } + +pre { + margin-top: 0; + margin-bottom: 1rem; + overflow: auto; + -ms-overflow-style: scrollbar; } + +figure { + margin: 0 0 1rem; } + +img { + vertical-align: middle; + border-style: none; } + +svg { + overflow: hidden; + vertical-align: middle; } + +table { + border-collapse: collapse; } + +caption { + padding-top: 0.75rem; + padding-bottom: 0.75rem; + color: #7987a1; + text-align: left; + caption-side: bottom; } + +th { + text-align: inherit; } + +label { + display: inline-block; + margin-bottom: 0.5rem; } + +button { + border-radius: 0; } + +button:focus { + outline: 1px dotted; + outline: 5px auto -webkit-focus-ring-color; } + +input, +button, +select, +optgroup, +textarea { + margin: 0; + font-family: inherit; + font-size: inherit; + line-height: inherit; } + +button, +input { + overflow: visible; } + +button, +select { + text-transform: none; } + +[role="button"] { + cursor: pointer; } + +select { + word-wrap: normal; } + +button, +[type="button"], +[type="reset"], +[type="submit"] { + -webkit-appearance: button; } + +button:not(:disabled), +[type="button"]:not(:disabled), +[type="reset"]:not(:disabled), +[type="submit"]:not(:disabled) { + cursor: pointer; } + +button::-moz-focus-inner, +[type="button"]::-moz-focus-inner, +[type="reset"]::-moz-focus-inner, +[type="submit"]::-moz-focus-inner { + padding: 0; + border-style: none; } + +input[type="radio"], +input[type="checkbox"] { + box-sizing: border-box; + padding: 0; } + +textarea { + overflow: auto; + resize: vertical; } + +fieldset { + min-width: 0; + padding: 0; + margin: 0; + border: 0; } + +legend { + display: block; + width: 100%; + max-width: 100%; + padding: 0; + margin-bottom: .5rem; + font-size: 1.5rem; + line-height: inherit; + color: inherit; + white-space: normal; } + +progress { + vertical-align: baseline; } + +[type="number"]::-webkit-inner-spin-button, +[type="number"]::-webkit-outer-spin-button { + height: auto; } + +[type="search"] { + outline-offset: -2px; + -webkit-appearance: none; } + +[type="search"]::-webkit-search-decoration { + -webkit-appearance: none; } + +::-webkit-file-upload-button { + font: inherit; + -webkit-appearance: button; } + +output { + display: inline-block; } + +summary { + display: list-item; + cursor: pointer; } + +template { + display: none; } + +[hidden] { + display: none !important; } + +h1, h2, h3, h4, h5, h6, +.h1, .h2, .h3, .h4, .h5, .h6 { + margin-bottom: 0.5rem; + font-weight: 500; + line-height: 1.2; } + +h1, .h1 { + font-size: 2.1875rem; } + +h2, .h2 { + font-size: 1.75rem; } + +h3, .h3 { + font-size: 1.53125rem; } + +h4, .h4 { + font-size: 1.3125rem; } + +h5, .h5 { + font-size: 1.09375rem; } + +h6, .h6 { + font-size: 0.875rem; } + +.lead { + font-size: 1.09375rem; + font-weight: 300; } + +.display-1 { + font-size: 6rem; + font-weight: 300; + line-height: 1.2; } + +.display-2 { + font-size: 5.5rem; + font-weight: 300; + line-height: 1.2; } + +.display-3 { + font-size: 4.5rem; + font-weight: 300; + line-height: 1.2; } + +.display-4 { + font-size: 3.5rem; + font-weight: 300; + line-height: 1.2; } + +hr { + margin-top: 1rem; + margin-bottom: 1rem; + border: 0; + border-top: 1px solid rgba(0, 0, 0, 0.1); } + +small, +.small { + font-size: 80%; + font-weight: 400; } + +mark, +.mark { + padding: 0.2em; + background-color: #fcf8e3; } + +.list-unstyled { + padding-left: 0; + list-style: none; } + +.list-inline { + padding-left: 0; + list-style: none; } + +.list-inline-item { + display: inline-block; } + .list-inline-item:not(:last-child) { + margin-right: 0.5rem; } + +.initialism { + font-size: 90%; + text-transform: uppercase; } + +.blockquote { + margin-bottom: 1rem; + font-size: 1.09375rem; } + +.blockquote-footer { + display: block; + font-size: 80%; + color: #7987a1; } + .blockquote-footer::before { + content: "\2014\00A0"; } + +.img-fluid { + max-width: 100%; + height: auto; } + +.img-thumbnail { + padding: 0.25rem; + background-color: #fff; + border: 1px solid #cdd4e0; + border-radius: 3px; + max-width: 100%; + height: auto; } + +.figure { + display: inline-block; } + +.figure-img { + margin-bottom: 0.5rem; + line-height: 1; } + +.figure-caption { + font-size: 90%; + color: #7987a1; } + +code { + font-size: 87.5%; + color: #f10075; + word-wrap: break-word; } + a > code { + color: inherit; } + +kbd { + padding: 0.2rem 0.4rem; + font-size: 87.5%; + color: #fff; + background-color: #1c273c; + border-radius: 0.2rem; } + kbd kbd { + padding: 0; + font-size: 100%; + font-weight: 700; } + +pre { + display: block; + font-size: 87.5%; + color: #1c273c; } + pre code { + font-size: inherit; + color: inherit; + word-break: normal; } + +.pre-scrollable { + max-height: 340px; + overflow-y: scroll; } + +.container, +.container-fluid, +.container-sm, +.container-md, +.container-lg, +.container-xl { + width: 100%; + padding-right: 15px; + padding-left: 15px; + margin-right: auto; + margin-left: auto; } + +@media (min-width: 576px) { + .container, .container-sm { + max-width: 540px; } } + +@media (min-width: 768px) { + .container, .container-sm, .container-md { + max-width: 720px; } } + +@media (min-width: 992px) { + .container, .container-sm, .container-md, .container-lg { + max-width: 960px; } } + +@media (min-width: 1200px) { + .container, .container-sm, .container-md, .container-lg, .container-xl { + max-width: 1140px; } } + +.row { + display: flex; + flex-wrap: wrap; + margin-right: -15px; + margin-left: -15px; } + +.no-gutters { + margin-right: 0; + margin-left: 0; } + .no-gutters > .col, + .no-gutters > [class*="col-"] { + padding-right: 0; + padding-left: 0; } + +.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col, +.col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm, +.col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md, +.col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg, +.col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl, +.col-xl-auto { + position: relative; + width: 100%; + padding-right: 15px; + padding-left: 15px; } + +.col { + flex-basis: 0; + flex-grow: 1; + max-width: 100%; } + +.row-cols-1 > * { + flex: 0 0 100%; + max-width: 100%; } + +.row-cols-2 > * { + flex: 0 0 50%; + max-width: 50%; } + +.row-cols-3 > * { + flex: 0 0 33.33333%; + max-width: 33.33333%; } + +.row-cols-4 > * { + flex: 0 0 25%; + max-width: 25%; } + +.row-cols-5 > * { + flex: 0 0 20%; + max-width: 20%; } + +.row-cols-6 > * { + flex: 0 0 16.66667%; + max-width: 16.66667%; } + +.col-auto { + flex: 0 0 auto; + width: auto; + max-width: 100%; } + +.col-1 { + flex: 0 0 8.33333%; + max-width: 8.33333%; } + +.col-2 { + flex: 0 0 16.66667%; + max-width: 16.66667%; } + +.col-3 { + flex: 0 0 25%; + max-width: 25%; } + +.col-4 { + flex: 0 0 33.33333%; + max-width: 33.33333%; } + +.col-5 { + flex: 0 0 41.66667%; + max-width: 41.66667%; } + +.col-6 { + flex: 0 0 50%; + max-width: 50%; } + +.col-7 { + flex: 0 0 58.33333%; + max-width: 58.33333%; } + +.col-8 { + flex: 0 0 66.66667%; + max-width: 66.66667%; } + +.col-9 { + flex: 0 0 75%; + max-width: 75%; } + +.col-10 { + flex: 0 0 83.33333%; + max-width: 83.33333%; } + +.col-11 { + flex: 0 0 91.66667%; + max-width: 91.66667%; } + +.col-12 { + flex: 0 0 100%; + max-width: 100%; } + +.order-first { + order: -1; } + +.order-last { + order: 13; } + +.order-0 { + order: 0; } + +.order-1 { + order: 1; } + +.order-2 { + order: 2; } + +.order-3 { + order: 3; } + +.order-4 { + order: 4; } + +.order-5 { + order: 5; } + +.order-6 { + order: 6; } + +.order-7 { + order: 7; } + +.order-8 { + order: 8; } + +.order-9 { + order: 9; } + +.order-10 { + order: 10; } + +.order-11 { + order: 11; } + +.order-12 { + order: 12; } + +.offset-1 { + margin-left: 8.33333%; } + +.offset-2 { + margin-left: 16.66667%; } + +.offset-3 { + margin-left: 25%; } + +.offset-4 { + margin-left: 33.33333%; } + +.offset-5 { + margin-left: 41.66667%; } + +.offset-6 { + margin-left: 50%; } + +.offset-7 { + margin-left: 58.33333%; } + +.offset-8 { + margin-left: 66.66667%; } + +.offset-9 { + margin-left: 75%; } + +.offset-10 { + margin-left: 83.33333%; } + +.offset-11 { + margin-left: 91.66667%; } + +@media (min-width: 576px) { + .col-sm { + flex-basis: 0; + flex-grow: 1; + max-width: 100%; } + .row-cols-sm-1 > * { + flex: 0 0 100%; + max-width: 100%; } + .row-cols-sm-2 > * { + flex: 0 0 50%; + max-width: 50%; } + .row-cols-sm-3 > * { + flex: 0 0 33.33333%; + max-width: 33.33333%; } + .row-cols-sm-4 > * { + flex: 0 0 25%; + max-width: 25%; } + .row-cols-sm-5 > * { + flex: 0 0 20%; + max-width: 20%; } + .row-cols-sm-6 > * { + flex: 0 0 16.66667%; + max-width: 16.66667%; } + .col-sm-auto { + flex: 0 0 auto; + width: auto; + max-width: 100%; } + .col-sm-1 { + flex: 0 0 8.33333%; + max-width: 8.33333%; } + .col-sm-2 { + flex: 0 0 16.66667%; + max-width: 16.66667%; } + .col-sm-3 { + flex: 0 0 25%; + max-width: 25%; } + .col-sm-4 { + flex: 0 0 33.33333%; + max-width: 33.33333%; } + .col-sm-5 { + flex: 0 0 41.66667%; + max-width: 41.66667%; } + .col-sm-6 { + flex: 0 0 50%; + max-width: 50%; } + .col-sm-7 { + flex: 0 0 58.33333%; + max-width: 58.33333%; } + .col-sm-8 { + flex: 0 0 66.66667%; + max-width: 66.66667%; } + .col-sm-9 { + flex: 0 0 75%; + max-width: 75%; } + .col-sm-10 { + flex: 0 0 83.33333%; + max-width: 83.33333%; } + .col-sm-11 { + flex: 0 0 91.66667%; + max-width: 91.66667%; } + .col-sm-12 { + flex: 0 0 100%; + max-width: 100%; } + .order-sm-first { + order: -1; } + .order-sm-last { + order: 13; } + .order-sm-0 { + order: 0; } + .order-sm-1 { + order: 1; } + .order-sm-2 { + order: 2; } + .order-sm-3 { + order: 3; } + .order-sm-4 { + order: 4; } + .order-sm-5 { + order: 5; } + .order-sm-6 { + order: 6; } + .order-sm-7 { + order: 7; } + .order-sm-8 { + order: 8; } + .order-sm-9 { + order: 9; } + .order-sm-10 { + order: 10; } + .order-sm-11 { + order: 11; } + .order-sm-12 { + order: 12; } + .offset-sm-0 { + margin-left: 0; } + .offset-sm-1 { + margin-left: 8.33333%; } + .offset-sm-2 { + margin-left: 16.66667%; } + .offset-sm-3 { + margin-left: 25%; } + .offset-sm-4 { + margin-left: 33.33333%; } + .offset-sm-5 { + margin-left: 41.66667%; } + .offset-sm-6 { + margin-left: 50%; } + .offset-sm-7 { + margin-left: 58.33333%; } + .offset-sm-8 { + margin-left: 66.66667%; } + .offset-sm-9 { + margin-left: 75%; } + .offset-sm-10 { + margin-left: 83.33333%; } + .offset-sm-11 { + margin-left: 91.66667%; } } + +@media (min-width: 768px) { + .col-md { + flex-basis: 0; + flex-grow: 1; + max-width: 100%; } + .row-cols-md-1 > * { + flex: 0 0 100%; + max-width: 100%; } + .row-cols-md-2 > * { + flex: 0 0 50%; + max-width: 50%; } + .row-cols-md-3 > * { + flex: 0 0 33.33333%; + max-width: 33.33333%; } + .row-cols-md-4 > * { + flex: 0 0 25%; + max-width: 25%; } + .row-cols-md-5 > * { + flex: 0 0 20%; + max-width: 20%; } + .row-cols-md-6 > * { + flex: 0 0 16.66667%; + max-width: 16.66667%; } + .col-md-auto { + flex: 0 0 auto; + width: auto; + max-width: 100%; } + .col-md-1 { + flex: 0 0 8.33333%; + max-width: 8.33333%; } + .col-md-2 { + flex: 0 0 16.66667%; + max-width: 16.66667%; } + .col-md-3 { + flex: 0 0 25%; + max-width: 25%; } + .col-md-4 { + flex: 0 0 33.33333%; + max-width: 33.33333%; } + .col-md-5 { + flex: 0 0 41.66667%; + max-width: 41.66667%; } + .col-md-6 { + flex: 0 0 50%; + max-width: 50%; } + .col-md-7 { + flex: 0 0 58.33333%; + max-width: 58.33333%; } + .col-md-8 { + flex: 0 0 66.66667%; + max-width: 66.66667%; } + .col-md-9 { + flex: 0 0 75%; + max-width: 75%; } + .col-md-10 { + flex: 0 0 83.33333%; + max-width: 83.33333%; } + .col-md-11 { + flex: 0 0 91.66667%; + max-width: 91.66667%; } + .col-md-12 { + flex: 0 0 100%; + max-width: 100%; } + .order-md-first { + order: -1; } + .order-md-last { + order: 13; } + .order-md-0 { + order: 0; } + .order-md-1 { + order: 1; } + .order-md-2 { + order: 2; } + .order-md-3 { + order: 3; } + .order-md-4 { + order: 4; } + .order-md-5 { + order: 5; } + .order-md-6 { + order: 6; } + .order-md-7 { + order: 7; } + .order-md-8 { + order: 8; } + .order-md-9 { + order: 9; } + .order-md-10 { + order: 10; } + .order-md-11 { + order: 11; } + .order-md-12 { + order: 12; } + .offset-md-0 { + margin-left: 0; } + .offset-md-1 { + margin-left: 8.33333%; } + .offset-md-2 { + margin-left: 16.66667%; } + .offset-md-3 { + margin-left: 25%; } + .offset-md-4 { + margin-left: 33.33333%; } + .offset-md-5 { + margin-left: 41.66667%; } + .offset-md-6 { + margin-left: 50%; } + .offset-md-7 { + margin-left: 58.33333%; } + .offset-md-8 { + margin-left: 66.66667%; } + .offset-md-9 { + margin-left: 75%; } + .offset-md-10 { + margin-left: 83.33333%; } + .offset-md-11 { + margin-left: 91.66667%; } } + +@media (min-width: 992px) { + .col-lg { + flex-basis: 0; + flex-grow: 1; + max-width: 100%; } + .row-cols-lg-1 > * { + flex: 0 0 100%; + max-width: 100%; } + .row-cols-lg-2 > * { + flex: 0 0 50%; + max-width: 50%; } + .row-cols-lg-3 > * { + flex: 0 0 33.33333%; + max-width: 33.33333%; } + .row-cols-lg-4 > * { + flex: 0 0 25%; + max-width: 25%; } + .row-cols-lg-5 > * { + flex: 0 0 20%; + max-width: 20%; } + .row-cols-lg-6 > * { + flex: 0 0 16.66667%; + max-width: 16.66667%; } + .col-lg-auto { + flex: 0 0 auto; + width: auto; + max-width: 100%; } + .col-lg-1 { + flex: 0 0 8.33333%; + max-width: 8.33333%; } + .col-lg-2 { + flex: 0 0 16.66667%; + max-width: 16.66667%; } + .col-lg-3 { + flex: 0 0 25%; + max-width: 25%; } + .col-lg-4 { + flex: 0 0 33.33333%; + max-width: 33.33333%; } + .col-lg-5 { + flex: 0 0 41.66667%; + max-width: 41.66667%; } + .col-lg-6 { + flex: 0 0 50%; + max-width: 50%; } + .col-lg-7 { + flex: 0 0 58.33333%; + max-width: 58.33333%; } + .col-lg-8 { + flex: 0 0 66.66667%; + max-width: 66.66667%; } + .col-lg-9 { + flex: 0 0 75%; + max-width: 75%; } + .col-lg-10 { + flex: 0 0 83.33333%; + max-width: 83.33333%; } + .col-lg-11 { + flex: 0 0 91.66667%; + max-width: 91.66667%; } + .col-lg-12 { + flex: 0 0 100%; + max-width: 100%; } + .order-lg-first { + order: -1; } + .order-lg-last { + order: 13; } + .order-lg-0 { + order: 0; } + .order-lg-1 { + order: 1; } + .order-lg-2 { + order: 2; } + .order-lg-3 { + order: 3; } + .order-lg-4 { + order: 4; } + .order-lg-5 { + order: 5; } + .order-lg-6 { + order: 6; } + .order-lg-7 { + order: 7; } + .order-lg-8 { + order: 8; } + .order-lg-9 { + order: 9; } + .order-lg-10 { + order: 10; } + .order-lg-11 { + order: 11; } + .order-lg-12 { + order: 12; } + .offset-lg-0 { + margin-left: 0; } + .offset-lg-1 { + margin-left: 8.33333%; } + .offset-lg-2 { + margin-left: 16.66667%; } + .offset-lg-3 { + margin-left: 25%; } + .offset-lg-4 { + margin-left: 33.33333%; } + .offset-lg-5 { + margin-left: 41.66667%; } + .offset-lg-6 { + margin-left: 50%; } + .offset-lg-7 { + margin-left: 58.33333%; } + .offset-lg-8 { + margin-left: 66.66667%; } + .offset-lg-9 { + margin-left: 75%; } + .offset-lg-10 { + margin-left: 83.33333%; } + .offset-lg-11 { + margin-left: 91.66667%; } } + +@media (min-width: 1200px) { + .col-xl { + flex-basis: 0; + flex-grow: 1; + max-width: 100%; } + .row-cols-xl-1 > * { + flex: 0 0 100%; + max-width: 100%; } + .row-cols-xl-2 > * { + flex: 0 0 50%; + max-width: 50%; } + .row-cols-xl-3 > * { + flex: 0 0 33.33333%; + max-width: 33.33333%; } + .row-cols-xl-4 > * { + flex: 0 0 25%; + max-width: 25%; } + .row-cols-xl-5 > * { + flex: 0 0 20%; + max-width: 20%; } + .row-cols-xl-6 > * { + flex: 0 0 16.66667%; + max-width: 16.66667%; } + .col-xl-auto { + flex: 0 0 auto; + width: auto; + max-width: 100%; } + .col-xl-1 { + flex: 0 0 8.33333%; + max-width: 8.33333%; } + .col-xl-2 { + flex: 0 0 16.66667%; + max-width: 16.66667%; } + .col-xl-3 { + flex: 0 0 25%; + max-width: 25%; } + .col-xl-4 { + flex: 0 0 33.33333%; + max-width: 33.33333%; } + .col-xl-5 { + flex: 0 0 41.66667%; + max-width: 41.66667%; } + .col-xl-6 { + flex: 0 0 50%; + max-width: 50%; } + .col-xl-7 { + flex: 0 0 58.33333%; + max-width: 58.33333%; } + .col-xl-8 { + flex: 0 0 66.66667%; + max-width: 66.66667%; } + .col-xl-9 { + flex: 0 0 75%; + max-width: 75%; } + .col-xl-10 { + flex: 0 0 83.33333%; + max-width: 83.33333%; } + .col-xl-11 { + flex: 0 0 91.66667%; + max-width: 91.66667%; } + .col-xl-12 { + flex: 0 0 100%; + max-width: 100%; } + .order-xl-first { + order: -1; } + .order-xl-last { + order: 13; } + .order-xl-0 { + order: 0; } + .order-xl-1 { + order: 1; } + .order-xl-2 { + order: 2; } + .order-xl-3 { + order: 3; } + .order-xl-4 { + order: 4; } + .order-xl-5 { + order: 5; } + .order-xl-6 { + order: 6; } + .order-xl-7 { + order: 7; } + .order-xl-8 { + order: 8; } + .order-xl-9 { + order: 9; } + .order-xl-10 { + order: 10; } + .order-xl-11 { + order: 11; } + .order-xl-12 { + order: 12; } + .offset-xl-0 { + margin-left: 0; } + .offset-xl-1 { + margin-left: 8.33333%; } + .offset-xl-2 { + margin-left: 16.66667%; } + .offset-xl-3 { + margin-left: 25%; } + .offset-xl-4 { + margin-left: 33.33333%; } + .offset-xl-5 { + margin-left: 41.66667%; } + .offset-xl-6 { + margin-left: 50%; } + .offset-xl-7 { + margin-left: 58.33333%; } + .offset-xl-8 { + margin-left: 66.66667%; } + .offset-xl-9 { + margin-left: 75%; } + .offset-xl-10 { + margin-left: 83.33333%; } + .offset-xl-11 { + margin-left: 91.66667%; } } + +.table { + width: 100%; + margin-bottom: 1rem; + color: #031b4e; } + .table th, + .table td { + padding: 0.75rem; + vertical-align: top; + border-top: 1px solid #cdd4e0; } + .table thead th { + vertical-align: bottom; + border-bottom: 2px solid #cdd4e0; } + .table tbody + tbody { + border-top: 2px solid #cdd4e0; } + +.table-sm th, +.table-sm td { + padding: 0.3rem; } + +.table-bordered { + border: 1px solid #cdd4e0; } + .table-bordered th, + .table-bordered td { + border: 1px solid #cdd4e0; } + .table-bordered thead th, + .table-bordered thead td { + border-bottom-width: 2px; } + +.table-borderless th, +.table-borderless td, +.table-borderless thead th, +.table-borderless tbody + tbody { + border: 0; } + +.table-striped tbody tr:nth-of-type(odd) { + background-color: rgba(0, 0, 0, 0.05); } + +.table-hover tbody tr:hover { + color: #031b4e; + background-color: rgba(0, 0, 0, 0.075); } + +.table-primary, +.table-primary > th, +.table-primary > td { + background-color: #c6d4ff; } + +.table-primary th, +.table-primary td, +.table-primary thead th, +.table-primary tbody + tbody { + border-color: #95afff; } + +.table-hover .table-primary:hover { + background-color: #adc1ff; } + .table-hover .table-primary:hover > td, + .table-hover .table-primary:hover > th { + background-color: #adc1ff; } + +.table-secondary, +.table-secondary > th, +.table-secondary > td { + background-color: #d9dde5; } + +.table-secondary th, +.table-secondary td, +.table-secondary thead th, +.table-secondary tbody + tbody { + border-color: #b9c1ce; } + +.table-hover .table-secondary:hover { + background-color: #cacfdb; } + .table-hover .table-secondary:hover > td, + .table-hover .table-secondary:hover > th { + background-color: #cacfdb; } + +.table-success, +.table-success > th, +.table-success > td { + background-color: #c8e9b8; } + +.table-success th, +.table-success td, +.table-success thead th, +.table-success tbody + tbody { + border-color: #99d67b; } + +.table-hover .table-success:hover { + background-color: #b9e3a5; } + .table-hover .table-success:hover > td, + .table-hover .table-success:hover > th { + background-color: #b9e3a5; } + +.table-info, +.table-info > th, +.table-info > td { + background-color: #bee5eb; } + +.table-info th, +.table-info td, +.table-info thead th, +.table-info tbody + tbody { + border-color: #86cfda; } + +.table-hover .table-info:hover { + background-color: #abdde5; } + .table-hover .table-info:hover > td, + .table-hover .table-info:hover > th { + background-color: #abdde5; } + +.table-warning, +.table-warning > th, +.table-warning > td { + background-color: #ffeeba; } + +.table-warning th, +.table-warning td, +.table-warning thead th, +.table-warning tbody + tbody { + border-color: #ffdf7e; } + +.table-hover .table-warning:hover { + background-color: #ffe8a1; } + .table-hover .table-warning:hover > td, + .table-hover .table-warning:hover > th { + background-color: #ffe8a1; } + +.table-danger, +.table-danger > th, +.table-danger > td { + background-color: #f5c6cb; } + +.table-danger th, +.table-danger td, +.table-danger thead th, +.table-danger tbody + tbody { + border-color: #ed969e; } + +.table-hover .table-danger:hover { + background-color: #f1b0b7; } + .table-hover .table-danger:hover > td, + .table-hover .table-danger:hover > th { + background-color: #f1b0b7; } + +.table-light, +.table-light > th, +.table-light > td { + background-color: #fcfcfd; } + +.table-light th, +.table-light td, +.table-light thead th, +.table-light tbody + tbody { + border-color: #f9fafb; } + +.table-hover .table-light:hover { + background-color: #ededf3; } + .table-hover .table-light:hover > td, + .table-hover .table-light:hover > th { + background-color: #ededf3; } + +.table-dark, +.table-dark > th, +.table-dark > td { + background-color: #c8ccd3; } + +.table-dark th, +.table-dark td, +.table-dark thead th, +.table-dark tbody + tbody { + border-color: #99a0ae; } + +.table-hover .table-dark:hover { + background-color: #babfc8; } + .table-hover .table-dark:hover > td, + .table-hover .table-dark:hover > th { + background-color: #babfc8; } + +.table-active, +.table-active > th, +.table-active > td { + background-color: rgba(0, 0, 0, 0.075); } + +.table-hover .table-active:hover { + background-color: rgba(0, 0, 0, 0.075); } + .table-hover .table-active:hover > td, + .table-hover .table-active:hover > th { + background-color: rgba(0, 0, 0, 0.075); } + +.table .thead-dark th { + color: #fff; + background-color: #3b4863; + border-color: #49597b; } + +.table .thead-light th { + color: #596882; + background-color: #e3e7ed; + border-color: #cdd4e0; } + +.table-dark { + color: #fff; + background-color: #3b4863; } + .table-dark th, + .table-dark td, + .table-dark thead th { + border-color: #49597b; } + .table-dark.table-bordered { + border: 0; } + .table-dark.table-striped tbody tr:nth-of-type(odd) { + background-color: rgba(255, 255, 255, 0.05); } + .table-dark.table-hover tbody tr:hover { + color: #fff; + background-color: rgba(255, 255, 255, 0.075); } + +@media (max-width: 575.98px) { + .table-responsive-sm { + display: block; + width: 100%; + overflow-x: auto; + -webkit-overflow-scrolling: touch; } + .table-responsive-sm > .table-bordered { + border: 0; } } + +@media (max-width: 767.98px) { + .table-responsive-md { + display: block; + width: 100%; + overflow-x: auto; + -webkit-overflow-scrolling: touch; } + .table-responsive-md > .table-bordered { + border: 0; } } + +@media (max-width: 991.98px) { + .table-responsive-lg { + display: block; + width: 100%; + overflow-x: auto; + -webkit-overflow-scrolling: touch; } + .table-responsive-lg > .table-bordered { + border: 0; } } + +@media (max-width: 1199.98px) { + .table-responsive-xl { + display: block; + width: 100%; + overflow-x: auto; + -webkit-overflow-scrolling: touch; } + .table-responsive-xl > .table-bordered { + border: 0; } } + +.table-responsive { + display: block; + width: 100%; + overflow-x: auto; + -webkit-overflow-scrolling: touch; } + .table-responsive > .table-bordered { + border: 0; } + +.form-control { + display: block; + width: 100%; + height: calc(1.5em + 0.75rem + 2px); + padding: 0.375rem 0.75rem; + font-size: 0.875rem; + font-weight: 400; + line-height: 1.5; + color: #596882; + background-color: #fff; + background-clip: padding-box; + border: 1px solid #cdd4e0; + border-radius: 3px; + transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; } + @media (prefers-reduced-motion: reduce) { + .form-control { + transition: none; } } + .form-control::-ms-expand { + background-color: transparent; + border: 0; } + .form-control:-moz-focusring { + color: transparent; + text-shadow: 0 0 0 #596882; } + .form-control:focus { + color: #596882; + background-color: #fff; + border-color: #b3c6ff; + outline: 0; + box-shadow: 0 0 0 0.2rem rgba(51, 102, 255, 0.25); } + .form-control::placeholder { + color: #7987a1; + opacity: 1; } + .form-control:disabled, .form-control[readonly] { + background-color: #e3e7ed; + opacity: 1; } + +input[type="date"].form-control, +input[type="time"].form-control, +input[type="datetime-local"].form-control, +input[type="month"].form-control { + appearance: none; } + +select.form-control:focus::-ms-value { + color: #596882; + background-color: #fff; } + +.form-control-file, +.form-control-range { + display: block; + width: 100%; } + +.col-form-label { + padding-top: calc(0.375rem + 1px); + padding-bottom: calc(0.375rem + 1px); + margin-bottom: 0; + font-size: inherit; + line-height: 1.5; } + +.col-form-label-lg { + padding-top: calc(0.5rem + 1px); + padding-bottom: calc(0.5rem + 1px); + font-size: 1.09375rem; + line-height: 1.5; } + +.col-form-label-sm { + padding-top: calc(0.25rem + 1px); + padding-bottom: calc(0.25rem + 1px); + font-size: 0.76562rem; + line-height: 1.5; } + +.form-control-plaintext { + display: block; + width: 100%; + padding: 0.375rem 0; + margin-bottom: 0; + font-size: 0.875rem; + line-height: 1.5; + color: #031b4e; + background-color: transparent; + border: solid transparent; + border-width: 1px 0; } + .form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg { + padding-right: 0; + padding-left: 0; } + +.form-control-sm { + height: calc(1.5em + 0.5rem + 2px); + padding: 0.25rem 0.5rem; + font-size: 0.76562rem; + line-height: 1.5; + border-radius: 0.2rem; } + +.form-control-lg { + height: calc(1.5em + 1rem + 2px); + padding: 0.5rem 1rem; + font-size: 1.09375rem; + line-height: 1.5; + border-radius: 0.3rem; } + +select.form-control[size], select.form-control[multiple] { + height: auto; } + +textarea.form-control { + height: auto; } + +.form-group { + margin-bottom: 1rem; } + +.form-text { + display: block; + margin-top: 0.25rem; } + +.form-row { + display: flex; + flex-wrap: wrap; + margin-right: -5px; + margin-left: -5px; } + .form-row > .col, + .form-row > [class*="col-"] { + padding-right: 5px; + padding-left: 5px; } + +.form-check { + position: relative; + display: block; + padding-left: 1.25rem; } + +.form-check-input { + position: absolute; + margin-top: 0.3rem; + margin-left: -1.25rem; } + .form-check-input[disabled] ~ .form-check-label, + .form-check-input:disabled ~ .form-check-label { + color: #7987a1; } + +.form-check-label { + margin-bottom: 0; } + +.form-check-inline { + display: inline-flex; + align-items: center; + padding-left: 0; + margin-right: 0.75rem; } + .form-check-inline .form-check-input { + position: static; + margin-top: 0; + margin-right: 0.3125rem; + margin-left: 0; } + +.valid-feedback { + display: none; + width: 100%; + margin-top: 0.25rem; + font-size: 80%; + color: #3bb001; } + +.valid-tooltip { + position: absolute; + top: 100%; + left: 0; + z-index: 5; + display: none; + max-width: 100%; + padding: 0.25rem 0.5rem; + margin-top: .1rem; + font-size: 0.76562rem; + line-height: 1.5; + color: #fff; + background-color: rgba(59, 176, 1, 0.9); + border-radius: 3px; } + +.was-validated :valid ~ .valid-feedback, +.was-validated :valid ~ .valid-tooltip, +.is-valid ~ .valid-feedback, +.is-valid ~ .valid-tooltip { + display: block; } + +.was-validated .form-control:valid, .form-control.is-valid { + border-color: #3bb001; + padding-right: calc(1.5em + 0.75rem); + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%233bb001' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e"); + background-repeat: no-repeat; + background-position: right calc(0.375em + 0.1875rem) center; + background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); } + .was-validated .form-control:valid:focus, .form-control.is-valid:focus { + border-color: #3bb001; + box-shadow: 0 0 0 0.2rem rgba(59, 176, 1, 0.25); } + +.was-validated textarea.form-control:valid, textarea.form-control.is-valid { + padding-right: calc(1.5em + 0.75rem); + background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem); } + +.was-validated .custom-select:valid, .custom-select.is-valid { + border-color: #3bb001; + padding-right: calc(0.75em + 2.3125rem); + background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%233b4863' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%233bb001' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") #fff no-repeat center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); } + .was-validated .custom-select:valid:focus, .custom-select.is-valid:focus { + border-color: #3bb001; + box-shadow: 0 0 0 0.2rem rgba(59, 176, 1, 0.25); } + +.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label { + color: #3bb001; } + +.was-validated .form-check-input:valid ~ .valid-feedback, +.was-validated .form-check-input:valid ~ .valid-tooltip, .form-check-input.is-valid ~ .valid-feedback, +.form-check-input.is-valid ~ .valid-tooltip { + display: block; } + +.was-validated .custom-control-input:valid ~ .custom-control-label, .custom-control-input.is-valid ~ .custom-control-label { + color: #3bb001; } + .was-validated .custom-control-input:valid ~ .custom-control-label::before, .custom-control-input.is-valid ~ .custom-control-label::before { + border-color: #3bb001; } + +.was-validated .custom-control-input:valid:checked ~ .custom-control-label::before, .custom-control-input.is-valid:checked ~ .custom-control-label::before { + border-color: #4ce301; + background-color: #4ce301; } + +.was-validated .custom-control-input:valid:focus ~ .custom-control-label::before, .custom-control-input.is-valid:focus ~ .custom-control-label::before { + box-shadow: 0 0 0 0.2rem rgba(59, 176, 1, 0.25); } + +.was-validated .custom-control-input:valid:focus:not(:checked) ~ .custom-control-label::before, .custom-control-input.is-valid:focus:not(:checked) ~ .custom-control-label::before { + border-color: #3bb001; } + +.was-validated .custom-file-input:valid ~ .custom-file-label, .custom-file-input.is-valid ~ .custom-file-label { + border-color: #3bb001; } + +.was-validated .custom-file-input:valid:focus ~ .custom-file-label, .custom-file-input.is-valid:focus ~ .custom-file-label { + border-color: #3bb001; + box-shadow: 0 0 0 0.2rem rgba(59, 176, 1, 0.25); } + +.invalid-feedback { + display: none; + width: 100%; + margin-top: 0.25rem; + font-size: 80%; + color: #dc3545; } + +.invalid-tooltip { + position: absolute; + top: 100%; + left: 0; + z-index: 5; + display: none; + max-width: 100%; + padding: 0.25rem 0.5rem; + margin-top: .1rem; + font-size: 0.76562rem; + line-height: 1.5; + color: #fff; + background-color: rgba(220, 53, 69, 0.9); + border-radius: 3px; } + +.was-validated :invalid ~ .invalid-feedback, +.was-validated :invalid ~ .invalid-tooltip, +.is-invalid ~ .invalid-feedback, +.is-invalid ~ .invalid-tooltip { + display: block; } + +.was-validated .form-control:invalid, .form-control.is-invalid { + border-color: #dc3545; + padding-right: calc(1.5em + 0.75rem); + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e"); + background-repeat: no-repeat; + background-position: right calc(0.375em + 0.1875rem) center; + background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); } + .was-validated .form-control:invalid:focus, .form-control.is-invalid:focus { + border-color: #dc3545; + box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25); } + +.was-validated textarea.form-control:invalid, textarea.form-control.is-invalid { + padding-right: calc(1.5em + 0.75rem); + background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem); } + +.was-validated .custom-select:invalid, .custom-select.is-invalid { + border-color: #dc3545; + padding-right: calc(0.75em + 2.3125rem); + background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%233b4863' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e") #fff no-repeat center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); } + .was-validated .custom-select:invalid:focus, .custom-select.is-invalid:focus { + border-color: #dc3545; + box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25); } + +.was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label { + color: #dc3545; } + +.was-validated .form-check-input:invalid ~ .invalid-feedback, +.was-validated .form-check-input:invalid ~ .invalid-tooltip, .form-check-input.is-invalid ~ .invalid-feedback, +.form-check-input.is-invalid ~ .invalid-tooltip { + display: block; } + +.was-validated .custom-control-input:invalid ~ .custom-control-label, .custom-control-input.is-invalid ~ .custom-control-label { + color: #dc3545; } + .was-validated .custom-control-input:invalid ~ .custom-control-label::before, .custom-control-input.is-invalid ~ .custom-control-label::before { + border-color: #dc3545; } + +.was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before, .custom-control-input.is-invalid:checked ~ .custom-control-label::before { + border-color: #e4606d; + background-color: #e4606d; } + +.was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before, .custom-control-input.is-invalid:focus ~ .custom-control-label::before { + box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25); } + +.was-validated .custom-control-input:invalid:focus:not(:checked) ~ .custom-control-label::before, .custom-control-input.is-invalid:focus:not(:checked) ~ .custom-control-label::before { + border-color: #dc3545; } + +.was-validated .custom-file-input:invalid ~ .custom-file-label, .custom-file-input.is-invalid ~ .custom-file-label { + border-color: #dc3545; } + +.was-validated .custom-file-input:invalid:focus ~ .custom-file-label, .custom-file-input.is-invalid:focus ~ .custom-file-label { + border-color: #dc3545; + box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25); } + +.form-inline { + display: flex; + flex-flow: row wrap; + align-items: center; } + .form-inline .form-check { + width: 100%; } + @media (min-width: 576px) { + .form-inline label { + display: flex; + align-items: center; + justify-content: center; + margin-bottom: 0; } + .form-inline .form-group { + display: flex; + flex: 0 0 auto; + flex-flow: row wrap; + align-items: center; + margin-bottom: 0; } + .form-inline .form-control { + display: inline-block; + width: auto; + vertical-align: middle; } + .form-inline .form-control-plaintext { + display: inline-block; } + .form-inline .input-group, + .form-inline .custom-select { + width: auto; } + .form-inline .form-check { + display: flex; + align-items: center; + justify-content: center; + width: auto; + padding-left: 0; } + .form-inline .form-check-input { + position: relative; + flex-shrink: 0; + margin-top: 0; + margin-right: 0.25rem; + margin-left: 0; } + .form-inline .custom-control { + align-items: center; + justify-content: center; } + .form-inline .custom-control-label { + margin-bottom: 0; } } + +.btn { + display: inline-block; + font-weight: 400; + color: #031b4e; + text-align: center; + vertical-align: middle; + user-select: none; + background-color: transparent; + border: 1px solid transparent; + padding: 0.375rem 0.75rem; + font-size: 0.875rem; + line-height: 1.5; + border-radius: 3px; + transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; } + @media (prefers-reduced-motion: reduce) { + .btn { + transition: none; } } + .btn:hover { + color: #031b4e; + text-decoration: none; } + .btn:focus, .btn.focus { + outline: 0; + box-shadow: none; } + .btn.disabled, .btn:disabled { + opacity: 0.65; } + .btn:not(:disabled):not(.disabled) { + cursor: pointer; } + +a.btn.disabled, +fieldset:disabled a.btn { + pointer-events: none; } + +.btn-primary { + color: #fff; + background-color: #3366ff; + border-color: #3366ff; } + .btn-primary:hover { + color: #fff; + background-color: #0d49ff; + border-color: #0040ff; } + .btn-primary:focus, .btn-primary.focus { + color: #fff; + background-color: #0d49ff; + border-color: #0040ff; + box-shadow: 0 0 0 0.2rem rgba(82, 125, 255, 0.5); } + .btn-primary.disabled, .btn-primary:disabled { + color: #fff; + background-color: #3366ff; + border-color: #3366ff; } + .btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active, + .show > .btn-primary.dropdown-toggle { + color: #fff; + background-color: #0040ff; + border-color: #003df2; } + .btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus, + .show > .btn-primary.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(82, 125, 255, 0.5); } + +.btn-secondary { + color: #fff; + background-color: #7987a1; + border-color: #7987a1; } + .btn-secondary:hover { + color: #fff; + background-color: #64738f; + border-color: #5f6d88; } + .btn-secondary:focus, .btn-secondary.focus { + color: #fff; + background-color: #64738f; + border-color: #5f6d88; + box-shadow: 0 0 0 0.2rem rgba(141, 153, 175, 0.5); } + .btn-secondary.disabled, .btn-secondary:disabled { + color: #fff; + background-color: #7987a1; + border-color: #7987a1; } + .btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active, + .show > .btn-secondary.dropdown-toggle { + color: #fff; + background-color: #5f6d88; + border-color: #5a6780; } + .btn-secondary:not(:disabled):not(.disabled):active:focus, .btn-secondary:not(:disabled):not(.disabled).active:focus, + .show > .btn-secondary.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(141, 153, 175, 0.5); } + +.btn-success { + color: #fff; + background-color: #3bb001; + border-color: #3bb001; } + .btn-success:hover { + color: #fff; + background-color: #2e8a01; + border-color: #2a7d01; } + .btn-success:focus, .btn-success.focus { + color: #fff; + background-color: #2e8a01; + border-color: #2a7d01; + box-shadow: 0 0 0 0.2rem rgba(88, 188, 39, 0.5); } + .btn-success.disabled, .btn-success:disabled { + color: #fff; + background-color: #3bb001; + border-color: #3bb001; } + .btn-success:not(:disabled):not(.disabled):active, .btn-success:not(:disabled):not(.disabled).active, + .show > .btn-success.dropdown-toggle { + color: #fff; + background-color: #2a7d01; + border-color: #267101; } + .btn-success:not(:disabled):not(.disabled):active:focus, .btn-success:not(:disabled):not(.disabled).active:focus, + .show > .btn-success.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(88, 188, 39, 0.5); } + +.btn-info { + color: #fff; + background-color: #17a2b8; + border-color: #17a2b8; } + .btn-info:hover { + color: #fff; + background-color: #138496; + border-color: #117a8b; } + .btn-info:focus, .btn-info.focus { + color: #fff; + background-color: #138496; + border-color: #117a8b; + box-shadow: 0 0 0 0.2rem rgba(58, 176, 195, 0.5); } + .btn-info.disabled, .btn-info:disabled { + color: #fff; + background-color: #17a2b8; + border-color: #17a2b8; } + .btn-info:not(:disabled):not(.disabled):active, .btn-info:not(:disabled):not(.disabled).active, + .show > .btn-info.dropdown-toggle { + color: #fff; + background-color: #117a8b; + border-color: #10707f; } + .btn-info:not(:disabled):not(.disabled):active:focus, .btn-info:not(:disabled):not(.disabled).active:focus, + .show > .btn-info.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(58, 176, 195, 0.5); } + +.btn-warning { + color: #1c273c; + background-color: #ffc107; + border-color: #ffc107; } + .btn-warning:hover { + color: #1c273c; + background-color: #e0a800; + border-color: #d39e00; } + .btn-warning:focus, .btn-warning.focus { + color: #1c273c; + background-color: #e0a800; + border-color: #d39e00; + box-shadow: 0 0 0 0.2rem rgba(221, 170, 15, 0.5); } + .btn-warning.disabled, .btn-warning:disabled { + color: #1c273c; + background-color: #ffc107; + border-color: #ffc107; } + .btn-warning:not(:disabled):not(.disabled):active, .btn-warning:not(:disabled):not(.disabled).active, + .show > .btn-warning.dropdown-toggle { + color: #1c273c; + background-color: #d39e00; + border-color: #c69500; } + .btn-warning:not(:disabled):not(.disabled):active:focus, .btn-warning:not(:disabled):not(.disabled).active:focus, + .show > .btn-warning.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(221, 170, 15, 0.5); } + +.btn-danger { + color: #fff; + background-color: #dc3545; + border-color: #dc3545; } + .btn-danger:hover { + color: #fff; + background-color: #c82333; + border-color: #bd2130; } + .btn-danger:focus, .btn-danger.focus { + color: #fff; + background-color: #c82333; + border-color: #bd2130; + box-shadow: 0 0 0 0.2rem rgba(225, 83, 97, 0.5); } + .btn-danger.disabled, .btn-danger:disabled { + color: #fff; + background-color: #dc3545; + border-color: #dc3545; } + .btn-danger:not(:disabled):not(.disabled):active, .btn-danger:not(:disabled):not(.disabled).active, + .show > .btn-danger.dropdown-toggle { + color: #fff; + background-color: #bd2130; + border-color: #b21f2d; } + .btn-danger:not(:disabled):not(.disabled):active:focus, .btn-danger:not(:disabled):not(.disabled).active:focus, + .show > .btn-danger.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(225, 83, 97, 0.5); } + +.btn-light { + color: #1c273c; + background-color: #f4f5f8; + border-color: #f4f5f8; } + .btn-light:hover { + color: #1c273c; + background-color: #dde0e9; + border-color: #d5d9e4; } + .btn-light:focus, .btn-light.focus { + color: #1c273c; + background-color: #dde0e9; + border-color: #d5d9e4; + box-shadow: 0 0 0 0.2rem rgba(212, 214, 220, 0.5); } + .btn-light.disabled, .btn-light:disabled { + color: #1c273c; + background-color: #f4f5f8; + border-color: #f4f5f8; } + .btn-light:not(:disabled):not(.disabled):active, .btn-light:not(:disabled):not(.disabled).active, + .show > .btn-light.dropdown-toggle { + color: #1c273c; + background-color: #d5d9e4; + border-color: #cdd2df; } + .btn-light:not(:disabled):not(.disabled):active:focus, .btn-light:not(:disabled):not(.disabled).active:focus, + .show > .btn-light.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(212, 214, 220, 0.5); } + +.btn-dark { + color: #fff; + background-color: #3b4863; + border-color: #3b4863; } + .btn-dark:hover { + color: #fff; + background-color: #2d374b; + border-color: #283143; } + .btn-dark:focus, .btn-dark.focus { + color: #fff; + background-color: #2d374b; + border-color: #283143; + box-shadow: 0 0 0 0.2rem rgba(88, 99, 122, 0.5); } + .btn-dark.disabled, .btn-dark:disabled { + color: #fff; + background-color: #3b4863; + border-color: #3b4863; } + .btn-dark:not(:disabled):not(.disabled):active, .btn-dark:not(:disabled):not(.disabled).active, + .show > .btn-dark.dropdown-toggle { + color: #fff; + background-color: #283143; + border-color: #232b3b; } + .btn-dark:not(:disabled):not(.disabled):active:focus, .btn-dark:not(:disabled):not(.disabled).active:focus, + .show > .btn-dark.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(88, 99, 122, 0.5); } + +.btn-outline-primary { + color: #3366ff; + border-color: #3366ff; } + .btn-outline-primary:hover { + color: #fff; + background-color: #3366ff; + border-color: #3366ff; } + .btn-outline-primary:focus, .btn-outline-primary.focus { + box-shadow: 0 0 0 0.2rem rgba(51, 102, 255, 0.5); } + .btn-outline-primary.disabled, .btn-outline-primary:disabled { + color: #3366ff; + background-color: transparent; } + .btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled).active, + .show > .btn-outline-primary.dropdown-toggle { + color: #fff; + background-color: #3366ff; + border-color: #3366ff; } + .btn-outline-primary:not(:disabled):not(.disabled):active:focus, .btn-outline-primary:not(:disabled):not(.disabled).active:focus, + .show > .btn-outline-primary.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(51, 102, 255, 0.5); } + +.btn-outline-secondary { + color: #7987a1; + border-color: #7987a1; } + .btn-outline-secondary:hover { + color: #fff; + background-color: #7987a1; + border-color: #7987a1; } + .btn-outline-secondary:focus, .btn-outline-secondary.focus { + box-shadow: 0 0 0 0.2rem rgba(121, 135, 161, 0.5); } + .btn-outline-secondary.disabled, .btn-outline-secondary:disabled { + color: #7987a1; + background-color: transparent; } + .btn-outline-secondary:not(:disabled):not(.disabled):active, .btn-outline-secondary:not(:disabled):not(.disabled).active, + .show > .btn-outline-secondary.dropdown-toggle { + color: #fff; + background-color: #7987a1; + border-color: #7987a1; } + .btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .btn-outline-secondary:not(:disabled):not(.disabled).active:focus, + .show > .btn-outline-secondary.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(121, 135, 161, 0.5); } + +.btn-outline-success { + color: #3bb001; + border-color: #3bb001; } + .btn-outline-success:hover { + color: #fff; + background-color: #3bb001; + border-color: #3bb001; } + .btn-outline-success:focus, .btn-outline-success.focus { + box-shadow: 0 0 0 0.2rem rgba(59, 176, 1, 0.5); } + .btn-outline-success.disabled, .btn-outline-success:disabled { + color: #3bb001; + background-color: transparent; } + .btn-outline-success:not(:disabled):not(.disabled):active, .btn-outline-success:not(:disabled):not(.disabled).active, + .show > .btn-outline-success.dropdown-toggle { + color: #fff; + background-color: #3bb001; + border-color: #3bb001; } + .btn-outline-success:not(:disabled):not(.disabled):active:focus, .btn-outline-success:not(:disabled):not(.disabled).active:focus, + .show > .btn-outline-success.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(59, 176, 1, 0.5); } + +.btn-outline-info { + color: #17a2b8; + border-color: #17a2b8; } + .btn-outline-info:hover { + color: #fff; + background-color: #17a2b8; + border-color: #17a2b8; } + .btn-outline-info:focus, .btn-outline-info.focus { + box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5); } + .btn-outline-info.disabled, .btn-outline-info:disabled { + color: #17a2b8; + background-color: transparent; } + .btn-outline-info:not(:disabled):not(.disabled):active, .btn-outline-info:not(:disabled):not(.disabled).active, + .show > .btn-outline-info.dropdown-toggle { + color: #fff; + background-color: #17a2b8; + border-color: #17a2b8; } + .btn-outline-info:not(:disabled):not(.disabled):active:focus, .btn-outline-info:not(:disabled):not(.disabled).active:focus, + .show > .btn-outline-info.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5); } + +.btn-outline-warning { + color: #ffc107; + border-color: #ffc107; } + .btn-outline-warning:hover { + color: #1c273c; + background-color: #ffc107; + border-color: #ffc107; } + .btn-outline-warning:focus, .btn-outline-warning.focus { + box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5); } + .btn-outline-warning.disabled, .btn-outline-warning:disabled { + color: #ffc107; + background-color: transparent; } + .btn-outline-warning:not(:disabled):not(.disabled):active, .btn-outline-warning:not(:disabled):not(.disabled).active, + .show > .btn-outline-warning.dropdown-toggle { + color: #1c273c; + background-color: #ffc107; + border-color: #ffc107; } + .btn-outline-warning:not(:disabled):not(.disabled):active:focus, .btn-outline-warning:not(:disabled):not(.disabled).active:focus, + .show > .btn-outline-warning.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5); } + +.btn-outline-danger { + color: #dc3545; + border-color: #dc3545; } + .btn-outline-danger:hover { + color: #fff; + background-color: #dc3545; + border-color: #dc3545; } + .btn-outline-danger:focus, .btn-outline-danger.focus { + box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5); } + .btn-outline-danger.disabled, .btn-outline-danger:disabled { + color: #dc3545; + background-color: transparent; } + .btn-outline-danger:not(:disabled):not(.disabled):active, .btn-outline-danger:not(:disabled):not(.disabled).active, + .show > .btn-outline-danger.dropdown-toggle { + color: #fff; + background-color: #dc3545; + border-color: #dc3545; } + .btn-outline-danger:not(:disabled):not(.disabled):active:focus, .btn-outline-danger:not(:disabled):not(.disabled).active:focus, + .show > .btn-outline-danger.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5); } + +.btn-outline-light { + color: #f4f5f8; + border-color: #f4f5f8; } + .btn-outline-light:hover { + color: #1c273c; + background-color: #f4f5f8; + border-color: #f4f5f8; } + .btn-outline-light:focus, .btn-outline-light.focus { + box-shadow: 0 0 0 0.2rem rgba(244, 245, 248, 0.5); } + .btn-outline-light.disabled, .btn-outline-light:disabled { + color: #f4f5f8; + background-color: transparent; } + .btn-outline-light:not(:disabled):not(.disabled):active, .btn-outline-light:not(:disabled):not(.disabled).active, + .show > .btn-outline-light.dropdown-toggle { + color: #1c273c; + background-color: #f4f5f8; + border-color: #f4f5f8; } + .btn-outline-light:not(:disabled):not(.disabled):active:focus, .btn-outline-light:not(:disabled):not(.disabled).active:focus, + .show > .btn-outline-light.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(244, 245, 248, 0.5); } + +.btn-outline-dark { + color: #3b4863; + border-color: #3b4863; } + .btn-outline-dark:hover { + color: #fff; + background-color: #3b4863; + border-color: #3b4863; } + .btn-outline-dark:focus, .btn-outline-dark.focus { + box-shadow: 0 0 0 0.2rem rgba(59, 72, 99, 0.5); } + .btn-outline-dark.disabled, .btn-outline-dark:disabled { + color: #3b4863; + background-color: transparent; } + .btn-outline-dark:not(:disabled):not(.disabled):active, .btn-outline-dark:not(:disabled):not(.disabled).active, + .show > .btn-outline-dark.dropdown-toggle { + color: #fff; + background-color: #3b4863; + border-color: #3b4863; } + .btn-outline-dark:not(:disabled):not(.disabled):active:focus, .btn-outline-dark:not(:disabled):not(.disabled).active:focus, + .show > .btn-outline-dark.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(59, 72, 99, 0.5); } + +.btn-link { + font-weight: 400; + color: #3366ff; + text-decoration: none; } + .btn-link:hover { + color: #0039e6; + text-decoration: none; } + .btn-link:focus, .btn-link.focus { + text-decoration: none; } + .btn-link:disabled, .btn-link.disabled { + color: #7987a1; + pointer-events: none; } + +.btn-lg, .btn-group-lg > .btn { + padding: 0.5rem 1rem; + font-size: 1.09375rem; + line-height: 1.5; + border-radius: 0.3rem; } + +.btn-sm, .btn-group-sm > .btn { + padding: 0.25rem 0.5rem; + font-size: 0.76562rem; + line-height: 1.5; + border-radius: 0.2rem; } + +.btn-block { + display: block; + width: 100%; } + .btn-block + .btn-block { + margin-top: 0.5rem; } + +input[type="submit"].btn-block, +input[type="reset"].btn-block, +input[type="button"].btn-block { + width: 100%; } + +.fade { + transition: opacity 0.15s linear; } + @media (prefers-reduced-motion: reduce) { + .fade { + transition: none; } } + .fade:not(.show) { + opacity: 0; } + +.collapse:not(.show) { + display: none; } + +.collapsing { + position: relative; + height: 0; + overflow: hidden; + transition: height 0.35s ease; } + @media (prefers-reduced-motion: reduce) { + .collapsing { + transition: none; } } + +.dropup, +.dropright, +.dropdown, +.dropleft { + position: relative; } + +.dropdown-toggle { + white-space: nowrap; } + .dropdown-toggle::after { + display: inline-block; + margin-left: 0.255em; + vertical-align: 0.255em; + content: ""; + border-top: 0.3em solid; + border-right: 0.3em solid transparent; + border-bottom: 0; + border-left: 0.3em solid transparent; } + .dropdown-toggle:empty::after { + margin-left: 0; } + +.dropdown-menu { + position: absolute; + top: 100%; + left: 0; + z-index: 1000; + display: none; + float: left; + min-width: 10rem; + padding: 0.5rem 0; + margin: 0.125rem 0 0; + font-size: 0.875rem; + color: #031b4e; + text-align: left; + list-style: none; + background-color: #fff; + background-clip: padding-box; + border: 1px solid rgba(0, 0, 0, 0.15); + border-radius: 3px; } + +.dropdown-menu-left { + right: auto; + left: 0; } + +.dropdown-menu-right { + right: 0; + left: auto; } + +@media (min-width: 576px) { + .dropdown-menu-sm-left { + right: auto; + left: 0; } + .dropdown-menu-sm-right { + right: 0; + left: auto; } } + +@media (min-width: 768px) { + .dropdown-menu-md-left { + right: auto; + left: 0; } + .dropdown-menu-md-right { + right: 0; + left: auto; } } + +@media (min-width: 992px) { + .dropdown-menu-lg-left { + right: auto; + left: 0; } + .dropdown-menu-lg-right { + right: 0; + left: auto; } } + +@media (min-width: 1200px) { + .dropdown-menu-xl-left { + right: auto; + left: 0; } + .dropdown-menu-xl-right { + right: 0; + left: auto; } } + +.dropup .dropdown-menu { + top: auto; + bottom: 100%; + margin-top: 0; + margin-bottom: 0.125rem; } + +.dropup .dropdown-toggle::after { + display: inline-block; + margin-left: 0.255em; + vertical-align: 0.255em; + content: ""; + border-top: 0; + border-right: 0.3em solid transparent; + border-bottom: 0.3em solid; + border-left: 0.3em solid transparent; } + +.dropup .dropdown-toggle:empty::after { + margin-left: 0; } + +.dropright .dropdown-menu { + top: 0; + right: auto; + left: 100%; + margin-top: 0; + margin-left: 0.125rem; } + +.dropright .dropdown-toggle::after { + display: inline-block; + margin-left: 0.255em; + vertical-align: 0.255em; + content: ""; + border-top: 0.3em solid transparent; + border-right: 0; + border-bottom: 0.3em solid transparent; + border-left: 0.3em solid; } + +.dropright .dropdown-toggle:empty::after { + margin-left: 0; } + +.dropright .dropdown-toggle::after { + vertical-align: 0; } + +.dropleft .dropdown-menu { + top: 0; + right: 100%; + left: auto; + margin-top: 0; + margin-right: 0.125rem; } + +.dropleft .dropdown-toggle::after { + display: inline-block; + margin-left: 0.255em; + vertical-align: 0.255em; + content: ""; } + +.dropleft .dropdown-toggle::after { + display: none; } + +.dropleft .dropdown-toggle::before { + display: inline-block; + margin-right: 0.255em; + vertical-align: 0.255em; + content: ""; + border-top: 0.3em solid transparent; + border-right: 0.3em solid; + border-bottom: 0.3em solid transparent; } + +.dropleft .dropdown-toggle:empty::after { + margin-left: 0; } + +.dropleft .dropdown-toggle::before { + vertical-align: 0; } + +.dropdown-menu[x-placement^="top"], .dropdown-menu[x-placement^="right"], .dropdown-menu[x-placement^="bottom"], .dropdown-menu[x-placement^="left"] { + right: auto; + bottom: auto; } + +.dropdown-divider { + height: 0; + margin: 0.5rem 0; + overflow: hidden; + border-top: 1px solid #e3e7ed; } + +.dropdown-item { + display: block; + width: 100%; + padding: 0.25rem 1.5rem; + clear: both; + font-weight: 400; + color: #1c273c; + text-align: inherit; + white-space: nowrap; + background-color: transparent; + border: 0; } + .dropdown-item:hover, .dropdown-item:focus { + color: #141c2b; + text-decoration: none; + background-color: #f4f5f8; } + .dropdown-item.active, .dropdown-item:active { + color: #fff; + text-decoration: none; + background-color: #3366ff; } + .dropdown-item.disabled, .dropdown-item:disabled { + color: #7987a1; + pointer-events: none; + background-color: transparent; } + +.dropdown-menu.show { + display: block; } + +.dropdown-header { + display: block; + padding: 0.5rem 1.5rem; + margin-bottom: 0; + font-size: 0.76562rem; + color: #7987a1; + white-space: nowrap; } + +.dropdown-item-text { + display: block; + padding: 0.25rem 1.5rem; + color: #1c273c; } + +.btn-group, +.btn-group-vertical { + position: relative; + display: inline-flex; + vertical-align: middle; } + .btn-group > .btn, + .btn-group-vertical > .btn { + position: relative; + flex: 1 1 auto; } + .btn-group > .btn:hover, + .btn-group-vertical > .btn:hover { + z-index: 1; } + .btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active, + .btn-group-vertical > .btn:focus, + .btn-group-vertical > .btn:active, + .btn-group-vertical > .btn.active { + z-index: 1; } + +.btn-toolbar { + display: flex; + flex-wrap: wrap; + justify-content: flex-start; } + .btn-toolbar .input-group { + width: auto; } + +.btn-group > .btn:not(:first-child), +.btn-group > .btn-group:not(:first-child) { + margin-left: -1px; } + +.btn-group > .btn:not(:last-child):not(.dropdown-toggle), +.btn-group > .btn-group:not(:last-child) > .btn { + border-top-right-radius: 0; + border-bottom-right-radius: 0; } + +.btn-group > .btn:not(:first-child), +.btn-group > .btn-group:not(:first-child) > .btn { + border-top-left-radius: 0; + border-bottom-left-radius: 0; } + +.dropdown-toggle-split { + padding-right: 0.5625rem; + padding-left: 0.5625rem; } + .dropdown-toggle-split::after, + .dropup .dropdown-toggle-split::after, + .dropright .dropdown-toggle-split::after { + margin-left: 0; } + .dropleft .dropdown-toggle-split::before { + margin-right: 0; } + +.btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split { + padding-right: 0.375rem; + padding-left: 0.375rem; } + +.btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split { + padding-right: 0.75rem; + padding-left: 0.75rem; } + +.btn-group-vertical { + flex-direction: column; + align-items: flex-start; + justify-content: center; } + .btn-group-vertical > .btn, + .btn-group-vertical > .btn-group { + width: 100%; } + .btn-group-vertical > .btn:not(:first-child), + .btn-group-vertical > .btn-group:not(:first-child) { + margin-top: -1px; } + .btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle), + .btn-group-vertical > .btn-group:not(:last-child) > .btn { + border-bottom-right-radius: 0; + border-bottom-left-radius: 0; } + .btn-group-vertical > .btn:not(:first-child), + .btn-group-vertical > .btn-group:not(:first-child) > .btn { + border-top-left-radius: 0; + border-top-right-radius: 0; } + +.btn-group-toggle > .btn, +.btn-group-toggle > .btn-group > .btn { + margin-bottom: 0; } + .btn-group-toggle > .btn input[type="radio"], + .btn-group-toggle > .btn input[type="checkbox"], + .btn-group-toggle > .btn-group > .btn input[type="radio"], + .btn-group-toggle > .btn-group > .btn input[type="checkbox"] { + position: absolute; + clip: rect(0, 0, 0, 0); + pointer-events: none; } + +.input-group { + position: relative; + display: flex; + flex-wrap: wrap; + align-items: stretch; + width: 100%; } + .input-group > .form-control, + .input-group > .form-control-plaintext, + .input-group > .custom-select, + .input-group > .custom-file { + position: relative; + flex: 1 1 auto; + width: 1%; + min-width: 0; + margin-bottom: 0; } + .input-group > .form-control + .form-control, + .input-group > .form-control + .custom-select, + .input-group > .form-control + .custom-file, + .input-group > .form-control-plaintext + .form-control, + .input-group > .form-control-plaintext + .custom-select, + .input-group > .form-control-plaintext + .custom-file, + .input-group > .custom-select + .form-control, + .input-group > .custom-select + .custom-select, + .input-group > .custom-select + .custom-file, + .input-group > .custom-file + .form-control, + .input-group > .custom-file + .custom-select, + .input-group > .custom-file + .custom-file { + margin-left: -1px; } + .input-group > .form-control:focus, + .input-group > .custom-select:focus, + .input-group > .custom-file .custom-file-input:focus ~ .custom-file-label { + z-index: 3; } + .input-group > .custom-file .custom-file-input:focus { + z-index: 4; } + .input-group > .form-control:not(:last-child), + .input-group > .custom-select:not(:last-child) { + border-top-right-radius: 0; + border-bottom-right-radius: 0; } + .input-group > .form-control:not(:first-child), + .input-group > .custom-select:not(:first-child) { + border-top-left-radius: 0; + border-bottom-left-radius: 0; } + .input-group > .custom-file { + display: flex; + align-items: center; } + .input-group > .custom-file:not(:last-child) .custom-file-label, + .input-group > .custom-file:not(:last-child) .custom-file-label::after { + border-top-right-radius: 0; + border-bottom-right-radius: 0; } + .input-group > .custom-file:not(:first-child) .custom-file-label { + border-top-left-radius: 0; + border-bottom-left-radius: 0; } + +.input-group-prepend, +.input-group-append { + display: flex; } + .input-group-prepend .btn, + .input-group-append .btn { + position: relative; + z-index: 2; } + .input-group-prepend .btn:focus, + .input-group-append .btn:focus { + z-index: 3; } + .input-group-prepend .btn + .btn, + .input-group-prepend .btn + .input-group-text, + .input-group-prepend .input-group-text + .input-group-text, + .input-group-prepend .input-group-text + .btn, + .input-group-append .btn + .btn, + .input-group-append .btn + .input-group-text, + .input-group-append .input-group-text + .input-group-text, + .input-group-append .input-group-text + .btn { + margin-left: -1px; } + +.input-group-prepend { + margin-right: -1px; } + +.input-group-append { + margin-left: -1px; } + +.input-group-text { + display: flex; + align-items: center; + padding: 0.375rem 0.75rem; + margin-bottom: 0; + font-size: 0.875rem; + font-weight: 400; + line-height: 1.5; + color: #596882; + text-align: center; + white-space: nowrap; + background-color: #e3e7ed; + border: 1px solid #cdd4e0; + border-radius: 3px; } + .input-group-text input[type="radio"], + .input-group-text input[type="checkbox"] { + margin-top: 0; } + +.input-group-lg > .form-control:not(textarea), +.input-group-lg > .custom-select { + height: calc(1.5em + 1rem + 2px); } + +.input-group-lg > .form-control, +.input-group-lg > .custom-select, +.input-group-lg > .input-group-prepend > .input-group-text, +.input-group-lg > .input-group-append > .input-group-text, +.input-group-lg > .input-group-prepend > .btn, +.input-group-lg > .input-group-append > .btn { + padding: 0.5rem 1rem; + font-size: 1.09375rem; + line-height: 1.5; + border-radius: 0.3rem; } + +.input-group-sm > .form-control:not(textarea), +.input-group-sm > .custom-select { + height: calc(1.5em + 0.5rem + 2px); } + +.input-group-sm > .form-control, +.input-group-sm > .custom-select, +.input-group-sm > .input-group-prepend > .input-group-text, +.input-group-sm > .input-group-append > .input-group-text, +.input-group-sm > .input-group-prepend > .btn, +.input-group-sm > .input-group-append > .btn { + padding: 0.25rem 0.5rem; + font-size: 0.76562rem; + line-height: 1.5; + border-radius: 0.2rem; } + +.input-group-lg > .custom-select, +.input-group-sm > .custom-select { + padding-right: 1.75rem; } + +.input-group > .input-group-prepend > .btn, +.input-group > .input-group-prepend > .input-group-text, +.input-group > .input-group-append:not(:last-child) > .btn, +.input-group > .input-group-append:not(:last-child) > .input-group-text, +.input-group > .input-group-append:last-child > .btn:not(:last-child):not(.dropdown-toggle), +.input-group > .input-group-append:last-child > .input-group-text:not(:last-child) { + border-top-right-radius: 0; + border-bottom-right-radius: 0; } + +.input-group > .input-group-append > .btn, +.input-group > .input-group-append > .input-group-text, +.input-group > .input-group-prepend:not(:first-child) > .btn, +.input-group > .input-group-prepend:not(:first-child) > .input-group-text, +.input-group > .input-group-prepend:first-child > .btn:not(:first-child), +.input-group > .input-group-prepend:first-child > .input-group-text:not(:first-child) { + border-top-left-radius: 0; + border-bottom-left-radius: 0; } + +.custom-control { + position: relative; + z-index: 1; + display: block; + min-height: 1.3125rem; + padding-left: 1.5rem; } + +.custom-control-inline { + display: inline-flex; + margin-right: 1rem; } + +.custom-control-input { + position: absolute; + left: 0; + z-index: -1; + width: 1rem; + height: 1.15625rem; + opacity: 0; } + .custom-control-input:checked ~ .custom-control-label::before { + color: #fff; + border-color: #3366ff; + background-color: #3366ff; } + .custom-control-input:focus ~ .custom-control-label::before { + box-shadow: 0 0 0 0.2rem rgba(51, 102, 255, 0.25); } + .custom-control-input:focus:not(:checked) ~ .custom-control-label::before { + border-color: #b3c6ff; } + .custom-control-input:not(:disabled):active ~ .custom-control-label::before { + color: #fff; + background-color: #e6ecff; + border-color: #e6ecff; } + .custom-control-input[disabled] ~ .custom-control-label, .custom-control-input:disabled ~ .custom-control-label { + color: #7987a1; } + .custom-control-input[disabled] ~ .custom-control-label::before, .custom-control-input:disabled ~ .custom-control-label::before { + background-color: #e3e7ed; } + +.custom-control-label { + position: relative; + margin-bottom: 0; + vertical-align: top; } + .custom-control-label::before { + position: absolute; + top: 0.15625rem; + left: -1.5rem; + display: block; + width: 1rem; + height: 1rem; + pointer-events: none; + content: ""; + background-color: #fff; + border: #97a3b9 solid 1px; } + .custom-control-label::after { + position: absolute; + top: 0.15625rem; + left: -1.5rem; + display: block; + width: 1rem; + height: 1rem; + content: ""; + background: no-repeat 50% / 50% 50%; } + +.custom-checkbox .custom-control-label::before { + border-radius: 3px; } + +.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after { + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/%3e%3c/svg%3e"); } + +.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before { + border-color: #3366ff; + background-color: #3366ff; } + +.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after { + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3e%3cpath stroke='%23fff' d='M0 2h4'/%3e%3c/svg%3e"); } + +.custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before { + background-color: rgba(51, 102, 255, 0.5); } + +.custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before { + background-color: rgba(51, 102, 255, 0.5); } + +.custom-radio .custom-control-label::before { + border-radius: 50%; } + +.custom-radio .custom-control-input:checked ~ .custom-control-label::after { + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e"); } + +.custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before { + background-color: rgba(51, 102, 255, 0.5); } + +.custom-switch { + padding-left: 2.25rem; } + .custom-switch .custom-control-label::before { + left: -2.25rem; + width: 1.75rem; + pointer-events: all; + border-radius: 0.5rem; } + .custom-switch .custom-control-label::after { + top: calc(0.15625rem + 2px); + left: calc(-2.25rem + 2px); + width: calc(1rem - 4px); + height: calc(1rem - 4px); + background-color: #97a3b9; + border-radius: 0.5rem; + transition: transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; } + @media (prefers-reduced-motion: reduce) { + .custom-switch .custom-control-label::after { + transition: none; } } + .custom-switch .custom-control-input:checked ~ .custom-control-label::after { + background-color: #fff; + transform: translateX(0.75rem); } + .custom-switch .custom-control-input:disabled:checked ~ .custom-control-label::before { + background-color: rgba(51, 102, 255, 0.5); } + +.custom-select { + display: inline-block; + width: 100%; + height: calc(1.5em + 0.75rem + 2px); + padding: 0.375rem 1.75rem 0.375rem 0.75rem; + font-size: 0.875rem; + font-weight: 400; + line-height: 1.5; + color: #596882; + vertical-align: middle; + background: #fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%233b4863' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px; + border: 1px solid #cdd4e0; + border-radius: 3px; + appearance: none; } + .custom-select:focus { + border-color: #b3c6ff; + outline: 0; + box-shadow: 0 0 0 0.2rem rgba(51, 102, 255, 0.25); } + .custom-select:focus::-ms-value { + color: #596882; + background-color: #fff; } + .custom-select[multiple], .custom-select[size]:not([size="1"]) { + height: auto; + padding-right: 0.75rem; + background-image: none; } + .custom-select:disabled { + color: #7987a1; + background-color: #e3e7ed; } + .custom-select::-ms-expand { + display: none; } + .custom-select:-moz-focusring { + color: transparent; + text-shadow: 0 0 0 #596882; } + +.custom-select-sm { + height: calc(1.5em + 0.5rem + 2px); + padding-top: 0.25rem; + padding-bottom: 0.25rem; + padding-left: 0.5rem; + font-size: 0.76562rem; } + +.custom-select-lg { + height: calc(1.5em + 1rem + 2px); + padding-top: 0.5rem; + padding-bottom: 0.5rem; + padding-left: 1rem; + font-size: 1.09375rem; } + +.custom-file { + position: relative; + display: inline-block; + width: 100%; + height: calc(1.5em + 0.75rem + 2px); + margin-bottom: 0; } + +.custom-file-input { + position: relative; + z-index: 2; + width: 100%; + height: calc(1.5em + 0.75rem + 2px); + margin: 0; + opacity: 0; } + .custom-file-input:focus ~ .custom-file-label { + border-color: #b3c6ff; + box-shadow: 0 0 0 0.2rem rgba(51, 102, 255, 0.25); } + .custom-file-input[disabled] ~ .custom-file-label, + .custom-file-input:disabled ~ .custom-file-label { + background-color: #e3e7ed; } + .custom-file-input:lang(en) ~ .custom-file-label::after { + content: "Browse"; } + .custom-file-input ~ .custom-file-label[data-browse]::after { + content: attr(data-browse); } + +.custom-file-label { + position: absolute; + top: 0; + right: 0; + left: 0; + z-index: 1; + height: calc(1.5em + 0.75rem + 2px); + padding: 0.375rem 0.75rem; + font-weight: 400; + line-height: 1.5; + color: #596882; + background-color: #fff; + border: 1px solid #cdd4e0; + border-radius: 3px; } + .custom-file-label::after { + position: absolute; + top: 0; + right: 0; + bottom: 0; + z-index: 3; + display: block; + height: calc(1.5em + 0.75rem); + padding: 0.375rem 0.75rem; + line-height: 1.5; + color: #596882; + content: "Browse"; + background-color: #e3e7ed; + border-left: inherit; + border-radius: 0 3px 3px 0; } + +.custom-range { + width: 100%; + height: 1.4rem; + padding: 0; + background-color: transparent; + appearance: none; } + .custom-range:focus { + outline: none; } + .custom-range:focus::-webkit-slider-thumb { + box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(51, 102, 255, 0.25); } + .custom-range:focus::-moz-range-thumb { + box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(51, 102, 255, 0.25); } + .custom-range:focus::-ms-thumb { + box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(51, 102, 255, 0.25); } + .custom-range::-moz-focus-outer { + border: 0; } + .custom-range::-webkit-slider-thumb { + width: 1rem; + height: 1rem; + margin-top: -0.25rem; + background-color: #3366ff; + border: 0; + border-radius: 1rem; + transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; + appearance: none; } + @media (prefers-reduced-motion: reduce) { + .custom-range::-webkit-slider-thumb { + transition: none; } } + .custom-range::-webkit-slider-thumb:active { + background-color: #e6ecff; } + .custom-range::-webkit-slider-runnable-track { + width: 100%; + height: 0.5rem; + color: transparent; + cursor: pointer; + background-color: #cdd4e0; + border-color: transparent; + border-radius: 1rem; } + .custom-range::-moz-range-thumb { + width: 1rem; + height: 1rem; + background-color: #3366ff; + border: 0; + border-radius: 1rem; + transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; + appearance: none; } + @media (prefers-reduced-motion: reduce) { + .custom-range::-moz-range-thumb { + transition: none; } } + .custom-range::-moz-range-thumb:active { + background-color: #e6ecff; } + .custom-range::-moz-range-track { + width: 100%; + height: 0.5rem; + color: transparent; + cursor: pointer; + background-color: #cdd4e0; + border-color: transparent; + border-radius: 1rem; } + .custom-range::-ms-thumb { + width: 1rem; + height: 1rem; + margin-top: 0; + margin-right: 0.2rem; + margin-left: 0.2rem; + background-color: #3366ff; + border: 0; + border-radius: 1rem; + transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; + appearance: none; } + @media (prefers-reduced-motion: reduce) { + .custom-range::-ms-thumb { + transition: none; } } + .custom-range::-ms-thumb:active { + background-color: #e6ecff; } + .custom-range::-ms-track { + width: 100%; + height: 0.5rem; + color: transparent; + cursor: pointer; + background-color: transparent; + border-color: transparent; + border-width: 0.5rem; } + .custom-range::-ms-fill-lower { + background-color: #cdd4e0; + border-radius: 1rem; } + .custom-range::-ms-fill-upper { + margin-right: 15px; + background-color: #cdd4e0; + border-radius: 1rem; } + .custom-range:disabled::-webkit-slider-thumb { + background-color: #97a3b9; } + .custom-range:disabled::-webkit-slider-runnable-track { + cursor: default; } + .custom-range:disabled::-moz-range-thumb { + background-color: #97a3b9; } + .custom-range:disabled::-moz-range-track { + cursor: default; } + .custom-range:disabled::-ms-thumb { + background-color: #97a3b9; } + +.custom-control-label::before, +.custom-file-label, +.custom-select { + transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; } + @media (prefers-reduced-motion: reduce) { + .custom-control-label::before, + .custom-file-label, + .custom-select { + transition: none; } } + +.nav { + display: flex; + flex-wrap: wrap; + padding-left: 0; + margin-bottom: 0; + list-style: none; } + +.nav-link { + display: block; + padding: 0.5rem 1rem; } + .nav-link:hover, .nav-link:focus { + text-decoration: none; } + .nav-link.disabled { + color: #7987a1; + pointer-events: none; + cursor: default; } + +.nav-tabs { + border-bottom: 1px solid #cdd4e0; } + .nav-tabs .nav-item { + margin-bottom: -1px; } + .nav-tabs .nav-link { + border: 1px solid transparent; + border-top-left-radius: 3px; + border-top-right-radius: 3px; } + .nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus { + border-color: #e3e7ed #e3e7ed #cdd4e0; } + .nav-tabs .nav-link.disabled { + color: #7987a1; + background-color: transparent; + border-color: transparent; } + .nav-tabs .nav-link.active, + .nav-tabs .nav-item.show .nav-link { + color: #596882; + background-color: #fff; + border-color: #cdd4e0 #cdd4e0 #fff; } + .nav-tabs .dropdown-menu { + margin-top: -1px; + border-top-left-radius: 0; + border-top-right-radius: 0; } + +.nav-pills .nav-link { + border-radius: 3px; } + +.nav-pills .nav-link.active, +.nav-pills .show > .nav-link { + color: #fff; + background-color: #3366ff; } + +.nav-fill > .nav-link, +.nav-fill .nav-item { + flex: 1 1 auto; + text-align: center; } + +.nav-justified > .nav-link, +.nav-justified .nav-item { + flex-basis: 0; + flex-grow: 1; + text-align: center; } + +.tab-content > .tab-pane { + display: none; } + +.tab-content > .active { + display: block; } + +.navbar { + position: relative; + display: flex; + flex-wrap: wrap; + align-items: center; + justify-content: space-between; + padding: 0.5rem 1rem; } + .navbar .container, + .navbar .container-fluid, .navbar .container-sm, .navbar .container-md, .navbar .container-lg, .navbar .container-xl { + display: flex; + flex-wrap: wrap; + align-items: center; + justify-content: space-between; } + +.navbar-brand { + display: inline-block; + padding-top: 0.33594rem; + padding-bottom: 0.33594rem; + margin-right: 1rem; + font-size: 1.09375rem; + line-height: inherit; + white-space: nowrap; } + .navbar-brand:hover, .navbar-brand:focus { + text-decoration: none; } + +.navbar-nav { + display: flex; + flex-direction: column; + padding-left: 0; + margin-bottom: 0; + list-style: none; } + .navbar-nav .nav-link { + padding-right: 0; + padding-left: 0; } + .navbar-nav .dropdown-menu { + position: static; + float: none; } + +.navbar-text { + display: inline-block; + padding-top: 0.5rem; + padding-bottom: 0.5rem; } + +.navbar-collapse { + flex-basis: 100%; + flex-grow: 1; + align-items: center; } + +.navbar-toggler { + padding: 0.25rem 0.75rem; + font-size: 1.09375rem; + line-height: 1; + background-color: transparent; + border: 1px solid transparent; + border-radius: 3px; } + .navbar-toggler:hover, .navbar-toggler:focus { + text-decoration: none; } + +.navbar-toggler-icon { + display: inline-block; + width: 1.5em; + height: 1.5em; + vertical-align: middle; + content: ""; + background: no-repeat center center; + background-size: 100% 100%; } + +@media (max-width: 575.98px) { + .navbar-expand-sm > .container, + .navbar-expand-sm > .container-fluid, .navbar-expand-sm > .container-sm, .navbar-expand-sm > .container-md, .navbar-expand-sm > .container-lg, .navbar-expand-sm > .container-xl { + padding-right: 0; + padding-left: 0; } } + +@media (min-width: 576px) { + .navbar-expand-sm { + flex-flow: row nowrap; + justify-content: flex-start; } + .navbar-expand-sm .navbar-nav { + flex-direction: row; } + .navbar-expand-sm .navbar-nav .dropdown-menu { + position: absolute; } + .navbar-expand-sm .navbar-nav .nav-link { + padding-right: 0.5rem; + padding-left: 0.5rem; } + .navbar-expand-sm > .container, + .navbar-expand-sm > .container-fluid, .navbar-expand-sm > .container-sm, .navbar-expand-sm > .container-md, .navbar-expand-sm > .container-lg, .navbar-expand-sm > .container-xl { + flex-wrap: nowrap; } + .navbar-expand-sm .navbar-collapse { + display: flex !important; + flex-basis: auto; } + .navbar-expand-sm .navbar-toggler { + display: none; } } + +@media (max-width: 767.98px) { + .navbar-expand-md > .container, + .navbar-expand-md > .container-fluid, .navbar-expand-md > .container-sm, .navbar-expand-md > .container-md, .navbar-expand-md > .container-lg, .navbar-expand-md > .container-xl { + padding-right: 0; + padding-left: 0; } } + +@media (min-width: 768px) { + .navbar-expand-md { + flex-flow: row nowrap; + justify-content: flex-start; } + .navbar-expand-md .navbar-nav { + flex-direction: row; } + .navbar-expand-md .navbar-nav .dropdown-menu { + position: absolute; } + .navbar-expand-md .navbar-nav .nav-link { + padding-right: 0.5rem; + padding-left: 0.5rem; } + .navbar-expand-md > .container, + .navbar-expand-md > .container-fluid, .navbar-expand-md > .container-sm, .navbar-expand-md > .container-md, .navbar-expand-md > .container-lg, .navbar-expand-md > .container-xl { + flex-wrap: nowrap; } + .navbar-expand-md .navbar-collapse { + display: flex !important; + flex-basis: auto; } + .navbar-expand-md .navbar-toggler { + display: none; } } + +@media (max-width: 991.98px) { + .navbar-expand-lg > .container, + .navbar-expand-lg > .container-fluid, .navbar-expand-lg > .container-sm, .navbar-expand-lg > .container-md, .navbar-expand-lg > .container-lg, .navbar-expand-lg > .container-xl { + padding-right: 0; + padding-left: 0; } } + +@media (min-width: 992px) { + .navbar-expand-lg { + flex-flow: row nowrap; + justify-content: flex-start; } + .navbar-expand-lg .navbar-nav { + flex-direction: row; } + .navbar-expand-lg .navbar-nav .dropdown-menu { + position: absolute; } + .navbar-expand-lg .navbar-nav .nav-link { + padding-right: 0.5rem; + padding-left: 0.5rem; } + .navbar-expand-lg > .container, + .navbar-expand-lg > .container-fluid, .navbar-expand-lg > .container-sm, .navbar-expand-lg > .container-md, .navbar-expand-lg > .container-lg, .navbar-expand-lg > .container-xl { + flex-wrap: nowrap; } + .navbar-expand-lg .navbar-collapse { + display: flex !important; + flex-basis: auto; } + .navbar-expand-lg .navbar-toggler { + display: none; } } + +@media (max-width: 1199.98px) { + .navbar-expand-xl > .container, + .navbar-expand-xl > .container-fluid, .navbar-expand-xl > .container-sm, .navbar-expand-xl > .container-md, .navbar-expand-xl > .container-lg, .navbar-expand-xl > .container-xl { + padding-right: 0; + padding-left: 0; } } + +@media (min-width: 1200px) { + .navbar-expand-xl { + flex-flow: row nowrap; + justify-content: flex-start; } + .navbar-expand-xl .navbar-nav { + flex-direction: row; } + .navbar-expand-xl .navbar-nav .dropdown-menu { + position: absolute; } + .navbar-expand-xl .navbar-nav .nav-link { + padding-right: 0.5rem; + padding-left: 0.5rem; } + .navbar-expand-xl > .container, + .navbar-expand-xl > .container-fluid, .navbar-expand-xl > .container-sm, .navbar-expand-xl > .container-md, .navbar-expand-xl > .container-lg, .navbar-expand-xl > .container-xl { + flex-wrap: nowrap; } + .navbar-expand-xl .navbar-collapse { + display: flex !important; + flex-basis: auto; } + .navbar-expand-xl .navbar-toggler { + display: none; } } + +.navbar-expand { + flex-flow: row nowrap; + justify-content: flex-start; } + .navbar-expand > .container, + .navbar-expand > .container-fluid, .navbar-expand > .container-sm, .navbar-expand > .container-md, .navbar-expand > .container-lg, .navbar-expand > .container-xl { + padding-right: 0; + padding-left: 0; } + .navbar-expand .navbar-nav { + flex-direction: row; } + .navbar-expand .navbar-nav .dropdown-menu { + position: absolute; } + .navbar-expand .navbar-nav .nav-link { + padding-right: 0.5rem; + padding-left: 0.5rem; } + .navbar-expand > .container, + .navbar-expand > .container-fluid, .navbar-expand > .container-sm, .navbar-expand > .container-md, .navbar-expand > .container-lg, .navbar-expand > .container-xl { + flex-wrap: nowrap; } + .navbar-expand .navbar-collapse { + display: flex !important; + flex-basis: auto; } + .navbar-expand .navbar-toggler { + display: none; } + +.navbar-light .navbar-brand { + color: rgba(0, 0, 0, 0.9); } + .navbar-light .navbar-brand:hover, .navbar-light .navbar-brand:focus { + color: rgba(0, 0, 0, 0.9); } + +.navbar-light .navbar-nav .nav-link { + color: rgba(0, 0, 0, 0.5); } + .navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus { + color: rgba(0, 0, 0, 0.7); } + .navbar-light .navbar-nav .nav-link.disabled { + color: rgba(0, 0, 0, 0.3); } + +.navbar-light .navbar-nav .show > .nav-link, +.navbar-light .navbar-nav .active > .nav-link, +.navbar-light .navbar-nav .nav-link.show, +.navbar-light .navbar-nav .nav-link.active { + color: rgba(0, 0, 0, 0.9); } + +.navbar-light .navbar-toggler { + color: rgba(0, 0, 0, 0.5); + border-color: rgba(0, 0, 0, 0.1); } + +.navbar-light .navbar-toggler-icon { + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); } + +.navbar-light .navbar-text { + color: rgba(0, 0, 0, 0.5); } + .navbar-light .navbar-text a { + color: rgba(0, 0, 0, 0.9); } + .navbar-light .navbar-text a:hover, .navbar-light .navbar-text a:focus { + color: rgba(0, 0, 0, 0.9); } + +.navbar-dark .navbar-brand { + color: #fff; } + .navbar-dark .navbar-brand:hover, .navbar-dark .navbar-brand:focus { + color: #fff; } + +.navbar-dark .navbar-nav .nav-link { + color: rgba(255, 255, 255, 0.5); } + .navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus { + color: rgba(255, 255, 255, 0.75); } + .navbar-dark .navbar-nav .nav-link.disabled { + color: rgba(255, 255, 255, 0.25); } + +.navbar-dark .navbar-nav .show > .nav-link, +.navbar-dark .navbar-nav .active > .nav-link, +.navbar-dark .navbar-nav .nav-link.show, +.navbar-dark .navbar-nav .nav-link.active { + color: #fff; } + +.navbar-dark .navbar-toggler { + color: rgba(255, 255, 255, 0.5); + border-color: rgba(255, 255, 255, 0.1); } + +.navbar-dark .navbar-toggler-icon { + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); } + +.navbar-dark .navbar-text { + color: rgba(255, 255, 255, 0.5); } + .navbar-dark .navbar-text a { + color: #fff; } + .navbar-dark .navbar-text a:hover, .navbar-dark .navbar-text a:focus { + color: #fff; } + +.card { + position: relative; + display: flex; + flex-direction: column; + min-width: 0; + word-wrap: break-word; + background-color: #fff; + background-clip: border-box; + border: 1px solid rgba(0, 0, 0, 0.125); + border-radius: 3px; } + .card > hr { + margin-right: 0; + margin-left: 0; } + .card > .list-group { + border-top: inherit; + border-bottom: inherit; } + .card > .list-group:first-child { + border-top-width: 0; + border-top-left-radius: 2px; + border-top-right-radius: 2px; } + .card > .list-group:last-child { + border-bottom-width: 0; + border-bottom-right-radius: 2px; + border-bottom-left-radius: 2px; } + .card > .card-header + .list-group, + .card > .list-group + .card-footer { + border-top: 0; } + +.card-body { + flex: 1 1 auto; + min-height: 1px; + padding: 1.25rem; } + +.card-title { + margin-bottom: 0.75rem; } + +.card-subtitle { + margin-top: -0.375rem; + margin-bottom: 0; } + +.card-text:last-child { + margin-bottom: 0; } + +.card-link:hover { + text-decoration: none; } + +.card-link + .card-link { + margin-left: 1.25rem; } + +.card-header { + padding: 0.75rem 1.25rem; + margin-bottom: 0; + background-color: rgba(0, 0, 0, 0.03); + border-bottom: 1px solid rgba(0, 0, 0, 0.125); } + .card-header:first-child { + border-radius: 2px 2px 0 0; } + +.card-footer { + padding: 0.75rem 1.25rem; + background-color: rgba(0, 0, 0, 0.03); + border-top: 1px solid rgba(0, 0, 0, 0.125); } + .card-footer:last-child { + border-radius: 0 0 2px 2px; } + +.card-header-tabs { + margin-right: -0.625rem; + margin-bottom: -0.75rem; + margin-left: -0.625rem; + border-bottom: 0; } + +.card-header-pills { + margin-right: -0.625rem; + margin-left: -0.625rem; } + +.card-img-overlay { + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; + padding: 1.25rem; + border-radius: 2px; } + +.card-img, +.card-img-top, +.card-img-bottom { + flex-shrink: 0; + width: 100%; } + +.card-img, +.card-img-top { + border-top-left-radius: 2px; + border-top-right-radius: 2px; } + +.card-img, +.card-img-bottom { + border-bottom-right-radius: 2px; + border-bottom-left-radius: 2px; } + +.card-deck .card { + margin-bottom: 15px; } + +@media (min-width: 576px) { + .card-deck { + display: flex; + flex-flow: row wrap; + margin-right: -15px; + margin-left: -15px; } + .card-deck .card { + flex: 1 0 0%; + margin-right: 15px; + margin-bottom: 0; + margin-left: 15px; } } + +.card-group > .card { + margin-bottom: 15px; } + +@media (min-width: 576px) { + .card-group { + display: flex; + flex-flow: row wrap; } + .card-group > .card { + flex: 1 0 0%; + margin-bottom: 0; } + .card-group > .card + .card { + margin-left: 0; + border-left: 0; } + .card-group > .card:not(:last-child) { + border-top-right-radius: 0; + border-bottom-right-radius: 0; } + .card-group > .card:not(:last-child) .card-img-top, + .card-group > .card:not(:last-child) .card-header { + border-top-right-radius: 0; } + .card-group > .card:not(:last-child) .card-img-bottom, + .card-group > .card:not(:last-child) .card-footer { + border-bottom-right-radius: 0; } + .card-group > .card:not(:first-child) { + border-top-left-radius: 0; + border-bottom-left-radius: 0; } + .card-group > .card:not(:first-child) .card-img-top, + .card-group > .card:not(:first-child) .card-header { + border-top-left-radius: 0; } + .card-group > .card:not(:first-child) .card-img-bottom, + .card-group > .card:not(:first-child) .card-footer { + border-bottom-left-radius: 0; } } + +.card-columns .card { + margin-bottom: 0.75rem; } + +@media (min-width: 576px) { + .card-columns { + column-count: 3; + column-gap: 1.25rem; + orphans: 1; + widows: 1; } + .card-columns .card { + display: inline-block; + width: 100%; } } + +.accordion { + overflow-anchor: none; } + .accordion > .card { + overflow: hidden; } + .accordion > .card:not(:last-of-type) { + border-bottom: 0; + border-bottom-right-radius: 0; + border-bottom-left-radius: 0; } + .accordion > .card:not(:first-of-type) { + border-top-left-radius: 0; + border-top-right-radius: 0; } + .accordion > .card > .card-header { + border-radius: 0; + margin-bottom: -1px; } + +.breadcrumb { + display: flex; + flex-wrap: wrap; + padding: 0.75rem 1rem; + margin-bottom: 1rem; + list-style: none; + background-color: #e3e7ed; + border-radius: 3px; } + +.breadcrumb-item { + display: flex; } + .breadcrumb-item + .breadcrumb-item { + padding-left: 0.5rem; } + .breadcrumb-item + .breadcrumb-item::before { + display: inline-block; + padding-right: 0.5rem; + color: #7987a1; + content: "/"; } + .breadcrumb-item + .breadcrumb-item:hover::before { + text-decoration: underline; } + .breadcrumb-item + .breadcrumb-item:hover::before { + text-decoration: none; } + .breadcrumb-item.active { + color: #7987a1; } + +.pagination { + display: flex; + padding-left: 0; + list-style: none; + border-radius: 3px; } + +.page-link { + position: relative; + display: block; + padding: 0.5rem 0.75rem; + margin-left: -1px; + line-height: 1.25; + color: #3366ff; + background-color: #fff; + border: 1px solid #cdd4e0; } + .page-link:hover { + z-index: 2; + color: #0039e6; + text-decoration: none; + background-color: #e3e7ed; + border-color: #cdd4e0; } + .page-link:focus { + z-index: 3; + outline: 0; + box-shadow: 0 0 0 0.2rem rgba(51, 102, 255, 0.25); } + +.page-item:first-child .page-link { + margin-left: 0; + border-top-left-radius: 3px; + border-bottom-left-radius: 3px; } + +.page-item:last-child .page-link { + border-top-right-radius: 3px; + border-bottom-right-radius: 3px; } + +.page-item.active .page-link { + z-index: 3; + color: #fff; + background-color: #3366ff; + border-color: #3366ff; } + +.page-item.disabled .page-link { + color: #7987a1; + pointer-events: none; + cursor: auto; + background-color: #fff; + border-color: #cdd4e0; } + +.pagination-lg .page-link { + padding: 0.75rem 1.5rem; + font-size: 1.09375rem; + line-height: 1.5; } + +.pagination-lg .page-item:first-child .page-link { + border-top-left-radius: 0.3rem; + border-bottom-left-radius: 0.3rem; } + +.pagination-lg .page-item:last-child .page-link { + border-top-right-radius: 0.3rem; + border-bottom-right-radius: 0.3rem; } + +.pagination-sm .page-link { + padding: 0.25rem 0.5rem; + font-size: 0.76562rem; + line-height: 1.5; } + +.pagination-sm .page-item:first-child .page-link { + border-top-left-radius: 0.2rem; + border-bottom-left-radius: 0.2rem; } + +.pagination-sm .page-item:last-child .page-link { + border-top-right-radius: 0.2rem; + border-bottom-right-radius: 0.2rem; } + +.badge { + display: inline-block; + padding: 0.25em 0.4em; + font-size: 75%; + font-weight: 700; + line-height: 1; + text-align: center; + white-space: nowrap; + vertical-align: baseline; + border-radius: 3px; + transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; } + @media (prefers-reduced-motion: reduce) { + .badge { + transition: none; } } + a.badge:hover, a.badge:focus { + text-decoration: none; } + .badge:empty { + display: none; } + +.btn .badge { + position: relative; + top: -1px; } + +.badge-pill { + padding-right: 0.6em; + padding-left: 0.6em; + border-radius: 10rem; } + +.badge-primary { + color: #fff; + background-color: #3366ff; } + a.badge-primary:hover, a.badge-primary:focus { + color: #fff; + background-color: #0040ff; } + a.badge-primary:focus, a.badge-primary.focus { + outline: 0; + box-shadow: 0 0 0 0.2rem rgba(51, 102, 255, 0.5); } + +.badge-secondary { + color: #fff; + background-color: #7987a1; } + a.badge-secondary:hover, a.badge-secondary:focus { + color: #fff; + background-color: #5f6d88; } + a.badge-secondary:focus, a.badge-secondary.focus { + outline: 0; + box-shadow: 0 0 0 0.2rem rgba(121, 135, 161, 0.5); } + +.badge-success { + color: #fff; + background-color: #3bb001; } + a.badge-success:hover, a.badge-success:focus { + color: #fff; + background-color: #2a7d01; } + a.badge-success:focus, a.badge-success.focus { + outline: 0; + box-shadow: 0 0 0 0.2rem rgba(59, 176, 1, 0.5); } + +.badge-info { + color: #fff; + background-color: #17a2b8; } + a.badge-info:hover, a.badge-info:focus { + color: #fff; + background-color: #117a8b; } + a.badge-info:focus, a.badge-info.focus { + outline: 0; + box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5); } + +.badge-warning { + color: #1c273c; + background-color: #ffc107; } + a.badge-warning:hover, a.badge-warning:focus { + color: #1c273c; + background-color: #d39e00; } + a.badge-warning:focus, a.badge-warning.focus { + outline: 0; + box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5); } + +.badge-danger { + color: #fff; + background-color: #dc3545; } + a.badge-danger:hover, a.badge-danger:focus { + color: #fff; + background-color: #bd2130; } + a.badge-danger:focus, a.badge-danger.focus { + outline: 0; + box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5); } + +.badge-light { + color: #1c273c; + background-color: #f4f5f8; } + a.badge-light:hover, a.badge-light:focus { + color: #1c273c; + background-color: #d5d9e4; } + a.badge-light:focus, a.badge-light.focus { + outline: 0; + box-shadow: 0 0 0 0.2rem rgba(244, 245, 248, 0.5); } + +.badge-dark { + color: #fff; + background-color: #3b4863; } + a.badge-dark:hover, a.badge-dark:focus { + color: #fff; + background-color: #283143; } + a.badge-dark:focus, a.badge-dark.focus { + outline: 0; + box-shadow: 0 0 0 0.2rem rgba(59, 72, 99, 0.5); } + +.jumbotron { + padding: 2rem 1rem; + margin-bottom: 2rem; + background-color: #e3e7ed; + border-radius: 0.3rem; } + @media (min-width: 576px) { + .jumbotron { + padding: 4rem 2rem; } } + +.jumbotron-fluid { + padding-right: 0; + padding-left: 0; + border-radius: 0; } + +.alert { + position: relative; + padding: 0.75rem 1.25rem; + margin-bottom: 1rem; + border: 1px solid transparent; + border-radius: 3px; } + +.alert-heading { + color: inherit; } + +.alert-link { + font-weight: 700; } + +.alert-dismissible { + padding-right: 3.8125rem; } + .alert-dismissible .close { + position: absolute; + top: 0; + right: 0; + padding: 0.75rem 1.25rem; + color: inherit; } + +.alert-primary { + color: #1b3585; + background-color: #d6e0ff; + border-color: #c6d4ff; } + .alert-primary hr { + border-top-color: #adc1ff; } + .alert-primary .alert-link { + color: #12245b; } + +.alert-secondary { + color: #3f4654; + background-color: #e4e7ec; + border-color: #d9dde5; } + .alert-secondary hr { + border-top-color: #cacfdb; } + .alert-secondary .alert-link { + color: #292e37; } + +.alert-success { + color: #1f5c01; + background-color: #d8efcc; + border-color: #c8e9b8; } + .alert-success hr { + border-top-color: #b9e3a5; } + .alert-success .alert-link { + color: #0e2a00; } + +.alert-info { + color: #0c5460; + background-color: #d1ecf1; + border-color: #bee5eb; } + .alert-info hr { + border-top-color: #abdde5; } + .alert-info .alert-link { + color: #062c33; } + +.alert-warning { + color: #856404; + background-color: #fff3cd; + border-color: #ffeeba; } + .alert-warning hr { + border-top-color: #ffe8a1; } + .alert-warning .alert-link { + color: #533f03; } + +.alert-danger { + color: #721c24; + background-color: #f8d7da; + border-color: #f5c6cb; } + .alert-danger hr { + border-top-color: #f1b0b7; } + .alert-danger .alert-link { + color: #491217; } + +.alert-light { + color: #7f7f81; + background-color: #fdfdfe; + border-color: #fcfcfd; } + .alert-light hr { + border-top-color: #ededf3; } + .alert-light .alert-link { + color: #666667; } + +.alert-dark { + color: #1f2533; + background-color: #d8dae0; + border-color: #c8ccd3; } + .alert-dark hr { + border-top-color: #babfc8; } + .alert-dark .alert-link { + color: #0c0e13; } + +@keyframes progress-bar-stripes { + from { + background-position: 1rem 0; } + to { + background-position: 0 0; } } + +.progress { + display: flex; + height: 1rem; + overflow: hidden; + line-height: 0; + font-size: 0.65625rem; + background-color: #e3e7ed; + border-radius: 3px; } + +.progress-bar { + display: flex; + flex-direction: column; + justify-content: center; + overflow: hidden; + color: #fff; + text-align: center; + white-space: nowrap; + background-color: #3366ff; + transition: width 0.6s ease; } + @media (prefers-reduced-motion: reduce) { + .progress-bar { + transition: none; } } + +.progress-bar-striped { + background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-size: 1rem 1rem; } + +.progress-bar-animated { + animation: progress-bar-stripes 1s linear infinite; } + @media (prefers-reduced-motion: reduce) { + .progress-bar-animated { + animation: none; } } + +.media { + display: flex; + align-items: flex-start; } + +.media-body { + flex: 1; } + +.list-group { + display: flex; + flex-direction: column; + padding-left: 0; + margin-bottom: 0; + border-radius: 3px; } + +.list-group-item-action { + width: 100%; + color: #596882; + text-align: inherit; } + .list-group-item-action:hover, .list-group-item-action:focus { + z-index: 1; + color: #596882; + text-decoration: none; + background-color: #f4f5f8; } + .list-group-item-action:active { + color: #031b4e; + background-color: #e3e7ed; } + +.list-group-item { + position: relative; + display: block; + padding: 0.75rem 1.25rem; + background-color: #fff; + border: 1px solid rgba(0, 0, 0, 0.125); } + .list-group-item:first-child { + border-top-left-radius: inherit; + border-top-right-radius: inherit; } + .list-group-item:last-child { + border-bottom-right-radius: inherit; + border-bottom-left-radius: inherit; } + .list-group-item.disabled, .list-group-item:disabled { + color: #7987a1; + pointer-events: none; + background-color: #fff; } + .list-group-item.active { + z-index: 2; + color: #fff; + background-color: #3366ff; + border-color: #3366ff; } + .list-group-item + .list-group-item { + border-top-width: 0; } + .list-group-item + .list-group-item.active { + margin-top: -1px; + border-top-width: 1px; } + +.list-group-horizontal { + flex-direction: row; } + .list-group-horizontal > .list-group-item:first-child { + border-bottom-left-radius: 3px; + border-top-right-radius: 0; } + .list-group-horizontal > .list-group-item:last-child { + border-top-right-radius: 3px; + border-bottom-left-radius: 0; } + .list-group-horizontal > .list-group-item.active { + margin-top: 0; } + .list-group-horizontal > .list-group-item + .list-group-item { + border-top-width: 1px; + border-left-width: 0; } + .list-group-horizontal > .list-group-item + .list-group-item.active { + margin-left: -1px; + border-left-width: 1px; } + +@media (min-width: 576px) { + .list-group-horizontal-sm { + flex-direction: row; } + .list-group-horizontal-sm > .list-group-item:first-child { + border-bottom-left-radius: 3px; + border-top-right-radius: 0; } + .list-group-horizontal-sm > .list-group-item:last-child { + border-top-right-radius: 3px; + border-bottom-left-radius: 0; } + .list-group-horizontal-sm > .list-group-item.active { + margin-top: 0; } + .list-group-horizontal-sm > .list-group-item + .list-group-item { + border-top-width: 1px; + border-left-width: 0; } + .list-group-horizontal-sm > .list-group-item + .list-group-item.active { + margin-left: -1px; + border-left-width: 1px; } } + +@media (min-width: 768px) { + .list-group-horizontal-md { + flex-direction: row; } + .list-group-horizontal-md > .list-group-item:first-child { + border-bottom-left-radius: 3px; + border-top-right-radius: 0; } + .list-group-horizontal-md > .list-group-item:last-child { + border-top-right-radius: 3px; + border-bottom-left-radius: 0; } + .list-group-horizontal-md > .list-group-item.active { + margin-top: 0; } + .list-group-horizontal-md > .list-group-item + .list-group-item { + border-top-width: 1px; + border-left-width: 0; } + .list-group-horizontal-md > .list-group-item + .list-group-item.active { + margin-left: -1px; + border-left-width: 1px; } } + +@media (min-width: 992px) { + .list-group-horizontal-lg { + flex-direction: row; } + .list-group-horizontal-lg > .list-group-item:first-child { + border-bottom-left-radius: 3px; + border-top-right-radius: 0; } + .list-group-horizontal-lg > .list-group-item:last-child { + border-top-right-radius: 3px; + border-bottom-left-radius: 0; } + .list-group-horizontal-lg > .list-group-item.active { + margin-top: 0; } + .list-group-horizontal-lg > .list-group-item + .list-group-item { + border-top-width: 1px; + border-left-width: 0; } + .list-group-horizontal-lg > .list-group-item + .list-group-item.active { + margin-left: -1px; + border-left-width: 1px; } } + +@media (min-width: 1200px) { + .list-group-horizontal-xl { + flex-direction: row; } + .list-group-horizontal-xl > .list-group-item:first-child { + border-bottom-left-radius: 3px; + border-top-right-radius: 0; } + .list-group-horizontal-xl > .list-group-item:last-child { + border-top-right-radius: 3px; + border-bottom-left-radius: 0; } + .list-group-horizontal-xl > .list-group-item.active { + margin-top: 0; } + .list-group-horizontal-xl > .list-group-item + .list-group-item { + border-top-width: 1px; + border-left-width: 0; } + .list-group-horizontal-xl > .list-group-item + .list-group-item.active { + margin-left: -1px; + border-left-width: 1px; } } + +.list-group-flush { + border-radius: 0; } + .list-group-flush > .list-group-item { + border-width: 0 0 1px; } + .list-group-flush > .list-group-item:last-child { + border-bottom-width: 0; } + +.list-group-item-primary { + color: #1b3585; + background-color: #c6d4ff; } + .list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus { + color: #1b3585; + background-color: #adc1ff; } + .list-group-item-primary.list-group-item-action.active { + color: #fff; + background-color: #1b3585; + border-color: #1b3585; } + +.list-group-item-secondary { + color: #3f4654; + background-color: #d9dde5; } + .list-group-item-secondary.list-group-item-action:hover, .list-group-item-secondary.list-group-item-action:focus { + color: #3f4654; + background-color: #cacfdb; } + .list-group-item-secondary.list-group-item-action.active { + color: #fff; + background-color: #3f4654; + border-color: #3f4654; } + +.list-group-item-success { + color: #1f5c01; + background-color: #c8e9b8; } + .list-group-item-success.list-group-item-action:hover, .list-group-item-success.list-group-item-action:focus { + color: #1f5c01; + background-color: #b9e3a5; } + .list-group-item-success.list-group-item-action.active { + color: #fff; + background-color: #1f5c01; + border-color: #1f5c01; } + +.list-group-item-info { + color: #0c5460; + background-color: #bee5eb; } + .list-group-item-info.list-group-item-action:hover, .list-group-item-info.list-group-item-action:focus { + color: #0c5460; + background-color: #abdde5; } + .list-group-item-info.list-group-item-action.active { + color: #fff; + background-color: #0c5460; + border-color: #0c5460; } + +.list-group-item-warning { + color: #856404; + background-color: #ffeeba; } + .list-group-item-warning.list-group-item-action:hover, .list-group-item-warning.list-group-item-action:focus { + color: #856404; + background-color: #ffe8a1; } + .list-group-item-warning.list-group-item-action.active { + color: #fff; + background-color: #856404; + border-color: #856404; } + +.list-group-item-danger { + color: #721c24; + background-color: #f5c6cb; } + .list-group-item-danger.list-group-item-action:hover, .list-group-item-danger.list-group-item-action:focus { + color: #721c24; + background-color: #f1b0b7; } + .list-group-item-danger.list-group-item-action.active { + color: #fff; + background-color: #721c24; + border-color: #721c24; } + +.list-group-item-light { + color: #7f7f81; + background-color: #fcfcfd; } + .list-group-item-light.list-group-item-action:hover, .list-group-item-light.list-group-item-action:focus { + color: #7f7f81; + background-color: #ededf3; } + .list-group-item-light.list-group-item-action.active { + color: #fff; + background-color: #7f7f81; + border-color: #7f7f81; } + +.list-group-item-dark { + color: #1f2533; + background-color: #c8ccd3; } + .list-group-item-dark.list-group-item-action:hover, .list-group-item-dark.list-group-item-action:focus { + color: #1f2533; + background-color: #babfc8; } + .list-group-item-dark.list-group-item-action.active { + color: #fff; + background-color: #1f2533; + border-color: #1f2533; } + +.close { + float: right; + font-size: 1.3125rem; + font-weight: 700; + line-height: 1; + color: #000; + text-shadow: 0 1px 0 #fff; + opacity: .5; } + .close:hover { + color: #000; + text-decoration: none; } + .close:not(:disabled):not(.disabled):hover, .close:not(:disabled):not(.disabled):focus { + opacity: .75; } + +button.close { + padding: 0; + background-color: transparent; + border: 0; } + +a.close.disabled { + pointer-events: none; } + +.toast { + flex-basis: 350px; + max-width: 350px; + font-size: 0.875rem; + background-color: rgba(255, 255, 255, 0.85); + background-clip: padding-box; + border: 1px solid rgba(0, 0, 0, 0.1); + box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1); + opacity: 0; + border-radius: 0.25rem; } + .toast:not(:last-child) { + margin-bottom: 0.75rem; } + .toast.showing { + opacity: 1; } + .toast.show { + display: block; + opacity: 1; } + .toast.hide { + display: none; } + +.toast-header { + display: flex; + align-items: center; + padding: 0.25rem 0.75rem; + color: #7987a1; + background-color: rgba(255, 255, 255, 0.85); + background-clip: padding-box; + border-bottom: 1px solid rgba(0, 0, 0, 0.05); + border-top-left-radius: calc(0.25rem - 1px); + border-top-right-radius: calc(0.25rem - 1px); } + +.toast-body { + padding: 0.75rem; } + +.modal-open { + overflow: hidden; } + .modal-open .modal { + overflow-x: hidden; + overflow-y: auto; } + +.modal { + position: fixed; + top: 0; + left: 0; + z-index: 1050; + display: none; + width: 100%; + height: 100%; + overflow: hidden; + outline: 0; } + +.modal-dialog { + position: relative; + width: auto; + margin: 0.5rem; + pointer-events: none; } + .modal.fade .modal-dialog { + transition: transform 0.3s ease-out; + transform: translate(0, -50px); } + @media (prefers-reduced-motion: reduce) { + .modal.fade .modal-dialog { + transition: none; } } + .modal.show .modal-dialog { + transform: none; } + .modal.modal-static .modal-dialog { + transform: scale(1.02); } + +.modal-dialog-scrollable { + display: flex; + max-height: calc(100% - 1rem); } + .modal-dialog-scrollable .modal-content { + max-height: calc(100vh - 1rem); + overflow: hidden; } + .modal-dialog-scrollable .modal-header, + .modal-dialog-scrollable .modal-footer { + flex-shrink: 0; } + .modal-dialog-scrollable .modal-body { + overflow-y: auto; } + +.modal-dialog-centered { + display: flex; + align-items: center; + min-height: calc(100% - 1rem); } + .modal-dialog-centered::before { + display: block; + height: calc(100vh - 1rem); + height: min-content; + content: ""; } + .modal-dialog-centered.modal-dialog-scrollable { + flex-direction: column; + justify-content: center; + height: 100%; } + .modal-dialog-centered.modal-dialog-scrollable .modal-content { + max-height: none; } + .modal-dialog-centered.modal-dialog-scrollable::before { + content: none; } + +.modal-content { + position: relative; + display: flex; + flex-direction: column; + width: 100%; + pointer-events: auto; + background-color: #fff; + background-clip: padding-box; + border: 1px solid rgba(0, 0, 0, 0.2); + border-radius: 0.3rem; + outline: 0; } + +.modal-backdrop { + position: fixed; + top: 0; + left: 0; + z-index: 1040; + width: 100vw; + height: 100vh; + background-color: #000; } + .modal-backdrop.fade { + opacity: 0; } + .modal-backdrop.show { + opacity: 0.5; } + +.modal-header { + display: flex; + align-items: flex-start; + justify-content: space-between; + padding: 1rem 1rem; + border-bottom: 1px solid #cdd4e0; + border-top-left-radius: calc(0.3rem - 1px); + border-top-right-radius: calc(0.3rem - 1px); } + .modal-header .close { + padding: 1rem 1rem; + margin: -1rem -1rem -1rem auto; } + +.modal-title { + margin-bottom: 0; + line-height: 1.5; } + +.modal-body { + position: relative; + flex: 1 1 auto; + padding: 1rem; } + +.modal-footer { + display: flex; + flex-wrap: wrap; + align-items: center; + justify-content: flex-end; + padding: 0.75rem; + border-top: 1px solid #cdd4e0; + border-bottom-right-radius: calc(0.3rem - 1px); + border-bottom-left-radius: calc(0.3rem - 1px); } + .modal-footer > * { + margin: 0.25rem; } + +.modal-scrollbar-measure { + position: absolute; + top: -9999px; + width: 50px; + height: 50px; + overflow: scroll; } + +@media (min-width: 576px) { + .modal-dialog { + max-width: 500px; + margin: 1.75rem auto; } + .modal-dialog-scrollable { + max-height: calc(100% - 3.5rem); } + .modal-dialog-scrollable .modal-content { + max-height: calc(100vh - 3.5rem); } + .modal-dialog-centered { + min-height: calc(100% - 3.5rem); } + .modal-dialog-centered::before { + height: calc(100vh - 3.5rem); + height: min-content; } + .modal-sm { + max-width: 300px; } } + +@media (min-width: 992px) { + .modal-lg, + .modal-xl { + max-width: 800px; } } + +@media (min-width: 1200px) { + .modal-xl { + max-width: 1140px; } } + +.tooltip { + position: absolute; + z-index: 1070; + display: block; + margin: 0; + font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; + font-style: normal; + font-weight: 400; + line-height: 1.5; + text-align: left; + text-align: start; + text-decoration: none; + text-shadow: none; + text-transform: none; + letter-spacing: normal; + word-break: normal; + word-spacing: normal; + white-space: normal; + line-break: auto; + font-size: 0.76562rem; + word-wrap: break-word; + opacity: 0; } + .tooltip.show { + opacity: 0.9; } + .tooltip .arrow { + position: absolute; + display: block; + width: 0.8rem; + height: 0.4rem; } + .tooltip .arrow::before { + position: absolute; + content: ""; + border-color: transparent; + border-style: solid; } + +.bs-tooltip-top, .bs-tooltip-auto[x-placement^="top"] { + padding: 0.4rem 0; } + .bs-tooltip-top .arrow, .bs-tooltip-auto[x-placement^="top"] .arrow { + bottom: 0; } + .bs-tooltip-top .arrow::before, .bs-tooltip-auto[x-placement^="top"] .arrow::before { + top: 0; + border-width: 0.4rem 0.4rem 0; + border-top-color: #000; } + +.bs-tooltip-right, .bs-tooltip-auto[x-placement^="right"] { + padding: 0 0.4rem; } + .bs-tooltip-right .arrow, .bs-tooltip-auto[x-placement^="right"] .arrow { + left: 0; + width: 0.4rem; + height: 0.8rem; } + .bs-tooltip-right .arrow::before, .bs-tooltip-auto[x-placement^="right"] .arrow::before { + right: 0; + border-width: 0.4rem 0.4rem 0.4rem 0; + border-right-color: #000; } + +.bs-tooltip-bottom, .bs-tooltip-auto[x-placement^="bottom"] { + padding: 0.4rem 0; } + .bs-tooltip-bottom .arrow, .bs-tooltip-auto[x-placement^="bottom"] .arrow { + top: 0; } + .bs-tooltip-bottom .arrow::before, .bs-tooltip-auto[x-placement^="bottom"] .arrow::before { + bottom: 0; + border-width: 0 0.4rem 0.4rem; + border-bottom-color: #000; } + +.bs-tooltip-left, .bs-tooltip-auto[x-placement^="left"] { + padding: 0 0.4rem; } + .bs-tooltip-left .arrow, .bs-tooltip-auto[x-placement^="left"] .arrow { + right: 0; + width: 0.4rem; + height: 0.8rem; } + .bs-tooltip-left .arrow::before, .bs-tooltip-auto[x-placement^="left"] .arrow::before { + left: 0; + border-width: 0.4rem 0 0.4rem 0.4rem; + border-left-color: #000; } + +.tooltip-inner { + max-width: 200px; + padding: 0.25rem 0.5rem; + color: #fff; + text-align: center; + background-color: #000; + border-radius: 3px; } + +.popover { + position: absolute; + top: 0; + left: 0; + z-index: 1060; + display: block; + max-width: 276px; + font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; + font-style: normal; + font-weight: 400; + line-height: 1.5; + text-align: left; + text-align: start; + text-decoration: none; + text-shadow: none; + text-transform: none; + letter-spacing: normal; + word-break: normal; + word-spacing: normal; + white-space: normal; + line-break: auto; + font-size: 0.76562rem; + word-wrap: break-word; + background-color: #fff; + background-clip: padding-box; + border: 1px solid rgba(0, 0, 0, 0.2); + border-radius: 0.3rem; } + .popover .arrow { + position: absolute; + display: block; + width: 1rem; + height: 0.5rem; + margin: 0 0.3rem; } + .popover .arrow::before, .popover .arrow::after { + position: absolute; + display: block; + content: ""; + border-color: transparent; + border-style: solid; } + +.bs-popover-top, .bs-popover-auto[x-placement^="top"] { + margin-bottom: 0.5rem; } + .bs-popover-top > .arrow, .bs-popover-auto[x-placement^="top"] > .arrow { + bottom: calc(-0.5rem - 1px); } + .bs-popover-top > .arrow::before, .bs-popover-auto[x-placement^="top"] > .arrow::before { + bottom: 0; + border-width: 0.5rem 0.5rem 0; + border-top-color: rgba(0, 0, 0, 0.25); } + .bs-popover-top > .arrow::after, .bs-popover-auto[x-placement^="top"] > .arrow::after { + bottom: 1px; + border-width: 0.5rem 0.5rem 0; + border-top-color: #fff; } + +.bs-popover-right, .bs-popover-auto[x-placement^="right"] { + margin-left: 0.5rem; } + .bs-popover-right > .arrow, .bs-popover-auto[x-placement^="right"] > .arrow { + left: calc(-0.5rem - 1px); + width: 0.5rem; + height: 1rem; + margin: 0.3rem 0; } + .bs-popover-right > .arrow::before, .bs-popover-auto[x-placement^="right"] > .arrow::before { + left: 0; + border-width: 0.5rem 0.5rem 0.5rem 0; + border-right-color: rgba(0, 0, 0, 0.25); } + .bs-popover-right > .arrow::after, .bs-popover-auto[x-placement^="right"] > .arrow::after { + left: 1px; + border-width: 0.5rem 0.5rem 0.5rem 0; + border-right-color: #fff; } + +.bs-popover-bottom, .bs-popover-auto[x-placement^="bottom"] { + margin-top: 0.5rem; } + .bs-popover-bottom > .arrow, .bs-popover-auto[x-placement^="bottom"] > .arrow { + top: calc(-0.5rem - 1px); } + .bs-popover-bottom > .arrow::before, .bs-popover-auto[x-placement^="bottom"] > .arrow::before { + top: 0; + border-width: 0 0.5rem 0.5rem 0.5rem; + border-bottom-color: rgba(0, 0, 0, 0.25); } + .bs-popover-bottom > .arrow::after, .bs-popover-auto[x-placement^="bottom"] > .arrow::after { + top: 1px; + border-width: 0 0.5rem 0.5rem 0.5rem; + border-bottom-color: #fff; } + .bs-popover-bottom .popover-header::before, .bs-popover-auto[x-placement^="bottom"] .popover-header::before { + position: absolute; + top: 0; + left: 50%; + display: block; + width: 1rem; + margin-left: -0.5rem; + content: ""; + border-bottom: 1px solid #f7f7f7; } + +.bs-popover-left, .bs-popover-auto[x-placement^="left"] { + margin-right: 0.5rem; } + .bs-popover-left > .arrow, .bs-popover-auto[x-placement^="left"] > .arrow { + right: calc(-0.5rem - 1px); + width: 0.5rem; + height: 1rem; + margin: 0.3rem 0; } + .bs-popover-left > .arrow::before, .bs-popover-auto[x-placement^="left"] > .arrow::before { + right: 0; + border-width: 0.5rem 0 0.5rem 0.5rem; + border-left-color: rgba(0, 0, 0, 0.25); } + .bs-popover-left > .arrow::after, .bs-popover-auto[x-placement^="left"] > .arrow::after { + right: 1px; + border-width: 0.5rem 0 0.5rem 0.5rem; + border-left-color: #fff; } + +.popover-header { + padding: 0.5rem 0.75rem; + margin-bottom: 0; + font-size: 0.875rem; + background-color: #f7f7f7; + border-bottom: 1px solid #ebebeb; + border-top-left-radius: calc(0.3rem - 1px); + border-top-right-radius: calc(0.3rem - 1px); } + .popover-header:empty { + display: none; } + +.popover-body { + padding: 0.5rem 0.75rem; + color: #031b4e; } + +.carousel { + position: relative; } + +.carousel.pointer-event { + touch-action: pan-y; } + +.carousel-inner { + position: relative; + width: 100%; + overflow: hidden; } + .carousel-inner::after { + display: block; + clear: both; + content: ""; } + +.carousel-item { + position: relative; + display: none; + float: left; + width: 100%; + margin-right: -100%; + backface-visibility: hidden; + transition: transform 0.6s ease-in-out; } + @media (prefers-reduced-motion: reduce) { + .carousel-item { + transition: none; } } + +.carousel-item.active, +.carousel-item-next, +.carousel-item-prev { + display: block; } + +.carousel-item-next:not(.carousel-item-left), +.active.carousel-item-right { + transform: translateX(100%); } + +.carousel-item-prev:not(.carousel-item-right), +.active.carousel-item-left { + transform: translateX(-100%); } + +.carousel-fade .carousel-item { + opacity: 0; + transition-property: opacity; + transform: none; } + +.carousel-fade .carousel-item.active, +.carousel-fade .carousel-item-next.carousel-item-left, +.carousel-fade .carousel-item-prev.carousel-item-right { + z-index: 1; + opacity: 1; } + +.carousel-fade .active.carousel-item-left, +.carousel-fade .active.carousel-item-right { + z-index: 0; + opacity: 0; + transition: opacity 0s 0.6s; } + @media (prefers-reduced-motion: reduce) { + .carousel-fade .active.carousel-item-left, + .carousel-fade .active.carousel-item-right { + transition: none; } } + +.carousel-control-prev, +.carousel-control-next { + position: absolute; + top: 0; + bottom: 0; + z-index: 1; + display: flex; + align-items: center; + justify-content: center; + width: 15%; + color: #fff; + text-align: center; + opacity: 0.5; + transition: opacity 0.15s ease; } + @media (prefers-reduced-motion: reduce) { + .carousel-control-prev, + .carousel-control-next { + transition: none; } } + .carousel-control-prev:hover, .carousel-control-prev:focus, + .carousel-control-next:hover, + .carousel-control-next:focus { + color: #fff; + text-decoration: none; + outline: 0; + opacity: 0.9; } + +.carousel-control-prev { + left: 0; } + +.carousel-control-next { + right: 0; } + +.carousel-control-prev-icon, +.carousel-control-next-icon { + display: inline-block; + width: 20px; + height: 20px; + background: no-repeat 50% / 100% 100%; } + +.carousel-control-prev-icon { + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z'/%3e%3c/svg%3e"); } + +.carousel-control-next-icon { + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z'/%3e%3c/svg%3e"); } + +.carousel-indicators { + position: absolute; + right: 0; + bottom: 0; + left: 0; + z-index: 15; + display: flex; + justify-content: center; + padding-left: 0; + margin-right: 15%; + margin-left: 15%; + list-style: none; } + .carousel-indicators li { + box-sizing: content-box; + flex: 0 1 auto; + width: 30px; + height: 3px; + margin-right: 3px; + margin-left: 3px; + text-indent: -999px; + cursor: pointer; + background-color: #fff; + background-clip: padding-box; + border-top: 10px solid transparent; + border-bottom: 10px solid transparent; + opacity: .5; + transition: opacity 0.6s ease; } + @media (prefers-reduced-motion: reduce) { + .carousel-indicators li { + transition: none; } } + .carousel-indicators .active { + opacity: 1; } + +.carousel-caption { + position: absolute; + right: 15%; + bottom: 20px; + left: 15%; + z-index: 10; + padding-top: 20px; + padding-bottom: 20px; + color: #fff; + text-align: center; } + +@keyframes spinner-border { + to { + transform: rotate(360deg); } } + +.spinner-border { + display: inline-block; + width: 2rem; + height: 2rem; + vertical-align: text-bottom; + border: 0.25em solid currentColor; + border-right-color: transparent; + border-radius: 50%; + animation: spinner-border .75s linear infinite; } + +.spinner-border-sm { + width: 1rem; + height: 1rem; + border-width: 0.2em; } + +@keyframes spinner-grow { + 0% { + transform: scale(0); } + 50% { + opacity: 1; + transform: none; } } + +.spinner-grow { + display: inline-block; + width: 2rem; + height: 2rem; + vertical-align: text-bottom; + background-color: currentColor; + border-radius: 50%; + opacity: 0; + animation: spinner-grow .75s linear infinite; } + +.spinner-grow-sm { + width: 1rem; + height: 1rem; } + +.align-baseline { + vertical-align: baseline !important; } + +.align-top { + vertical-align: top !important; } + +.align-middle { + vertical-align: middle !important; } + +.align-bottom { + vertical-align: bottom !important; } + +.align-text-bottom { + vertical-align: text-bottom !important; } + +.align-text-top { + vertical-align: text-top !important; } + +.bg-primary { + background-color: #3366ff !important; } + +a.bg-primary:hover, a.bg-primary:focus, +button.bg-primary:hover, +button.bg-primary:focus { + background-color: #0040ff !important; } + +.bg-secondary { + background-color: #7987a1 !important; } + +a.bg-secondary:hover, a.bg-secondary:focus, +button.bg-secondary:hover, +button.bg-secondary:focus { + background-color: #5f6d88 !important; } + +.bg-success { + background-color: #3bb001 !important; } + +a.bg-success:hover, a.bg-success:focus, +button.bg-success:hover, +button.bg-success:focus { + background-color: #2a7d01 !important; } + +.bg-info { + background-color: #17a2b8 !important; } + +a.bg-info:hover, a.bg-info:focus, +button.bg-info:hover, +button.bg-info:focus { + background-color: #117a8b !important; } + +.bg-warning { + background-color: #ffc107 !important; } + +a.bg-warning:hover, a.bg-warning:focus, +button.bg-warning:hover, +button.bg-warning:focus { + background-color: #d39e00 !important; } + +.bg-danger { + background-color: #dc3545 !important; } + +a.bg-danger:hover, a.bg-danger:focus, +button.bg-danger:hover, +button.bg-danger:focus { + background-color: #bd2130 !important; } + +.bg-light { + background-color: #f4f5f8 !important; } + +a.bg-light:hover, a.bg-light:focus, +button.bg-light:hover, +button.bg-light:focus { + background-color: #d5d9e4 !important; } + +.bg-dark { + background-color: #3b4863 !important; } + +a.bg-dark:hover, a.bg-dark:focus, +button.bg-dark:hover, +button.bg-dark:focus { + background-color: #283143 !important; } + +.bg-white { + background-color: #fff !important; } + +.bg-transparent { + background-color: transparent !important; } + +.border { + border: 1px solid #cdd4e0 !important; } + +.border-top { + border-top: 1px solid #cdd4e0 !important; } + +.border-right { + border-right: 1px solid #cdd4e0 !important; } + +.border-bottom { + border-bottom: 1px solid #cdd4e0 !important; } + +.border-left { + border-left: 1px solid #cdd4e0 !important; } + +.border-0 { + border: 0 !important; } + +.border-top-0 { + border-top: 0 !important; } + +.border-right-0 { + border-right: 0 !important; } + +.border-bottom-0 { + border-bottom: 0 !important; } + +.border-left-0 { + border-left: 0 !important; } + +.border-primary { + border-color: #3366ff !important; } + +.border-secondary { + border-color: #7987a1 !important; } + +.border-success { + border-color: #3bb001 !important; } + +.border-info { + border-color: #17a2b8 !important; } + +.border-warning { + border-color: #ffc107 !important; } + +.border-danger { + border-color: #dc3545 !important; } + +.border-light { + border-color: #f4f5f8 !important; } + +.border-dark { + border-color: #3b4863 !important; } + +.border-white { + border-color: #fff !important; } + +.rounded-sm { + border-radius: 0.2rem !important; } + +.rounded { + border-radius: 3px !important; } + +.rounded-top { + border-top-left-radius: 3px !important; + border-top-right-radius: 3px !important; } + +.rounded-right { + border-top-right-radius: 3px !important; + border-bottom-right-radius: 3px !important; } + +.rounded-bottom { + border-bottom-right-radius: 3px !important; + border-bottom-left-radius: 3px !important; } + +.rounded-left { + border-top-left-radius: 3px !important; + border-bottom-left-radius: 3px !important; } + +.rounded-lg { + border-radius: 0.3rem !important; } + +.rounded-circle { + border-radius: 50% !important; } + +.rounded-pill { + border-radius: 50rem !important; } + +.rounded-0 { + border-radius: 0 !important; } + +.clearfix::after { + display: block; + clear: both; + content: ""; } + +.d-none { + display: none !important; } + +.d-inline { + display: inline !important; } + +.d-inline-block { + display: inline-block !important; } + +.d-block { + display: block !important; } + +.d-table { + display: table !important; } + +.d-table-row { + display: table-row !important; } + +.d-table-cell { + display: table-cell !important; } + +.d-flex { + display: flex !important; } + +.d-inline-flex { + display: inline-flex !important; } + +@media (min-width: 576px) { + .d-sm-none { + display: none !important; } + .d-sm-inline { + display: inline !important; } + .d-sm-inline-block { + display: inline-block !important; } + .d-sm-block { + display: block !important; } + .d-sm-table { + display: table !important; } + .d-sm-table-row { + display: table-row !important; } + .d-sm-table-cell { + display: table-cell !important; } + .d-sm-flex { + display: flex !important; } + .d-sm-inline-flex { + display: inline-flex !important; } } + +@media (min-width: 768px) { + .d-md-none { + display: none !important; } + .d-md-inline { + display: inline !important; } + .d-md-inline-block { + display: inline-block !important; } + .d-md-block { + display: block !important; } + .d-md-table { + display: table !important; } + .d-md-table-row { + display: table-row !important; } + .d-md-table-cell { + display: table-cell !important; } + .d-md-flex { + display: flex !important; } + .d-md-inline-flex { + display: inline-flex !important; } } + +@media (min-width: 992px) { + .d-lg-none { + display: none !important; } + .d-lg-inline { + display: inline !important; } + .d-lg-inline-block { + display: inline-block !important; } + .d-lg-block { + display: block !important; } + .d-lg-table { + display: table !important; } + .d-lg-table-row { + display: table-row !important; } + .d-lg-table-cell { + display: table-cell !important; } + .d-lg-flex { + display: flex !important; } + .d-lg-inline-flex { + display: inline-flex !important; } } + +@media (min-width: 1200px) { + .d-xl-none { + display: none !important; } + .d-xl-inline { + display: inline !important; } + .d-xl-inline-block { + display: inline-block !important; } + .d-xl-block { + display: block !important; } + .d-xl-table { + display: table !important; } + .d-xl-table-row { + display: table-row !important; } + .d-xl-table-cell { + display: table-cell !important; } + .d-xl-flex { + display: flex !important; } + .d-xl-inline-flex { + display: inline-flex !important; } } + +@media print { + .d-print-none { + display: none !important; } + .d-print-inline { + display: inline !important; } + .d-print-inline-block { + display: inline-block !important; } + .d-print-block { + display: block !important; } + .d-print-table { + display: table !important; } + .d-print-table-row { + display: table-row !important; } + .d-print-table-cell { + display: table-cell !important; } + .d-print-flex { + display: flex !important; } + .d-print-inline-flex { + display: inline-flex !important; } } + +.embed-responsive { + position: relative; + display: block; + width: 100%; + padding: 0; + overflow: hidden; } + .embed-responsive::before { + display: block; + content: ""; } + .embed-responsive .embed-responsive-item, + .embed-responsive iframe, + .embed-responsive embed, + .embed-responsive object, + .embed-responsive video { + position: absolute; + top: 0; + bottom: 0; + left: 0; + width: 100%; + height: 100%; + border: 0; } + +.embed-responsive-21by9::before { + padding-top: 42.85714%; } + +.embed-responsive-16by9::before { + padding-top: 56.25%; } + +.embed-responsive-4by3::before { + padding-top: 75%; } + +.embed-responsive-1by1::before { + padding-top: 100%; } + +.flex-row { + flex-direction: row !important; } + +.flex-column { + flex-direction: column !important; } + +.flex-row-reverse { + flex-direction: row-reverse !important; } + +.flex-column-reverse { + flex-direction: column-reverse !important; } + +.flex-wrap { + flex-wrap: wrap !important; } + +.flex-nowrap { + flex-wrap: nowrap !important; } + +.flex-wrap-reverse { + flex-wrap: wrap-reverse !important; } + +.flex-fill { + flex: 1 1 auto !important; } + +.flex-grow-0 { + flex-grow: 0 !important; } + +.flex-grow-1 { + flex-grow: 1 !important; } + +.flex-shrink-0 { + flex-shrink: 0 !important; } + +.flex-shrink-1 { + flex-shrink: 1 !important; } + +.justify-content-start { + justify-content: flex-start !important; } + +.justify-content-end { + justify-content: flex-end !important; } + +.justify-content-center { + justify-content: center !important; } + +.justify-content-between { + justify-content: space-between !important; } + +.justify-content-around { + justify-content: space-around !important; } + +.align-items-start { + align-items: flex-start !important; } + +.align-items-end { + align-items: flex-end !important; } + +.align-items-center { + align-items: center !important; } + +.align-items-baseline { + align-items: baseline !important; } + +.align-items-stretch { + align-items: stretch !important; } + +.align-content-start { + align-content: flex-start !important; } + +.align-content-end { + align-content: flex-end !important; } + +.align-content-center { + align-content: center !important; } + +.align-content-between { + align-content: space-between !important; } + +.align-content-around { + align-content: space-around !important; } + +.align-content-stretch { + align-content: stretch !important; } + +.align-self-auto { + align-self: auto !important; } + +.align-self-start { + align-self: flex-start !important; } + +.align-self-end { + align-self: flex-end !important; } + +.align-self-center { + align-self: center !important; } + +.align-self-baseline { + align-self: baseline !important; } + +.align-self-stretch { + align-self: stretch !important; } + +@media (min-width: 576px) { + .flex-sm-row { + flex-direction: row !important; } + .flex-sm-column { + flex-direction: column !important; } + .flex-sm-row-reverse { + flex-direction: row-reverse !important; } + .flex-sm-column-reverse { + flex-direction: column-reverse !important; } + .flex-sm-wrap { + flex-wrap: wrap !important; } + .flex-sm-nowrap { + flex-wrap: nowrap !important; } + .flex-sm-wrap-reverse { + flex-wrap: wrap-reverse !important; } + .flex-sm-fill { + flex: 1 1 auto !important; } + .flex-sm-grow-0 { + flex-grow: 0 !important; } + .flex-sm-grow-1 { + flex-grow: 1 !important; } + .flex-sm-shrink-0 { + flex-shrink: 0 !important; } + .flex-sm-shrink-1 { + flex-shrink: 1 !important; } + .justify-content-sm-start { + justify-content: flex-start !important; } + .justify-content-sm-end { + justify-content: flex-end !important; } + .justify-content-sm-center { + justify-content: center !important; } + .justify-content-sm-between { + justify-content: space-between !important; } + .justify-content-sm-around { + justify-content: space-around !important; } + .align-items-sm-start { + align-items: flex-start !important; } + .align-items-sm-end { + align-items: flex-end !important; } + .align-items-sm-center { + align-items: center !important; } + .align-items-sm-baseline { + align-items: baseline !important; } + .align-items-sm-stretch { + align-items: stretch !important; } + .align-content-sm-start { + align-content: flex-start !important; } + .align-content-sm-end { + align-content: flex-end !important; } + .align-content-sm-center { + align-content: center !important; } + .align-content-sm-between { + align-content: space-between !important; } + .align-content-sm-around { + align-content: space-around !important; } + .align-content-sm-stretch { + align-content: stretch !important; } + .align-self-sm-auto { + align-self: auto !important; } + .align-self-sm-start { + align-self: flex-start !important; } + .align-self-sm-end { + align-self: flex-end !important; } + .align-self-sm-center { + align-self: center !important; } + .align-self-sm-baseline { + align-self: baseline !important; } + .align-self-sm-stretch { + align-self: stretch !important; } } + +@media (min-width: 768px) { + .flex-md-row { + flex-direction: row !important; } + .flex-md-column { + flex-direction: column !important; } + .flex-md-row-reverse { + flex-direction: row-reverse !important; } + .flex-md-column-reverse { + flex-direction: column-reverse !important; } + .flex-md-wrap { + flex-wrap: wrap !important; } + .flex-md-nowrap { + flex-wrap: nowrap !important; } + .flex-md-wrap-reverse { + flex-wrap: wrap-reverse !important; } + .flex-md-fill { + flex: 1 1 auto !important; } + .flex-md-grow-0 { + flex-grow: 0 !important; } + .flex-md-grow-1 { + flex-grow: 1 !important; } + .flex-md-shrink-0 { + flex-shrink: 0 !important; } + .flex-md-shrink-1 { + flex-shrink: 1 !important; } + .justify-content-md-start { + justify-content: flex-start !important; } + .justify-content-md-end { + justify-content: flex-end !important; } + .justify-content-md-center { + justify-content: center !important; } + .justify-content-md-between { + justify-content: space-between !important; } + .justify-content-md-around { + justify-content: space-around !important; } + .align-items-md-start { + align-items: flex-start !important; } + .align-items-md-end { + align-items: flex-end !important; } + .align-items-md-center { + align-items: center !important; } + .align-items-md-baseline { + align-items: baseline !important; } + .align-items-md-stretch { + align-items: stretch !important; } + .align-content-md-start { + align-content: flex-start !important; } + .align-content-md-end { + align-content: flex-end !important; } + .align-content-md-center { + align-content: center !important; } + .align-content-md-between { + align-content: space-between !important; } + .align-content-md-around { + align-content: space-around !important; } + .align-content-md-stretch { + align-content: stretch !important; } + .align-self-md-auto { + align-self: auto !important; } + .align-self-md-start { + align-self: flex-start !important; } + .align-self-md-end { + align-self: flex-end !important; } + .align-self-md-center { + align-self: center !important; } + .align-self-md-baseline { + align-self: baseline !important; } + .align-self-md-stretch { + align-self: stretch !important; } } + +@media (min-width: 992px) { + .flex-lg-row { + flex-direction: row !important; } + .flex-lg-column { + flex-direction: column !important; } + .flex-lg-row-reverse { + flex-direction: row-reverse !important; } + .flex-lg-column-reverse { + flex-direction: column-reverse !important; } + .flex-lg-wrap { + flex-wrap: wrap !important; } + .flex-lg-nowrap { + flex-wrap: nowrap !important; } + .flex-lg-wrap-reverse { + flex-wrap: wrap-reverse !important; } + .flex-lg-fill { + flex: 1 1 auto !important; } + .flex-lg-grow-0 { + flex-grow: 0 !important; } + .flex-lg-grow-1 { + flex-grow: 1 !important; } + .flex-lg-shrink-0 { + flex-shrink: 0 !important; } + .flex-lg-shrink-1 { + flex-shrink: 1 !important; } + .justify-content-lg-start { + justify-content: flex-start !important; } + .justify-content-lg-end { + justify-content: flex-end !important; } + .justify-content-lg-center { + justify-content: center !important; } + .justify-content-lg-between { + justify-content: space-between !important; } + .justify-content-lg-around { + justify-content: space-around !important; } + .align-items-lg-start { + align-items: flex-start !important; } + .align-items-lg-end { + align-items: flex-end !important; } + .align-items-lg-center { + align-items: center !important; } + .align-items-lg-baseline { + align-items: baseline !important; } + .align-items-lg-stretch { + align-items: stretch !important; } + .align-content-lg-start { + align-content: flex-start !important; } + .align-content-lg-end { + align-content: flex-end !important; } + .align-content-lg-center { + align-content: center !important; } + .align-content-lg-between { + align-content: space-between !important; } + .align-content-lg-around { + align-content: space-around !important; } + .align-content-lg-stretch { + align-content: stretch !important; } + .align-self-lg-auto { + align-self: auto !important; } + .align-self-lg-start { + align-self: flex-start !important; } + .align-self-lg-end { + align-self: flex-end !important; } + .align-self-lg-center { + align-self: center !important; } + .align-self-lg-baseline { + align-self: baseline !important; } + .align-self-lg-stretch { + align-self: stretch !important; } } + +@media (min-width: 1200px) { + .flex-xl-row { + flex-direction: row !important; } + .flex-xl-column { + flex-direction: column !important; } + .flex-xl-row-reverse { + flex-direction: row-reverse !important; } + .flex-xl-column-reverse { + flex-direction: column-reverse !important; } + .flex-xl-wrap { + flex-wrap: wrap !important; } + .flex-xl-nowrap { + flex-wrap: nowrap !important; } + .flex-xl-wrap-reverse { + flex-wrap: wrap-reverse !important; } + .flex-xl-fill { + flex: 1 1 auto !important; } + .flex-xl-grow-0 { + flex-grow: 0 !important; } + .flex-xl-grow-1 { + flex-grow: 1 !important; } + .flex-xl-shrink-0 { + flex-shrink: 0 !important; } + .flex-xl-shrink-1 { + flex-shrink: 1 !important; } + .justify-content-xl-start { + justify-content: flex-start !important; } + .justify-content-xl-end { + justify-content: flex-end !important; } + .justify-content-xl-center { + justify-content: center !important; } + .justify-content-xl-between { + justify-content: space-between !important; } + .justify-content-xl-around { + justify-content: space-around !important; } + .align-items-xl-start { + align-items: flex-start !important; } + .align-items-xl-end { + align-items: flex-end !important; } + .align-items-xl-center { + align-items: center !important; } + .align-items-xl-baseline { + align-items: baseline !important; } + .align-items-xl-stretch { + align-items: stretch !important; } + .align-content-xl-start { + align-content: flex-start !important; } + .align-content-xl-end { + align-content: flex-end !important; } + .align-content-xl-center { + align-content: center !important; } + .align-content-xl-between { + align-content: space-between !important; } + .align-content-xl-around { + align-content: space-around !important; } + .align-content-xl-stretch { + align-content: stretch !important; } + .align-self-xl-auto { + align-self: auto !important; } + .align-self-xl-start { + align-self: flex-start !important; } + .align-self-xl-end { + align-self: flex-end !important; } + .align-self-xl-center { + align-self: center !important; } + .align-self-xl-baseline { + align-self: baseline !important; } + .align-self-xl-stretch { + align-self: stretch !important; } } + +.float-left { + float: left !important; } + +.float-right { + float: right !important; } + +.float-none { + float: none !important; } + +@media (min-width: 576px) { + .float-sm-left { + float: left !important; } + .float-sm-right { + float: right !important; } + .float-sm-none { + float: none !important; } } + +@media (min-width: 768px) { + .float-md-left { + float: left !important; } + .float-md-right { + float: right !important; } + .float-md-none { + float: none !important; } } + +@media (min-width: 992px) { + .float-lg-left { + float: left !important; } + .float-lg-right { + float: right !important; } + .float-lg-none { + float: none !important; } } + +@media (min-width: 1200px) { + .float-xl-left { + float: left !important; } + .float-xl-right { + float: right !important; } + .float-xl-none { + float: none !important; } } + +.user-select-all { + user-select: all !important; } + +.user-select-auto { + user-select: auto !important; } + +.user-select-none { + user-select: none !important; } + +.overflow-auto { + overflow: auto !important; } + +.overflow-hidden { + overflow: hidden !important; } + +.position-static { + position: static !important; } + +.position-relative { + position: relative !important; } + +.position-absolute { + position: absolute !important; } + +.position-fixed { + position: fixed !important; } + +.position-sticky { + position: sticky !important; } + +.fixed-top { + position: fixed; + top: 0; + right: 0; + left: 0; + z-index: 1030; } + +.fixed-bottom { + position: fixed; + right: 0; + bottom: 0; + left: 0; + z-index: 1030; } + +@supports (position: sticky) { + .sticky-top { + position: sticky; + top: 0; + z-index: 1020; } } + +.sr-only { + position: absolute; + width: 1px; + height: 1px; + padding: 0; + margin: -1px; + overflow: hidden; + clip: rect(0, 0, 0, 0); + white-space: nowrap; + border: 0; } + +.sr-only-focusable:active, .sr-only-focusable:focus { + position: static; + width: auto; + height: auto; + overflow: visible; + clip: auto; + white-space: normal; } + +.shadow-sm { + box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important; } + +.shadow { + box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important; } + +.shadow-lg { + box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important; } + +.shadow-none { + box-shadow: none !important; } + +.w-25 { + width: 25% !important; } + +.w-50 { + width: 50% !important; } + +.w-75 { + width: 75% !important; } + +.w-100 { + width: 100% !important; } + +.w-auto { + width: auto !important; } + +.h-25 { + height: 25% !important; } + +.h-50 { + height: 50% !important; } + +.h-75 { + height: 75% !important; } + +.h-100 { + height: 100% !important; } + +.h-auto { + height: auto !important; } + +.mw-100 { + max-width: 100% !important; } + +.mh-100 { + max-height: 100% !important; } + +.min-vw-100 { + min-width: 100vw !important; } + +.min-vh-100 { + min-height: 100vh !important; } + +.vw-100 { + width: 100vw !important; } + +.vh-100 { + height: 100vh !important; } + +.m-0 { + margin: 0 !important; } + +.mt-0, +.my-0 { + margin-top: 0 !important; } + +.mr-0, +.mx-0 { + margin-right: 0 !important; } + +.mb-0, +.my-0 { + margin-bottom: 0 !important; } + +.ml-0, +.mx-0 { + margin-left: 0 !important; } + +.m-1 { + margin: 0.25rem !important; } + +.mt-1, +.my-1 { + margin-top: 0.25rem !important; } + +.mr-1, +.mx-1 { + margin-right: 0.25rem !important; } + +.mb-1, +.my-1 { + margin-bottom: 0.25rem !important; } + +.ml-1, +.mx-1 { + margin-left: 0.25rem !important; } + +.m-2 { + margin: 0.5rem !important; } + +.mt-2, +.my-2 { + margin-top: 0.5rem !important; } + +.mr-2, +.mx-2 { + margin-right: 0.5rem !important; } + +.mb-2, +.my-2 { + margin-bottom: 0.5rem !important; } + +.ml-2, +.mx-2 { + margin-left: 0.5rem !important; } + +.m-3 { + margin: 1rem !important; } + +.mt-3, +.my-3 { + margin-top: 1rem !important; } + +.mr-3, +.mx-3 { + margin-right: 1rem !important; } + +.mb-3, +.my-3 { + margin-bottom: 1rem !important; } + +.ml-3, +.mx-3 { + margin-left: 1rem !important; } + +.m-4 { + margin: 1.5rem !important; } + +.mt-4, +.my-4 { + margin-top: 1.5rem !important; } + +.mr-4, +.mx-4 { + margin-right: 1.5rem !important; } + +.mb-4, +.my-4 { + margin-bottom: 1.5rem !important; } + +.ml-4, +.mx-4 { + margin-left: 1.5rem !important; } + +.m-5 { + margin: 3rem !important; } + +.mt-5, +.my-5 { + margin-top: 3rem !important; } + +.mr-5, +.mx-5 { + margin-right: 3rem !important; } + +.mb-5, +.my-5 { + margin-bottom: 3rem !important; } + +.ml-5, +.mx-5 { + margin-left: 3rem !important; } + +.p-0 { + padding: 0 !important; } + +.pt-0, +.py-0 { + padding-top: 0 !important; } + +.pr-0, +.px-0 { + padding-right: 0 !important; } + +.pb-0, +.py-0 { + padding-bottom: 0 !important; } + +.pl-0, +.px-0 { + padding-left: 0 !important; } + +.p-1 { + padding: 0.25rem !important; } + +.pt-1, +.py-1 { + padding-top: 0.25rem !important; } + +.pr-1, +.px-1 { + padding-right: 0.25rem !important; } + +.pb-1, +.py-1 { + padding-bottom: 0.25rem !important; } + +.pl-1, +.px-1 { + padding-left: 0.25rem !important; } + +.p-2 { + padding: 0.5rem !important; } + +.pt-2, +.py-2 { + padding-top: 0.5rem !important; } + +.pr-2, +.px-2 { + padding-right: 0.5rem !important; } + +.pb-2, +.py-2 { + padding-bottom: 0.5rem !important; } + +.pl-2, +.px-2 { + padding-left: 0.5rem !important; } + +.p-3 { + padding: 1rem !important; } + +.pt-3, +.py-3 { + padding-top: 1rem !important; } + +.pr-3, +.px-3 { + padding-right: 1rem !important; } + +.pb-3, +.py-3 { + padding-bottom: 1rem !important; } + +.pl-3, +.px-3 { + padding-left: 1rem !important; } + +.p-4 { + padding: 1.5rem !important; } + +.pt-4, +.py-4 { + padding-top: 1.5rem !important; } + +.pr-4, +.px-4 { + padding-right: 1.5rem !important; } + +.pb-4, +.py-4 { + padding-bottom: 1.5rem !important; } + +.pl-4, +.px-4 { + padding-left: 1.5rem !important; } + +.p-5 { + padding: 3rem !important; } + +.pt-5, +.py-5 { + padding-top: 3rem !important; } + +.pr-5, +.px-5 { + padding-right: 3rem !important; } + +.pb-5, +.py-5 { + padding-bottom: 3rem !important; } + +.pl-5, +.px-5 { + padding-left: 3rem !important; } + +.m-n1 { + margin: -0.25rem !important; } + +.mt-n1, +.my-n1 { + margin-top: -0.25rem !important; } + +.mr-n1, +.mx-n1 { + margin-right: -0.25rem !important; } + +.mb-n1, +.my-n1 { + margin-bottom: -0.25rem !important; } + +.ml-n1, +.mx-n1 { + margin-left: -0.25rem !important; } + +.m-n2 { + margin: -0.5rem !important; } + +.mt-n2, +.my-n2 { + margin-top: -0.5rem !important; } + +.mr-n2, +.mx-n2 { + margin-right: -0.5rem !important; } + +.mb-n2, +.my-n2 { + margin-bottom: -0.5rem !important; } + +.ml-n2, +.mx-n2 { + margin-left: -0.5rem !important; } + +.m-n3 { + margin: -1rem !important; } + +.mt-n3, +.my-n3 { + margin-top: -1rem !important; } + +.mr-n3, +.mx-n3 { + margin-right: -1rem !important; } + +.mb-n3, +.my-n3 { + margin-bottom: -1rem !important; } + +.ml-n3, +.mx-n3 { + margin-left: -1rem !important; } + +.m-n4 { + margin: -1.5rem !important; } + +.mt-n4, +.my-n4 { + margin-top: -1.5rem !important; } + +.mr-n4, +.mx-n4 { + margin-right: -1.5rem !important; } + +.mb-n4, +.my-n4 { + margin-bottom: -1.5rem !important; } + +.ml-n4, +.mx-n4 { + margin-left: -1.5rem !important; } + +.m-n5 { + margin: -3rem !important; } + +.mt-n5, +.my-n5 { + margin-top: -3rem !important; } + +.mr-n5, +.mx-n5 { + margin-right: -3rem !important; } + +.mb-n5, +.my-n5 { + margin-bottom: -3rem !important; } + +.ml-n5, +.mx-n5 { + margin-left: -3rem !important; } + +.m-auto { + margin: auto !important; } + +.mt-auto, +.my-auto { + margin-top: auto !important; } + +.mr-auto, +.mx-auto { + margin-right: auto !important; } + +.mb-auto, +.my-auto { + margin-bottom: auto !important; } + +.ml-auto, +.mx-auto { + margin-left: auto !important; } + +@media (min-width: 576px) { + .m-sm-0 { + margin: 0 !important; } + .mt-sm-0, + .my-sm-0 { + margin-top: 0 !important; } + .mr-sm-0, + .mx-sm-0 { + margin-right: 0 !important; } + .mb-sm-0, + .my-sm-0 { + margin-bottom: 0 !important; } + .ml-sm-0, + .mx-sm-0 { + margin-left: 0 !important; } + .m-sm-1 { + margin: 0.25rem !important; } + .mt-sm-1, + .my-sm-1 { + margin-top: 0.25rem !important; } + .mr-sm-1, + .mx-sm-1 { + margin-right: 0.25rem !important; } + .mb-sm-1, + .my-sm-1 { + margin-bottom: 0.25rem !important; } + .ml-sm-1, + .mx-sm-1 { + margin-left: 0.25rem !important; } + .m-sm-2 { + margin: 0.5rem !important; } + .mt-sm-2, + .my-sm-2 { + margin-top: 0.5rem !important; } + .mr-sm-2, + .mx-sm-2 { + margin-right: 0.5rem !important; } + .mb-sm-2, + .my-sm-2 { + margin-bottom: 0.5rem !important; } + .ml-sm-2, + .mx-sm-2 { + margin-left: 0.5rem !important; } + .m-sm-3 { + margin: 1rem !important; } + .mt-sm-3, + .my-sm-3 { + margin-top: 1rem !important; } + .mr-sm-3, + .mx-sm-3 { + margin-right: 1rem !important; } + .mb-sm-3, + .my-sm-3 { + margin-bottom: 1rem !important; } + .ml-sm-3, + .mx-sm-3 { + margin-left: 1rem !important; } + .m-sm-4 { + margin: 1.5rem !important; } + .mt-sm-4, + .my-sm-4 { + margin-top: 1.5rem !important; } + .mr-sm-4, + .mx-sm-4 { + margin-right: 1.5rem !important; } + .mb-sm-4, + .my-sm-4 { + margin-bottom: 1.5rem !important; } + .ml-sm-4, + .mx-sm-4 { + margin-left: 1.5rem !important; } + .m-sm-5 { + margin: 3rem !important; } + .mt-sm-5, + .my-sm-5 { + margin-top: 3rem !important; } + .mr-sm-5, + .mx-sm-5 { + margin-right: 3rem !important; } + .mb-sm-5, + .my-sm-5 { + margin-bottom: 3rem !important; } + .ml-sm-5, + .mx-sm-5 { + margin-left: 3rem !important; } + .p-sm-0 { + padding: 0 !important; } + .pt-sm-0, + .py-sm-0 { + padding-top: 0 !important; } + .pr-sm-0, + .px-sm-0 { + padding-right: 0 !important; } + .pb-sm-0, + .py-sm-0 { + padding-bottom: 0 !important; } + .pl-sm-0, + .px-sm-0 { + padding-left: 0 !important; } + .p-sm-1 { + padding: 0.25rem !important; } + .pt-sm-1, + .py-sm-1 { + padding-top: 0.25rem !important; } + .pr-sm-1, + .px-sm-1 { + padding-right: 0.25rem !important; } + .pb-sm-1, + .py-sm-1 { + padding-bottom: 0.25rem !important; } + .pl-sm-1, + .px-sm-1 { + padding-left: 0.25rem !important; } + .p-sm-2 { + padding: 0.5rem !important; } + .pt-sm-2, + .py-sm-2 { + padding-top: 0.5rem !important; } + .pr-sm-2, + .px-sm-2 { + padding-right: 0.5rem !important; } + .pb-sm-2, + .py-sm-2 { + padding-bottom: 0.5rem !important; } + .pl-sm-2, + .px-sm-2 { + padding-left: 0.5rem !important; } + .p-sm-3 { + padding: 1rem !important; } + .pt-sm-3, + .py-sm-3 { + padding-top: 1rem !important; } + .pr-sm-3, + .px-sm-3 { + padding-right: 1rem !important; } + .pb-sm-3, + .py-sm-3 { + padding-bottom: 1rem !important; } + .pl-sm-3, + .px-sm-3 { + padding-left: 1rem !important; } + .p-sm-4 { + padding: 1.5rem !important; } + .pt-sm-4, + .py-sm-4 { + padding-top: 1.5rem !important; } + .pr-sm-4, + .px-sm-4 { + padding-right: 1.5rem !important; } + .pb-sm-4, + .py-sm-4 { + padding-bottom: 1.5rem !important; } + .pl-sm-4, + .px-sm-4 { + padding-left: 1.5rem !important; } + .p-sm-5 { + padding: 3rem !important; } + .pt-sm-5, + .py-sm-5 { + padding-top: 3rem !important; } + .pr-sm-5, + .px-sm-5 { + padding-right: 3rem !important; } + .pb-sm-5, + .py-sm-5 { + padding-bottom: 3rem !important; } + .pl-sm-5, + .px-sm-5 { + padding-left: 3rem !important; } + .m-sm-n1 { + margin: -0.25rem !important; } + .mt-sm-n1, + .my-sm-n1 { + margin-top: -0.25rem !important; } + .mr-sm-n1, + .mx-sm-n1 { + margin-right: -0.25rem !important; } + .mb-sm-n1, + .my-sm-n1 { + margin-bottom: -0.25rem !important; } + .ml-sm-n1, + .mx-sm-n1 { + margin-left: -0.25rem !important; } + .m-sm-n2 { + margin: -0.5rem !important; } + .mt-sm-n2, + .my-sm-n2 { + margin-top: -0.5rem !important; } + .mr-sm-n2, + .mx-sm-n2 { + margin-right: -0.5rem !important; } + .mb-sm-n2, + .my-sm-n2 { + margin-bottom: -0.5rem !important; } + .ml-sm-n2, + .mx-sm-n2 { + margin-left: -0.5rem !important; } + .m-sm-n3 { + margin: -1rem !important; } + .mt-sm-n3, + .my-sm-n3 { + margin-top: -1rem !important; } + .mr-sm-n3, + .mx-sm-n3 { + margin-right: -1rem !important; } + .mb-sm-n3, + .my-sm-n3 { + margin-bottom: -1rem !important; } + .ml-sm-n3, + .mx-sm-n3 { + margin-left: -1rem !important; } + .m-sm-n4 { + margin: -1.5rem !important; } + .mt-sm-n4, + .my-sm-n4 { + margin-top: -1.5rem !important; } + .mr-sm-n4, + .mx-sm-n4 { + margin-right: -1.5rem !important; } + .mb-sm-n4, + .my-sm-n4 { + margin-bottom: -1.5rem !important; } + .ml-sm-n4, + .mx-sm-n4 { + margin-left: -1.5rem !important; } + .m-sm-n5 { + margin: -3rem !important; } + .mt-sm-n5, + .my-sm-n5 { + margin-top: -3rem !important; } + .mr-sm-n5, + .mx-sm-n5 { + margin-right: -3rem !important; } + .mb-sm-n5, + .my-sm-n5 { + margin-bottom: -3rem !important; } + .ml-sm-n5, + .mx-sm-n5 { + margin-left: -3rem !important; } + .m-sm-auto { + margin: auto !important; } + .mt-sm-auto, + .my-sm-auto { + margin-top: auto !important; } + .mr-sm-auto, + .mx-sm-auto { + margin-right: auto !important; } + .mb-sm-auto, + .my-sm-auto { + margin-bottom: auto !important; } + .ml-sm-auto, + .mx-sm-auto { + margin-left: auto !important; } } + +@media (min-width: 768px) { + .m-md-0 { + margin: 0 !important; } + .mt-md-0, + .my-md-0 { + margin-top: 0 !important; } + .mr-md-0, + .mx-md-0 { + margin-right: 0 !important; } + .mb-md-0, + .my-md-0 { + margin-bottom: 0 !important; } + .ml-md-0, + .mx-md-0 { + margin-left: 0 !important; } + .m-md-1 { + margin: 0.25rem !important; } + .mt-md-1, + .my-md-1 { + margin-top: 0.25rem !important; } + .mr-md-1, + .mx-md-1 { + margin-right: 0.25rem !important; } + .mb-md-1, + .my-md-1 { + margin-bottom: 0.25rem !important; } + .ml-md-1, + .mx-md-1 { + margin-left: 0.25rem !important; } + .m-md-2 { + margin: 0.5rem !important; } + .mt-md-2, + .my-md-2 { + margin-top: 0.5rem !important; } + .mr-md-2, + .mx-md-2 { + margin-right: 0.5rem !important; } + .mb-md-2, + .my-md-2 { + margin-bottom: 0.5rem !important; } + .ml-md-2, + .mx-md-2 { + margin-left: 0.5rem !important; } + .m-md-3 { + margin: 1rem !important; } + .mt-md-3, + .my-md-3 { + margin-top: 1rem !important; } + .mr-md-3, + .mx-md-3 { + margin-right: 1rem !important; } + .mb-md-3, + .my-md-3 { + margin-bottom: 1rem !important; } + .ml-md-3, + .mx-md-3 { + margin-left: 1rem !important; } + .m-md-4 { + margin: 1.5rem !important; } + .mt-md-4, + .my-md-4 { + margin-top: 1.5rem !important; } + .mr-md-4, + .mx-md-4 { + margin-right: 1.5rem !important; } + .mb-md-4, + .my-md-4 { + margin-bottom: 1.5rem !important; } + .ml-md-4, + .mx-md-4 { + margin-left: 1.5rem !important; } + .m-md-5 { + margin: 3rem !important; } + .mt-md-5, + .my-md-5 { + margin-top: 3rem !important; } + .mr-md-5, + .mx-md-5 { + margin-right: 3rem !important; } + .mb-md-5, + .my-md-5 { + margin-bottom: 3rem !important; } + .ml-md-5, + .mx-md-5 { + margin-left: 3rem !important; } + .p-md-0 { + padding: 0 !important; } + .pt-md-0, + .py-md-0 { + padding-top: 0 !important; } + .pr-md-0, + .px-md-0 { + padding-right: 0 !important; } + .pb-md-0, + .py-md-0 { + padding-bottom: 0 !important; } + .pl-md-0, + .px-md-0 { + padding-left: 0 !important; } + .p-md-1 { + padding: 0.25rem !important; } + .pt-md-1, + .py-md-1 { + padding-top: 0.25rem !important; } + .pr-md-1, + .px-md-1 { + padding-right: 0.25rem !important; } + .pb-md-1, + .py-md-1 { + padding-bottom: 0.25rem !important; } + .pl-md-1, + .px-md-1 { + padding-left: 0.25rem !important; } + .p-md-2 { + padding: 0.5rem !important; } + .pt-md-2, + .py-md-2 { + padding-top: 0.5rem !important; } + .pr-md-2, + .px-md-2 { + padding-right: 0.5rem !important; } + .pb-md-2, + .py-md-2 { + padding-bottom: 0.5rem !important; } + .pl-md-2, + .px-md-2 { + padding-left: 0.5rem !important; } + .p-md-3 { + padding: 1rem !important; } + .pt-md-3, + .py-md-3 { + padding-top: 1rem !important; } + .pr-md-3, + .px-md-3 { + padding-right: 1rem !important; } + .pb-md-3, + .py-md-3 { + padding-bottom: 1rem !important; } + .pl-md-3, + .px-md-3 { + padding-left: 1rem !important; } + .p-md-4 { + padding: 1.5rem !important; } + .pt-md-4, + .py-md-4 { + padding-top: 1.5rem !important; } + .pr-md-4, + .px-md-4 { + padding-right: 1.5rem !important; } + .pb-md-4, + .py-md-4 { + padding-bottom: 1.5rem !important; } + .pl-md-4, + .px-md-4 { + padding-left: 1.5rem !important; } + .p-md-5 { + padding: 3rem !important; } + .pt-md-5, + .py-md-5 { + padding-top: 3rem !important; } + .pr-md-5, + .px-md-5 { + padding-right: 3rem !important; } + .pb-md-5, + .py-md-5 { + padding-bottom: 3rem !important; } + .pl-md-5, + .px-md-5 { + padding-left: 3rem !important; } + .m-md-n1 { + margin: -0.25rem !important; } + .mt-md-n1, + .my-md-n1 { + margin-top: -0.25rem !important; } + .mr-md-n1, + .mx-md-n1 { + margin-right: -0.25rem !important; } + .mb-md-n1, + .my-md-n1 { + margin-bottom: -0.25rem !important; } + .ml-md-n1, + .mx-md-n1 { + margin-left: -0.25rem !important; } + .m-md-n2 { + margin: -0.5rem !important; } + .mt-md-n2, + .my-md-n2 { + margin-top: -0.5rem !important; } + .mr-md-n2, + .mx-md-n2 { + margin-right: -0.5rem !important; } + .mb-md-n2, + .my-md-n2 { + margin-bottom: -0.5rem !important; } + .ml-md-n2, + .mx-md-n2 { + margin-left: -0.5rem !important; } + .m-md-n3 { + margin: -1rem !important; } + .mt-md-n3, + .my-md-n3 { + margin-top: -1rem !important; } + .mr-md-n3, + .mx-md-n3 { + margin-right: -1rem !important; } + .mb-md-n3, + .my-md-n3 { + margin-bottom: -1rem !important; } + .ml-md-n3, + .mx-md-n3 { + margin-left: -1rem !important; } + .m-md-n4 { + margin: -1.5rem !important; } + .mt-md-n4, + .my-md-n4 { + margin-top: -1.5rem !important; } + .mr-md-n4, + .mx-md-n4 { + margin-right: -1.5rem !important; } + .mb-md-n4, + .my-md-n4 { + margin-bottom: -1.5rem !important; } + .ml-md-n4, + .mx-md-n4 { + margin-left: -1.5rem !important; } + .m-md-n5 { + margin: -3rem !important; } + .mt-md-n5, + .my-md-n5 { + margin-top: -3rem !important; } + .mr-md-n5, + .mx-md-n5 { + margin-right: -3rem !important; } + .mb-md-n5, + .my-md-n5 { + margin-bottom: -3rem !important; } + .ml-md-n5, + .mx-md-n5 { + margin-left: -3rem !important; } + .m-md-auto { + margin: auto !important; } + .mt-md-auto, + .my-md-auto { + margin-top: auto !important; } + .mr-md-auto, + .mx-md-auto { + margin-right: auto !important; } + .mb-md-auto, + .my-md-auto { + margin-bottom: auto !important; } + .ml-md-auto, + .mx-md-auto { + margin-left: auto !important; } } + +@media (min-width: 992px) { + .m-lg-0 { + margin: 0 !important; } + .mt-lg-0, + .my-lg-0 { + margin-top: 0 !important; } + .mr-lg-0, + .mx-lg-0 { + margin-right: 0 !important; } + .mb-lg-0, + .my-lg-0 { + margin-bottom: 0 !important; } + .ml-lg-0, + .mx-lg-0 { + margin-left: 0 !important; } + .m-lg-1 { + margin: 0.25rem !important; } + .mt-lg-1, + .my-lg-1 { + margin-top: 0.25rem !important; } + .mr-lg-1, + .mx-lg-1 { + margin-right: 0.25rem !important; } + .mb-lg-1, + .my-lg-1 { + margin-bottom: 0.25rem !important; } + .ml-lg-1, + .mx-lg-1 { + margin-left: 0.25rem !important; } + .m-lg-2 { + margin: 0.5rem !important; } + .mt-lg-2, + .my-lg-2 { + margin-top: 0.5rem !important; } + .mr-lg-2, + .mx-lg-2 { + margin-right: 0.5rem !important; } + .mb-lg-2, + .my-lg-2 { + margin-bottom: 0.5rem !important; } + .ml-lg-2, + .mx-lg-2 { + margin-left: 0.5rem !important; } + .m-lg-3 { + margin: 1rem !important; } + .mt-lg-3, + .my-lg-3 { + margin-top: 1rem !important; } + .mr-lg-3, + .mx-lg-3 { + margin-right: 1rem !important; } + .mb-lg-3, + .my-lg-3 { + margin-bottom: 1rem !important; } + .ml-lg-3, + .mx-lg-3 { + margin-left: 1rem !important; } + .m-lg-4 { + margin: 1.5rem !important; } + .mt-lg-4, + .my-lg-4 { + margin-top: 1.5rem !important; } + .mr-lg-4, + .mx-lg-4 { + margin-right: 1.5rem !important; } + .mb-lg-4, + .my-lg-4 { + margin-bottom: 1.5rem !important; } + .ml-lg-4, + .mx-lg-4 { + margin-left: 1.5rem !important; } + .m-lg-5 { + margin: 3rem !important; } + .mt-lg-5, + .my-lg-5 { + margin-top: 3rem !important; } + .mr-lg-5, + .mx-lg-5 { + margin-right: 3rem !important; } + .mb-lg-5, + .my-lg-5 { + margin-bottom: 3rem !important; } + .ml-lg-5, + .mx-lg-5 { + margin-left: 3rem !important; } + .p-lg-0 { + padding: 0 !important; } + .pt-lg-0, + .py-lg-0 { + padding-top: 0 !important; } + .pr-lg-0, + .px-lg-0 { + padding-right: 0 !important; } + .pb-lg-0, + .py-lg-0 { + padding-bottom: 0 !important; } + .pl-lg-0, + .px-lg-0 { + padding-left: 0 !important; } + .p-lg-1 { + padding: 0.25rem !important; } + .pt-lg-1, + .py-lg-1 { + padding-top: 0.25rem !important; } + .pr-lg-1, + .px-lg-1 { + padding-right: 0.25rem !important; } + .pb-lg-1, + .py-lg-1 { + padding-bottom: 0.25rem !important; } + .pl-lg-1, + .px-lg-1 { + padding-left: 0.25rem !important; } + .p-lg-2 { + padding: 0.5rem !important; } + .pt-lg-2, + .py-lg-2 { + padding-top: 0.5rem !important; } + .pr-lg-2, + .px-lg-2 { + padding-right: 0.5rem !important; } + .pb-lg-2, + .py-lg-2 { + padding-bottom: 0.5rem !important; } + .pl-lg-2, + .px-lg-2 { + padding-left: 0.5rem !important; } + .p-lg-3 { + padding: 1rem !important; } + .pt-lg-3, + .py-lg-3 { + padding-top: 1rem !important; } + .pr-lg-3, + .px-lg-3 { + padding-right: 1rem !important; } + .pb-lg-3, + .py-lg-3 { + padding-bottom: 1rem !important; } + .pl-lg-3, + .px-lg-3 { + padding-left: 1rem !important; } + .p-lg-4 { + padding: 1.5rem !important; } + .pt-lg-4, + .py-lg-4 { + padding-top: 1.5rem !important; } + .pr-lg-4, + .px-lg-4 { + padding-right: 1.5rem !important; } + .pb-lg-4, + .py-lg-4 { + padding-bottom: 1.5rem !important; } + .pl-lg-4, + .px-lg-4 { + padding-left: 1.5rem !important; } + .p-lg-5 { + padding: 3rem !important; } + .pt-lg-5, + .py-lg-5 { + padding-top: 3rem !important; } + .pr-lg-5, + .px-lg-5 { + padding-right: 3rem !important; } + .pb-lg-5, + .py-lg-5 { + padding-bottom: 3rem !important; } + .pl-lg-5, + .px-lg-5 { + padding-left: 3rem !important; } + .m-lg-n1 { + margin: -0.25rem !important; } + .mt-lg-n1, + .my-lg-n1 { + margin-top: -0.25rem !important; } + .mr-lg-n1, + .mx-lg-n1 { + margin-right: -0.25rem !important; } + .mb-lg-n1, + .my-lg-n1 { + margin-bottom: -0.25rem !important; } + .ml-lg-n1, + .mx-lg-n1 { + margin-left: -0.25rem !important; } + .m-lg-n2 { + margin: -0.5rem !important; } + .mt-lg-n2, + .my-lg-n2 { + margin-top: -0.5rem !important; } + .mr-lg-n2, + .mx-lg-n2 { + margin-right: -0.5rem !important; } + .mb-lg-n2, + .my-lg-n2 { + margin-bottom: -0.5rem !important; } + .ml-lg-n2, + .mx-lg-n2 { + margin-left: -0.5rem !important; } + .m-lg-n3 { + margin: -1rem !important; } + .mt-lg-n3, + .my-lg-n3 { + margin-top: -1rem !important; } + .mr-lg-n3, + .mx-lg-n3 { + margin-right: -1rem !important; } + .mb-lg-n3, + .my-lg-n3 { + margin-bottom: -1rem !important; } + .ml-lg-n3, + .mx-lg-n3 { + margin-left: -1rem !important; } + .m-lg-n4 { + margin: -1.5rem !important; } + .mt-lg-n4, + .my-lg-n4 { + margin-top: -1.5rem !important; } + .mr-lg-n4, + .mx-lg-n4 { + margin-right: -1.5rem !important; } + .mb-lg-n4, + .my-lg-n4 { + margin-bottom: -1.5rem !important; } + .ml-lg-n4, + .mx-lg-n4 { + margin-left: -1.5rem !important; } + .m-lg-n5 { + margin: -3rem !important; } + .mt-lg-n5, + .my-lg-n5 { + margin-top: -3rem !important; } + .mr-lg-n5, + .mx-lg-n5 { + margin-right: -3rem !important; } + .mb-lg-n5, + .my-lg-n5 { + margin-bottom: -3rem !important; } + .ml-lg-n5, + .mx-lg-n5 { + margin-left: -3rem !important; } + .m-lg-auto { + margin: auto !important; } + .mt-lg-auto, + .my-lg-auto { + margin-top: auto !important; } + .mr-lg-auto, + .mx-lg-auto { + margin-right: auto !important; } + .mb-lg-auto, + .my-lg-auto { + margin-bottom: auto !important; } + .ml-lg-auto, + .mx-lg-auto { + margin-left: auto !important; } } + +@media (min-width: 1200px) { + .m-xl-0 { + margin: 0 !important; } + .mt-xl-0, + .my-xl-0 { + margin-top: 0 !important; } + .mr-xl-0, + .mx-xl-0 { + margin-right: 0 !important; } + .mb-xl-0, + .my-xl-0 { + margin-bottom: 0 !important; } + .ml-xl-0, + .mx-xl-0 { + margin-left: 0 !important; } + .m-xl-1 { + margin: 0.25rem !important; } + .mt-xl-1, + .my-xl-1 { + margin-top: 0.25rem !important; } + .mr-xl-1, + .mx-xl-1 { + margin-right: 0.25rem !important; } + .mb-xl-1, + .my-xl-1 { + margin-bottom: 0.25rem !important; } + .ml-xl-1, + .mx-xl-1 { + margin-left: 0.25rem !important; } + .m-xl-2 { + margin: 0.5rem !important; } + .mt-xl-2, + .my-xl-2 { + margin-top: 0.5rem !important; } + .mr-xl-2, + .mx-xl-2 { + margin-right: 0.5rem !important; } + .mb-xl-2, + .my-xl-2 { + margin-bottom: 0.5rem !important; } + .ml-xl-2, + .mx-xl-2 { + margin-left: 0.5rem !important; } + .m-xl-3 { + margin: 1rem !important; } + .mt-xl-3, + .my-xl-3 { + margin-top: 1rem !important; } + .mr-xl-3, + .mx-xl-3 { + margin-right: 1rem !important; } + .mb-xl-3, + .my-xl-3 { + margin-bottom: 1rem !important; } + .ml-xl-3, + .mx-xl-3 { + margin-left: 1rem !important; } + .m-xl-4 { + margin: 1.5rem !important; } + .mt-xl-4, + .my-xl-4 { + margin-top: 1.5rem !important; } + .mr-xl-4, + .mx-xl-4 { + margin-right: 1.5rem !important; } + .mb-xl-4, + .my-xl-4 { + margin-bottom: 1.5rem !important; } + .ml-xl-4, + .mx-xl-4 { + margin-left: 1.5rem !important; } + .m-xl-5 { + margin: 3rem !important; } + .mt-xl-5, + .my-xl-5 { + margin-top: 3rem !important; } + .mr-xl-5, + .mx-xl-5 { + margin-right: 3rem !important; } + .mb-xl-5, + .my-xl-5 { + margin-bottom: 3rem !important; } + .ml-xl-5, + .mx-xl-5 { + margin-left: 3rem !important; } + .p-xl-0 { + padding: 0 !important; } + .pt-xl-0, + .py-xl-0 { + padding-top: 0 !important; } + .pr-xl-0, + .px-xl-0 { + padding-right: 0 !important; } + .pb-xl-0, + .py-xl-0 { + padding-bottom: 0 !important; } + .pl-xl-0, + .px-xl-0 { + padding-left: 0 !important; } + .p-xl-1 { + padding: 0.25rem !important; } + .pt-xl-1, + .py-xl-1 { + padding-top: 0.25rem !important; } + .pr-xl-1, + .px-xl-1 { + padding-right: 0.25rem !important; } + .pb-xl-1, + .py-xl-1 { + padding-bottom: 0.25rem !important; } + .pl-xl-1, + .px-xl-1 { + padding-left: 0.25rem !important; } + .p-xl-2 { + padding: 0.5rem !important; } + .pt-xl-2, + .py-xl-2 { + padding-top: 0.5rem !important; } + .pr-xl-2, + .px-xl-2 { + padding-right: 0.5rem !important; } + .pb-xl-2, + .py-xl-2 { + padding-bottom: 0.5rem !important; } + .pl-xl-2, + .px-xl-2 { + padding-left: 0.5rem !important; } + .p-xl-3 { + padding: 1rem !important; } + .pt-xl-3, + .py-xl-3 { + padding-top: 1rem !important; } + .pr-xl-3, + .px-xl-3 { + padding-right: 1rem !important; } + .pb-xl-3, + .py-xl-3 { + padding-bottom: 1rem !important; } + .pl-xl-3, + .px-xl-3 { + padding-left: 1rem !important; } + .p-xl-4 { + padding: 1.5rem !important; } + .pt-xl-4, + .py-xl-4 { + padding-top: 1.5rem !important; } + .pr-xl-4, + .px-xl-4 { + padding-right: 1.5rem !important; } + .pb-xl-4, + .py-xl-4 { + padding-bottom: 1.5rem !important; } + .pl-xl-4, + .px-xl-4 { + padding-left: 1.5rem !important; } + .p-xl-5 { + padding: 3rem !important; } + .pt-xl-5, + .py-xl-5 { + padding-top: 3rem !important; } + .pr-xl-5, + .px-xl-5 { + padding-right: 3rem !important; } + .pb-xl-5, + .py-xl-5 { + padding-bottom: 3rem !important; } + .pl-xl-5, + .px-xl-5 { + padding-left: 3rem !important; } + .m-xl-n1 { + margin: -0.25rem !important; } + .mt-xl-n1, + .my-xl-n1 { + margin-top: -0.25rem !important; } + .mr-xl-n1, + .mx-xl-n1 { + margin-right: -0.25rem !important; } + .mb-xl-n1, + .my-xl-n1 { + margin-bottom: -0.25rem !important; } + .ml-xl-n1, + .mx-xl-n1 { + margin-left: -0.25rem !important; } + .m-xl-n2 { + margin: -0.5rem !important; } + .mt-xl-n2, + .my-xl-n2 { + margin-top: -0.5rem !important; } + .mr-xl-n2, + .mx-xl-n2 { + margin-right: -0.5rem !important; } + .mb-xl-n2, + .my-xl-n2 { + margin-bottom: -0.5rem !important; } + .ml-xl-n2, + .mx-xl-n2 { + margin-left: -0.5rem !important; } + .m-xl-n3 { + margin: -1rem !important; } + .mt-xl-n3, + .my-xl-n3 { + margin-top: -1rem !important; } + .mr-xl-n3, + .mx-xl-n3 { + margin-right: -1rem !important; } + .mb-xl-n3, + .my-xl-n3 { + margin-bottom: -1rem !important; } + .ml-xl-n3, + .mx-xl-n3 { + margin-left: -1rem !important; } + .m-xl-n4 { + margin: -1.5rem !important; } + .mt-xl-n4, + .my-xl-n4 { + margin-top: -1.5rem !important; } + .mr-xl-n4, + .mx-xl-n4 { + margin-right: -1.5rem !important; } + .mb-xl-n4, + .my-xl-n4 { + margin-bottom: -1.5rem !important; } + .ml-xl-n4, + .mx-xl-n4 { + margin-left: -1.5rem !important; } + .m-xl-n5 { + margin: -3rem !important; } + .mt-xl-n5, + .my-xl-n5 { + margin-top: -3rem !important; } + .mr-xl-n5, + .mx-xl-n5 { + margin-right: -3rem !important; } + .mb-xl-n5, + .my-xl-n5 { + margin-bottom: -3rem !important; } + .ml-xl-n5, + .mx-xl-n5 { + margin-left: -3rem !important; } + .m-xl-auto { + margin: auto !important; } + .mt-xl-auto, + .my-xl-auto { + margin-top: auto !important; } + .mr-xl-auto, + .mx-xl-auto { + margin-right: auto !important; } + .mb-xl-auto, + .my-xl-auto { + margin-bottom: auto !important; } + .ml-xl-auto, + .mx-xl-auto { + margin-left: auto !important; } } + +.stretched-link::after { + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; + z-index: 1; + pointer-events: auto; + content: ""; + background-color: rgba(0, 0, 0, 0); } + +.text-monospace { + font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important; } + +.text-justify { + text-align: justify !important; } + +.text-wrap { + white-space: normal !important; } + +.text-nowrap { + white-space: nowrap !important; } + +.text-truncate { + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; } + +.text-left { + text-align: left !important; } + +.text-right { + text-align: right !important; } + +.text-center { + text-align: center !important; } + +@media (min-width: 576px) { + .text-sm-left { + text-align: left !important; } + .text-sm-right { + text-align: right !important; } + .text-sm-center { + text-align: center !important; } } + +@media (min-width: 768px) { + .text-md-left { + text-align: left !important; } + .text-md-right { + text-align: right !important; } + .text-md-center { + text-align: center !important; } } + +@media (min-width: 992px) { + .text-lg-left { + text-align: left !important; } + .text-lg-right { + text-align: right !important; } + .text-lg-center { + text-align: center !important; } } + +@media (min-width: 1200px) { + .text-xl-left { + text-align: left !important; } + .text-xl-right { + text-align: right !important; } + .text-xl-center { + text-align: center !important; } } + +.text-lowercase { + text-transform: lowercase !important; } + +.text-uppercase { + text-transform: uppercase !important; } + +.text-capitalize { + text-transform: capitalize !important; } + +.font-weight-light { + font-weight: 300 !important; } + +.font-weight-lighter { + font-weight: lighter !important; } + +.font-weight-normal { + font-weight: 400 !important; } + +.font-weight-bold { + font-weight: 700 !important; } + +.font-weight-bolder { + font-weight: bolder !important; } + +.font-italic { + font-style: italic !important; } + +.text-white { + color: #fff !important; } + +.text-primary { + color: #3366ff !important; } + +a.text-primary:hover, a.text-primary:focus { + color: #0039e6 !important; } + +.text-secondary { + color: #7987a1 !important; } + +a.text-secondary:hover, a.text-secondary:focus { + color: #556179 !important; } + +.text-success { + color: #3bb001 !important; } + +a.text-success:hover, a.text-success:focus { + color: #226401 !important; } + +.text-info { + color: #17a2b8 !important; } + +a.text-info:hover, a.text-info:focus { + color: #0f6674 !important; } + +.text-warning { + color: #ffc107 !important; } + +a.text-warning:hover, a.text-warning:focus { + color: #ba8b00 !important; } + +.text-danger { + color: #dc3545 !important; } + +a.text-danger:hover, a.text-danger:focus { + color: #a71d2a !important; } + +.text-light { + color: #f4f5f8 !important; } + +a.text-light:hover, a.text-light:focus { + color: #c5cbda !important; } + +.text-dark { + color: #3b4863 !important; } + +a.text-dark:hover, a.text-dark:focus { + color: #1e2533 !important; } + +.text-body { + color: #031b4e !important; } + +.text-muted { + color: #7987a1 !important; } + +.text-black-50 { + color: rgba(0, 0, 0, 0.5) !important; } + +.text-white-50 { + color: rgba(255, 255, 255, 0.5) !important; } + +.text-hide { + font: 0/0 a; + color: transparent; + text-shadow: none; + background-color: transparent; + border: 0; } + +.text-decoration-none { + text-decoration: none !important; } + +.text-break { + word-break: break-word !important; + overflow-wrap: break-word !important; } + +.text-reset { + color: inherit !important; } + +.visible { + visibility: visible !important; } + +.invisible { + visibility: hidden !important; } + +@media print { + *, + *::before, + *::after { + text-shadow: none !important; + box-shadow: none !important; } + a:not(.btn) { + text-decoration: underline; } + abbr[title]::after { + content: " (" attr(title) ")"; } + pre { + white-space: pre-wrap !important; } + pre, + blockquote { + border: 1px solid #97a3b9; + page-break-inside: avoid; } + thead { + display: table-header-group; } + tr, + img { + page-break-inside: avoid; } + p, + h2, + h3 { + orphans: 3; + widows: 3; } + h2, + h3 { + page-break-after: avoid; } + @page { + size: a3; } + body { + min-width: 992px !important; } + .container { + min-width: 992px !important; } + .navbar { + display: none; } + .badge { + border: 1px solid #000; } + .table { + border-collapse: collapse !important; } + .table td, + .table th { + background-color: #fff !important; } + .table-bordered th, + .table-bordered td { + border: 1px solid #cdd4e0 !important; } + .table-dark { + color: inherit; } + .table-dark th, + .table-dark td, + .table-dark thead th, + .table-dark tbody + tbody { + border-color: #cdd4e0; } + .table .thead-dark th { + color: inherit; + border-color: #cdd4e0; } } + +/* ########## BOOTSTRAP OVERRIDES ########## */ +/* ###### 3.5 Buttons ###### */ +.btn { + border-width: 0; + line-height: 1.538; + padding: 9px 20px; + border-radius: 0; + transition: none; + min-height: 30px; +} + .btn:active, .btn:focus { + box-shadow: none; } + +.btn-light { + color: #1c273c; + background-color: #cdd4e0; + border-color: #bdc6d6; } + .btn-light:hover { + color: #1c273c; + background-color: #b5c0d1; + border-color: #9eabc3; } + .btn-light:focus, .btn-light.focus { + color: #1c273c; + background-color: #b5c0d1; + border-color: #9eabc3; + box-shadow: 0 0 0 0.2rem rgba(165, 175, 191, 0.5); } + .btn-light.disabled, .btn-light:disabled { + color: #1c273c; + background-color: #cdd4e0; + border-color: #bdc6d6; } + .btn-light:not(:disabled):not(.disabled):active, .btn-light:not(:disabled):not(.disabled).active, + .show > .btn-light.dropdown-toggle { + color: #1c273c; + background-color: #aeb9cc; + border-color: #96a5be; } + .btn-light:not(:disabled):not(.disabled):active:focus, .btn-light:not(:disabled):not(.disabled).active:focus, + .show > .btn-light.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(165, 175, 191, 0.5); } + +.btn-indigo { + color: #fff; + background-color: #5b47fb; + border-color: #452efa; } + .btn-indigo:hover { + color: #fff; + background-color: #3a22fa; + border-color: #1f05f0; } + .btn-indigo:focus, .btn-indigo.focus { + color: #fff; + background-color: #3a22fa; + border-color: #1f05f0; + box-shadow: 0 0 0 0.2rem rgba(97, 77, 251, 0.5); } + .btn-indigo.disabled, .btn-indigo:disabled { + color: #fff; + background-color: #5b47fb; + border-color: #452efa; } + .btn-indigo:not(:disabled):not(.disabled):active, .btn-indigo:not(:disabled):not(.disabled).active, + .show > .btn-indigo.dropdown-toggle { + color: #fff; + background-color: #2f15fa; + border-color: #1e05e4; } + .btn-indigo:not(:disabled):not(.disabled):active:focus, .btn-indigo:not(:disabled):not(.disabled).active:focus, + .show > .btn-indigo.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(97, 77, 251, 0.5); } + +.btn-purple { + color: #fff; + background-color: #6f42c1; + border-color: #643ab0; } + .btn-purple:hover { + color: #fff; + background-color: #5e37a6; + border-color: #4e2d89; } + .btn-purple:focus, .btn-purple.focus { + color: #fff; + background-color: #5e37a6; + border-color: #4e2d89; + box-shadow: 0 0 0 0.2rem rgba(123, 87, 188, 0.5); } + .btn-purple.disabled, .btn-purple:disabled { + color: #fff; + background-color: #6f42c1; + border-color: #643ab0; } + .btn-purple:not(:disabled):not(.disabled):active, .btn-purple:not(:disabled):not(.disabled).active, + .show > .btn-purple.dropdown-toggle { + color: #fff; + background-color: #59339d; + border-color: #482a80; } + .btn-purple:not(:disabled):not(.disabled):active:focus, .btn-purple:not(:disabled):not(.disabled).active:focus, + .show > .btn-purple.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(123, 87, 188, 0.5); } + +.btn-pink { + color: #fff; + background-color: #f10075; + border-color: #d80069; } + .btn-pink:hover { + color: #fff; + background-color: #cb0062; + border-color: #a50050; } + .btn-pink:focus, .btn-pink.focus { + color: #fff; + background-color: #cb0062; + border-color: #a50050; + box-shadow: 0 0 0 0.2rem rgba(221, 38, 127, 0.5); } + .btn-pink.disabled, .btn-pink:disabled { + color: #fff; + background-color: #f10075; + border-color: #d80069; } + .btn-pink:not(:disabled):not(.disabled):active, .btn-pink:not(:disabled):not(.disabled).active, + .show > .btn-pink.dropdown-toggle { + color: #fff; + background-color: #be005c; + border-color: #98004a; } + .btn-pink:not(:disabled):not(.disabled):active:focus, .btn-pink:not(:disabled):not(.disabled).active:focus, + .show > .btn-pink.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(221, 38, 127, 0.5); } + +.btn-gray-500 { + color: #1c273c; + background-color: #97a3b9; + border-color: #8896af; } + .btn-gray-500:hover { + color: #fff; + background-color: #808faa; + border-color: #697b9a; } + .btn-gray-500:focus, .btn-gray-500.focus { + color: #fff; + background-color: #808faa; + border-color: #697b9a; + box-shadow: 0 0 0 0.2rem rgba(120, 133, 158, 0.5); } + .btn-gray-500.disabled, .btn-gray-500:disabled { + color: #1c273c; + background-color: #97a3b9; + border-color: #8896af; } + .btn-gray-500:not(:disabled):not(.disabled):active, .btn-gray-500:not(:disabled):not(.disabled).active, + .show > .btn-gray-500.dropdown-toggle { + color: #fff; + background-color: #7988a4; + border-color: #637493; } + .btn-gray-500:not(:disabled):not(.disabled):active:focus, .btn-gray-500:not(:disabled):not(.disabled).active:focus, + .show > .btn-gray-500.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(120, 133, 158, 0.5); } + +.btn-gray-700 { + color: #fff; + background-color: #596882; + border-color: #4f5c73; } + .btn-gray-700:hover { + color: #fff; + background-color: #49566b; + border-color: #3a4455; } + .btn-gray-700:focus, .btn-gray-700.focus { + color: #fff; + background-color: #49566b; + border-color: #3a4455; + box-shadow: 0 0 0 0.2rem rgba(105, 116, 136, 0.5); } + .btn-gray-700.disabled, .btn-gray-700:disabled { + color: #fff; + background-color: #596882; + border-color: #4f5c73; } + .btn-gray-700:not(:disabled):not(.disabled):active, .btn-gray-700:not(:disabled):not(.disabled).active, + .show > .btn-gray-700.dropdown-toggle { + color: #fff; + background-color: #445064; + border-color: #353e4d; } + .btn-gray-700:not(:disabled):not(.disabled):active:focus, .btn-gray-700:not(:disabled):not(.disabled).active:focus, + .show > .btn-gray-700.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(105, 116, 136, 0.5); } + +[class*=btn-outline-] { + padding: 0.4rem 1rem; + line-height: 1.657; + border-width: 1px; + background-color: transparent; } + [class*=btn-outline-]:hover, [class*=btn-outline-]:focus { + color: #fff; } + +.btn-outline-indigo { + border-color: #5b47fb; + color: #5b47fb; } + .btn-outline-indigo:hover, .btn-outline-indigo:focus { + background-color: #5b47fb; } + +.btn-outline-light { + border-color: #97a3b9; + color: #97a3b9; } + .btn-outline-light:hover, .btn-outline-light:focus { + background-color: #97a3b9; } + +.card { + border-radius: 0; } + .card.text-white .card-title, .card.tx-white .card-title { + color: #fff; } + +.card-header, +.card-footer { + position: relative; + border-color: #cdd4e0; + padding-left: 15px; + padding-right: 15px; } + +.card-header { + border-bottom: 0; } + .card-header:first-child { + border-radius: 0; } + +.card-header-tab { + border-bottom: 0; + padding: 0; } + +.card-title { + font-weight: 700; + color: #1c273c; } + +/* ###### 3.8 Dropdown ###### */ +.dropdown-menu { + padding: 0; + border-width: 2px; + border-radius: 0; } + +.dropdown-item { + padding: 8px 15px; + font-size: 13px; } + +.dropdown-header { + padding-left: 15px; + padding-right: 15px; } + +/* ###### 3.9 Forms ###### */ +.form-control { + height: 38px; + border-radius: 0; } + .form-control:focus { + border-color: #97a3b9; + box-shadow: none; } + +.custom-file, +.custom-file-input, +.custom-file-label { + height: 38px; } + +.custom-file-label, .custom-file-label::after { + line-height: 1.8; + border-radius: 0; } + +.custom-file-label::after { + height: auto; } + +.form-label { + display: block; + margin-bottom: 5px; + color: #596882; } + +/* ###### 3.10 Grid ###### */ +.row-sm { + margin-left: -10px; + margin-right: -10px; } + .row-sm > div { + padding-left: 10px; + padding-right: 10px; } + +.row-xs { + margin-left: -5px; + margin-right: -5px; } + .row-xs > div { + padding-left: 5px; + padding-right: 5px; } + +@media (min-width: 576px) { + .row-xs--sm { + margin-left: -5px; + margin-right: -5px; } + .row-xs--sm > div { + padding-left: 5px; + padding-right: 5px; } + .row-sm--sm { + margin-left: -10px; + margin-right: -10px; } + .row-sm--sm > div { + padding-left: 10px; + padding-right: 10px; } + .row--sm { + margin-left: -15px; + margin-right: -15px; } + .row--sm > div { + padding-left: 15px; + padding-right: 15px; } } + +@media (min-width: 768px) { + .row-xs--md { + margin-left: -5px; + margin-right: -5px; } + .row-xs--md > div { + padding-left: 5px; + padding-right: 5px; } + .row-sm--md { + margin-left: -10px; + margin-right: -10px; } + .row-sm--md > div { + padding-left: 10px; + padding-right: 10px; } + .row--md { + margin-left: -15px; + margin-right: -15px; } + .row--md > div { + padding-left: 15px; + padding-right: 15px; } } + +@media (min-width: 992px) { + .row-xs--lg { + margin-left: -5px; + margin-right: -5px; } + .row-xs--lg > div { + padding-left: 5px; + padding-right: 5px; } + .row-sm--lg { + margin-left: -10px; + margin-right: -10px; } + .row-sm--lg > div { + padding-left: 10px; + padding-right: 10px; } + .row--lg { + margin-left: -15px; + margin-right: -15px; } + .row--lg > div { + padding-left: 15px; + padding-right: 15px; } } + +@media (min-width: 1200px) { + .row-xs--xl { + margin-left: -5px; + margin-right: -5px; } + .row-xs--xl > div { + padding-left: 5px; + padding-right: 5px; } + .row-sm--xl { + margin-left: -10px; + margin-right: -10px; } + .row-sm--xl > div { + padding-left: 10px; + padding-right: 10px; } + .row--xl { + margin-left: -15px; + margin-right: -15px; } + .row--xl > div { + padding-left: 15px; + padding-right: 15px; } } + +/* ###### 3.11 Input Group ###### */ +.input-group-prepend, +.input-group-append { + border-radius: 0; } + +.input-group-text { + padding-top: 0; + padding-bottom: 0; + align-items: center; + border-radius: 0; } + +/* ###### 3.13 Nav ###### */ +.nav-link:hover, .nav-link:focus, .nav-link:active { + outline: none; } + +.nav-pills .nav-link { + color: #596882; } + .nav-pills .nav-link:hover, .nav-pills .nav-link:focus { + color: #1c273c; } + .nav-pills .nav-link.active { + border-radius: 2px; + background-color: #5b47fb; } + .nav-pills .nav-link.active:hover, .nav-pills .nav-link.active:focus { + color: #fff; } + +.nav-dark .nav-link { + color: #97a3b9; } + .nav-dark .nav-link:hover, .nav-dark .nav-link:focus { + color: #fff; } + +.nav-tabs { + border-bottom-width: 0; } + .nav-tabs .nav-link { + background-color: rgba(255, 255, 255, 0.3); + border-width: 0; + border-radius: 0; + padding: 10px 15px; + line-height: 1.428; + color: #596882; } + @media (min-width: 768px) { + .nav-tabs .nav-link { + padding: 10px 20px; } } + .nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus { + background-color: rgba(255, 255, 255, 0.5); + color: #1c273c; } + .nav-tabs .nav-link + .nav-link { + margin-left: 3px; } + .nav-tabs .nav-link.active { + background-color: #fff; + color: #1c273c; + font-weight: 500; + letter-spacing: -.1px; } + +/* ###### 3.16 Progress ###### */ +.progress { + height: auto; } + +.progress, +.progress-bar { + border-radius: 0; } + +.progress-bar { + height: 10px; + font-size: 11px; } + +.progress-bar-xs { + height: 5px; } + +.progress-bar-sm { + height: 8px; } + +.progress-bar-lg { + height: 15px; } + +/* ###### 3.17 Table ###### */ +.table { + color: #3b4863; } + .table thead th, + .table thead td { + color: #7987a1; + font-weight: 700; + font-size: 11px; + letter-spacing: .5px; + text-transform: uppercase; + border-bottom-width: 1px; + border-top-width: 0; + padding: 0 15px 5px; } + .table tbody tr { + background-color: rgba(255, 255, 255, 0.5); } + .table tbody tr th { + font-weight: 500; } + .table th, + .table td { + padding: 9px 15px; + line-height: 1.462; } + +.table-striped tbody tr:nth-of-type(2n+1) { + background-color: rgba(151, 163, 185, 0.1); } + +.table-bordered thead th, +.table-bordered thead td { + border-top-width: 1px; + padding-top: 7px; + padding-bottom: 7px; + background-color: rgba(255, 255, 255, 0.5); } + +/* ############### CUSTOM ELEMENT STYLES ############### */ +/* ###### 4.2 Buttons ###### */ +.btn-az-primary { + color: #fff; + background-color: #5b47fb; + border-color: #452efa; } + .btn-az-primary:hover { + color: #fff; + background-color: #3a22fa; + border-color: #1f05f0; } + .btn-az-primary:focus, .btn-az-primary.focus { + color: #fff; + background-color: #3a22fa; + border-color: #1f05f0; + box-shadow: 0 0 0 0.2rem rgba(97, 77, 251, 0.5); } + .btn-az-primary.disabled, .btn-az-primary:disabled { + color: #fff; + background-color: #5b47fb; + border-color: #452efa; } + .btn-az-primary:not(:disabled):not(.disabled):active, .btn-az-primary:not(:disabled):not(.disabled).active, + .show > .btn-az-primary.dropdown-toggle { + color: #fff; + background-color: #2f15fa; + border-color: #1e05e4; } + .btn-az-primary:not(:disabled):not(.disabled):active:focus, .btn-az-primary:not(:disabled):not(.disabled).active:focus, + .show > .btn-az-primary.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(97, 77, 251, 0.5); } + +.btn-az-secondary { + color: #fff; + background-color: #3366ff; + border-color: #1a53ff; } + .btn-az-secondary:hover { + color: #fff; + background-color: #0d49ff; + border-color: #0039e6; } + .btn-az-secondary:focus, .btn-az-secondary.focus { + color: #fff; + background-color: #0d49ff; + border-color: #0039e6; + box-shadow: 0 0 0 0.2rem rgba(60, 109, 255, 0.5); } + .btn-az-secondary.disabled, .btn-az-secondary:disabled { + color: #fff; + background-color: #3366ff; + border-color: #1a53ff; } + .btn-az-secondary:not(:disabled):not(.disabled):active, .btn-az-secondary:not(:disabled):not(.disabled).active, + .show > .btn-az-secondary.dropdown-toggle { + color: #fff; + background-color: #0040ff; + border-color: #0036d9; } + .btn-az-secondary:not(:disabled):not(.disabled):active:focus, .btn-az-secondary:not(:disabled):not(.disabled).active:focus, + .show > .btn-az-secondary.dropdown-toggle:focus { + box-shadow: 0 0 0 0.2rem rgba(60, 109, 255, 0.5); } + +.btn-rounded { + border-radius: 50px; } + +.btn-with-icon { + display: flex; + align-items: center; + justify-content: center; + height: 38px; } + .btn-with-icon i { + line-height: 0; + font-size: 20px; + margin-right: 5px; } + .btn-with-icon i.typcn { + line-height: .9; } + .btn-with-icon i.fas { + font-size: 15px; } + .btn-with-icon i.icon { + font-size: 18px; } + +.btn-icon { + width: 38px; + height: 30px; + display: flex; + align-items: center; + justify-content: center; + flex-shrink: 0; } + .btn-icon i { + line-height: 0; + font-size: 24px; } + .btn-icon i.typcn { + line-height: .95; } + +/* ###### 4.3 Charts ###### */ +.az-donut-chart { + position: relative; + border-radius: 50%; + overflow: hidden; } + .az-donut-chart .slice { + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; } + .az-donut-chart .chart-center { + position: absolute; + border-radius: 50%; } + .az-donut-chart .chart-center span { + display: block; + text-align: center; } + +/* ###### 4.4 Forms ###### */ +/* Checkbox */ +.ckbox { + font-weight: normal; + position: relative; + display: block; + line-height: 1; + margin-bottom: 0; } + .ckbox span { + padding-left: 15px; } + .ckbox span:empty { + float: left; } + .ckbox span:before, .ckbox span:after { + line-height: 18px; + position: absolute; } + .ckbox span:before { + content: ''; + width: 16px; + height: 16px; + background-color: #fff; + border: 1px solid #97a3b9; + top: 1px; + left: 0; } + .ckbox span:after { + top: 1px; + left: 0; + width: 16px; + height: 16px; + content: ''; + background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E"); + background-size: 65%; + background-repeat: no-repeat; + background-position: 55% 45%; + background-color: #3366ff; + line-height: 17px; + display: none; } + .ckbox span:empty { + padding-left: 0; + width: 3px; } + .ckbox input[type='checkbox'] { + opacity: 0; + margin: 0; } + .ckbox input[type='checkbox']:checked + span:after { + display: block; } + .ckbox input[type='checkbox'][disabled] + span, + .ckbox input[type='checkbox'][disabled] + span:before, + .ckbox input[type='checkbox'][disabled] + span:after { + opacity: .75; } + +.ckbox-inline { + display: inline-block; } + +/* Radio Box */ +.rdiobox { + font-weight: normal; + position: relative; + display: block; + line-height: 18px; } + .rdiobox span { + padding-left: 13px; } + .rdiobox span:before, .rdiobox span:after { + line-height: 18px; + position: absolute; } + .rdiobox span:before { + content: ''; + width: 16px; + height: 16px; + background-color: #fff; + border: 1px solid #97a3b9; + border-radius: 50px; + top: 2px; + left: 0; } + .rdiobox span:after { + content: ''; + width: 6px; + height: 6px; + background-color: #fff; + border-radius: 50px; + top: 7px; + left: 5px; + display: none; } + .rdiobox span:empty { + padding-left: 0; + width: 16px; + display: block; } + .rdiobox input[type='radio'] { + opacity: 0; + margin: 0; } + .rdiobox input[type='radio']:checked + span:before { + border-color: transparent; + background-color: #3366ff; } + .rdiobox input[type='radio']:checked + span:after { + display: block; } + .rdiobox input[type='radio'][disabled] + span, + .rdiobox input[type='radio'][disabled] + span:before, + .rdiobox input[type='radio'][disabled] + span:after { + opacity: .75; } + +.rdiobox-inline { + display: inline-block; } + +.form-group-rdiobox { + display: flex; + align-items: center; } + .form-group-rdiobox .rdiobox { + margin-bottom: 0; } + .form-group-rdiobox .rdiobox + .rdiobox { + margin-left: 30px; } + .form-group-rdiobox .rdiobox span { + padding-left: 0; } + +.az-toggle { + width: 60px; + height: 25px; + background-color: #b4bdce; + padding: 2px; + position: relative; + overflow: hidden; } + .az-toggle span { + position: absolute; + top: 3px; + bottom: 3px; + left: 3px; + display: block; + width: 20px; + background-color: #fff; + cursor: pointer; + transition: all 0.2s ease-in-out; } + @media (prefers-reduced-motion: reduce) { + .az-toggle span { + transition: none; } } + .az-toggle span::before, .az-toggle span::after { + position: absolute; + font-size: 10px; + font-weight: 500; + letter-spacing: .5px; + text-transform: uppercase; + color: #fff; + top: 2px; + line-height: 1.38; } + .az-toggle span::before { + content: 'on'; + left: -25px; } + .az-toggle span::after { + content: 'off'; + right: -29px; } + .az-toggle.on { + background-color: #5b47fb; } + .az-toggle.on span { + left: 37px; } + +.az-toggle-secondary.on { + background-color: #3366ff; } + +.az-toggle-success.on { + background-color: #3bb001; } + +.az-toggle-dark.on { + background-color: #1c273c; } + +.az-form-group { + padding: 12px 15px; + border: 1px solid #cdd4e0; } + .az-form-group.focus { + border-color: #b4bdce; + box-shadow: 0 0 0 2px rgba(91, 71, 251, 0.16); } + .az-form-group .form-label { + font-size: 13px; + margin-bottom: 2px; + font-weight: 400; + color: #97a3b9; } + .az-form-group .form-control { + padding: 0; + border-width: 0; + height: 25px; + color: #1c273c; + font-weight: 500; } + .az-form-group .form-control:focus { + box-shadow: none; } + +/* ###### 4.5 Image ###### */ +.az-img-user { + display: block; + position: relative; + width: 36px; + height: 36px; + border-radius: 100%; } + .az-img-user img { + width: 100%; + height: 100%; + object-fit: cover; + border-radius: 100%; } + .az-img-user::after { + content: ''; + position: absolute; + bottom: 0; + right: 3px; + width: 6px; + height: 6px; + background-color: #97a3b9; + box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.95); + border-radius: 100%; } + .az-img-user.online::after { + background-color: #3bb001; } + +.az-avatar { + position: relative; + width: 36px; + height: 36px; + border-radius: 100%; + display: flex; + align-items: center; + justify-content: center; + color: #fff; + font-weight: 600; + font-size: 16px; + background-color: #596882; } + .az-avatar::after { + content: ''; + position: absolute; + bottom: 0; + right: 3px; + width: 6px; + height: 6px; + background-color: #97a3b9; + box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.95); + border-radius: 100%; } + .az-avatar.online::after { + background-color: #3bb001; } + +.avatar-xs { + width: 24px; + height: 24px; + font-size: 11px; } + .avatar-xs::after { + width: 5px; + height: 5px; } + +.avatar-sm { + width: 32px; + height: 32px; + font-size: 14px; } + .avatar-sm::after { + width: 7px; + height: 7px; } + +.avatar-md { + width: 48px; + height: 48px; + font-size: 24px; } + .avatar-md::after { + width: 9px; + height: 9px; + right: 2px; + bottom: 2px; } + +.avatar-lg { + width: 64px; + height: 64px; + font-size: 28px; } + .avatar-lg::after { + width: 10px; + height: 10px; + bottom: 3px; + right: 4px; } + +.avatar-xl { + width: 72px; + height: 72px; + font-size: 36px; } + .avatar-xl::after { + width: 11px; + height: 11px; + bottom: 4px; + right: 5px; + box-shadow: 0 0 0 2.5px #fff; } + +.avatar-xxl { + width: 100px; + height: 100px; + font-size: 56px; } + .avatar-xxl::after { + width: 13px; + height: 13px; + bottom: 6px; + right: 7px; + box-shadow: 0 0 0 3px #fff; } + +/* ###### 4.6 List ###### */ +.az-list-item { + display: flex; + align-items: center; + justify-content: space-between; + padding: 10px 0; } + .az-list-item + .az-list-item { + border-top: 1px solid #e3e7ed; } + .az-list-item:last-child { + padding-bottom: 0; } + .az-list-item h6 { + margin-bottom: 2px; + font-weight: 600; } + .az-list-item > div:first-child h6 { + color: #1c273c; } + .az-list-item > div span { + color: #7987a1; + font-size: 12px; } + .az-list-item > div:last-child { + text-align: right; } + .az-list-item > div:last-child h6 { + line-height: 1; } + +/* ###### 4.8 Nav ###### */ +@media (min-width: 768px) { + .az-nav { + align-items: center; } } + +.az-nav .nav-link { + display: block; + color: #596882; + padding: 0; + position: relative; + line-height: normal; } + .az-nav .nav-link:hover, .az-nav .nav-link:focus { + color: #1c273c; } + .az-nav .nav-link + .nav-link { + padding-top: 12px; + margin-top: 12px; + border-top: 1px dotted #97a3b9; } + @media (min-width: 768px) { + .az-nav .nav-link + .nav-link { + padding-top: 0; + margin-top: 0; + border-top: 0; + padding-left: 15px; + margin-left: 15px; + border-left: 1px dotted #97a3b9; } } + .az-nav .nav-link.active { + color: #5b47fb; } + +.az-nav-column { + flex-direction: column; } + .az-nav-column .nav-link { + padding: 0; + height: 38px; + color: #1c273c; + display: flex; + align-items: center; + justify-content: flex-start; } + .az-nav-column .nav-link i { + font-size: 24px; + line-height: 0; + width: 24px; + margin-right: 12px; + text-align: center; + transition: all 0.2s ease-in-out; } + @media (prefers-reduced-motion: reduce) { + .az-nav-column .nav-link i { + transition: none; } } + .az-nav-column .nav-link i:not([class*=' tx-']) { + color: #7987a1; } + .az-nav-column .nav-link i.typcn { + line-height: .9; } + .az-nav-column .nav-link span { + font-weight: 400; + font-size: 11px; + color: #97a3b9; + margin-left: auto; } + .az-nav-column .nav-link:hover, .az-nav-column .nav-link:focus { + color: #1c273c; } + .az-nav-column .nav-link:hover i:not([class*=' tx-']), .az-nav-column .nav-link:focus i:not([class*=' tx-']) { + color: #1c273c; } + .az-nav-column .nav-link.active { + position: relative; } + .az-nav-column .nav-link.active::before { + content: ''; + position: absolute; + top: 6px; + bottom: 6px; + left: -28px; + width: 3px; + background-color: #5b47fb; + border-radius: 3px; + display: none; } + .az-nav-column .nav-link.active, .az-nav-column .nav-link.active:hover, .az-nav-column .nav-link.active:focus { + color: #5b47fb; } + .az-nav-column .nav-link.active i, .az-nav-column .nav-link.active:hover i, .az-nav-column .nav-link.active:focus i { + color: #5b47fb; } + .az-nav-column .nav-link + .nav-link { + border-top: 1px dotted #b4bdce; } + .az-nav-column.sm .nav-link { + font-size: 0.875rem; + font-weight: 400; + padding: 10px 0; } + .az-nav-column.sm .nav-link i { + font-size: 21px; } + +.az-nav-dark .nav-link { + color: rgba(255, 255, 255, 0.7); } + .az-nav-dark .nav-link:hover, .az-nav-dark .nav-link:focus { + color: #fff; } + .az-nav-dark .nav-link + .nav-link { + border-color: #596882; } + .az-nav-dark .nav-link.active { + color: #5b47fb; } + +.az-nav-colored-bg .nav-link + .nav-link { + border-color: rgba(255, 255, 255, 0.4); } + +.az-nav-colored-bg .nav-link.active { + color: #fff; } + +.az-nav-line { + position: relative; } + .az-nav-line .nav-link { + padding: 0; + color: #596882; + position: relative; } + .az-nav-line .nav-link:hover, .az-nav-line .nav-link:focus { + color: #1c273c; } + .az-nav-line .nav-link + .nav-link { + margin-top: 15px; } + @media (min-width: 768px) { + .az-nav-line .nav-link + .nav-link { + margin-top: 0; + margin-left: 30px; } } + .az-nav-line .nav-link.active { + color: #1c273c; } + .az-nav-line .nav-link.active::before { + content: ''; + position: absolute; + top: 0; + bottom: 0; + left: -20px; + width: 2px; + background-color: #1c273c; } + @media (min-width: 768px) { + .az-nav-line .nav-link.active::before { + top: auto; + bottom: -20px; + left: 0; + right: 0; + height: 2px; + width: auto; } } + .az-nav-line.az-nav-dark .nav-link { + color: rgba(255, 255, 255, 0.7); } + .az-nav-line.az-nav-dark .nav-link:hover, .az-nav-line.az-nav-dark .nav-link:focus { + color: #fff; } + .az-nav-line.az-nav-dark .nav-link.active { + color: #fff; } + .az-nav-line.az-nav-dark .nav-link.active::before { + background-color: #fff; } + +.az-nav-tabs { + padding: 15px 15px 0; + background-color: #cdd4e0; } + .az-nav-tabs .lSSlideOuter { + position: relative; + padding-left: 32px; + padding-right: 35px; } + .az-nav-tabs .lSSlideWrapper { + overflow: visible; } + .az-nav-tabs .lSAction > a { + display: block; + height: 40px; + top: 16px; + opacity: 1; + background-color: #b4bdce; + background-image: none; } + .az-nav-tabs .lSAction > a:hover, .az-nav-tabs .lSAction > a:focus { + background-color: #a5afc4; } + .az-nav-tabs .lSAction > a::before { + font-family: 'Ionicons'; + font-size: 18px; + position: absolute; + top: -4px; + left: 0; + right: 0; + bottom: 0; + display: flex; + align-items: center; + justify-content: center; } + .az-nav-tabs .lSAction > a.lSPrev { + left: -32px; } + .az-nav-tabs .lSAction > a.lSPrev::before { + content: '\f3cf'; } + .az-nav-tabs .lSAction > a.lSNext { + right: -35px; } + .az-nav-tabs .lSAction > a.lSNext::before { + content: '\f3d1'; } + .az-nav-tabs .lSAction > a.disabled { + background-color: #e3e7ed; + color: #fff; } + .az-nav-tabs .lightSlider { + display: flex; } + .az-nav-tabs .tab-item { + flex-shrink: 0; + display: block; + float: none; + min-width: 150px; } + .az-nav-tabs .tab-link { + display: flex; + align-items: center; + justify-content: center; + padding: 10px 20px; + line-height: 1.428; + color: #596882; + white-space: nowrap; + background-color: #e3e7ed; } + .az-nav-tabs .tab-link:hover, .az-nav-tabs .tab-link:focus { + background-color: #f4f5f8; } + .az-nav-tabs .tab-link.active { + background-color: #fff; + color: #1c273c; + font-weight: 500; } + +.az-tab-pane { + display: none; } + .az-tab-pane.active { + display: block; } + +/* ############### CUSTOM VENDOR STYLES ############### */ +/* ###### 5.2 Datepicker ###### */ +.ui-datepicker { + background-color: #fff; + border: 1px solid rgba(28, 39, 60, 0.2); + font-family: inherit; + font-size: inherit; + padding: 10px; + margin: 1px 0 0; + display: none; + width: auto !important; + z-index: 5 !important; } + .ui-datepicker .ui-datepicker-header { + display: flex; + justify-content: space-between; + align-items: center; + position: relative; + font-weight: 500; + font-size: 12px; + text-transform: uppercase; + color: #031b4e; + padding: 0 0 5px; + letter-spacing: 1px; + border: 0; + background-color: transparent; + border-top-left-radius: 3px; + border-top-right-radius: 3px; } + .ui-datepicker .ui-datepicker-header .ui-datepicker-next, + .ui-datepicker .ui-datepicker-header .ui-datepicker-prev { + text-indent: -99999px; + color: #7987a1; + top: 3px; } + .ui-datepicker .ui-datepicker-header .ui-datepicker-next::before, + .ui-datepicker .ui-datepicker-header .ui-datepicker-prev::before { + font-size: 16px; + font-family: 'Ionicons'; + position: absolute; + top: -2px; + text-indent: 0; } + .ui-datepicker .ui-datepicker-header .ui-datepicker-next:hover::before, .ui-datepicker .ui-datepicker-header .ui-datepicker-next:focus::before, + .ui-datepicker .ui-datepicker-header .ui-datepicker-prev:hover::before, + .ui-datepicker .ui-datepicker-header .ui-datepicker-prev:focus::before { + color: #3b4863; } + .ui-datepicker .ui-datepicker-header .ui-datepicker-next { + order: 3; } + .ui-datepicker .ui-datepicker-header .ui-datepicker-next:before { + right: 5px; + content: '\f3d1'; } + .ui-datepicker .ui-datepicker-header .ui-datepicker-prev:before { + left: 5px; + content: '\f3cf'; } + .ui-datepicker .ui-datepicker-header .ui-datepicker-next-hover, + .ui-datepicker .ui-datepicker-header .ui-datepicker-prev-hover { + color: #596882; + cursor: pointer; + top: 1px; + border: 0; + background-color: transparent; } + .ui-datepicker .ui-datepicker-title { + color: #3b4863; + font-weight: 700; + font-size: 13px; } + .ui-datepicker .ui-datepicker-calendar { + margin: 0; + background-color: transparent; + border-bottom-right-radius: 3px; + border-bottom-left-radius: 3px; } + .ui-datepicker .ui-datepicker-calendar th { + text-transform: uppercase; + font-size: 12px; + font-weight: 700; + letter-spacing: 1px; + padding: 6px 9px; + color: #3b4863; } + @media (max-width: 320px) { + .ui-datepicker .ui-datepicker-calendar th { + padding: 4px 0; + letter-spacing: normal; } } + .ui-datepicker .ui-datepicker-calendar td { + border: 1px solid #fff; + padding: 0; + background-color: #fff; + text-align: right; } + .ui-datepicker .ui-datepicker-calendar td:last-child { + border-right: 0; } + .ui-datepicker .ui-datepicker-calendar td.ui-datepicker-other-month .ui-state-default { + color: #ccc; } + .ui-datepicker .ui-datepicker-calendar td span, + .ui-datepicker .ui-datepicker-calendar td a { + transition: all 0.2s ease-in-out; + padding: 5px; + color: #031b4e; + padding: 6px 10px; + display: block; + font-weight: 400; + font-size: 12px; + border: 0; + border-radius: 1px; } + @media (prefers-reduced-motion: reduce) { + .ui-datepicker .ui-datepicker-calendar td span, + .ui-datepicker .ui-datepicker-calendar td a { + transition: none; } } + .ui-datepicker .ui-datepicker-calendar td a:hover { + background-color: #fff; + color: #031b4e; } + .ui-datepicker .ui-datepicker-calendar .ui-datepicker-today a, .ui-datepicker .ui-datepicker-calendar .ui-datepicker-today a:hover, .ui-datepicker .ui-datepicker-calendar .ui-datepicker-today a:focus { + background-color: #3366ff; + color: #fff; } + +.ui-datepicker-multi .ui-datepicker-group { + padding-right: 15px; + width: auto; + float: left; } + .ui-datepicker-multi .ui-datepicker-group .ui-datepicker-title { + margin: auto; } + .ui-datepicker-multi .ui-datepicker-group .ui-datepicker-prev::before { + left: 10px; } + .ui-datepicker-multi .ui-datepicker-group .ui-datepicker-next::before { + right: 10px; } + .ui-datepicker-multi .ui-datepicker-group table { + margin: 0; } + +.ui-datepicker-multi .ui-datepicker-group-last { + padding-right: 0; } + +.ui-datepicker-inline { + border-color: #cdd4e0; } + @media (min-width: 576px) { + .ui-datepicker-inline { + max-width: 270px; } } + +/* ###### 5.3 Datetimepicker ###### */ +/* Amaze UI Datetimepicker */ +.datetimepicker { + box-shadow: none; + border-radius: 0; + border-width: 1px; + border-color: #cdd4e0; + min-width: 270px; + padding: 0 10px 10px; } + .datetimepicker::before { + display: none; } + .datetimepicker table { + width: 100%; } + .datetimepicker table th.prev, + .datetimepicker table th.next, + .datetimepicker table th.switch { + background-color: #fff; + color: #031b4e; } + .datetimepicker table th.prev, + .datetimepicker table th.next { + position: relative; } + .datetimepicker table th.prev span, + .datetimepicker table th.next span { + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; } + .datetimepicker table th.prev span::before, + .datetimepicker table th.next span::before { + font-family: 'Ionicons'; + position: absolute; + top: 50%; + font-size: 16px; + color: #1c273c; + line-height: 0; } + .datetimepicker table th.prev:hover, .datetimepicker table th.prev:focus, + .datetimepicker table th.next:hover, + .datetimepicker table th.next:focus { + background-color: #fff; } + .datetimepicker table th.prev:hover span::before, .datetimepicker table th.prev:focus span::before, + .datetimepicker table th.next:hover span::before, + .datetimepicker table th.next:focus span::before { + color: #3366ff; } + .datetimepicker table th.prev span::before { + content: '\f3cf'; + left: 0; } + .datetimepicker table th.next span::before { + content: '\f3d1'; + right: 0; } + .datetimepicker table th.switch { + text-transform: uppercase; + font-weight: 700; + font-size: 13px; + letter-spacing: 1px; + color: #1c273c; } + .datetimepicker table th.switch:hover, .datetimepicker table th.switch:focus { + background-color: #fff; + color: #3366ff; } + .datetimepicker table td { + font-size: 0.875rem; + text-align: center; } + .datetimepicker table td.old, .datetimepicker table td.new { + color: #97a3b9; } + .datetimepicker table td.active, .datetimepicker table td.active:hover, .datetimepicker table td.active:focus { + background-color: #3366ff; + color: #fff; } + .datetimepicker table span.active, .datetimepicker table span.active:hover, .datetimepicker table span.active:focus { + background-color: #3366ff; + color: #fff; } + .datetimepicker .datetimepicker-days table thead tr:first-child th { + height: 38px; } + .datetimepicker .datetimepicker-days table thead tr:last-child th { + height: 25px; + text-transform: uppercase; + color: #596882; + font-weight: 700; + font-size: 11px; } + +/* jQuery Simple Datetimepicker */ +.az-datetimepicker { + box-shadow: none; + border-radius: 0; + border-color: #cdd4e0; + margin-top: 2px; } + .az-datetimepicker > .datepicker_header { + padding: 10px; + display: flex; + align-items: center; + justify-content: space-between; } + .az-datetimepicker > .datepicker_header > .icon-home { + display: none; } + .az-datetimepicker > .datepicker_header a:nth-child(2), + .az-datetimepicker > .datepicker_header a:last-child { + display: block; + position: relative; + text-indent: -999999px; } + .az-datetimepicker > .datepicker_header a:nth-child(2)::before, + .az-datetimepicker > .datepicker_header a:last-child::before { + font-family: 'Ionicons'; + position: absolute; + top: 50%; + line-height: 0; + text-indent: 0; + font-size: 13px; } + .az-datetimepicker > .datepicker_header a:nth-child(2)::before { + content: '\f3cf'; + left: 0; } + .az-datetimepicker > .datepicker_header a:last-child::before { + content: '\f3d1'; + right: 0; } + .az-datetimepicker > .datepicker_header span { + font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; + text-transform: uppercase; } + .az-datetimepicker > .datepicker_inner_container { + border-radius: 0; + box-shadow: none; + border-width: 0; + display: flex; + height: 225px; + margin: 0; + background-color: #fff; } + .az-datetimepicker > .datepicker_inner_container::after { + display: none; } + .az-datetimepicker > .datepicker_inner_container > .datepicker_calendar { + width: 230px; + border-width: 0; + border-radius: 0; + font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; + padding: 5px; + float: none; + margin: 0; } + .az-datetimepicker > .datepicker_inner_container > .datepicker_calendar > table { + width: 100%; + height: 100%; } + .az-datetimepicker > .datepicker_inner_container > .datepicker_calendar th { + font-size: 11px; + text-transform: uppercase; + color: #1c273c; + font-weight: 700; + text-align: center; + padding: 8px 5px; } + .az-datetimepicker > .datepicker_inner_container > .datepicker_calendar td { + font-size: 0.875rem; + font-weight: 400; + text-align: center; + padding: 5px; } + .az-datetimepicker > .datepicker_inner_container > .datepicker_calendar td.day_another_month { + color: #97a3b9; } + .az-datetimepicker > .datepicker_inner_container > .datepicker_calendar td.hover { + background-color: #e3e7ed; + cursor: pointer; } + .az-datetimepicker > .datepicker_inner_container > .datepicker_calendar td.active { + background-color: #3366ff; + color: #fff; } + .az-datetimepicker > .datepicker_inner_container > .datepicker_timelist { + float: none; + width: 70px; + height: 100% !important; + border-left: 1px solid #b4bdce; } + .az-datetimepicker > .datepicker_inner_container > .datepicker_timelist > div.timelist_item { + padding: 5px 8px; + margin: 0 0 0 1px; } + .az-datetimepicker > .datepicker_inner_container > .datepicker_timelist > div.timelist_item:hover, .az-datetimepicker > .datepicker_inner_container > .datepicker_timelist > div.timelist_item:focus { + background-color: #e3e7ed; } + .az-datetimepicker > .datepicker_inner_container > .datepicker_timelist > div.timelist_item.active { + background-color: #3366ff; + color: #fff; } + +/* Picker JS */ +.picker-title { + font-size: 15px; + font-weight: 500; } + +.picker-cell__header { + text-transform: uppercase; + font-size: 0.875rem; + font-weight: 700; + letter-spacing: .4px; } + +.picker-item { + font-family: "Archivo", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; } + +.picker-picked { + font-weight: 500; + color: #3366ff; } + +/* ###### 5.11 Select2 ###### */ +.select2-results__option { + border-radius: 0; + margin-bottom: 1px; + font-size: 13px; } + +.select2-container--default .select2-selection--single { + background-color: #fff; + border-color: #cdd4e0; + border-radius: 3px; + height: 38px; + outline: none; + border-radius: 0; } + .select2-container--default .select2-selection--single .select2-selection__rendered { + color: #596882; + line-height: calc(1.5em + 0.75rem + 2px)-0.1rem; + padding-left: 0.75rem; + height: 100%; + display: flex; + align-items: center; } + .select2-container--default .select2-selection--single .select2-selection__placeholder { + color: #7987a1; } + .select2-container--default .select2-selection--single .select2-selection__arrow { + width: 30px; + height: 38px; + line-height: calc(1.5em + 0.75rem + 2px); } + .select2-container--default .select2-selection--single .select2-selection__arrow b { + margin-top: -3px; } + +.select2-container--default .select2-selection--multiple { + background-color: #fff; + border-color: #cdd4e0; + border-radius: 0; + min-height: 38px; + outline: none; } + .select2-container--default .select2-selection--multiple .select2-selection__rendered { + padding: 0 4px; } + .select2-container--default .select2-selection--multiple .select2-selection__choice { + position: relative; + margin-top: 5px; + margin-right: 4px; + padding: 3px 10px 3px 20px; + border-color: transparent; + border-radius: 0; + background-color: #5b47fb; + color: #fff; + line-height: 1.45; } + .select2-container--default .select2-selection--multiple .select2-selection__choice__remove { + color: #fff; + opacity: .5; + font-size: 12px; + display: inline-block; + position: absolute; + top: 4px; + left: 7px; } + +.select2-container--default.select2-container--focus .select2-selection--multiple { + border-color: #cdd4e0; } + +.select2-container--default .select2-search--dropdown .select2-search__field { + border-color: #cdd4e0; + border-radius: 0; } + +.select2-container--default .select2-results__option[aria-selected="true"] { + background-color: white; } + +.select2-container--default .select2-results__option--highlighted[aria-selected] { + background-color: #5b47fb; } + +.select2-container--default .select2-results > .select2-results__options { + margin: 4px; } + +.select2-container--default .select2-search--inline .select2-search__field { + margin-top: 7px; + line-height: 26px; + padding-left: 7px; + opacity: 1; } + +.select2-container--default.select2-container--disabled .select2-selection__choice { + padding-left: 10px; + background-color: #97a3b9; } + .select2-container--default.select2-container--disabled .select2-selection__choice .select2-selection__choice__remove { + display: none; } + +.select2-container--open .select2-selection--single, +.select2-container--open .select2-selection--multiple { + background-color: #fff; + border-color: #cdd4e0; } + +.select2-container--open .select2-dropdown--above { + border-top-left-radius: 0; + border-top-right-radius: 0; } + +.select2-container--open .select2-dropdown--below { + border-bottom-right-radius: 0; + border-bottom-left-radius: 0; + top: 0; } + +.select2-dropdown { + border-color: #cdd4e0; + z-index: 200; } + +.select2-search--dropdown { + padding-bottom: 0; } + +.select2-results__option { + padding: 6px 10px; + font-size: 0.875rem; } + +.has-success .select2-container--default .select2-selection--single { + border-color: #3bb001; } + +.has-warning .select2-container--default .select2-selection--single { + border-color: #ffc107; } + +.has-danger .select2-container--default .select2-selection--single { + border-color: #dc3545; } + +.select2-xs + .select2-container { + font-size: 12px; } + +.select2-dropdown-xs .select2-results__option { + font-size: 12px; } + +.select2-sm + .select2-container { + font-size: 14px; } + +.select2-dropdown-sm .select2-results__option { + font-size: 14px; } + +.select2-bd-0 + .select2-container--default .select2-selection--single { + border-width: 0; } + +.bg-gray + .select2-container--default .select2-selection--single { + background-color: #455473; } + .bg-gray + .select2-container--default .select2-selection--single .select2-selection__rendered { + color: #cdd4e0; } + +/* ############### PAGE LAYOUT STYLES ############### */ +/* ###### 6.1 Content ###### */ +@media (max-width: 575px) { + .az-content-left-show { + overflow: hidden; } } + +@media (max-width: 991.98px) { + .az-content-left-show .az-content-left { + display: block; + position: fixed; + top: 0; + bottom: 0; + left: 0; + background-color: #fff; + z-index: 800; + border-right: 1px solid #cdd4e0; + box-shadow: 0 0 3px rgba(28, 39, 60, 0.1); + overflow-y: auto; } } + +@media (max-width: 575px) { + .az-content-left-show .az-content-body { + display: none; } } + +@media (max-width: 991.98px) { + .az-content-body-show .az-header .az-header-menu-icon { + display: none; } + .az-content-body-show .az-header .az-header-left .az-header-arrow { + display: block; } + .az-content-body-show .az-content-left { + display: none; } + .az-content-body-show .az-content-body { + display: block; } } + +@media (min-width: 992px) { + .az-content { + padding: 30px 0; } } + +.az-content .container, +.az-content .container-fluid, +.az-content .container-sm, +.az-content .container-md, +.az-content .container-lg, +.az-content .container-xl { + display: flex; + padding-left: 20px; + padding-right: 20px; } + +@media (min-width: 992px) { + .az-content .container { + padding: 0; } } + +@media (max-width: 991.98px) { + .az-content .container { + max-width: none; } } + +.az-content-app { + padding-top: 20px; } + @media (min-width: 992px) { + .az-content-app { + height: calc(100vh - 104px); + padding-top: 30px; } } + .az-content-app .container, + .az-content-app .container-fluid, + .az-content-app .container-sm, + .az-content-app .container-md, + .az-content-app .container-lg, + .az-content-app .container-xl { + height: 100%; + padding: 0; } + +.az-content-left { + width: 100%; + position: relative; + padding: 0 20px 20px; + flex-shrink: 0; + display: none; } + @media (min-width: 576px) { + .az-content-left { + width: 280px; } } + @media (min-width: 992px) { + .az-content-left { + display: block; + padding: 0; } } + +.az-content-header { + height: 60px; + display: flex; + align-items: center; + justify-content: space-between; + margin-bottom: 20px; } + @media (min-width: 992px) { + .az-content-header { + display: none; } } + .az-content-header .az-logo { + flex: 1; + text-align: center; } + +.az-content-body { + flex: 1; } + +.az-content-right { + padding-left: 25px; + margin-left: 25px; + width: 200px; + display: none; } + @media (min-width: 992px) { + .az-content-right { + display: block; } } + +.az-content-breadcrumb { + display: flex; + align-items: center; + font-size: 10px; + font-weight: 500; + font-family: "Roboto", sans-serif; + letter-spacing: 1px; + text-transform: uppercase; + color: #97a3b9; + margin-bottom: 10px; } + .az-content-breadcrumb span { + position: relative; } + .az-content-breadcrumb span + span::before { + content: '\f3d1'; + font-family: 'Ionicons'; + font-size: 12px; + font-weight: 300; + display: inline; + margin: 0 5px; + color: #b4bdce; + line-height: 0; + position: relative; + top: 1px; } + .az-content-breadcrumb span:last-child { + color: #596882; } + +.az-content-title { + color: #1c273c; + font-weight: 500; + font-size: 32px; + text-indent: -1px; + line-height: 1; + position: relative; + margin-bottom: 20px; } + @media (min-width: 992px) { + .az-content-title { + margin-bottom: 40px; } } + +.az-content-label { + color: #1c273c; + font-weight: 800; + text-transform: uppercase; + line-height: 1; + margin-bottom: 10px; + letter-spacing: .2px; } + +.az-content-label-sm { + font-size: 10px; + font-weight: 600; + text-transform: uppercase; + color: #97a3b9; + letter-spacing: .5px; } + +.az-content-text { + font-size: 12px; + line-height: 1.4; + display: block; + color: #7987a1; } + +/* ###### 6.2 Footer ###### */ +.az-footer { + background-color: #fff; + border-top: 1px solid #cdd4e0; + margin-top: auto; + display: none; } + @media (min-width: 992px) { + .az-footer { + display: block; } } + .az-footer .container, + .az-footer .container-fluid, + .az-footer .container-sm, + .az-footer .container-md, + .az-footer .container-lg, + .az-footer .container-xl { + font-size: 12px; + padding: 10px 20px 0; + display: flex; + align-items: center; + justify-content: space-between; + color: #7987a1; } + @media (min-width: 992px) { + .az-footer .container { + padding: 10px 0 0; } } + + .az-footer .container-fluid, + .az-footer .container-sm, + .az-footer .container-md, + .az-footer .container-lg, + .az-footer .container-xl { + padding-left: 20px; + padding-right: 20px; } + +.az-footer-app .container, +.az-footer-app .container-fluid, +.az-footer-app .container-sm, +.az-footer-app .container-md, +.az-footer-app .container-lg, +.az-footer-app .container-xl { + border-top-width: 0; } + +/* ###### 6.3 Global ###### */ +body { + font-family: "Roboto", sans-serif; } + +.az-body, +.az-dashboard { + min-height: 100vh; + display: flex; + flex-direction: column; + justify-content: flex-start; + position: relative; } + +.az-body::before { + content: 'az'; + position: fixed; + top: 45%; + left: 70%; + transform: translate3d(-50%, -58%, 0); + font-size: 1300px; + font-weight: 600; + letter-spacing: -10px; + line-height: .5; + opacity: .02; + z-index: -1; + display: none; } + +.az-table-reference { + margin-top: 40px; + background-color: #fff; } + .az-table-reference > thead > tr > th, + .az-table-reference > thead > tr > td, + .az-table-reference > tbody > tr > th, + .az-table-reference > tbody > tr > td { + padding: 8px 10px; + border: 1px solid #cdd4e0; + font-size: 13px; } + .az-table-reference > thead > tr > th, + .az-table-reference > thead > tr > td { + background-color: #f4f5f8; + color: #7987a1; + font-size: 11px; + font-weight: 500; + text-transform: uppercase; + letter-spacing: 1px; + border-bottom: 0; } + +/* ###### 6.4 Header ###### */ +@media (max-width: 991.98px) { + .az-header-menu-show { + overflow: hidden; } + .az-header-menu-show .az-header-menu { + border-right: 1px solid rgba(28, 39, 60, 0.08); + box-shadow: 0 0 30px rgba(28, 39, 60, 0.08); + transform: translateX(0); } + .az-header-menu-show .az-navbar-backdrop { + visibility: visible; + opacity: 1; } } + +.az-header { + height: 60px; + background-color: #fff; + box-shadow: 0 0 30px rgba(28, 39, 60, 0.08); + border-bottom: 1px solid rgba(28, 39, 60, 0.12); } + @media (min-width: 992px) { + .az-header { + position: relative; + z-index: 100; + height: 64px; } } + .az-header > .container, + .az-header > .container-fluid, + .az-header > .container-sm, + .az-header > .container-md, + .az-header > .container-lg, + .az-header > .container-xl { + height: 100%; + display: flex; + align-items: center; + justify-content: space-between; + padding-left: 20px; + padding-right: 20px; } + @media (min-width: 992px) { + .az-header > .container, + .az-header > .container-fluid, + .az-header > .container-sm, + .az-header > .container-md, + .az-header > .container-lg, + .az-header > .container-xl { + padding-left: 25px; + padding-right: 25px; } } + @media (min-width: 992px) { + .az-header > .container { + padding: 0; } } + @media (max-width: 991.98px) { + .az-header > .container { + max-width: none; } } + .az-header .az-header-left .az-logo { + display: none; } + @media (min-width: 992px) { + .az-header .az-header-left .az-logo { + display: flex; } } + +.az-header-left { + display: flex; + align-items: center; } + .az-header-left .az-header-arrow { + display: none; + position: relative; + top: -2px; } + +.az-logo { + font-weight: 700; + font-size: 28px; + font-family: 'Poppins', sans-serif; + text-transform: lowercase; + color: #5b47fb; + letter-spacing: -1px; + display: flex; + align-items: center; + position: relative; + top: -2px; } + .az-logo:hover, .az-logo:focus { + color: #5b47fb; } + .az-logo i { + display: block; + line-height: .9; + margin-right: 8px; + font-size: 40px; } + .az-logo i::before { + width: auto; + height: auto; } + +.az-header-menu-icon { + margin-right: 10px; + width: 20px; + height: 30px; + display: flex; + align-items: center; } + @media (min-width: 992px) { + .az-header-menu-icon { + margin-right: 25px; } } + .az-header-menu-icon span { + display: block; + position: relative; + width: 15px; + height: 2px; + background-color: #1c273c; + border-radius: 3px; + transition: all 0.2s ease-in-out; } + @media (prefers-reduced-motion: reduce) { + .az-header-menu-icon span { + transition: none; } } + .az-header-menu-icon span::before, .az-header-menu-icon span::after { + content: ''; + position: absolute; + left: 0; + width: 20px; + height: 2px; + background-color: #1c273c; + border-radius: 3px; + transition: all 0.2s ease-in-out; } + @media (prefers-reduced-motion: reduce) { + .az-header-menu-icon span::before, .az-header-menu-icon span::after { + transition: none; } } + .az-header-menu-icon span::before { + top: -6px; } + .az-header-menu-icon span::after { + bottom: -6px; } + +.az-header-menu { + position: fixed; + top: 0; + bottom: 0; + left: 0; + width: 240px; + background-color: #fff; + overflow-y: auto; + z-index: 1000; + transform: translateX(-240px); + transition: all 0.35s; } + @media (prefers-reduced-motion: reduce) { + .az-header-menu { + transition: none; } } + @media (min-width: 992px) { + .az-header-menu { + background-color: transparent; + border-right: 0; + position: static; + width: auto; + overflow-y: visible; + transform: none; + z-index: auto; } } + .az-header-menu > .nav { + flex-direction: column; + padding: 20px; } + @media (min-width: 992px) { + .az-header-menu > .nav { + padding: 0; + flex-direction: row; + align-items: center; } } + .az-header-menu .nav-item::before { + content: ''; + position: absolute; + top: 67px; + margin-left: 25px; + width: 15px; + height: 15px; + border-top: 2px solid rgba(28, 39, 60, 0.12); + border-left: 2px solid rgba(28, 39, 60, 0.12); + background-color: #fff; + transform: rotate(45deg); + z-index: 100; + display: none; } + .az-header-menu .nav-item + .nav-item { + margin-top: 10px; } + @media (min-width: 992px) { + .az-header-menu .nav-item + .nav-item { + margin-top: 0; + margin-left: 30px; } } + .az-header-menu .nav-item > .nav-link { + display: flex; + align-items: center; + position: relative; + color: #031b4e; + font-size: 15px; + font-weight: 500; + padding: 0; + transition: all 0.2s ease-in-out; } + @media (prefers-reduced-motion: reduce) { + .az-header-menu .nav-item > .nav-link { + transition: none; } } + @media (min-width: 992px) { + .az-header-menu .nav-item > .nav-link { + font-size: 0.875rem; } } + .az-header-menu .nav-item > .nav-link:hover { + color: #5b47fb; } + .az-header-menu .nav-item > .nav-link:hover i { + color: #5b47fb; } + .az-header-menu .nav-item > .nav-link.with-sub::after { + content: '\f3d0'; + display: inline-block; + font-family: 'Ionicons'; + font-size: 12px; + font-weight: 400; + margin-left: auto; + margin-top: 3px; + opacity: .5; } + @media (min-width: 992px) { + .az-header-menu .nav-item > .nav-link.with-sub::after { + margin-left: 5px; } } + .az-header-menu .nav-item > .nav-link .typcn { + font-size: 20px; + line-height: .95; + margin-right: 15px; + width: 16px; } + @media (min-width: 992px) { + .az-header-menu .nav-item > .nav-link .typcn { + font-size: 18px; + margin-right: 7px; } } + .az-header-menu .nav-item > .nav-link .typcn::before { + width: auto; } + .az-header-menu .nav-item.active > .nav-link { + color: #5b47fb; + position: relative; } + .az-header-menu .nav-item.active > .nav-link::before { + content: ''; + position: absolute; + bottom: 0; + top: 0; + left: -20px; + width: 2px; + background-color: #5b47fb; + border-radius: 3px; } + @media (min-width: 992px) { + .az-header-menu .nav-item.active > .nav-link::before { + top: auto; + bottom: -22px; + left: 0; + right: 0; + width: auto; + height: 2px; } } + @media (min-width: 992px) { + .az-header-menu .nav-item.show::before { + display: block; } } + .az-header-menu .nav-item.show .az-menu-sub { + display: block; } + +.az-header-menu-header { + height: 60px; + display: flex; + align-items: center; + justify-content: space-between; + padding: 0 20px; + border-bottom: 1px solid rgba(28, 39, 60, 0.05); } + @media (min-width: 992px) { + .az-header-menu-header { + display: none; } } + .az-header-menu-header .close { + font-weight: 300; + font-size: 28px; } + +.az-menu-sub { + font-size: 13px; + margin-left: 32px; + margin-top: 12px; + display: none; } + @media (min-width: 992px) { + .az-menu-sub { + position: absolute; + top: 74px; + background-color: #fff; + padding: 15px 20px; + border: 2px solid rgba(28, 39, 60, 0.12); + min-width: 200px; + margin-left: 0; + margin-top: 0; } } + .az-menu-sub .nav { + flex-direction: column; } + .az-menu-sub .nav-link { + padding: 0; + display: block; + color: #596882; } + .az-menu-sub .nav-link + .nav-link { + margin-top: 6px; + padding-top: 6px; + border-top: 1px dotted #e3e7ed; } + .az-menu-sub .nav-link:hover, .az-menu-sub .nav-link:focus { + color: #5b47fb; } + .az-menu-sub .nav-link.active { + color: #5b47fb; + font-weight: 500; } + @media (min-width: 992px) { + .az-menu-sub .nav-link.active { + font-weight: 400; } } + +.az-menu-sub-mega { + left: 0; + right: 0; + background-color: transparent; + padding: 0; + border: 0; } + .az-menu-sub-mega .container { + padding: 0; } + @media (max-width: 991.98px) { + .az-menu-sub-mega .container { + max-width: none; } } + @media (min-width: 992px) { + .az-menu-sub-mega .container { + display: flex; + background-color: #fff; + border: 2px solid rgba(28, 39, 60, 0.12); } } + @media (min-width: 992px) { + .az-menu-sub-mega .container > div { + display: flex; + padding: 20px; + flex: 1; + margin-top: 0; } } + @media (min-width: 1200px) { + .az-menu-sub-mega .container > div { + padding: 20px 25px; } } + .az-menu-sub-mega .container > div + div { + margin-top: 25px; } + @media (min-width: 992px) { + .az-menu-sub-mega .container > div + div { + margin-top: 0; + border-left: 1px solid rgba(28, 39, 60, 0.05); } } + .az-menu-sub-mega .nav { + min-width: 120px; + flex-direction: column; } + @media (min-width: 1200px) { + .az-menu-sub-mega .nav { + min-width: 140px; } } + .az-menu-sub-mega .nav + .nav { + border-top: 1px dotted #e3e7ed; + margin-top: 6px; + padding-top: 6px; } + @media (min-width: 992px) { + .az-menu-sub-mega .nav + .nav { + margin-left: 20px; + margin-top: 31px; + padding-top: 0; + border-top: 0; } } + @media (min-width: 1200px) { + .az-menu-sub-mega .nav + .nav { + margin-left: 25px; } } + .az-menu-sub-mega .nav > span { + display: block; + text-transform: uppercase; + font-size: 10px; + font-weight: 700; + color: #1c273c; + letter-spacing: .5px; + margin-bottom: 15px; + margin-top: 30px; } + @media (min-width: 992px) { + .az-menu-sub-mega .nav > span { + font-size: 12px; } } + .az-menu-sub-mega .nav > span:first-of-type { + margin-top: 0; } + +.az-header-center { + flex: 1; + margin: 0 50px; + position: relative; + display: none; } + @media (min-width: 992px) { + .az-header-center { + display: block; } } + .az-header-center .form-control { + border-color: #e3e7ed; + border-width: 2px; + background-color: #fcfcfc; + transition: none; + height: 40px; } + .az-header-center .form-control:focus { + background-color: #fff; + border-color: #b4bdce; + box-shadow: none !important; } + .az-header-center .form-control:focus + .btn { + color: #7987a1; } + .az-header-center .btn { + position: absolute; + top: 0; + right: 0; + background-color: transparent; + height: 40px; + color: #b4bdce; + transition: none; + font-size: 16px; + padding-right: 13px; } + .az-header-center .btn:hover, .az-header-center .btn:focus { + color: #1c273c; } + +.az-header-right { + display: flex; + align-items: center; } + .az-header-right .btn-social { + padding: 0; + display: flex; + align-items: center; + justify-content: center; + color: #97a3b9; + border-radius: 3px; + transition: all 0.2s ease-in-out; } + @media (prefers-reduced-motion: reduce) { + .az-header-right .btn-social { + transition: none; } } + .az-header-right .btn-social:hover, .az-header-right .btn-social:focus { + color: #596882; } + .az-header-right .btn-social i { + font-size: 18px; + line-height: 0; } + .az-header-right .btn-social + .btn-social { + margin-left: 10px; } + .az-header-right .btn-buy { + text-transform: uppercase; + font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; + font-size: 11px; + font-weight: 500; + background-color: #5b47fb; + color: #fff; + letter-spacing: .5px; + display: flex; + align-items: center; + border-radius: 3px; + transition: all 0.2s ease-in-out; + margin-left: 20px; } + @media (prefers-reduced-motion: reduce) { + .az-header-right .btn-buy { + transition: none; } } + .az-header-right .btn-buy:hover, .az-header-right .btn-buy:focus { + background-color: #452efa; } + +.az-header-search-link { + font-size: 18px; + color: #596882; + line-height: 1; + margin-right: 15px; } + +.az-header-arrow { + font-size: 27px; + color: #1c273c; + display: inline-block; + line-height: 0; } + .az-header-arrow i { + line-height: 0; } + .az-header-arrow:hover, .az-header-arrow:focus { + color: #596882; } + +.az-header-message, +.az-header-notification { + position: relative; } + .az-header-message > a, + .az-header-notification > a { + display: block; + font-size: 24px; + color: #1c273c; + position: relative; + line-height: .9; + outline: none; } + .az-header-message > a.new::before, + .az-header-notification > a.new::before { + content: ''; + position: absolute; + top: -2px; + right: 2px; + width: 7px; + height: 7px; + background-color: #dc3545; + border-radius: 100%; } + +.az-header-notification { + margin-left: 15px; } + .az-header-notification > a::after { + content: ''; + position: absolute; + top: 47px; + left: 50%; + margin-left: -7px; + width: 14px; + height: 14px; + border: 2px solid transparent; + border-top-color: #cdd4e0; + border-left-color: #cdd4e0; + transform: rotate(45deg); + background-color: #fff; + z-index: 901; + display: none; } + @media (min-width: 992px) { + .az-header-notification > a::after { + bottom: -36px; } } + .az-header-notification .dropdown-menu { + background-color: #fff; + width: 100%; + position: fixed; + top: 0; + left: 0; + right: 0; + bottom: 0; + padding: 15px 20px; + border-width: 0; + margin-top: 0; + z-index: 900; + border-radius: 0; } + @media (min-width: 576px) { + .az-header-notification .dropdown-menu { + width: 300px; + position: absolute; + top: 52px; + left: auto; + right: -10px; + bottom: auto; + padding: 20px 20px 15px; + border-color: #cdd4e0; + border-width: 2px; } } + .az-header-notification .dropdown-footer { + text-align: center; + padding-top: 10px; + font-size: 13px; + border-top: 1px dotted #b4bdce; } + @media (min-width: 576px) { + .az-header-notification.show > a::after { + display: block; } } + .az-header-notification.show .dropdown-menu { + display: block; } + +.az-notification-title { + font-size: 18px; + font-weight: 700; + color: #1c273c; + margin-bottom: 5px; + line-height: 1; } + +.az-notification-text { + font-size: 13px; + margin-bottom: 15px; } + +.az-notification-list .media { + padding: 10px 0; + position: relative; } + .az-notification-list .media + .media { + border-top: 1px dotted #b4bdce; } + .az-notification-list .media.new { + color: #1c273c; } + .az-notification-list .media:hover, .az-notification-list .media:focus { + cursor: pointer; + z-index: 1; } + .az-notification-list .media:hover::before, .az-notification-list .media:focus::before { + content: ''; + position: absolute; + top: -1px; + left: -20px; + bottom: -1px; + right: -20px; + background-color: #f4f5f8; + border-top: 1px solid #cdd4e0; + border-bottom: 1px solid #cdd4e0; + z-index: -1; } + +.az-notification-list .media-body { + margin-left: 15px; + font-size: 13px; } + .az-notification-list .media-body p { + margin-bottom: 5px; + line-height: 1.3; } + .az-notification-list .media-body strong { + font-weight: 500; } + .az-notification-list .media-body span { + display: block; + font-size: 11px; + color: #97a3b9; } + +.az-profile-menu { + position: relative; + margin-left: 15px; } + .az-profile-menu > .az-img-user { + outline: none; + width: 32px; + height: 32px; } + .az-profile-menu > .az-img-user::before { + content: ''; + position: absolute; + bottom: -33px; + left: 50%; + margin-left: -7px; + width: 14px; + height: 14px; + border: 2px solid transparent; + border-top-color: #cdd4e0; + border-left-color: #cdd4e0; + transform: rotate(45deg); + background-color: #fff; + z-index: 901; + display: none; } + .az-profile-menu > .az-img-user::after { + display: none; } + .az-profile-menu .dropdown-menu { + background-color: #fff; + width: 100%; + position: fixed; + top: 0; + left: 0; + right: 0; + bottom: 0; + padding: 15px 20px 5px; + border-width: 0; + margin-top: 0; + z-index: 900; + border-radius: 0; } + @media (min-width: 576px) { + .az-profile-menu .dropdown-menu { + padding-top: 20px; + position: absolute; + top: 56px; + left: auto; + right: -10px; + bottom: auto; + width: 230px; + border-color: #cdd4e0; + border-width: 2px; } } + .az-profile-menu .dropdown-item { + position: relative; + padding: 0; + height: 38px; + display: flex; + align-items: center; + font-size: 13px; + color: #596882; } + .az-profile-menu .dropdown-item i { + font-size: 24px; + margin-right: 10px; + width: 24px; + text-align: center; } + .az-profile-menu .dropdown-item i.typcn { + line-height: .9; } + .az-profile-menu .dropdown-item:hover, .az-profile-menu .dropdown-item:focus { + background-color: transparent; + color: #5b47fb; } + .az-profile-menu .dropdown-item + .dropdown-item { + border-top: 1px dotted #b4bdce; } + .az-profile-menu .dropdown-item:last-child { + margin-bottom: 10px; } + @media (min-width: 576px) { + .az-profile-menu.show .az-img-user::before { + display: block; } } + .az-profile-menu.show .dropdown-menu { + display: block; } + +.az-header-profile { + display: flex; + flex-direction: column; + align-items: center; + padding: 20px; } + .az-header-profile .az-img-user { + width: 120px; + height: 120px; + margin-bottom: 20px; } + @media (min-width: 576px) { + .az-header-profile .az-img-user { + width: 80px; + height: 80px; } } + .az-header-profile .az-img-user::after { + display: none; } + .az-header-profile h6 { + font-size: 24px; + font-weight: 700; + color: #1c273c; + margin-bottom: 0; } + @media (min-width: 576px) { + .az-header-profile h6 { + font-size: 18px; } } + .az-header-profile span { + display: block; + font-size: 13px; } + +.az-header-sticky { + position: fixed; + top: 0; + left: 0; + right: 0; + z-index: 1000; } + +/* ###### 6.5 Iconbar ###### */ +@media (max-width: 991.98px) { + .az-iconbar-show .az-iconbar { + display: flex; } + .az-iconbar-show .az-iconbar-aside { + display: block; } } + +.az-iconbar { + width: 64px; + display: none; + flex-direction: column; + align-items: center; + padding: 20px 0; + background-color: #fff; + position: fixed; + top: 0; + left: 0; + height: 100%; + background-color: #fff; + z-index: 500; } + @media (min-width: 992px) { + .az-iconbar { + display: flex; } } + .az-iconbar .nav { + flex: 1; + flex-direction: column; + align-items: center; + padding: 5px 0; } + .az-iconbar .nav-link { + position: relative; + padding: 0; + color: #031b4e; + width: 40px; + height: 40px; + display: flex; + align-items: center; + justify-content: center; } + .az-iconbar .nav-link i { + font-size: 28px; } + .az-iconbar .nav-link i.typcn { + line-height: 1; } + .az-iconbar .nav-link i.typcn::before { + width: auto; } + .az-iconbar .nav-link i.typcn-device-laptop, .az-iconbar .nav-link i.typcn-th-large-outline { + font-size: 25px; } + .az-iconbar .nav-link i.fa-desktop { + font-size: 23px; } + .az-iconbar .nav-link:hover, .az-iconbar .nav-link:focus { + color: #596882; } + .az-iconbar .nav-link.active { + color: #5b47fb; } + .az-iconbar .nav-link + .nav-link { + margin-top: 10px; } + +.az-iconbar-logo { + width: 100%; + display: flex; + align-items: center; + justify-content: center; + font-size: 32px; + line-height: .9; + color: #1c273c; + flex-shrink: 0; + margin-bottom: 20px; + position: relative; } + .az-iconbar-logo::after { + content: ''; + position: absolute; + bottom: 6px; + left: 20px; + height: 3px; + width: 24px; + background-color: #5b47fb; + border-radius: 2px; } + .az-iconbar-logo:hover, .az-iconbar-logo:focus { + color: #1c273c; } + +.az-iconbar-bottom { + flex-shrink: 0; + display: flex; + flex-direction: column; + align-items: center; } + +.az-iconbar-help { + line-height: 0; + font-size: 22px; + color: #7987a1; + margin-bottom: 20px; } + .az-iconbar-help:hover, .az-iconbar-help:focus { + color: #1c273c; } + +.az-iconbar-aside { + width: 230px; + height: 100%; + background-color: #fff; + border-right: 1px solid #b4bdce; + position: fixed; + top: 0; + left: 64px; + overflow-y: auto; + z-index: 600; + display: none; } + @media (min-width: 1200px) { + .az-iconbar-aside { + border-right: 0; + z-index: 500; } } + @media (min-width: 992px) { + .az-iconbar-aside.show { + display: block; } } + @media (min-width: 1200px) { + .az-iconbar-aside.show + .az-content { + margin-left: 294px; } } + +.az-iconbar-header { + display: flex; + align-items: center; + justify-content: space-between; + padding: 20px; + padding-left: 0; } + .az-iconbar-header .az-logo { + line-height: 1; } + +.az-iconbar-toggle-menu { + display: block; + position: relative; + line-height: 0; + color: #1c273c; + font-size: 28px; + opacity: .5; } + .az-iconbar-toggle-menu:hover, .az-iconbar-toggle-menu:focus { + opacity: 1; + color: #1c273c; } + .az-iconbar-toggle-menu i:first-child { + display: none; } + @media (min-width: 1200px) { + .az-iconbar-toggle-menu { + font-size: 24px; } + .az-iconbar-toggle-menu::before { + content: ''; + position: absolute; + top: 3px; + bottom: 3px; + left: -1px; + border-left: 2px solid #1c273c; } + .az-iconbar-toggle-menu i:first-child { + display: block; } + .az-iconbar-toggle-menu i:last-child { + display: none; } } + +.az-iconbar-body { + padding: 20px; + padding-left: 0; + height: calc(100vh - 68px); } + .az-iconbar-body .nav { + flex-direction: column; + border-left: 2px solid #e3e7ed; + padding-top: 10px; + padding-left: 20px; } + .az-iconbar-body .nav-item { + position: relative; + display: block; } + .az-iconbar-body .nav-item + .nav-item { + margin-top: -1px; + border-top: 1px dotted #cdd4e0; } + .az-iconbar-body .nav-item.active .nav-link { + color: #5b47fb; } + .az-iconbar-body .nav-item.active .nav-link i { + color: #5b47fb; } + .az-iconbar-body .nav-item.show .nav-sub { + display: block; } + .az-iconbar-body .nav-link { + position: relative; + color: #031b4e; + font-size: 13px; + padding: 0; + display: flex; + align-items: center; + height: 38px; } + .az-iconbar-body .nav-link i { + color: #97a3b9; + font-size: 16px; + font-weight: 400; + line-height: 0; + margin-right: 10px; } + .az-iconbar-body .nav-link i.typcn { + line-height: .9; } + .az-iconbar-body .nav-link i.typcn::before { + width: auto; } + .az-iconbar-body .nav-link:hover, .az-iconbar-body .nav-link:focus { + color: #5b47fb; } + .az-iconbar-body .nav-link:hover i, .az-iconbar-body .nav-link:focus i { + color: #5b47fb; } + .az-iconbar-body .nav-link.with-sub { + justify-content: space-between; } + .az-iconbar-body .nav-link.with-sub::after { + content: '\f3d0'; + font-family: 'Ionicons'; + font-size: 11px; + font-weight: 400; + display: inline-block; + position: relative; + margin-left: auto; + color: #97a3b9; } + @media (min-width: 992px) { + .az-iconbar-body .nav-link.with-sub::after { + margin-left: 4px; + font-size: 12px; } } + .az-iconbar-body .nav-sub { + list-style: none; + padding: 0; + margin: 0; + border-top: 1px dotted #cdd4e0; + display: none; } + .az-iconbar-body .nav-sub .nav-sub-item { + position: relative; + display: block; + margin-left: 15px; } + .az-iconbar-body .nav-sub .nav-sub-item + .nav-sub-item { + border-top: 1px dotted #cdd4e0; } + .az-iconbar-body .nav-sub .nav-sub-item.active > .nav-sub-link { + color: #5b47fb; } + .az-iconbar-body .nav-sub .nav-sub-link { + display: flex; + align-items: center; + height: 36px; + color: #031b4e; } + .az-iconbar-body .nav-sub .nav-sub-link:hover, .az-iconbar-body .nav-sub .nav-sub-link:focus { + color: #5b47fb; } + +.az-iconbar-title { + font-size: 20px; + font-weight: 700; + color: #1c273c; + margin-bottom: 10px; + line-height: 1; } + +.az-iconbar-text { + display: block; + font-size: 12px; + color: #7987a1; + margin-bottom: 12px; } + +.az-iconbar-pane { + margin-bottom: 20px; + display: none; } + .az-iconbar-pane.show { + display: block; } + +/* ###### 6.6 Navbar ###### */ +@media (max-width: 991.98px) { + .az-navbar-show { + overflow: hidden; } + .az-navbar-show .az-navbar-backdrop { + visibility: visible; + opacity: 1; } + .az-navbar-show .az-navbar { + transform: translateX(0); + visibility: visible; } } + +.az-navbar-backdrop { + position: fixed; + top: 0; + left: 0; + right: 0; + bottom: 0; + background-color: rgba(0, 0, 0, 0.45); + z-index: 900; + visibility: hidden; + opacity: 0; + transition: all 0.4s; } + @media (prefers-reduced-motion: reduce) { + .az-navbar-backdrop { + transition: none; } } + +.az-navbar { + position: fixed; + top: 0; + left: 0; + bottom: 0; + width: 240px; + overflow-y: auto; + background-color: #fff; + z-index: 1000; + visibility: hidden; + transform: translateX(-240px); + transition: all 0.4s; } + @media (prefers-reduced-motion: reduce) { + .az-navbar { + transition: none; } } + @media (min-width: 992px) { + .az-navbar { + position: relative; + top: auto; + left: auto; + bottom: auto; + width: auto; + padding: 0; + border-right: 0; + overflow-y: inherit; + display: block; + border-bottom: 1px solid rgba(28, 39, 60, 0.12); + visibility: visible; + transform: none; + z-index: auto; } } + .az-navbar > .container, + .az-navbar > .container-fluid, + .az-navbar > .container-sm, + .az-navbar > .container-md, + .az-navbar > .container-lg, + .az-navbar > .container-xl { + display: flex; + flex-direction: column; } + @media (max-width: 991.98px) { + .az-navbar > .container, + .az-navbar > .container-fluid, + .az-navbar > .container-sm, + .az-navbar > .container-md, + .az-navbar > .container-lg, + .az-navbar > .container-xl { + padding: 0; } } + @media (min-width: 992px) { + .az-navbar > .container, + .az-navbar > .container-fluid, + .az-navbar > .container-sm, + .az-navbar > .container-md, + .az-navbar > .container-lg, + .az-navbar > .container-xl { + flex-direction: row; + align-items: center; + height: 48px; } } + @media (min-width: 992px) { + .az-navbar > .container { + padding: 0; } } + @media (min-width: 992px) { + + .az-navbar > .container-fluid, + .az-navbar > .container-sm, + .az-navbar > .container-md, + .az-navbar > .container-lg, + .az-navbar > .container-xl { + padding-left: 20px; + padding-right: 20px; } } + .az-navbar .nav { + flex-direction: column; + padding: 20px; + margin-bottom: 20px; } + @media (min-width: 992px) { + .az-navbar .nav { + flex-direction: row; + align-items: center; + margin-bottom: 0; + padding: 0; } } + .az-navbar .nav-label { + font-size: 10px; + font-weight: 500; + text-transform: uppercase; + color: #7987a1; + letter-spacing: 1px; + display: block; + margin-bottom: 10px; } + @media (min-width: 992px) { + .az-navbar .nav-label { + display: none; } } + .az-navbar .nav-item { + position: relative; } + .az-navbar .nav-item + .nav-item { + border-top: 1px dotted #e3e7ed; } + @media (min-width: 992px) { + .az-navbar .nav-item + .nav-item { + border-top: 0; + margin-left: 15px; + padding-left: 15px; + border-left: 1px dotted #e3e7ed; } } + @media (min-width: 1200px) { + .az-navbar .nav-item + .nav-item { + margin-left: 20px; + padding-left: 20px; } } + .az-navbar .nav-item.active .nav-link { + color: #5b47fb; } + @media (min-width: 992px) { + .az-navbar .nav-item.show .nav-link::before { + display: block; } } + .az-navbar .nav-item.show > .nav-sub { + display: block; } + .az-navbar .nav-item-mega { + position: static; } + .az-navbar .nav-link { + padding: 0; + color: #1c273c; + font-size: 15px; + font-weight: 500; + position: relative; + display: flex; + align-items: center; + height: 42px; + outline: none; } + @media (min-width: 992px) { + .az-navbar .nav-link { + height: auto; + font-size: 14px; } } + .az-navbar .nav-link i { + font-size: 26px; + margin-right: 10px; } + @media (min-width: 992px) { + .az-navbar .nav-link i { + margin-right: 8px; + font-size: 22px; } } + .az-navbar .nav-link i.typcn { + line-height: 1; + width: 20px; } + @media (min-width: 992px) { + .az-navbar .nav-link i.typcn { + line-height: .9; + width: auto; } } + .az-navbar .nav-link i.typcn::before { + width: auto; } + .az-navbar .nav-link.with-sub::after { + content: '\f3d0'; + font-family: 'Ionicons'; + font-size: 11px; + font-weight: 400; + display: inline-block; + position: relative; + margin-left: auto; + color: #97a3b9; } + @media (min-width: 992px) { + .az-navbar .nav-link.with-sub::after { + margin-left: 4px; } } + .az-navbar .nav-link.with-sub::before { + content: ''; + position: absolute; + top: 39px; + left: 50%; + margin-left: -7px; + width: 15px; + height: 15px; + border: 2px solid transparent; + border-top-color: rgba(28, 39, 60, 0.12); + border-left-color: rgba(28, 39, 60, 0.12); + transform: rotate(45deg); + background-color: #fff; + z-index: 901; + display: none; } + .az-navbar .nav-sub { + display: none; + border-top: 1px dotted #e3e7ed; + list-style: none; + padding: 0; + margin: 0; } + @media (min-width: 992px) { + .az-navbar .nav-sub { + position: absolute; + top: 44.5px; + left: 0; + width: 200px; + background-color: #fff; + border: 2px solid rgba(28, 39, 60, 0.12); + padding: 8px 20px; + z-index: 900; } } + .az-navbar .nav-sub-item { + position: relative; + display: block; + margin-left: 30px; } + @media (min-width: 992px) { + .az-navbar .nav-sub-item { + margin-left: 0; } } + .az-navbar .nav-sub-item + .nav-sub-item { + border-top: 1px dotted #e3e7ed; } + .az-navbar .nav-sub-item > .nav-sub { + left: 176px; + top: -10px; + display: none; } + @media (max-width: 991.98px) { + .az-navbar .nav-sub-item > .nav-sub > .nav-sub-item { + margin-left: 37px; } + .az-navbar .nav-sub-item > .nav-sub > .nav-sub-item > .nav-sub-link { + padding-left: 10px; } } + .az-navbar .nav-sub-item.show > .nav-sub { + display: block; } + .az-navbar .nav-sub-item.active > .nav-sub-link { + color: #5b47fb; } + .az-navbar .nav-sub-link { + position: relative; + font-size: .875rem; + color: #596882; + display: flex; + align-items: center; + height: 34px; } + @media (min-width: 992px) { + .az-navbar .nav-sub-link { + font-size: .8125rem; + height: 36px; } } + .az-navbar .nav-sub-link:hover, .az-navbar .nav-sub-link:focus { + color: #5b47fb; + outline: none; } + .az-navbar .nav-sub-link.with-sub { + justify-content: space-between; } + .az-navbar .nav-sub-link.with-sub::after { + content: '\f3d0'; + font-family: 'Ionicons'; + font-size: 11px; + font-weight: 400; + display: inline-block; + position: relative; + margin-left: auto; + color: #97a3b9; } + @media (min-width: 992px) { + .az-navbar .nav-sub-link.with-sub::after { + margin-left: 4px; + content: '\f3d1'; + font-size: 12px; } } + .az-navbar .nav-sub-mega { + top: 57px; + left: 0; + right: 0; + background-color: transparent; + padding: 7px 0; + border: 0; + width: auto; + border-top: 1px dotted #e3e7ed; + pointer-events: none; } + @media (min-width: 992px) { + .az-navbar .nav-sub-mega { + padding: 0 25px; + border-top: 0; } } + .az-navbar .nav-sub-mega .container, + .az-navbar .nav-sub-mega .container-fluid, + .az-navbar .nav-sub-mega .container-sm, + .az-navbar .nav-sub-mega .container-md, + .az-navbar .nav-sub-mega .container-lg, + .az-navbar .nav-sub-mega .container-xl { + padding: 0; + pointer-events: auto; } + @media (max-width: 991.98px) { + .az-navbar .nav-sub-mega .container, + .az-navbar .nav-sub-mega .container-fluid, + .az-navbar .nav-sub-mega .container-sm, + .az-navbar .nav-sub-mega .container-md, + .az-navbar .nav-sub-mega .container-lg, + .az-navbar .nav-sub-mega .container-xl { + max-width: none; } } + @media (min-width: 992px) { + .az-navbar .nav-sub-mega .container, + .az-navbar .nav-sub-mega .container-fluid, + .az-navbar .nav-sub-mega .container-sm, + .az-navbar .nav-sub-mega .container-md, + .az-navbar .nav-sub-mega .container-lg, + .az-navbar .nav-sub-mega .container-xl { + display: flex; + background-color: #fff; + border: 2px solid rgba(28, 39, 60, 0.12); } } + @media (min-width: 992px) { + .az-navbar .nav-sub-mega .container > div, + .az-navbar .nav-sub-mega .container-fluid > div, + .az-navbar .nav-sub-mega .container-sm > div, + .az-navbar .nav-sub-mega .container-md > div, + .az-navbar .nav-sub-mega .container-lg > div, + .az-navbar .nav-sub-mega .container-xl > div { + display: flex; + padding: 20px; + flex: 1; + margin-top: 0; } } + @media (min-width: 1200px) { + .az-navbar .nav-sub-mega .container > div, + .az-navbar .nav-sub-mega .container-fluid > div, + .az-navbar .nav-sub-mega .container-sm > div, + .az-navbar .nav-sub-mega .container-md > div, + .az-navbar .nav-sub-mega .container-lg > div, + .az-navbar .nav-sub-mega .container-xl > div { + padding: 20px 25px; } } + .az-navbar .nav-sub-mega .container > div + div, + .az-navbar .nav-sub-mega .container-fluid > div + div, + .az-navbar .nav-sub-mega .container-sm > div + div, + .az-navbar .nav-sub-mega .container-md > div + div, + .az-navbar .nav-sub-mega .container-lg > div + div, + .az-navbar .nav-sub-mega .container-xl > div + div { + margin-top: 25px; } + @media (min-width: 992px) { + .az-navbar .nav-sub-mega .container > div + div, + .az-navbar .nav-sub-mega .container-fluid > div + div, + .az-navbar .nav-sub-mega .container-sm > div + div, + .az-navbar .nav-sub-mega .container-md > div + div, + .az-navbar .nav-sub-mega .container-lg > div + div, + .az-navbar .nav-sub-mega .container-xl > div + div { + margin-top: 0; + border-left: 1px solid rgba(28, 39, 60, 0.05); } } + .az-navbar .nav-sub-mega .nav { + min-width: 120px; + flex-direction: column; + align-items: stretch; + padding: 0; + margin: 0; } + @media (min-width: 1200px) { + .az-navbar .nav-sub-mega .nav { + min-width: 140px; } } + @media (max-width: 991.98px) { + .az-navbar .nav-sub-mega .nav + .nav .nav-sub-item:first-child { + margin-top: 6px; + padding-top: 6px; + border-top: 1px dotted #e3e7ed; } } + @media (min-width: 992px) { + .az-navbar .nav-sub-mega .nav + .nav { + margin-left: 20px; + margin-top: 31px; + padding-top: 0; + border-top: 0; } } + @media (min-width: 1200px) { + .az-navbar .nav-sub-mega .nav + .nav { + margin-left: 25px; } } + .az-navbar .nav-sub-mega .nav li:not(.nav-sub-item) { + display: block; + text-transform: uppercase; + font-size: 12px; + font-weight: 700; + color: #1c273c; + letter-spacing: .5px; + margin-bottom: 10px; + margin-top: 30px; + margin-left: 30px; } + @media (min-width: 992px) { + .az-navbar .nav-sub-mega .nav li:not(.nav-sub-item) { + margin-bottom: 15px; + margin-left: 0; } } + .az-navbar .nav-sub-mega .nav li:not(.nav-sub-item):first-of-type { + margin-top: 0; } + .az-navbar .nav-sub-mega .nav-sub-item + .nav-sub-item { + padding-top: 7px; + margin-top: 7px; } + .az-navbar .nav-sub-mega .nav-sub-link { + height: auto; } + +.az-navbar-header { + display: flex; + align-items: center; + justify-content: space-between; + padding: 0 20px; + border-bottom: 1px solid #e3e7ed; + height: 60px; } + @media (min-width: 992px) { + .az-navbar-header { + display: none; } } + +.az-navbar-search { + position: relative; + padding: 0 20px; + border-bottom: 1px solid #e3e7ed; } + @media (min-width: 992px) { + .az-navbar-search { + display: none; } } + .az-navbar-search .form-control { + border-width: 0; + padding: 0; } + .az-navbar-search .form-control:focus { + box-shadow: none !important; + border-color: #cdd4e0; } + .az-navbar-search .btn { + background-color: transparent; + position: absolute; + top: 0; + right: 0; + height: 38px; + padding-left: 20px; + padding-right: 20px; + font-size: 16px; + line-height: 1; } + +/* ###### 6.7 Navbar Variant ###### */ +.az-navbar-two .nav-item.active { + position: relative; } + .az-navbar-two .nav-item.active::before { + content: ''; + position: absolute; } + @media (min-width: 992px) { + .az-navbar-two .nav-item.active::before { + top: 33px; + left: 0; + right: 12px; + bottom: auto; + border-bottom: 2px solid #5b47fb; + z-index: 5; } } + +.az-navbar-two .nav-item.show .nav-link::before { + display: none; } + +.az-navbar-two .nav-link { + text-transform: uppercase; + font-size: 13px; + font-weight: 700; } + +.az-navbar-two .nav-sub { + border-width: 1px; + top: 35px; + border-top-width: 0; } + +.az-navbar-two .nav-sub-item > .nav-sub { + left: 178px; + top: -8px; + border-top-width: 1px; } + +.az-navbar-two .nav-sub-mega { + top: 48px; } + +.az-navbar-three .nav-item { + display: block; } + .az-navbar-three .nav-item + .nav-item { + border-left-width: 0; + padding-left: 0; } + @media (min-width: 992px) { + .az-navbar-three .nav-item + .nav-item { + margin-left: 25px; } } + .az-navbar-three .nav-item.show .nav-link::before { + display: none; } + .az-navbar-three .nav-item.active .nav-link { + color: #5b47fb; + font-weight: 700; } + +.az-navbar-three .nav-link { + text-transform: uppercase; + font-size: 13px; + font-weight: 700; + color: #3b4863; + position: relative; } + @media (min-width: 992px) { + .az-navbar-three .nav-link { + display: block; } } + .az-navbar-three .nav-link:hover, .az-navbar-three .nav-link:focus { + color: #1c273c; } + @media (min-width: 992px) { + .az-navbar-three .nav-link i { + display: none; } } + +.az-navbar-three .nav-sub { + top: 35px; + border-width: 0; + padding-bottom: 5px; } + @media (min-width: 992px) { + .az-navbar-three .nav-sub { + box-shadow: 0 0 0 2px rgba(180, 189, 206, 0.5); + padding-bottom: 8px; } } + +.az-navbar-three .nav-sub-item + .nav-sub-item { + border-top: 0; } + +.az-navbar-three .nav-sub-item .nav-sub { + top: -8px; + left: 182px; } + +.az-navbar-three .nav-sub-link { + height: 30px; } + @media (min-width: 992px) { + .az-navbar-three .nav-sub-link { + height: 36px; } } + +/* ###### 6.8 Sidebar ###### */ +@media (max-width: 991.98px) { + .az-sidebar-show { + overflow: hidden; } + .az-sidebar-show .az-sidebar { + display: flex; + overflow-y: auto; + transform: translateX(0); + visibility: visible; } + .az-sidebar-show .az-content { + transform: translateX(240px); } + .az-sidebar-show .az-navbar-backdrop { + visibility: visible; + opacity: 1; } } + +@media (min-width: 992px) { + .az-sidebar-hide .az-sidebar { + display: none; } + .az-sidebar-hide .az-sidebar-sticky + .az-content { + margin-left: 0; } } + +.az-body-sidebar { + display: block; } + @media (min-width: 992px) { + .az-body-sidebar { + display: flex; + flex-direction: row; } } + .az-body-sidebar .az-content { + flex: 1; + padding: 0; + display: flex; + flex-direction: column; } + @media (min-width: 992px) { + .az-body-sidebar .az-header .container-fluid, .az-body-sidebar .az-header .container-sm, .az-body-sidebar .az-header .container-md, .az-body-sidebar .az-header .container-lg, .az-body-sidebar .az-header .container-xl { + padding-left: 20px; + padding-right: 20px; } } + .az-body-sidebar .az-content-header { + height: auto; + padding: 20px; + margin-bottom: 0; } + .az-body-sidebar .az-content-body { + padding: 0 20px 20px; } + .az-body-sidebar .az-footer { + margin-top: auto; } + +.az-sidebar { + width: 240px; + flex-direction: column; + flex-shrink: 0; + border-right: 0 solid #cdd4e0; + transform: translateX(-240px); + visibility: hidden; + transition: all 0.4s; } + @media (prefers-reduced-motion: reduce) { + .az-sidebar { + transition: none; } } + @media (min-width: 992px) and (max-width: 1199.98px) { + .az-sidebar { + width: 220px; } } + @media (max-width: 991.98px) { + .az-sidebar { + position: fixed; + top: 0; + left: 0; + bottom: 0; + z-index: 1000; + background-color: #fff; } } + @media (min-width: 992px) { + .az-sidebar { + position: relative; + display: flex; + transform: none; + z-index: 1050; + border-right-width: 1px; + visibility: visible; } } + +.az-sidebar-sticky { + position: fixed; + top: 0; + left: 0; + bottom: 0; } + .az-sidebar-sticky .az-sidebar-body { + height: calc(100vh - 122px); + position: relative; } + @media (min-width: 992px) { + .az-sidebar-sticky + .az-content { + margin-left: 220px; } } + @media (min-width: 1200px) { + .az-sidebar-sticky + .az-content { + margin-left: 240px; } } + +.az-sidebar-header { + flex-shrink: 0; + height: 64px; + display: flex; + align-items: center; + padding: 0 20px; } + +.az-sidebar-loggedin { + padding: 10px 20px; + display: flex; + flex-shrink: 0; } + .az-sidebar-loggedin .az-img-user { + width: 36px; + height: 36px; } + .az-sidebar-loggedin .media-body { + margin-left: 12px; } + .az-sidebar-loggedin .media-body h6 { + font-weight: 700; + font-size: 14px; + color: #1c273c; + margin-bottom: 2px; } + .az-sidebar-loggedin .media-body span { + display: block; + color: #7987a1; } + +.az-sidebar-body { + padding: 20px; } + @media (min-width: 1200px) { + .az-sidebar-body { + padding: 20px; } } + .az-sidebar-body .nav { + flex-direction: column; } + .az-sidebar-body .nav-label { + text-transform: uppercase; + font-size: 10px; + font-weight: 500; + letter-spacing: .5px; + color: #7987a1; + padding-bottom: 5px; + border-bottom: 1px dotted #cdd4e0; } + .az-sidebar-body .nav-item { + position: relative; + display: block; } + .az-sidebar-body .nav-item.active .nav-link { + color: #5b47fb; } + .az-sidebar-body .nav-item.show > .nav-sub { + display: block; } + .az-sidebar-body .nav-item + .nav-item { + margin-top: -1px; } + .az-sidebar-body .nav-item + .nav-item::before { + content: ''; + position: absolute; + top: 0; + left: 30px; + right: 0; + border-top: 1px dotted #cdd4e0; } + .az-sidebar-body .nav-link { + height: 40px; + display: flex; + align-items: center; + padding: 0; + font-weight: 500; + font-size: 14px; + color: #1c273c; + padding-bottom: 2px; } + .az-sidebar-body .nav-link i { + font-size: 24px; + line-height: 0; + margin-right: 5px; + width: 24px; } + .az-sidebar-body .nav-link i.typcn { + line-height: .9; } + .az-sidebar-body .nav-link i.typcn::before { + width: auto; } + .az-sidebar-body .nav-link.with-sub { + position: relative; } + .az-sidebar-body .nav-link.with-sub::after { + content: '\f3d0'; + font-family: 'Ionicons'; + font-weight: 400; + font-size: 12px; + position: absolute; + top: 10px; + right: 0; + color: #cdd4e0; } + .az-sidebar-body .nav-sub { + list-style: none; + padding: 0; + display: none; + padding: 0 0 10px 21px; + margin: 0 0 0 7px; + border-left: 2px solid #e3e7ed; } + .az-sidebar-body .nav-sub-item .nav-sub { + padding: 0 0 0 12px; + border-left-width: 1px; + margin-left: 0; } + .az-sidebar-body .nav-sub-item .nav-sub .nav-sub-link { + height: auto; + padding: 7px 0; } + .az-sidebar-body .nav-sub-item.active > .nav-sub-link { + color: #5b47fb; } + .az-sidebar-body .nav-sub-item.show .nav-sub { + display: block; } + .az-sidebar-body .nav-sub-link { + height: 34px; + display: flex; + align-items: center; + color: #031b4e; + font-size: 13px; } + .az-sidebar-body .nav-sub-link:hover, .az-sidebar-body .nav-sub-link:focus { + color: #5b47fb; } + .az-sidebar-body .nav-sub-link.with-sub { + justify-content: space-between; } + .az-sidebar-body .nav-sub-link.with-sub::after { + content: '\f3d0'; + font-family: 'Ionicons'; + font-size: 12px; + font-weight: 400; + display: inline-block; + position: relative; + margin-left: auto; + color: #cdd4e0; } + @media (min-width: 992px) { + .az-sidebar-body .nav-sub-link.with-sub::after { + margin-left: 4px; + font-size: 12px; } } + .az-sidebar-body .nav-sub-link + .nav-sub-link { + border-top: 1px dotted #cdd4e0; } + +/* ############### TEMPLATE STYLES ############### */ +/* ###### 7.1 Demo ###### */ +.az-home-slider { + position: relative; + z-index: 4; + width: 100%; + height: 600px; + max-height: 1800px; + overflow: hidden; + background-color: #1904be; } + @media (min-width: 576px) { + .az-home-slider { + height: 600px; } } + @media (min-width: 1200px) { + .az-home-slider { + height: 100vh; + max-height: 780px; } } + @media (min-width: 1440px) { + .az-home-slider { + max-height: 900px; } } + @media (min-width: 1680px) { + .az-home-slider { + max-height: 1050px; } } + @media (min-width: 1920px) { + .az-home-slider { + max-height: 1200px; } } + @media (min-width: 2560px) { + .az-home-slider { + max-height: 1600px; } } + @media (min-width: 2880px) { + .az-home-slider { + max-height: 1800px; } } + .az-home-slider .chart-wrapper { + position: absolute; + top: 0; + left: 0; + right: 0; + bottom: -20px; + z-index: 3; + display: flex; + align-items: flex-end; + opacity: .2; } + @media (min-width: 768px) { + .az-home-slider .chart-wrapper { + opacity: 1; } } + .az-home-slider .chart-wrapper .flot-chart { + width: 100%; + height: 400px; } + @media (min-width: 992px) { + .az-home-slider .chart-wrapper .flot-chart { + height: 500px; } } + .az-home-slider .card-columns { + column-gap: 5px; + column-count: 3; + width: 500px; + transform: rotate(37deg); + position: absolute; + top: 9%; + left: 24%; + z-index: 4; + opacity: .25; } + @media (min-width: 576px) { + .az-home-slider .card-columns { + width: 120%; + left: 16%; + transform: rotate(44deg); } } + @media (min-width: 768px) { + .az-home-slider .card-columns { + transform: rotate(45deg); + width: 100%; + top: 0; + left: auto; + right: -45%; + opacity: 1; } } + @media (min-width: 992px) { + .az-home-slider .card-columns { + width: 80%; + top: -10%; + right: -30%; + column-gap: 10px; } } + @media (min-width: 1200px) { + .az-home-slider .card-columns { + width: 70%; + right: -15%; + top: -15%; } } + @media (min-width: 1300px) { + .az-home-slider .card-columns { + right: -5%; } } + .az-home-slider .card-columns .card { + position: relative; + border-width: 0; + background-color: transparent; + margin-bottom: 5px; } + @media (min-width: 992px) { + .az-home-slider .card-columns .card { + margin-bottom: 10px; } } + +.az-home-content { + position: absolute; + top: 20px; + left: 20px; + z-index: 5; + color: rgba(255, 255, 255, 0.7); + right: 20px; } + @media (min-width: 576px) { + .az-home-content { + top: 40px; + left: 40px; + right: auto; + width: 400px; } } + @media (min-width: 768px) { + .az-home-content { + width: 410px; } } + .az-home-content .az-logo { + font-size: 30px; + font-weight: 700; + display: flex; + line-height: 1; + color: #fff; + margin-bottom: 5px; + text-indent: -1px; + color: #fff; + letter-spacing: -.5px; } + @media (min-width: 576px) { + .az-home-content .az-logo { + font-size: 36px; + letter-spacing: -1px; } } + .az-home-content h5 { + font-size: 12px; + font-weight: 400; + letter-spacing: .2px; + margin-bottom: 25px; } + @media (min-width: 576px) { + .az-home-content h5 { + font-size: 15px; } } + .az-home-content .logo-group { + margin-bottom: 60px; + display: flex; } + .az-home-content .logo-group i { + font-weight: 400; + font-size: 32px; + line-height: .2; } + .az-home-content .logo-group i + i { + margin-left: 10px; } + .az-home-content h1 { + color: #fff; + font-weight: 300; + font-size: 24px; + margin-bottom: 20px; } + @media (min-width: 576px) { + .az-home-content h1 { + font-size: 2.03125rem; } } + .az-home-content p:first-of-type { + font-size: 14px; + line-height: 1.7; + margin-bottom: 25px; } + .az-home-content p:last-of-type { + display: flex; + margin-bottom: 100px; } + .az-home-content p:last-of-type .btn { + flex: 1; + text-transform: uppercase; + font-size: 11px; + font-weight: 500; + min-height: inherit; + letter-spacing: 1px; + padding: 10px 15px; } + @media (min-width: 768px) { + .az-home-content p:last-of-type .btn { + padding: 10px 25px; + flex: none; } } + @media (min-width: 992px) { + .az-home-content p:last-of-type .btn { + flex: 1; } } + .az-home-content p:last-of-type .btn + .btn { + margin-left: 5px; } + .az-home-content nav:last-child { + display: flex; } + .az-home-content nav:last-child a { + font-size: 24px; + color: rgba(255, 255, 255, 0.5); } + .az-home-content nav:last-child a:hover, .az-home-content nav:last-child a:focus { + color: #fff; } + .az-home-content nav:last-child a + a { + margin-left: 8px; } + +.az-content-choose-demo { + position: relative; + z-index: 5; + background-color: #0f0373; + color: rgba(255, 255, 255, 0.5); + padding: 0; } + .az-content-choose-demo .container { + display: block; + padding: 20px; } + @media (min-width: 576px) { + .az-content-choose-demo .container { + padding: 40px; } } + @media (min-width: 992px) { + .az-content-choose-demo .container { + padding: 100px 40px; } } + @media (min-width: 1200px) { + .az-content-choose-demo .container { + padding: 100px 0; } } + .az-content-choose-demo .title-label { + text-transform: uppercase; + letter-spacing: 1px; + font-size: 10px; + color: #5b47fb; + margin-bottom: 3px; } + @media (min-width: 768px) { + .az-content-choose-demo .title-label { + font-size: 11px; } } + .az-content-choose-demo .title { + font-size: 20px; + font-weight: 400; + color: #fff; + letter-spacing: -.5px; + margin-bottom: 10px; } + @media (min-width: 768px) { + .az-content-choose-demo .title { + font-size: 30px; } } + .az-content-choose-demo .title-text { + font-weight: 300; + margin-bottom: 20px; } + @media (min-width: 576px) { + .az-content-choose-demo .title-text { + margin-bottom: 40px; } } + @media (min-width: 768px) { + .az-content-choose-demo .title-text { + font-size: 16px; } } + @media (min-width: 992px) { + .az-content-choose-demo .title-text { + margin-bottom: 60px; } } + .az-content-choose-demo .card { + border-width: 0; + margin-bottom: 10px; + height: 200px; + overflow: hidden; + position: relative; } + @media (min-width: 576px) { + .az-content-choose-demo .card { + height: 155px; } } + @media (min-width: 768px) { + .az-content-choose-demo .card { + height: 215px; + margin-bottom: 15px; } } + @media (min-width: 1200px) { + .az-content-choose-demo .card { + height: 255px; } } + .az-content-choose-demo .card img { + transition: all 0.2s ease-in-out; } + @media (prefers-reduced-motion: reduce) { + .az-content-choose-demo .card img { + transition: none; } } + .az-content-choose-demo .card figure { + margin-bottom: 0; } + .az-content-choose-demo .card figure:hover img, .az-content-choose-demo .card figure:focus img { + transform: scale(1.75, 1.75); } + .az-content-choose-demo .card figure:hover figcaption, .az-content-choose-demo .card figure:focus figcaption { + opacity: 1; } + .az-content-choose-demo .card figcaption { + position: absolute; + top: 0; + left: 0; + right: 0; + bottom: 0; + display: flex; + align-items: center; + justify-content: center; + background-color: rgba(25, 4, 190, 0.75); + opacity: 0; + transition: all 0.2s ease-in-out; } + @media (prefers-reduced-motion: reduce) { + .az-content-choose-demo .card figcaption { + transition: none; } } + .az-content-choose-demo .card figcaption .btn { + text-transform: uppercase; + letter-spacing: 1.5px; + font-size: 11px; + font-weight: 500; + min-height: inherit; + padding: 10px 20px; + border-radius: 2px; } + .az-content-choose-demo .card.coming-soon { + display: flex; + align-items: center; + justify-content: center; + color: #1c273c; + background-color: #e3e7ed; } + .az-content-choose-demo .card.coming-soon .typcn { + line-height: .9; + font-size: 48px; + margin-bottom: 10px; } + .az-content-choose-demo .card.coming-soon h6 { + margin-bottom: 0; + text-transform: uppercase; + font-weight: 800; + letter-spacing: 1px; } + .az-content-choose-demo .az-content-label { + color: #7987a1; + margin-bottom: 5px; + letter-spacing: 1px; } + .az-content-choose-demo .az-content-title { + font-size: 15px; + font-weight: 400; + margin-bottom: 0; + color: #fff; } + @media (min-width: 768px) { + .az-content-choose-demo .az-content-title { + font-size: 17px; } } + +.az-footer-demo { + background-color: #0c025b; + color: rgba(255, 255, 255, 0.4); + height: 60px; } + .az-footer-demo .container { + border-top-width: 0; } + .az-footer-demo a { + color: rgba(255, 255, 255, 0.5); } + .az-footer-demo a:hover, .az-footer-demo a:focus { + color: #fff; } + +.btn-icon-list { + display: flex; + align-items: center; } + .btn-icon-list .btn + .btn { + margin-left: 5px; } + +.az-icon-group { + text-align: center; + padding: 20px; + color: #3b4863; } + .az-icon-group i { + line-height: 1; + font-size: 24px; } + @media (min-width: 992px) { + .az-icon-group i { + font-size: 32px; } } + +.modal-content-demo .modal-body h6 { + color: #1c273c; + font-size: 15px; + margin-bottom: 15px; } + +.modal-content-demo .modal-body p { + margin-bottom: 0; } + +.tooltip-static-demo { + text-align: center; + background-color: #e3e7ed; + padding: 20px; } + .tooltip-static-demo .tooltip { + z-index: 0; + opacity: 1; + position: relative; + display: inline-block; + margin: 0 10px; } + .tooltip-static-demo .bs-tooltip-top .arrow, .tooltip-static-demo .bs-tooltip-auto[x-placement^="top"] .arrow, + .tooltip-static-demo .bs-tooltip-bottom .arrow, + .tooltip-static-demo .bs-tooltip-auto[x-placement^="bottom"] .arrow { + left: 50%; + margin-left: -2px; } + .tooltip-static-demo .bs-tooltip-left, .tooltip-static-demo .bs-tooltip-auto[x-placement^="left"], + .tooltip-static-demo .bs-tooltip-right, + .tooltip-static-demo .bs-tooltip-auto[x-placement^="right"] { + margin-top: 5px; } + .tooltip-static-demo .bs-tooltip-left .arrow, .tooltip-static-demo .bs-tooltip-auto[x-placement^="left"] .arrow, + .tooltip-static-demo .bs-tooltip-right .arrow, + .tooltip-static-demo .bs-tooltip-auto[x-placement^="right"] .arrow { + top: 50%; + margin-top: -3px; } + +.popover-static-demo { + background-color: #e3e7ed; + padding-top: 40px; + padding-bottom: 40px; + text-align: center; } + .popover-static-demo .popover { + z-index: 0; + opacity: 1; + position: relative; + display: inline-block; + margin: 0 10px; } + .popover-static-demo .bs-popover-top .arrow, .popover-static-demo .bs-popover-auto[x-placement^="top"] .arrow, + .popover-static-demo .bs-popover-bottom .arrow, + .popover-static-demo .bs-popover-auto[x-placement^="bottom"] .arrow { + left: 50%; + margin-left: -5px; } + .popover-static-demo .bs-popover-left, .popover-static-demo .bs-popover-auto[x-placement^="left"], + .popover-static-demo .bs-popover-right, + .popover-static-demo .bs-popover-auto[x-placement^="right"] { + margin-top: 5px; } + .popover-static-demo .bs-popover-left .arrow, .popover-static-demo .bs-popover-auto[x-placement^="left"] .arrow, + .popover-static-demo .bs-popover-right .arrow, + .popover-static-demo .bs-popover-auto[x-placement^="right"] .arrow { + top: 50%; + margin-top: -5px; } + +.az-toggle-group-demo { + display: flex; } + .az-toggle-group-demo .az-toggle + .az-toggle { + margin-left: 10px; } + +.az-dropdown-form-demo .static-dropdown { + padding: 20px; + background-color: #e3e7ed; + display: inline-flex; + justify-content: center; } + @media (min-width: 576px) { + .az-dropdown-form-demo .static-dropdown { + padding: 40px; } } + .az-dropdown-form-demo .static-dropdown .dropdown-menu { + display: block; + position: static; + float: none; } + +.az-dropdown-form-demo .dropdown-menu { + padding: 20px; } + @media (min-width: 576px) { + .az-dropdown-form-demo .dropdown-menu { + width: 300px; + padding: 30px 25px; } } + +.az-dropdown-form-demo .dropdown-title { + font-size: 20px; + font-weight: 700; + color: #1c273c; + margin-bottom: 5px; } + +.ql-wrapper-demo { + background-color: #fff; } + @media (min-width: 1200px) { + .ql-wrapper-demo { + width: 70%; } } + .ql-wrapper-demo .ql-container { + height: 250px; } + .ql-wrapper-demo .ql-editor { + height: 100%; + overflow-y: auto; } + +.ql-scrolling-demo { + background-color: #fff; + height: 100%; + min-height: 100%; + overflow: hidden; + border: 2px solid #e3e7ed; + position: relative; } + @media (min-width: 768px) { + .ql-scrolling-demo { + padding-left: 15px; } } + .ql-scrolling-demo .ql-container { + border-width: 0; + height: auto; + min-height: 100%; + padding: 30px; } + @media (min-width: 768px) { + .ql-scrolling-demo .ql-container { + padding: 50px; + padding-left: 35px; } } + .ql-scrolling-demo .ql-container .ql-editor { + font-size: 16px; + overflow-y: visible; + color: #3b4863; } + +.morris-wrapper-demo { + height: 200px; + position: relative; + margin-left: -15px; + margin-right: -15px; } + @media (min-width: 576px) { + .morris-wrapper-demo { + height: 300px; } } + +.morris-donut-wrapper-demo { + height: 200px; } + @media (min-width: 576px) { + .morris-donut-wrapper-demo { + height: 250px; } } + +.chartjs-wrapper-demo { + height: 250px; } + @media (max-width: 330px) { + .chartjs-wrapper-demo { + width: 290px; } } + @media (min-width: 992px) { + .chartjs-wrapper-demo { + height: 300px; } } + +.chartist-wrapper-demo { + height: 200px; } + @media (min-width: 768px) { + .chartist-wrapper-demo { + height: 300px; } } + +.az-content-left-components { + border-right: 1px solid #e3e7ed; + width: 200px; } + .az-content-left-components .component-item label { + display: block; + text-transform: uppercase; + font-size: 12px; + font-weight: 700; + letter-spacing: .5px; } + .az-content-left-components .component-item label ~ label { + margin-top: 30px; } + .az-content-left-components .component-item .nav-link { + padding: 0; + display: block; + font-size: 13px; + color: #596882; } + .az-content-left-components .component-item .nav-link + .nav-link { + margin-top: 5px; } + .az-content-left-components .component-item .nav-link:hover { + color: #5b47fb; } + .az-content-left-components .component-item .nav-link.active { + color: #5b47fb; + font-weight: 500; } + +.az-breadcrumbs { + padding: 0; + background-color: transparent; + margin-bottom: 0; } + .az-breadcrumbs .breadcrumb-item { + font-size: 10px; + text-transform: uppercase; + letter-spacing: .5px; + font-weight: 700; } + .az-breadcrumbs .breadcrumb-item a { + color: #031b4e; + transition: all 0.2s ease-in-out; } + @media (prefers-reduced-motion: reduce) { + .az-breadcrumbs .breadcrumb-item a { + transition: none; } } + .az-breadcrumbs .breadcrumb-item a:hover { + color: #97a3b9; } + .az-breadcrumbs .breadcrumb-item.active { + color: #3366ff; } + .az-breadcrumbs .breadcrumb-item + .breadcrumb-item { + padding-left: 8px; } + .az-breadcrumbs .breadcrumb-item + .breadcrumb-item::before { + color: #97a3b9; + padding-right: 8px; + font-weight: 400; } + +.az-page-header { + position: relative; + padding: 30px 0 40px; + border-bottom: 1px solid #dee2ef; + margin-bottom: 40px; } + +.az-page-title { + font-weight: 700; + font-size: 40px; + font-family: "Raleway", sans-serif; + margin-bottom: 15px; + line-height: 1; + letter-spacing: -1.5px; } + +.az-page-text { + font-size: 20px; + font-weight: 300; + margin-bottom: 30px; } + +.az-page-content-list { + margin: 0; + padding: 0; + list-style: none; } + .az-page-content-list li { + display: flex; + align-items: center; + font-size: 13px; + font-weight: 500; } + .az-page-content-list li + li { + margin-top: 5px; } + .az-page-content-list li i { + margin-right: 10px; + font-size: 10px; + line-height: 0; + color: #97a3b9; + text-indent: 1px; } + +.az-page-label { + font-size: 20px; + font-weight: 600; + margin-bottom: 5px; + letter-spacing: -.2px; } + +.az-syntax-wrapper { + position: relative; } + .az-syntax-wrapper .badge { + padding: 4px 5px; + position: absolute; + top: 5px; + right: 5px; + text-transform: uppercase; + font-weight: 500; + font-size: 9px; + letter-spacing: normal; + border-radius: 1px; } + .az-syntax-wrapper pre { + border-color: #cdd4e0; + background-color: #fff; + padding: 15px; + font-size: 13px; } + .az-syntax-wrapper code[class*="language-"], + .az-syntax-wrapper pre[class*="language-"] { + font-family: 'Roboto Mono', monospace; } + +.demo-avatar-group { + display: flex; + align-items: center; } + .demo-avatar-group .az-img-user, + .demo-avatar-group .az-avatar { + flex-shrink: 0; } + .demo-avatar-group .az-img-user + .az-img-user, + .demo-avatar-group .az-img-user + .az-avatar, + .demo-avatar-group .az-avatar + .az-img-user, + .demo-avatar-group .az-avatar + .az-avatar { + margin-left: 5px; } + @media (min-width: 576px) { + .demo-avatar-group .az-img-user + .az-img-user, + .demo-avatar-group .az-img-user + .az-avatar, + .demo-avatar-group .az-avatar + .az-img-user, + .demo-avatar-group .az-avatar + .az-avatar { + margin-left: 10px; } } + +.demo-static-toast .toast { + opacity: 1; } + +/* ###### 7.8 Profile ###### */ +.az-content-profile { + flex: 1; } + @media (max-width: 991.98px) { + .az-content-profile .container, + .az-content-profile .container-fluid, + .az-content-profile .container-sm, + .az-content-profile .container-md, + .az-content-profile .container-lg, + .az-content-profile .container-xl { + display: block; } } + +.az-content-left-profile { + padding-left: 0; + padding-right: 0; + display: block; + border-bottom: 1px solid #cdd4e0; + padding-bottom: 25px; + width: auto; } + @media (min-width: 992px) { + .az-content-left-profile { + width: 270px; + padding-right: 20px; + padding-bottom: 0; + border-right: 1px solid #cdd4e0; + border-bottom: 0; } } + @media (min-width: 1200px) { + .az-content-left-profile { + padding-right: 25px; } } + +.az-profile-overview .az-img-user { + width: 120px; + height: 120px; + margin-bottom: 20px; } + .az-profile-overview .az-img-user::after { + display: none; } + +.az-profile-overview .btn-icon-list .btn { + border-radius: 100%; } + +.az-profile-name { + color: #1c273c; + font-weight: 700; + font-size: 20px; + margin-bottom: 2px; } + +.az-profile-name-text { + color: #7987a1; + font-size: 13px; + margin-bottom: 0; } + +.az-profile-bio { + font-size: 13px; + margin-bottom: 20px; } + +.az-profile-social-list .media { + align-items: center; } + .az-profile-social-list .media + .media { + margin-top: 20px; } + +.az-profile-social-list .media-icon { + font-size: 34px; + width: 30px; + line-height: 0; } + +.az-profile-social-list .media-body { + margin-left: 20px; } + .az-profile-social-list .media-body span { + display: block; + font-size: 12px; } + .az-profile-social-list .media-body a { + font-size: 13px; } + +.az-content-body-profile .nav { + flex-direction: column; + padding: 20px 20px 20px 0; + border-bottom: 1px solid #cdd4e0; } + @media (min-width: 576px) { + .az-content-body-profile .nav { + flex-direction: row; + align-items: center; + padding-bottom: 10px; } } + @media (min-width: 992px) { + .az-content-body-profile .nav { + padding-left: 20px; } } + @media (min-width: 1200px) { + .az-content-body-profile .nav { + padding-left: 25px; } } + +.az-content-body-profile .az-nav-line .nav-link { + text-transform: uppercase; + font-size: 13px; + font-weight: 500; + color: #3b4863; } + .az-content-body-profile .az-nav-line .nav-link.active { + font-weight: 700; + color: #5b47fb; } + .az-content-body-profile .az-nav-line .nav-link.active::before { + background-color: #5b47fb; } + @media (min-width: 576px) and (max-width: 767.98px) { + .az-content-body-profile .az-nav-line .nav-link.active::before { + width: auto; + top: auto; + left: 0; + right: 0; + height: 2px; } } + @media (min-width: 576px) { + .az-content-body-profile .az-nav-line .nav-link.active::before { + bottom: -11px; } } + @media (min-width: 576px) and (max-width: 767.98px) { + .az-content-body-profile .az-nav-line .nav-link + .nav-link { + margin-top: 0; + margin-left: 20px; } } + +.az-profile-body { + padding: 15px 0 0; } + @media (min-width: 576px) { + .az-profile-body { + padding-top: 20px; } } + @media (min-width: 992px) { + .az-profile-body { + padding: 25px 0 0 20px; } } + @media (min-width: 1200px) { + .az-profile-body { + padding-left: 25px; } } + +.az-profile-view-chart { + position: relative; + width: calc(100% - 10px); + height: 200px; } + @media (min-width: 375px) { + .az-profile-view-chart { + width: 100%; } } + @media (min-width: 576px) { + .az-profile-view-chart { + height: 250px; } } + +.az-profile-view-info { + position: absolute; + top: 0; + left: 0; } + .az-profile-view-info h6 { + font-size: 32px; + font-weight: 500; + color: #1c273c; + margin-bottom: 0; } + .az-profile-view-info span { + font-size: 12px; + color: #f10075; + margin-left: 5px; } + .az-profile-view-info p { + font-size: 13px; + margin-bottom: 0; } + +.az-traffic-detail-item > div:first-child { + display: flex; + align-items: center; + justify-content: space-between; + font-size: 12px; + margin-bottom: 7px; } + .az-traffic-detail-item > div:first-child > span:first-child { + color: #7987a1; } + .az-traffic-detail-item > div:first-child > span:last-child { + font-size: 11px; + font-weight: 700; + color: #1c273c; } + .az-traffic-detail-item > div:first-child > span:last-child span { + color: #7987a1; + font-weight: 400; } + +.az-traffic-detail-item + .az-traffic-detail-item { + margin-top: 25px; } + +.az-traffic-detail-item .progress { + height: 8px; } + +.az-profile-work-list .media + .media { + margin-top: 25px; } + +.az-profile-work-list .media-logo { + width: 40px; + height: 40px; + display: flex; + align-items: center; + justify-content: center; + line-height: 0; + color: #fff; + font-size: 21px; + position: relative; + top: 2px; + border-radius: 100%; } + +.az-profile-work-list .media-body { + margin-left: 20px; } + .az-profile-work-list .media-body h6 { + color: #1c273c; + font-weight: 500; + margin-bottom: 2px; } + .az-profile-work-list .media-body span { + display: block; + margin-bottom: 5px; } + .az-profile-work-list .media-body p { + margin-bottom: 0; + font-size: 12px; + color: #7987a1; } + +.az-profile-contact-list .media { + align-items: center; } + .az-profile-contact-list .media + .media { + margin-top: 25px; } + +.az-profile-contact-list .media-icon { + line-height: 0; + font-size: 36px; + width: 35px; + text-align: center; } + +.az-profile-contact-list .media-body { + margin-left: 25px; } + .az-profile-contact-list .media-body span { + font-size: 12px; + color: #7987a1; + display: block; + line-height: 1.3; } + .az-profile-contact-list .media-body div { + font-weight: 500; + color: #1c273c; } + +/* ###### 7.9 Signin ###### */ +.az-signin-wrapper { + flex: 1; + display: flex; + align-items: center; + justify-content: center; } + +.az-card-signin { + height: 560px; + padding: 20px; + display: flex; + flex-direction: column; + justify-content: space-between; + background-color: rgba(255, 255, 255, 0.5); } + @media (min-width: 480px) { + .az-card-signin { + border: 1px solid #cdd4e0; + width: 500px; + padding: 30px 35px; } } + +.az-signin-header h2 { + font-weight: 500; + color: #5b47fb; + letter-spacing: -1px; } + +.az-signin-header h4 { + font-weight: 400; + color: #1c273c; + margin-bottom: 25px; } + +.az-signin-header label { + color: #7987a1; } + +.az-signin-header .form-control { + color: #1c273c; + font-weight: 500; + border-width: 2px; + border-color: #cdd4e0; } + .az-signin-header .form-control:focus { + border-color: #b4bdce; + box-shadow: none; } + .az-signin-header .form-control::placeholder { + font-weight: 400; + color: #97a3b9; } + +.az-signin-header .btn { + margin-top: 25px; } + +.az-signin-footer p { + color: #7987a1; } + .az-signin-footer p:first-child { + margin-bottom: 5px; } + .az-signin-footer p:last-child { + margin-bottom: 0; } + +.az-signin-footer a { + color: #1c273c; + font-weight: 700; } + .az-signin-footer a:hover, .az-signin-footer a:focus { + color: #5b47fb; } + +/* ###### 7.10 Signup ###### */ +.az-signup-wrapper { + flex: 1; + display: flex; + justify-content: center; + background-color: rgba(244, 245, 248, 0.2); } + @media (min-width: 992px) { + .az-signup-wrapper { + justify-content: flex-end; } } + +.az-column-signup-left { + flex: 1; + padding: 30px; + flex-direction: column; + align-items: center; + justify-content: center; + display: none; } + @media (min-width: 576px) { + .az-column-signup-left { + padding: 40px; } } + @media (min-width: 992px) { + .az-column-signup-left { + display: flex; } } + .az-column-signup-left > div { + max-width: 500px; } + .az-column-signup-left .typcn { + font-size: 80px; + margin-bottom: 50px; } + .az-column-signup-left .typcn::before { + width: auto; } + .az-column-signup-left .az-logo { + font-size: 40px; + line-height: 1; } + .az-column-signup-left h5 { + color: #1c273c; + font-weight: 500; + font-size: 18px; + margin-bottom: 25px; } + .az-column-signup-left p { + line-height: 1.7; + margin-bottom: 25px; } + .az-column-signup-left .btn { + border-width: 2px; + padding-left: 25px; + padding-right: 25px; + font-weight: 700; + text-transform: uppercase; + height: 38px; } + +.az-column-signup { + background-color: #fff; + padding: 30px; + display: flex; + flex-direction: column; + justify-content: space-between; } + @media (min-width: 576px) { + .az-column-signup { + padding: 40px; + width: 500px; } } + @media (min-width: 992px) { + .az-column-signup { + border-left: 1px solid #cdd4e0; } } + +.az-signup-header h2 { + font-weight: 500; + color: #5b47fb; + letter-spacing: -1px; } + +.az-signup-header h4 { + font-size: 20px; + font-weight: 400; + color: #1c273c; + margin-bottom: 25px; } + +.az-signup-header label { + color: #7987a1; } + +.az-signup-header .form-control { + color: #1c273c; + font-weight: 500; + border-width: 2px; + border-color: #cdd4e0; } + .az-signup-header .form-control:focus { + border-color: #b4bdce; + box-shadow: none; } + .az-signup-header .form-control::placeholder { + font-weight: 400; + color: #97a3b9; } + +.az-signup-header > .btn { + margin-top: 25px; } + +.az-signup-header .row { + margin-top: 20px; } + .az-signup-header .row > div .btn i { + font-size: 15px; + line-height: 0; + margin-right: 5px; } + .az-signup-header .row > div:first-child .btn { + background-color: #4267b2; + color: #fff; } + .az-signup-header .row > div:first-child .btn:hover, .az-signup-header .row > div:first-child .btn:focus { + background-color: #375694; + color: #fff; } + +.az-signup-footer p { + color: #7987a1; + margin-bottom: 0; } + +.az-signup-footer a { + color: #1c273c; + font-weight: 700; } + .az-signup-footer a:hover, .az-signup-footer a:focus { + color: #5b47fb; } + +/* ############### DASHBOARD STYLES ############### */ +/* ###### 8.1 Dashboard One ###### */ +.az-content-dashboard { + padding-top: 20px; } + @media (min-width: 992px) { + .az-content-dashboard { + padding-top: 30px; } } + +.az-dashboard-one-title { + margin-bottom: 20px; } + @media (min-width: 576px) { + .az-dashboard-one-title { + display: flex; + align-items: center; + justify-content: space-between; } } + @media (min-width: 992px) { + .az-dashboard-one-title { + margin-bottom: 30px; } } + +.az-dashboard-title { + font-size: 22px; + font-weight: 700; + color: #1c273c; + letter-spacing: -1px; + margin-bottom: 3px; } + +.az-dashboard-text { + font-size: 13px; + margin-bottom: 0; } + +.az-dashboard-date { + display: flex; + align-items: center; + margin-top: 20px; } + @media (min-width: 576px) { + .az-dashboard-date { + margin-top: 0; } } + .az-dashboard-date .date { + display: flex; } + .az-dashboard-date .date > div:first-child { + font-size: 32px; + font-family: Arial, sans-serif; + font-weight: 500; + color: #1c273c; + line-height: .9; } + @media (min-width: 768px) { + .az-dashboard-date .date > div:first-child { + font-size: 36px; } } + .az-dashboard-date .date > div:last-child { + margin-left: 5px; } + .az-dashboard-date .date > div:last-child span { + display: block; + color: #1c273c; + font-weight: 700; + font-size: 12px; + line-height: 1.2; + letter-spacing: -.5px; } + @media (min-width: 768px) { + .az-dashboard-date .date > div:last-child span { + font-size: 13px; } } + .az-dashboard-date .date > div:last-child span:last-child { + color: #7987a1; + font-weight: 400; } + .az-dashboard-date > i { + font-size: 21px; + line-height: 0; + display: block; + margin: 0 15px; + color: #97a3b9; } + @media (min-width: 768px) { + .az-dashboard-date > i { + margin: 0 20px; + font-size: 24px; } } + +.az-dashboard-nav { + display: flex; + align-items: center; + justify-content: space-between; + border-bottom: 1px solid #cdd4e0; + margin-bottom: 20px; } + .az-dashboard-nav .nav-link { + font-size: 12px; + padding: 5px 10px 8px; + display: flex; + align-items: center; + line-height: 1; } + @media (min-width: 576px) { + .az-dashboard-nav .nav-link { + font-size: 0.875rem; } } + @media (min-width: 992px) { + .az-dashboard-nav .nav-link { + padding: 5px 15px 10px; } } + .az-dashboard-nav .nav-link:hover, .az-dashboard-nav .nav-link:focus { + color: #5b47fb; } + .az-dashboard-nav .nav-link + .nav-link { + border-left: 1px solid #cdd4e0; } + .az-dashboard-nav .nav:first-child .nav-link { + color: #1c273c; + display: none; } + @media (min-width: 576px) { + .az-dashboard-nav .nav:first-child .nav-link { + display: block; } } + .az-dashboard-nav .nav:first-child .nav-link:hover, .az-dashboard-nav .nav:first-child .nav-link:focus { + color: #5b47fb; } + .az-dashboard-nav .nav:first-child .nav-link.active { + color: #5b47fb; } + .az-dashboard-nav .nav:first-child .nav-link:first-child { + padding-left: 0; } + .az-dashboard-nav .nav:first-child .nav-link:first-child, .az-dashboard-nav .nav:first-child .nav-link:last-child { + display: block; } + .az-dashboard-nav .nav:last-child .nav-link { + color: #596882; + display: none; } + @media (min-width: 768px) { + .az-dashboard-nav .nav:last-child .nav-link { + display: block; } } + .az-dashboard-nav .nav:last-child .nav-link:hover, .az-dashboard-nav .nav:last-child .nav-link:focus { + color: #5b47fb; } + .az-dashboard-nav .nav:last-child .nav-link i { + font-size: 16px; + margin-right: 7px; + line-height: 0; } + .az-dashboard-nav .nav:last-child .nav-link:last-child { + padding-right: 0; + display: block; } + .az-dashboard-nav .nav:last-child .nav-link:last-child i { + margin-right: 0; } + @media (min-width: 768px) { + .az-dashboard-nav .nav:last-child .nav-link:last-child { + display: none; } } + +.card-dashboard-one { + position: relative; + border-color: #cdd4e0; } + .card-dashboard-one .card-header { + padding: 20px; + background-color: transparent; } + @media (min-width: 576px) { + .card-dashboard-one .card-header { + display: flex; + align-items: flex-start; + justify-content: space-between; } } + .card-dashboard-one .card-header .card-title { + color: #1c273c; + font-weight: 700; + font-size: 14px; + line-height: 1; + margin-bottom: 3px; } + .card-dashboard-one .card-header .card-text { + margin-bottom: 0; } + .card-dashboard-one .card-header .btn-group { + margin-top: 15px; } + @media (min-width: 576px) { + .card-dashboard-one .card-header .btn-group { + margin-top: 0; } } + .card-dashboard-one .card-header .btn-group .btn { + font-size: 12px; + font-weight: 500; + padding: 5px 10px; + min-height: inherit; + background-color: #fff; + color: #7987a1; + border: 1px solid #cdd4e0; } + .card-dashboard-one .card-header .btn-group .btn:hover, .card-dashboard-one .card-header .btn-group .btn:focus { + background-color: #f4f5f8; + border-color: #cdd4e0; } + .card-dashboard-one .card-header .btn-group .btn + .btn { + margin-left: -1px; } + .card-dashboard-one .card-header .btn-group .btn.active { + color: #1c273c; + background-color: #e3e7ed; + border-color: #cdd4e0; } + .card-dashboard-one .card-body { + padding: 10px 0 20px; + position: relative; + overflow: hidden; } + .card-dashboard-one .card-body .flot-chart-wrapper { + position: relative; + margin-left: -28px; + margin-right: -20px; } + .card-dashboard-one .card-body .flot-chart { + width: 100%; + height: 150px; } + @media (min-width: 576px) { + .card-dashboard-one .card-body .flot-chart { + height: 275px; } } + @media (min-width: 992px) and (max-width: 1199.98px) { + .card-dashboard-one .card-body .flot-chart { + height: 252px; } } + .card-dashboard-one .card-body .flot-chart .flot-y-axis > div { + transform: translateX(50px); + text-shadow: 1px 1px rgba(255, 255, 255, 0.75); + color: #031b4e; + font-weight: 700; + font-size: 11px; } + .card-dashboard-one .card-body .flot-chart .flot-x-axis > div { + color: #97a3b9; + font-weight: 500; + font-size: 11px; } + .card-dashboard-one .card-body-top { + display: flex; + align-items: flex-start; + flex-wrap: wrap; + padding-left: 20px; } + @media (min-width: 576px) { + .card-dashboard-one .card-body-top { + position: absolute; + top: -5px; + left: 20px; + z-index: 5; + padding-left: 0; } } + .card-dashboard-one .card-body-top > div { + flex-basis: 50%; } + @media (min-width: 576px) { + .card-dashboard-one .card-body-top > div { + flex-basis: auto; } } + @media (min-width: 576px) { + .card-dashboard-one .card-body-top > div + div { + margin-left: 30px; } } + .card-dashboard-one .card-body-top label { + font-size: 12px; + margin-bottom: 3px; } + @media (min-width: 576px) { + .card-dashboard-one .card-body-top label { + font-size: 0.875rem; } } + .card-dashboard-one .card-body-top h2 { + font-size: 20px; + font-weight: 600; + font-family: "Archivo", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; + color: #1c273c; } + @media (min-width: 576px) { + .card-dashboard-one .card-body-top h2 { + font-size: 24px; + letter-spacing: -.5px; } } + +.card-dashboard-two { + height: 100%; + border-radius: 0; + border-color: #cdd4e0; + background-color: rgba(255, 255, 255, 0.5); } + .card-dashboard-two .card-header { + background-color: transparent; + padding: 20px 20px 0; } + .card-dashboard-two .card-header h6 { + font-size: 28px; + font-weight: 600; + font-family: "Archivo", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; + color: #1c273c; + display: flex; + align-items: baseline; + margin-bottom: 2px; + line-height: 1; + letter-spacing: -1px; } + @media (min-width: 992px) and (max-width: 1199.98px) { + .card-dashboard-two .card-header h6 { + font-size: 24px; } } + .card-dashboard-two .card-header h6 i { + margin-left: 10px; + font-size: 24px; } + .card-dashboard-two .card-header h6 small { + font-size: 12px; + font-weight: 400; + font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; + margin-left: 5px; + color: #7987a1; + letter-spacing: normal; } + .card-dashboard-two .card-header p { + margin-bottom: 0; + font-size: 13px; } + .card-dashboard-two .card-body { + padding: 0; + overflow: hidden; } + .card-dashboard-two .chart-wrapper { + position: relative; + margin: 0 -10px -10px; } + .card-dashboard-two .flot-chart { + width: 100%; + height: 100px; } + +.card-dashboard-three { + height: 150px; + border-radius: 0; + border-color: #cdd4e0; + background-color: rgba(255, 255, 255, 0.5); } + @media (min-width: 768px) { + .card-dashboard-three { + height: 170px; } } + @media (min-width: 992px) { + .card-dashboard-three { + height: 100%; } } + .card-dashboard-three .card-header { + background-color: transparent; + padding: 20px; + position: absolute; + max-width: 50%; } + .card-dashboard-three .card-header h6 { + font-size: 28px; + font-weight: 600; + font-family: "Archivo", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; + color: #1c273c; + display: flex; + align-items: baseline; + margin-bottom: 15px; + line-height: 1; + letter-spacing: -1px; } + @media (min-width: 1200px) { + .card-dashboard-three .card-header h6 { + font-size: 32px; } } + .card-dashboard-three .card-header h6 small { + font-size: 12px; + font-weight: 400; + font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; + margin-left: 5px; + letter-spacing: normal; } + .card-dashboard-three .card-header p { + margin-bottom: 10px; + font-weight: 700; + text-transform: uppercase; + color: #1c273c; } + .card-dashboard-three .card-header > small { + font-size: 11px; + display: none; + color: #7987a1; } + @media (min-width: 768px) { + .card-dashboard-three .card-header > small { + display: block; } } + .card-dashboard-three .card-body { + padding: 0 0 0 20px; + display: flex; + justify-content: flex-end; } + .card-dashboard-three .chart { + width: 70%; + height: 150px; } + @media (min-width: 375px) { + .card-dashboard-three .chart { + width: auto; } } + @media (min-width: 768px) { + .card-dashboard-three .chart { + height: 170px; } } + @media (min-width: 992px) { + .card-dashboard-three .chart { + height: 200px; + width: 80%; } } + +.card-dashboard-pageviews { + border-color: #cdd4e0; + border-radius: 0; + padding: 20px; } + .card-dashboard-pageviews .card-header { + background-color: transparent; + padding: 0 0 10px; } + .card-dashboard-pageviews .card-title { + font-weight: 700; + font-size: 14px; + color: #1c273c; + margin-bottom: 5px; } + .card-dashboard-pageviews .card-text { + font-size: 13px; + margin-bottom: 0; } + .card-dashboard-pageviews .card-body { + padding: 0; } + +.card-dashboard-four { + border-radius: 0; + border-color: #cdd4e0; + padding: 20px; + height: 100%; } + .card-dashboard-four .card-header { + padding: 0 0 20px; + background-color: transparent; } + .card-dashboard-four .card-title { + font-weight: 700; + font-size: 14px; + color: #1c273c; + margin-bottom: 0; } + .card-dashboard-four .card-body { + padding: 0; } + @media (min-width: 992px) { + .card-dashboard-four .card-body { + padding: 0 20px; } } + .card-dashboard-four .chart { + width: calc(100vw - 80px); + height: 200px; } + @media (min-width: 375px) { + .card-dashboard-four .chart { + width: auto; } } + @media (min-width: 992px) { + .card-dashboard-four .chart { + height: 85%; } } + +.card-dashboard-five { + border-color: #cdd4e0; + padding: 20px; } + .card-dashboard-five .card-header { + padding: 0; + background-color: transparent; } + .card-dashboard-five .card-title { + font-weight: 700; + font-size: 14px; + color: #1c273c; + margin-bottom: 5px; } + .card-dashboard-five .card-text { + display: block; + font-size: 12px; } + .card-dashboard-five .card-body { + padding: 20px 0 5px; } + .card-dashboard-five .card-body label { + display: block; + margin-bottom: 2px; + font-size: 12px; } + .card-dashboard-five .card-body h4 { + color: #1c273c; + font-family: "Archivo", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; + font-weight: 700; + letter-spacing: -.5px; + margin-bottom: 0; } + .card-dashboard-five .card-chart { + width: 40px; + height: 40px; + display: flex; + align-items: center; + justify-content: center; + margin-bottom: 10px; } + @media (min-width: 576px) { + .card-dashboard-five .card-chart { + margin-bottom: 0; + margin-right: 10px; } } + +.card-table-one { + padding: 20px 20px 10px; + border-color: #cdd4e0; } + .card-table-one .card-title { + font-size: 14px; + font-weight: 700; + margin-bottom: 5px; } + .card-table-one .table-responsive { + width: calc(100vw - 80px); } + @media (min-width: 576px) { + .card-table-one .table-responsive { + width: 100%; } } + .card-table-one .table { + margin-bottom: 0; } + .card-table-one .table thead tr > th, + .card-table-one .table thead tr > td, + .card-table-one .table tbody tr > th, + .card-table-one .table tbody tr > td { + vertical-align: middle; + white-space: nowrap; + padding-right: 2px; } + @media (min-width: 768px) { + .card-table-one .table thead tr > th, + .card-table-one .table thead tr > td, + .card-table-one .table tbody tr > th, + .card-table-one .table tbody tr > td { + padding-left: 0; + padding-right: 0; } } + .card-table-one .table thead tr > th:nth-child(3), .card-table-one .table thead tr > th:nth-child(4), .card-table-one .table thead tr > th:nth-child(5), + .card-table-one .table thead tr > td:nth-child(3), + .card-table-one .table thead tr > td:nth-child(4), + .card-table-one .table thead tr > td:nth-child(5), + .card-table-one .table tbody tr > th:nth-child(3), + .card-table-one .table tbody tr > th:nth-child(4), + .card-table-one .table tbody tr > th:nth-child(5), + .card-table-one .table tbody tr > td:nth-child(3), + .card-table-one .table tbody tr > td:nth-child(4), + .card-table-one .table tbody tr > td:nth-child(5) { + text-align: right; } + .card-table-one .table thead tr > th strong, + .card-table-one .table thead tr > td strong, + .card-table-one .table tbody tr > th strong, + .card-table-one .table tbody tr > td strong { + color: #1c273c; } + .card-table-one .flag-icon { + font-size: 20px; + line-height: 1; + border-radius: 100%; } + +/* ###### 8.4 Dashboard Four ###### */ +.az-navbar-dashboard-four { + box-shadow: 0 0 30px rgba(28, 39, 60, 0.08); } + @media (min-width: 992px) { + .az-navbar-dashboard-four .container-fluid, .az-navbar-dashboard-four .container-sm, .az-navbar-dashboard-four .container-md, .az-navbar-dashboard-four .container-lg, .az-navbar-dashboard-four .container-xl { + padding-left: 25px; + padding-right: 25px; } } + +.az-content-dashboard-four { + padding: 20px; } + @media (min-width: 992px) { + .az-content-dashboard-four { + flex: 1; + padding: 30px 25px; } } + .az-content-dashboard-four ~ .az-footer .container, + .az-content-dashboard-four ~ .az-footer .container-fluid, + .az-content-dashboard-four ~ .az-footer .container-sm, + .az-content-dashboard-four ~ .az-footer .container-md, + .az-content-dashboard-four ~ .az-footer .container-lg, + .az-content-dashboard-four ~ .az-footer .container-xl { + padding-left: 25px; + padding-right: 25px; } + .az-content-dashboard-four > .media-dashboard { + display: block; } + @media (min-width: 1200px) { + .az-content-dashboard-four > .media-dashboard { + display: flex; + align-items: stretch; + height: 100%; } } + .az-content-dashboard-four > .media-dashboard .media-aside { + margin-top: 20px; } + @media (min-width: 1200px) { + .az-content-dashboard-four > .media-dashboard .media-aside { + margin-top: 0; + display: block; + width: 320px; } } + @media (min-width: 1200px) { + .az-content-dashboard-four > .media-dashboard > .media-body { + padding: 0 20px 0 0; } } + .az-content-dashboard-four .az-content-header { + height: auto; + margin-bottom: 20px; + align-items: flex-start; + padding: 0; } + @media (min-width: 768px) { + .az-content-dashboard-four .az-content-header { + display: flex; } } + +.az-content-header-right { + display: none; } + @media (min-width: 992px) { + .az-content-header-right { + display: flex; + align-items: center; } } + .az-content-header-right .media label { + margin-bottom: 2px; + font-size: 10px; + font-weight: 500; + letter-spacing: .5px; + text-transform: uppercase; + color: #97a3b9; } + .az-content-header-right .media h6 { + color: #1c273c; + margin-bottom: 0; } + .az-content-header-right .media + .media { + margin-left: 20px; + padding-left: 20px; + border-left: 1px solid #cdd4e0; } + .az-content-header-right .btn:first-of-type { + margin-left: 30px; } + .az-content-header-right .btn + .btn { + margin-left: 5px; } + +.card-dashboard-calendar { + border-color: #cdd4e0; + padding: 20px; + box-shadow: 0 0 10px rgba(28, 39, 60, 0.1); } + .card-dashboard-calendar .card-title { + color: #1c273c; + font-weight: 700; + text-transform: uppercase; + margin-bottom: 15px; } + .card-dashboard-calendar .card-body { + padding: 0; } + .card-dashboard-calendar .ui-datepicker-inline { + border-width: 0; + max-width: none; + padding: 0; + margin: 0; } + .card-dashboard-calendar .ui-datepicker .ui-datepicker-header { + border-bottom: 1px solid #cdd4e0; + padding: 10px; + margin-bottom: 5px; } + .card-dashboard-calendar .ui-datepicker .ui-datepicker-header .ui-datepicker-next::before, + .card-dashboard-calendar .ui-datepicker .ui-datepicker-header .ui-datepicker-prev::before { + top: 8px; } + .card-dashboard-calendar .ui-datepicker .ui-datepicker-month { + color: #5b47fb; } + .card-dashboard-calendar .ui-datepicker .ui-datepicker-calendar { + width: calc(100% - 20px); } + @media (min-width: 576px) { + .card-dashboard-calendar .ui-datepicker .ui-datepicker-calendar { + width: 100%; } } + .card-dashboard-calendar .ui-datepicker .ui-datepicker-calendar th { + font-size: 10px; } + .card-dashboard-calendar .ui-datepicker .ui-datepicker-calendar th, + .card-dashboard-calendar .ui-datepicker .ui-datepicker-calendar td { + text-align: center; } + .card-dashboard-calendar .ui-datepicker .ui-datepicker-calendar td a { + display: block; + width: 34px; + height: 34px; + font-size: 12px; + font-family: 'Archivo', sans-serif; + border-radius: 100%; + display: flex; + align-items: center; + justify-content: center; } + .card-dashboard-calendar .ui-datepicker .ui-datepicker-calendar .ui-datepicker-today a { + background-color: transparent; + border: 2px solid #3366ff; + color: #3366ff; + font-weight: 700; } + +.card-dashboard-twelve { + border-color: #cdd4e0; + box-shadow: 0 0 10px rgba(28, 39, 60, 0.1); } + .card-dashboard-twelve .card-header { + background-color: transparent; + border-bottom: 1px solid #e3e7ed; + padding: 20px; } + .card-dashboard-twelve .card-title { + text-transform: uppercase; + font-weight: 700; + margin-bottom: 20px; } + .card-dashboard-twelve .card-title span { + font-weight: 400; + color: #031b4e; + text-transform: capitalize; } + .card-dashboard-twelve .sales-overview { + display: flex; + align-items: flex-start; + flex-wrap: wrap; } + @media (min-width: 992px) { + .card-dashboard-twelve .sales-overview { + margin-bottom: 10px; + flex-wrap: nowrap; } } + .card-dashboard-twelve .sales-overview .media { + align-items: flex-end; + flex-shrink: 0; + flex-basis: calc(50% - 10px); } + @media (min-width: 576px) { + .card-dashboard-twelve .sales-overview .media { + flex-basis: auto; } } + .card-dashboard-twelve .sales-overview .media + .media { + margin-left: 20px; } + @media (min-width: 576px) { + .card-dashboard-twelve .sales-overview .media + .media { + margin-left: 40px; } } + @media (min-width: 992px) { + .card-dashboard-twelve .sales-overview .media + .media { + margin-left: 50px; } } + @media (max-width: 575.98px) { + .card-dashboard-twelve .sales-overview .media:nth-child(3) { + margin-left: 0; + margin-top: 15px; } } + .card-dashboard-twelve .sales-overview .media:last-child { + display: none; } + @media (min-width: 768px) { + .card-dashboard-twelve .sales-overview .media:last-child { + flex: 1; + display: block; } } + .card-dashboard-twelve .sales-overview .media-icon { + width: 45px; + height: 45px; + color: #fff; + display: flex; + align-items: center; + justify-content: center; + position: relative; + top: -5px; + margin-right: 15px; + border-radius: 100%; + display: none; } + .card-dashboard-twelve .sales-overview .media-icon .typcn { + line-height: .9; + font-size: 24px; } + .card-dashboard-twelve .sales-overview label { + text-transform: uppercase; + font-size: 9px; + font-weight: 700; + letter-spacing: .5px; + color: #031b4e; + margin-bottom: 8px; } + @media (min-width: 576px) { + .card-dashboard-twelve .sales-overview label { + font-size: 10px; + margin-bottom: 10px; } } + .card-dashboard-twelve .sales-overview h4 { + font-size: 20px; + font-family: "Archivo", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; + font-weight: 600; + color: #1c273c; + line-height: 1; + letter-spacing: -1px; + margin-bottom: 3px; } + @media (min-width: 576px) { + .card-dashboard-twelve .sales-overview h4 { + font-size: 28px; } } + .card-dashboard-twelve .sales-overview h4 span { + color: #031b4e; + font-weight: 400; } + .card-dashboard-twelve .sales-overview .media-body > span { + display: block; + font-size: 10px; + color: #97a3b9; } + @media (min-width: 576px) { + .card-dashboard-twelve .sales-overview .media-body > span { + font-size: 11px; } } + .card-dashboard-twelve .sales-overview .media-body > span strong { + font-weight: 500; + color: #031b4e; } + .card-dashboard-twelve .sales-overview p { + font-size: 11px; + margin-bottom: 0; + color: #97a3b9; } + .card-dashboard-twelve .card-body { + position: relative; + padding: 20px 5px; } + @media (min-width: 576px) { + .card-dashboard-twelve .card-body { + padding: 20px; } } + .card-dashboard-twelve .chart-legend { + margin-bottom: 20px; + display: flex; + align-items: center; + justify-content: center; + position: absolute; + top: 5px; + left: 0; + right: 0; + z-index: 10; + font-size: 10px; + font-weight: 500; + letter-spacing: 1px; + text-transform: uppercase; } + @media (min-width: 576px) { + .card-dashboard-twelve .chart-legend { + top: 65px; } } + .card-dashboard-twelve .chart-legend div { + display: flex; + align-items: center; } + .card-dashboard-twelve .chart-legend div + div { + margin-left: 15px; } + @media (min-width: 576px) { + .card-dashboard-twelve .chart-legend div + div { + margin-left: 30px; } } + .card-dashboard-twelve .chart-legend span { + width: 10px; + height: 4px; + display: block; + margin-right: 5px; } + @media (min-width: 576px) { + .card-dashboard-twelve .chart-legend span { + width: 40px; + margin-right: 10px; } } + .card-dashboard-twelve .chart-wrapper { + position: relative; + margin-left: -13px; + margin-right: -13px; } + @media (min-width: 576px) { + .card-dashboard-twelve .chart-wrapper { + margin-left: -10px; + margin-right: -15px; } } + .card-dashboard-twelve .flot-chart { + width: 100%; + height: 200px; + position: relative; } + @media (min-width: 768px) { + .card-dashboard-twelve .flot-chart { + height: 250px; } } + @media (min-width: 992px) { + .card-dashboard-twelve .flot-chart { + height: 300px; } } + .card-dashboard-twelve .flot-chart .flot-x-axis > div span:first-child { + display: block; + text-transform: uppercase; + font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; + font-weight: 500; + font-size: 10px; + color: #7987a1; } + .card-dashboard-twelve .flot-chart .flot-x-axis > div span:last-child { + display: block; + font-size: 16px; + font-weight: 700; + font-family: "Archivo", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; + color: #1c273c; + line-height: 1; } + +.az-media-date h1 { + font-size: 42px; + font-family: "Archivo", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; + color: #1c273c; + line-height: .95; } + +.az-media-date .media-body { + margin-left: 5px; } + +.az-media-date p { + color: #1c273c; + font-weight: 700; + margin-bottom: 0; + text-transform: uppercase; } + +.az-media-date span { + display: block; + line-height: 1.2; } + +.card-dashboard-thirteen { + border-color: #cdd4e0; + padding: 20px; + box-shadow: 0 0 10px rgba(28, 39, 60, 0.1); } + .card-dashboard-thirteen .az-content-label { + font-size: 13px; } + .card-dashboard-thirteen .media { + margin-bottom: 15px; } + .card-dashboard-thirteen .media-icon { + font-size: 45px; + line-height: 1; + margin-right: 10px; + display: flex; } + .card-dashboard-thirteen .media-icon i { + line-height: 0; } + .card-dashboard-thirteen .media-body h6 { + font-size: 22px; + font-weight: 600; + font-family: "Archivo", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; + color: #1c273c; + letter-spacing: -.5px; + margin-bottom: 2px; } + .card-dashboard-thirteen .media-body h6 span { + font-weight: 400; + color: #031b4e; } + .card-dashboard-thirteen .media-body label { + font-weight: 700; + font-size: 12px; + text-transform: uppercase; + margin-bottom: 0; + display: block; + letter-spacing: .5px; } + +.card-dashboard-events { + border-color: #cdd4e0; + box-shadow: 0 0 10px rgba(28, 39, 60, 0.1); } + .card-dashboard-events .card-header { + padding: 20px; + background-color: transparent; } + .card-dashboard-events .card-title { + color: #7987a1; + text-transform: uppercase; + margin-bottom: 10px; + font-size: 10px; + font-weight: 500; + letter-spacing: 1px; } + .card-dashboard-events .card-subtitle { + color: #1c273c; + font-weight: 400; + font-size: 18px; } + .card-dashboard-events .card-body { + padding: 0; } + .card-dashboard-events .list-group-item { + padding: 15px 20px 15px 40px; + border-left-width: 0; + border-right-width: 0; + position: relative; } + .card-dashboard-events .list-group-item:first-child, .card-dashboard-events .list-group-item:last-child { + border-radius: 0; } + .card-dashboard-events .list-group-item label { + text-transform: uppercase; + font-weight: 700; + font-size: 10px; + color: #596882; + margin-bottom: 5px; + letter-spacing: .5px; } + .card-dashboard-events .list-group-item label span { + color: #97a3b9; + font-weight: 500; } + .card-dashboard-events .list-group-item h6 { + font-size: 14px; + font-weight: 700; + color: #1c273c; + margin-bottom: 5px; + display: flex; + align-items: center; } + .card-dashboard-events .list-group-item p { + margin-bottom: 5px; } + .card-dashboard-events .list-group-item p strong { + font-weight: 500; } + .card-dashboard-events .list-group-item small { + font-size: 11px; } + .card-dashboard-events .list-group-item small span { + font-weight: 700; + text-transform: uppercase; } + .card-dashboard-events .event-indicator { + width: 10px; + height: 10px; + position: absolute; + top: 21px; + left: 20px; + border-radius: 100%; } + .card-dashboard-events .event-user { + margin-top: 10px; + display: flex; + align-items: center; } + .card-dashboard-events .event-user .az-img-user { + width: 28px; + height: 28px; } + .card-dashboard-events .event-user .az-img-user::after { + display: none; } + .card-dashboard-events .event-user .az-img-user + .az-img-user { + margin-left: -6px; } + .card-dashboard-events .event-user a:last-child { + margin-left: 10px; + color: #7987a1; + font-weight: 500; + font-size: 11px; } + .card-dashboard-events .event-user a:last-child:hover, .card-dashboard-events .event-user a:last-child:focus { + color: #596882; } + +.card-dashboard-fourteen { + border-color: #cdd4e0; + box-shadow: 0 0 10px rgba(28, 39, 60, 0.1); + padding: 20px; } + @media (min-width: 768px) { + .card-dashboard-fourteen { + height: 100%; } } + .card-dashboard-fourteen .az-content-label { + font-size: 0.875rem; + margin-bottom: 20px; } + .card-dashboard-fourteen .az-content-label span { + font-weight: 400; + color: #97a3b9; + text-transform: none; } + .card-dashboard-fourteen .card-body { + padding: 0; + min-height: 100px; } + .card-dashboard-fourteen .card-body h1 { + color: #1c273c; + font-family: "Archivo", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; + font-weight: 600; + letter-spacing: -1px; + margin-bottom: 0; } + .card-dashboard-fourteen .card-body h1 span { + color: #97a3b9; + letter-spacing: normal; + font-weight: 400; + margin-right: 5px; } + .card-dashboard-fourteen .card-body h4 { + color: #1c273c; + font-weight: 700; + font-family: "Archivo", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; + margin-bottom: 0; + letter-spacing: -.5px; } + .card-dashboard-fourteen .card-body .progress { + margin-bottom: 2px; } + .card-dashboard-fourteen .card-body small { + font-size: 11px; + color: #97a3b9; } + .card-dashboard-fourteen .sparkline-wrapper canvas { + width: 100% !important; } + .card-dashboard-fourteen .card-footer { + background-color: transparent; + padding: 0; + margin-top: 15px; + border-top-width: 0; } + .card-dashboard-fourteen .card-footer h6 { + color: #1c273c; + font-size: 20px; + font-weight: 700; + font-family: "Archivo", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; + margin-bottom: 0; + letter-spacing: -.5px; } + .card-dashboard-fourteen .card-footer label { + display: block; + margin-bottom: 0; + color: #97a3b9; + font-size: 11px; } + @media (min-width: 576px) { + .card-dashboard-fourteen .card-footer label { + font-size: 0.875rem; } } + +/* ############### UTILITIES/HELPER CLASSES ############### */ +/* ###### 9.1 Background ###### */ +.bg-transparent { + background-color: transparent; } + +.bg-gray-100 { + background-color: #f4f5f8; } + +.bg-gray-200 { + background-color: #e3e7ed; } + +.bg-gray-300 { + background-color: #cdd4e0; } + +.bg-gray-400 { + background-color: #b4bdce; } + +.bg-gray-500 { + background-color: #97a3b9; } + +.bg-gray-600 { + background-color: #7987a1; } + +.bg-gray-700 { + background-color: #596882; } + +.bg-gray-800 { + background-color: #3b4863; } + +.bg-gray-900 { + background-color: #1c273c; } + +.bg-white-1 { + background-color: rgba(255, 255, 255, 0.1); } + +.bg-white-2 { + background-color: rgba(255, 255, 255, 0.2); } + +.bg-white-3 { + background-color: rgba(255, 255, 255, 0.3); } + +.bg-white-4 { + background-color: rgba(255, 255, 255, 0.4); } + +.bg-white-5 { + background-color: rgba(255, 255, 255, 0.5); } + +.bg-white-6 { + background-color: rgba(255, 255, 255, 0.6); } + +.bg-white-7 { + background-color: rgba(255, 255, 255, 0.7); } + +.bg-white-8 { + background-color: rgba(255, 255, 255, 0.8); } + +.bg-white-9 { + background-color: rgba(255, 255, 255, 0.9); } + +.bg-black-1 { + background-color: rgba(0, 0, 0, 0.1); } + +.bg-black-2 { + background-color: rgba(0, 0, 0, 0.2); } + +.bg-black-3 { + background-color: rgba(0, 0, 0, 0.3); } + +.bg-black-4 { + background-color: rgba(0, 0, 0, 0.4); } + +.bg-black-5 { + background-color: rgba(0, 0, 0, 0.5); } + +.bg-black-6 { + background-color: rgba(0, 0, 0, 0.6); } + +.bg-black-7 { + background-color: rgba(0, 0, 0, 0.7); } + +.bg-black-8 { + background-color: rgba(0, 0, 0, 0.8); } + +.bg-black-9 { + background-color: rgba(0, 0, 0, 0.9); } + +.bg-indigo { + background-color: #5b47fb; } + +.bg-purple { + background-color: #6f42c1; } + +.bg-pink { + background-color: #f10075; } + +.bg-orange { + background-color: #fd7e14; } + +.bg-teal { + background-color: #00cccc; } + +.bg-purple-dark { + background-color: #59339d; } + +/* ###### 9.2 Border ###### */ +.bd-transparent { + border-color: transparent; } + +.bd { + border: 1px solid #cdd4e0; } + +.bd-t { + border-top: 1px solid #cdd4e0; } + +.bd-r { + border-right: 1px solid #cdd4e0; } + +.bd-b { + border-bottom: 1px solid #cdd4e0; } + +.bd-l { + border-left: 1px solid #cdd4e0; } + +.bd-y { + border-top: 1px solid #cdd4e0; + border-bottom: 1px solid #cdd4e0; } + +.bd-x { + border-left: 1px solid #cdd4e0; + border-right: 1px solid #cdd4e0; } + +.bd-0 { + border-width: 0; } + +.bd-1 { + border-width: 1px; } + +.bd-2 { + border-width: 2px; } + +.bd-3 { + border-width: 3px; } + +.bd-4 { + border-width: 4px; } + +.bd-5 { + border-width: 5px; } + +.bd-t-0 { + border-top: 0; } + +.bd-r-0 { + border-right: 0; } + +.bd-b-0 { + border-bottom: 0; } + +.bd-l-0 { + border-left: 0; } + +.bd-t-0-f { + border-top: 0 !important; } + +.bd-r-0-f { + border-right: 0 !important; } + +.bd-b-0-f { + border-bottom: 0 !important; } + +.bd-l-0-f { + border-left: 0 !important; } + +.bd-y-0 { + border-top-width: 0; + border-bottom-width: 0; } + +.bd-y-1 { + border-top-width: 1px; + border-bottom-width: 1px; } + +.bd-x-0 { + border-left-width: 0; + border-right-width: 0; } + +.bd-x-1 { + border-left-width: 1px; + border-right-width: 1px; } + +.bd-primary { + border-color: #3366ff; } + +.bd-success { + border-color: #3bb001; } + +.bd-warning { + border-color: #ffc107; } + +.bd-danger { + border-color: #dc3545; } + +.bd-info { + border-color: #17a2b8; } + +.bd-white { + border-color: #fff; } + +.bd-gray-100 { + border-color: #f4f5f8; } + +.bd-gray-200 { + border-color: #e3e7ed; } + +.bd-gray-300 { + border-color: #cdd4e0; } + +.bd-gray-400 { + border-color: #b4bdce; } + +.bd-gray-500 { + border-color: #97a3b9; } + +.bd-gray-600 { + border-color: #7987a1; } + +.bd-gray-700 { + border-color: #596882; } + +.bd-gray-800 { + border-color: #3b4863; } + +.bd-gray-900 { + border-color: #1c273c; } + +.bd-white-1 { + border-color: rgba(255, 255, 255, 0.1); } + +.bd-white-2 { + border-color: rgba(255, 255, 255, 0.2); } + +.bd-white-3 { + border-color: rgba(255, 255, 255, 0.3); } + +.bd-white-4 { + border-color: rgba(255, 255, 255, 0.4); } + +.bd-white-5 { + border-color: rgba(255, 255, 255, 0.5); } + +.bd-white-6 { + border-color: rgba(255, 255, 255, 0.6); } + +.bd-white-7 { + border-color: rgba(255, 255, 255, 0.7); } + +.bd-white-8 { + border-color: rgba(255, 255, 255, 0.8); } + +.rounded-5 { + border-radius: 5px; } + +.rounded-10 { + border-radius: 10px; } + +.rounded-20 { + border-radius: 20px; } + +.rounded-30 { + border-radius: 30px; } + +.rounded-40 { + border-radius: 40px; } + +.rounded-50 { + border-radius: 50px; } + +.bd-dashed { + border-style: dashed; } + +.bd-dotted { + border-style: dotted; } + +@media (min-width: 480px) { + .bd-xs { + border: 1px solid #cdd4e0; } + .bd-xs-t { + border-top: 1px solid #cdd4e0; } + .bd-xs-r { + border-right: 1px solid #cdd4e0; } + .bd-xs-b { + border-bottom: 1px solid #cdd4e0; } + .bd-xs-l { + border-left: 1px solid #cdd4e0; } + .bd-xs-y { + border-top: 1px solid #cdd4e0; + border-bottom: 1px solid #cdd4e0; } + .bd-xs-x { + border-left: 1px solid #cdd4e0; + border-right: 1px solid #cdd4e0; } } + +@media (min-width: 576px) { + .bd-sm { + border: 1px solid #cdd4e0; } + .bd-sm-t { + border-top: 1px solid #cdd4e0; } + .bd-sm-r { + border-right: 1px solid #cdd4e0; } + .bd-sm-b { + border-bottom: 1px solid #cdd4e0; } + .bd-sm-l { + border-left: 1px solid #cdd4e0; } + .bd-sm-y { + border-top: 1px solid #cdd4e0; + border-bottom: 1px solid #cdd4e0; } + .bd-sm-x { + border-left: 1px solid #cdd4e0; + border-right: 1px solid #cdd4e0; } } + +@media (min-width: 768px) { + .bd-md { + border: 1px solid #cdd4e0; } + .bd-md-t { + border-top: 1px solid #cdd4e0; } + .bd-md-r { + border-right: 1px solid #cdd4e0; } + .bd-md-b { + border-bottom: 1px solid #cdd4e0; } + .bd-md-l { + border-left: 1px solid #cdd4e0; } + .bd-md-y { + border-top: 1px solid #cdd4e0; + border-bottom: 1px solid #cdd4e0; } + .bd-md-x { + border-left: 1px solid #cdd4e0; + border-right: 1px solid #cdd4e0; } } + +@media (min-width: 992px) { + .bd-lg { + border: 1px solid #cdd4e0; } + .bd-lg-t { + border-top: 1px solid #cdd4e0; } + .bd-lg-r { + border-right: 1px solid #cdd4e0; } + .bd-lg-b { + border-bottom: 1px solid #cdd4e0; } + .bd-lg-l { + border-left: 1px solid #cdd4e0; } + .bd-lg-y { + border-top: 1px solid #cdd4e0; + border-bottom: 1px solid #cdd4e0; } + .bd-lg-x { + border-left: 1px solid #cdd4e0; + border-right: 1px solid #cdd4e0; } } + +@media (min-width: 1200px) { + .bd-xl { + border: 1px solid #cdd4e0; } + .bd-xl-t { + border-top: 1px solid #cdd4e0; } + .bd-xl-r { + border-right: 1px solid #cdd4e0; } + .bd-xl-b { + border-bottom: 1px solid #cdd4e0; } + .bd-xl-l { + border-left: 1px solid #cdd4e0; } + .bd-xl-y { + border-top: 1px solid #cdd4e0; + border-bottom: 1px solid #cdd4e0; } + .bd-xl-x { + border-left: 1px solid #cdd4e0; + border-right: 1px solid #cdd4e0; } } + +/* ###### 9.3 Height ###### */ +.ht-5 { + height: 5px; } + +.ht-5p { + height: 5%; } + +.mx-ht-5p { + max-height: 5%; } + +.mn-ht-5p { + min-height: 5%; } + +.ht-5-f { + height: 5px !important; } + +.ht-5p-f { + height: 5% !important; } + +.ht-10 { + height: 10px; } + +.ht-10p { + height: 10%; } + +.mx-ht-10p { + max-height: 10%; } + +.mn-ht-10p { + min-height: 10%; } + +.ht-10-f { + height: 10px !important; } + +.ht-10p-f { + height: 10% !important; } + +.ht-15 { + height: 15px; } + +.ht-15p { + height: 15%; } + +.mx-ht-15p { + max-height: 15%; } + +.mn-ht-15p { + min-height: 15%; } + +.ht-15-f { + height: 15px !important; } + +.ht-15p-f { + height: 15% !important; } + +.ht-20 { + height: 20px; } + +.ht-20p { + height: 20%; } + +.mx-ht-20p { + max-height: 20%; } + +.mn-ht-20p { + min-height: 20%; } + +.ht-20-f { + height: 20px !important; } + +.ht-20p-f { + height: 20% !important; } + +.ht-25 { + height: 25px; } + +.ht-25p { + height: 25%; } + +.mx-ht-25p { + max-height: 25%; } + +.mn-ht-25p { + min-height: 25%; } + +.ht-25-f { + height: 25px !important; } + +.ht-25p-f { + height: 25% !important; } + +.ht-30 { + height: 30px; } + +.ht-30p { + height: 30%; } + +.mx-ht-30p { + max-height: 30%; } + +.mn-ht-30p { + min-height: 30%; } + +.ht-30-f { + height: 30px !important; } + +.ht-30p-f { + height: 30% !important; } + +.ht-35 { + height: 35px; } + +.ht-35p { + height: 35%; } + +.mx-ht-35p { + max-height: 35%; } + +.mn-ht-35p { + min-height: 35%; } + +.ht-35-f { + height: 35px !important; } + +.ht-35p-f { + height: 35% !important; } + +.ht-40 { + height: 40px; } + +.ht-40p { + height: 40%; } + +.mx-ht-40p { + max-height: 40%; } + +.mn-ht-40p { + min-height: 40%; } + +.ht-40-f { + height: 40px !important; } + +.ht-40p-f { + height: 40% !important; } + +.ht-45 { + height: 45px; } + +.ht-45p { + height: 45%; } + +.mx-ht-45p { + max-height: 45%; } + +.mn-ht-45p { + min-height: 45%; } + +.ht-45-f { + height: 45px !important; } + +.ht-45p-f { + height: 45% !important; } + +.ht-50 { + height: 50px; } + +.ht-50p { + height: 50%; } + +.mx-ht-50p { + max-height: 50%; } + +.mn-ht-50p { + min-height: 50%; } + +.ht-50-f { + height: 50px !important; } + +.ht-50p-f { + height: 50% !important; } + +.ht-55 { + height: 55px; } + +.ht-55p { + height: 55%; } + +.mx-ht-55p { + max-height: 55%; } + +.mn-ht-55p { + min-height: 55%; } + +.ht-55-f { + height: 55px !important; } + +.ht-55p-f { + height: 55% !important; } + +.ht-60 { + height: 60px; } + +.ht-60p { + height: 60%; } + +.mx-ht-60p { + max-height: 60%; } + +.mn-ht-60p { + min-height: 60%; } + +.ht-60-f { + height: 60px !important; } + +.ht-60p-f { + height: 60% !important; } + +.ht-65 { + height: 65px; } + +.ht-65p { + height: 65%; } + +.mx-ht-65p { + max-height: 65%; } + +.mn-ht-65p { + min-height: 65%; } + +.ht-65-f { + height: 65px !important; } + +.ht-65p-f { + height: 65% !important; } + +.ht-70 { + height: 70px; } + +.ht-70p { + height: 70%; } + +.mx-ht-70p { + max-height: 70%; } + +.mn-ht-70p { + min-height: 70%; } + +.ht-70-f { + height: 70px !important; } + +.ht-70p-f { + height: 70% !important; } + +.ht-75 { + height: 75px; } + +.ht-75p { + height: 75%; } + +.mx-ht-75p { + max-height: 75%; } + +.mn-ht-75p { + min-height: 75%; } + +.ht-75-f { + height: 75px !important; } + +.ht-75p-f { + height: 75% !important; } + +.ht-80 { + height: 80px; } + +.ht-80p { + height: 80%; } + +.mx-ht-80p { + max-height: 80%; } + +.mn-ht-80p { + min-height: 80%; } + +.ht-80-f { + height: 80px !important; } + +.ht-80p-f { + height: 80% !important; } + +.ht-85 { + height: 85px; } + +.ht-85p { + height: 85%; } + +.mx-ht-85p { + max-height: 85%; } + +.mn-ht-85p { + min-height: 85%; } + +.ht-85-f { + height: 85px !important; } + +.ht-85p-f { + height: 85% !important; } + +.ht-90 { + height: 90px; } + +.ht-90p { + height: 90%; } + +.mx-ht-90p { + max-height: 90%; } + +.mn-ht-90p { + min-height: 90%; } + +.ht-90-f { + height: 90px !important; } + +.ht-90p-f { + height: 90% !important; } + +.ht-95 { + height: 95px; } + +.ht-95p { + height: 95%; } + +.mx-ht-95p { + max-height: 95%; } + +.mn-ht-95p { + min-height: 95%; } + +.ht-95-f { + height: 95px !important; } + +.ht-95p-f { + height: 95% !important; } + +.ht-100 { + height: 100px; } + +.ht-100p { + height: 100%; } + +.mx-ht-100p { + max-height: 100%; } + +.mn-ht-100p { + min-height: 100%; } + +.ht-100-f { + height: 100px !important; } + +.ht-100p-f { + height: 100% !important; } + +.ht-150 { + height: 150px; } + +.ht-200 { + height: 200px; } + +.ht-250 { + height: 250px; } + +.ht-300 { + height: 300px; } + +.ht-350 { + height: 350px; } + +.ht-400 { + height: 400px; } + +.ht-450 { + height: 450px; } + +.ht-500 { + height: 500px; } + +.ht-550 { + height: 550px; } + +.ht-600 { + height: 600px; } + +.ht-650 { + height: 650px; } + +.ht-700 { + height: 700px; } + +.ht-750 { + height: 750px; } + +.ht-800 { + height: 800px; } + +.ht-100v { + height: 100vh; } + +.ht-1 { + height: 1px; } + +.ht-2 { + height: 2px; } + +.ht-3 { + height: 3px; } + +.ht-4 { + height: 4px; } + +.ht-6 { + height: 6px; } + +.ht-7 { + height: 7px; } + +.ht-8 { + height: 8px; } + +.ht-9 { + height: 9px; } + +.ht-auto { + height: auto; } + +.ht-16 { + height: 16px; } + +.ht-32 { + height: 32px; } + +.ht-36 { + height: 36px; } + +.ht-48 { + height: 48px; } + +.ht-64 { + height: 64px; } + +.ht-72 { + height: 72px; } + +.ht-115 { + height: 115px; } + +.ht-120 { + height: 120px; } + +.ht-160 { + height: 160px; } + +@media (min-width: 480px) { + .ht-xs-5 { + height: 5px; } + .ht-xs-5p { + height: 5%; } + .mx-ht-xs-5p { + max-height: 5%; } + .mn-ht-xs-5p { + min-height: 5%; } + .ht-xs-5-f { + height: 5px !important; } + .ht-xs-5p-f { + height: 5% !important; } + .ht-xs-10 { + height: 10px; } + .ht-xs-10p { + height: 10%; } + .mx-ht-xs-10p { + max-height: 10%; } + .mn-ht-xs-10p { + min-height: 10%; } + .ht-xs-10-f { + height: 10px !important; } + .ht-xs-10p-f { + height: 10% !important; } + .ht-xs-15 { + height: 15px; } + .ht-xs-15p { + height: 15%; } + .mx-ht-xs-15p { + max-height: 15%; } + .mn-ht-xs-15p { + min-height: 15%; } + .ht-xs-15-f { + height: 15px !important; } + .ht-xs-15p-f { + height: 15% !important; } + .ht-xs-20 { + height: 20px; } + .ht-xs-20p { + height: 20%; } + .mx-ht-xs-20p { + max-height: 20%; } + .mn-ht-xs-20p { + min-height: 20%; } + .ht-xs-20-f { + height: 20px !important; } + .ht-xs-20p-f { + height: 20% !important; } + .ht-xs-25 { + height: 25px; } + .ht-xs-25p { + height: 25%; } + .mx-ht-xs-25p { + max-height: 25%; } + .mn-ht-xs-25p { + min-height: 25%; } + .ht-xs-25-f { + height: 25px !important; } + .ht-xs-25p-f { + height: 25% !important; } + .ht-xs-30 { + height: 30px; } + .ht-xs-30p { + height: 30%; } + .mx-ht-xs-30p { + max-height: 30%; } + .mn-ht-xs-30p { + min-height: 30%; } + .ht-xs-30-f { + height: 30px !important; } + .ht-xs-30p-f { + height: 30% !important; } + .ht-xs-35 { + height: 35px; } + .ht-xs-35p { + height: 35%; } + .mx-ht-xs-35p { + max-height: 35%; } + .mn-ht-xs-35p { + min-height: 35%; } + .ht-xs-35-f { + height: 35px !important; } + .ht-xs-35p-f { + height: 35% !important; } + .ht-xs-40 { + height: 40px; } + .ht-xs-40p { + height: 40%; } + .mx-ht-xs-40p { + max-height: 40%; } + .mn-ht-xs-40p { + min-height: 40%; } + .ht-xs-40-f { + height: 40px !important; } + .ht-xs-40p-f { + height: 40% !important; } + .ht-xs-45 { + height: 45px; } + .ht-xs-45p { + height: 45%; } + .mx-ht-xs-45p { + max-height: 45%; } + .mn-ht-xs-45p { + min-height: 45%; } + .ht-xs-45-f { + height: 45px !important; } + .ht-xs-45p-f { + height: 45% !important; } + .ht-xs-50 { + height: 50px; } + .ht-xs-50p { + height: 50%; } + .mx-ht-xs-50p { + max-height: 50%; } + .mn-ht-xs-50p { + min-height: 50%; } + .ht-xs-50-f { + height: 50px !important; } + .ht-xs-50p-f { + height: 50% !important; } + .ht-xs-55 { + height: 55px; } + .ht-xs-55p { + height: 55%; } + .mx-ht-xs-55p { + max-height: 55%; } + .mn-ht-xs-55p { + min-height: 55%; } + .ht-xs-55-f { + height: 55px !important; } + .ht-xs-55p-f { + height: 55% !important; } + .ht-xs-60 { + height: 60px; } + .ht-xs-60p { + height: 60%; } + .mx-ht-xs-60p { + max-height: 60%; } + .mn-ht-xs-60p { + min-height: 60%; } + .ht-xs-60-f { + height: 60px !important; } + .ht-xs-60p-f { + height: 60% !important; } + .ht-xs-65 { + height: 65px; } + .ht-xs-65p { + height: 65%; } + .mx-ht-xs-65p { + max-height: 65%; } + .mn-ht-xs-65p { + min-height: 65%; } + .ht-xs-65-f { + height: 65px !important; } + .ht-xs-65p-f { + height: 65% !important; } + .ht-xs-70 { + height: 70px; } + .ht-xs-70p { + height: 70%; } + .mx-ht-xs-70p { + max-height: 70%; } + .mn-ht-xs-70p { + min-height: 70%; } + .ht-xs-70-f { + height: 70px !important; } + .ht-xs-70p-f { + height: 70% !important; } + .ht-xs-75 { + height: 75px; } + .ht-xs-75p { + height: 75%; } + .mx-ht-xs-75p { + max-height: 75%; } + .mn-ht-xs-75p { + min-height: 75%; } + .ht-xs-75-f { + height: 75px !important; } + .ht-xs-75p-f { + height: 75% !important; } + .ht-xs-80 { + height: 80px; } + .ht-xs-80p { + height: 80%; } + .mx-ht-xs-80p { + max-height: 80%; } + .mn-ht-xs-80p { + min-height: 80%; } + .ht-xs-80-f { + height: 80px !important; } + .ht-xs-80p-f { + height: 80% !important; } + .ht-xs-85 { + height: 85px; } + .ht-xs-85p { + height: 85%; } + .mx-ht-xs-85p { + max-height: 85%; } + .mn-ht-xs-85p { + min-height: 85%; } + .ht-xs-85-f { + height: 85px !important; } + .ht-xs-85p-f { + height: 85% !important; } + .ht-xs-90 { + height: 90px; } + .ht-xs-90p { + height: 90%; } + .mx-ht-xs-90p { + max-height: 90%; } + .mn-ht-xs-90p { + min-height: 90%; } + .ht-xs-90-f { + height: 90px !important; } + .ht-xs-90p-f { + height: 90% !important; } + .ht-xs-95 { + height: 95px; } + .ht-xs-95p { + height: 95%; } + .mx-ht-xs-95p { + max-height: 95%; } + .mn-ht-xs-95p { + min-height: 95%; } + .ht-xs-95-f { + height: 95px !important; } + .ht-xs-95p-f { + height: 95% !important; } + .ht-xs-100 { + height: 100px; } + .ht-xs-100p { + height: 100%; } + .mx-ht-xs-100p { + max-height: 100%; } + .mn-ht-xs-100p { + min-height: 100%; } + .ht-xs-100-f { + height: 100px !important; } + .ht-xs-100p-f { + height: 100% !important; } + .ht-xs-150 { + height: 150px; } + .ht-xs-150p { + height: 150%; } + .mx-ht-xs-150p { + max-height: 150%; } + .mn-ht-xs-150p { + min-height: 150%; } + .ht-xs-150-f { + height: 150px !important; } + .ht-xs-150p-f { + height: 150% !important; } + .ht-xs-200 { + height: 200px; } + .ht-xs-200p { + height: 200%; } + .mx-ht-xs-200p { + max-height: 200%; } + .mn-ht-xs-200p { + min-height: 200%; } + .ht-xs-200-f { + height: 200px !important; } + .ht-xs-200p-f { + height: 200% !important; } + .ht-xs-250 { + height: 250px; } + .ht-xs-250p { + height: 250%; } + .mx-ht-xs-250p { + max-height: 250%; } + .mn-ht-xs-250p { + min-height: 250%; } + .ht-xs-250-f { + height: 250px !important; } + .ht-xs-250p-f { + height: 250% !important; } + .ht-xs-300 { + height: 300px; } + .ht-xs-300p { + height: 300%; } + .mx-ht-xs-300p { + max-height: 300%; } + .mn-ht-xs-300p { + min-height: 300%; } + .ht-xs-300-f { + height: 300px !important; } + .ht-xs-300p-f { + height: 300% !important; } + .ht-xs-350 { + height: 350px; } + .ht-xs-350p { + height: 350%; } + .mx-ht-xs-350p { + max-height: 350%; } + .mn-ht-xs-350p { + min-height: 350%; } + .ht-xs-350-f { + height: 350px !important; } + .ht-xs-350p-f { + height: 350% !important; } + .ht-xs-400 { + height: 400px; } + .ht-xs-400p { + height: 400%; } + .mx-ht-xs-400p { + max-height: 400%; } + .mn-ht-xs-400p { + min-height: 400%; } + .ht-xs-400-f { + height: 400px !important; } + .ht-xs-400p-f { + height: 400% !important; } + .ht-xs-450 { + height: 450px; } + .ht-xs-450p { + height: 450%; } + .mx-ht-xs-450p { + max-height: 450%; } + .mn-ht-xs-450p { + min-height: 450%; } + .ht-xs-450-f { + height: 450px !important; } + .ht-xs-450p-f { + height: 450% !important; } + .ht-xs-500 { + height: 500px; } + .ht-xs-500p { + height: 500%; } + .mx-ht-xs-500p { + max-height: 500%; } + .mn-ht-xs-500p { + min-height: 500%; } + .ht-xs-500-f { + height: 500px !important; } + .ht-xs-500p-f { + height: 500% !important; } + .ht-xs-550 { + height: 550px; } + .ht-xs-550p { + height: 550%; } + .mx-ht-xs-550p { + max-height: 550%; } + .mn-ht-xs-550p { + min-height: 550%; } + .ht-xs-550-f { + height: 550px !important; } + .ht-xs-550p-f { + height: 550% !important; } + .ht-xs-600 { + height: 600px; } + .ht-xs-600p { + height: 600%; } + .mx-ht-xs-600p { + max-height: 600%; } + .mn-ht-xs-600p { + min-height: 600%; } + .ht-xs-600-f { + height: 600px !important; } + .ht-xs-600p-f { + height: 600% !important; } + .ht-xs-650 { + height: 650px; } + .ht-xs-650p { + height: 650%; } + .mx-ht-xs-650p { + max-height: 650%; } + .mn-ht-xs-650p { + min-height: 650%; } + .ht-xs-650-f { + height: 650px !important; } + .ht-xs-650p-f { + height: 650% !important; } + .ht-xs-700 { + height: 700px; } + .ht-xs-700p { + height: 700%; } + .mx-ht-xs-700p { + max-height: 700%; } + .mn-ht-xs-700p { + min-height: 700%; } + .ht-xs-700-f { + height: 700px !important; } + .ht-xs-700p-f { + height: 700% !important; } + .ht-xs-750 { + height: 750px; } + .ht-xs-750p { + height: 750%; } + .mx-ht-xs-750p { + max-height: 750%; } + .mn-ht-xs-750p { + min-height: 750%; } + .ht-xs-750-f { + height: 750px !important; } + .ht-xs-750p-f { + height: 750% !important; } + .ht-xs-800 { + height: 800px; } + .ht-xs-800p { + height: 800%; } + .mx-ht-xs-800p { + max-height: 800%; } + .mn-ht-xs-800p { + min-height: 800%; } + .ht-xs-800-f { + height: 800px !important; } + .ht-xs-800p-f { + height: 800% !important; } + .ht-xs-850 { + height: 850px; } + .ht-xs-850p { + height: 850%; } + .mx-ht-xs-850p { + max-height: 850%; } + .mn-ht-xs-850p { + min-height: 850%; } + .ht-xs-850-f { + height: 850px !important; } + .ht-xs-850p-f { + height: 850% !important; } + .ht-xs-100v { + height: 100vh; } } + +@media (min-width: 576px) { + .ht-sm-5 { + height: 5px; } + .ht-sm-5p { + height: 5%; } + .mx-ht-sm-5p { + max-height: 5%; } + .mn-ht-sm-5p { + min-height: 5%; } + .ht-sm-5-f { + height: 5px !important; } + .ht-sm-5p-f { + height: 5% !important; } + .ht-sm-10 { + height: 10px; } + .ht-sm-10p { + height: 10%; } + .mx-ht-sm-10p { + max-height: 10%; } + .mn-ht-sm-10p { + min-height: 10%; } + .ht-sm-10-f { + height: 10px !important; } + .ht-sm-10p-f { + height: 10% !important; } + .ht-sm-15 { + height: 15px; } + .ht-sm-15p { + height: 15%; } + .mx-ht-sm-15p { + max-height: 15%; } + .mn-ht-sm-15p { + min-height: 15%; } + .ht-sm-15-f { + height: 15px !important; } + .ht-sm-15p-f { + height: 15% !important; } + .ht-sm-20 { + height: 20px; } + .ht-sm-20p { + height: 20%; } + .mx-ht-sm-20p { + max-height: 20%; } + .mn-ht-sm-20p { + min-height: 20%; } + .ht-sm-20-f { + height: 20px !important; } + .ht-sm-20p-f { + height: 20% !important; } + .ht-sm-25 { + height: 25px; } + .ht-sm-25p { + height: 25%; } + .mx-ht-sm-25p { + max-height: 25%; } + .mn-ht-sm-25p { + min-height: 25%; } + .ht-sm-25-f { + height: 25px !important; } + .ht-sm-25p-f { + height: 25% !important; } + .ht-sm-30 { + height: 30px; } + .ht-sm-30p { + height: 30%; } + .mx-ht-sm-30p { + max-height: 30%; } + .mn-ht-sm-30p { + min-height: 30%; } + .ht-sm-30-f { + height: 30px !important; } + .ht-sm-30p-f { + height: 30% !important; } + .ht-sm-35 { + height: 35px; } + .ht-sm-35p { + height: 35%; } + .mx-ht-sm-35p { + max-height: 35%; } + .mn-ht-sm-35p { + min-height: 35%; } + .ht-sm-35-f { + height: 35px !important; } + .ht-sm-35p-f { + height: 35% !important; } + .ht-sm-40 { + height: 40px; } + .ht-sm-40p { + height: 40%; } + .mx-ht-sm-40p { + max-height: 40%; } + .mn-ht-sm-40p { + min-height: 40%; } + .ht-sm-40-f { + height: 40px !important; } + .ht-sm-40p-f { + height: 40% !important; } + .ht-sm-45 { + height: 45px; } + .ht-sm-45p { + height: 45%; } + .mx-ht-sm-45p { + max-height: 45%; } + .mn-ht-sm-45p { + min-height: 45%; } + .ht-sm-45-f { + height: 45px !important; } + .ht-sm-45p-f { + height: 45% !important; } + .ht-sm-50 { + height: 50px; } + .ht-sm-50p { + height: 50%; } + .mx-ht-sm-50p { + max-height: 50%; } + .mn-ht-sm-50p { + min-height: 50%; } + .ht-sm-50-f { + height: 50px !important; } + .ht-sm-50p-f { + height: 50% !important; } + .ht-sm-55 { + height: 55px; } + .ht-sm-55p { + height: 55%; } + .mx-ht-sm-55p { + max-height: 55%; } + .mn-ht-sm-55p { + min-height: 55%; } + .ht-sm-55-f { + height: 55px !important; } + .ht-sm-55p-f { + height: 55% !important; } + .ht-sm-60 { + height: 60px; } + .ht-sm-60p { + height: 60%; } + .mx-ht-sm-60p { + max-height: 60%; } + .mn-ht-sm-60p { + min-height: 60%; } + .ht-sm-60-f { + height: 60px !important; } + .ht-sm-60p-f { + height: 60% !important; } + .ht-sm-65 { + height: 65px; } + .ht-sm-65p { + height: 65%; } + .mx-ht-sm-65p { + max-height: 65%; } + .mn-ht-sm-65p { + min-height: 65%; } + .ht-sm-65-f { + height: 65px !important; } + .ht-sm-65p-f { + height: 65% !important; } + .ht-sm-70 { + height: 70px; } + .ht-sm-70p { + height: 70%; } + .mx-ht-sm-70p { + max-height: 70%; } + .mn-ht-sm-70p { + min-height: 70%; } + .ht-sm-70-f { + height: 70px !important; } + .ht-sm-70p-f { + height: 70% !important; } + .ht-sm-75 { + height: 75px; } + .ht-sm-75p { + height: 75%; } + .mx-ht-sm-75p { + max-height: 75%; } + .mn-ht-sm-75p { + min-height: 75%; } + .ht-sm-75-f { + height: 75px !important; } + .ht-sm-75p-f { + height: 75% !important; } + .ht-sm-80 { + height: 80px; } + .ht-sm-80p { + height: 80%; } + .mx-ht-sm-80p { + max-height: 80%; } + .mn-ht-sm-80p { + min-height: 80%; } + .ht-sm-80-f { + height: 80px !important; } + .ht-sm-80p-f { + height: 80% !important; } + .ht-sm-85 { + height: 85px; } + .ht-sm-85p { + height: 85%; } + .mx-ht-sm-85p { + max-height: 85%; } + .mn-ht-sm-85p { + min-height: 85%; } + .ht-sm-85-f { + height: 85px !important; } + .ht-sm-85p-f { + height: 85% !important; } + .ht-sm-90 { + height: 90px; } + .ht-sm-90p { + height: 90%; } + .mx-ht-sm-90p { + max-height: 90%; } + .mn-ht-sm-90p { + min-height: 90%; } + .ht-sm-90-f { + height: 90px !important; } + .ht-sm-90p-f { + height: 90% !important; } + .ht-sm-95 { + height: 95px; } + .ht-sm-95p { + height: 95%; } + .mx-ht-sm-95p { + max-height: 95%; } + .mn-ht-sm-95p { + min-height: 95%; } + .ht-sm-95-f { + height: 95px !important; } + .ht-sm-95p-f { + height: 95% !important; } + .ht-sm-100 { + height: 100px; } + .ht-sm-100p { + height: 100%; } + .mx-ht-sm-100p { + max-height: 100%; } + .mn-ht-sm-100p { + min-height: 100%; } + .ht-sm-100-f { + height: 100px !important; } + .ht-sm-100p-f { + height: 100% !important; } + .ht-sm-150 { + height: 150px; } + .ht-sm-150p { + height: 150%; } + .mx-ht-sm-150p { + max-height: 150%; } + .mn-ht-sm-150p { + min-height: 150%; } + .ht-sm-150-f { + height: 150px !important; } + .ht-sm-150p-f { + height: 150% !important; } + .ht-sm-200 { + height: 200px; } + .ht-sm-200p { + height: 200%; } + .mx-ht-sm-200p { + max-height: 200%; } + .mn-ht-sm-200p { + min-height: 200%; } + .ht-sm-200-f { + height: 200px !important; } + .ht-sm-200p-f { + height: 200% !important; } + .ht-sm-250 { + height: 250px; } + .ht-sm-250p { + height: 250%; } + .mx-ht-sm-250p { + max-height: 250%; } + .mn-ht-sm-250p { + min-height: 250%; } + .ht-sm-250-f { + height: 250px !important; } + .ht-sm-250p-f { + height: 250% !important; } + .ht-sm-300 { + height: 300px; } + .ht-sm-300p { + height: 300%; } + .mx-ht-sm-300p { + max-height: 300%; } + .mn-ht-sm-300p { + min-height: 300%; } + .ht-sm-300-f { + height: 300px !important; } + .ht-sm-300p-f { + height: 300% !important; } + .ht-sm-350 { + height: 350px; } + .ht-sm-350p { + height: 350%; } + .mx-ht-sm-350p { + max-height: 350%; } + .mn-ht-sm-350p { + min-height: 350%; } + .ht-sm-350-f { + height: 350px !important; } + .ht-sm-350p-f { + height: 350% !important; } + .ht-sm-400 { + height: 400px; } + .ht-sm-400p { + height: 400%; } + .mx-ht-sm-400p { + max-height: 400%; } + .mn-ht-sm-400p { + min-height: 400%; } + .ht-sm-400-f { + height: 400px !important; } + .ht-sm-400p-f { + height: 400% !important; } + .ht-sm-450 { + height: 450px; } + .ht-sm-450p { + height: 450%; } + .mx-ht-sm-450p { + max-height: 450%; } + .mn-ht-sm-450p { + min-height: 450%; } + .ht-sm-450-f { + height: 450px !important; } + .ht-sm-450p-f { + height: 450% !important; } + .ht-sm-500 { + height: 500px; } + .ht-sm-500p { + height: 500%; } + .mx-ht-sm-500p { + max-height: 500%; } + .mn-ht-sm-500p { + min-height: 500%; } + .ht-sm-500-f { + height: 500px !important; } + .ht-sm-500p-f { + height: 500% !important; } + .ht-sm-550 { + height: 550px; } + .ht-sm-550p { + height: 550%; } + .mx-ht-sm-550p { + max-height: 550%; } + .mn-ht-sm-550p { + min-height: 550%; } + .ht-sm-550-f { + height: 550px !important; } + .ht-sm-550p-f { + height: 550% !important; } + .ht-sm-600 { + height: 600px; } + .ht-sm-600p { + height: 600%; } + .mx-ht-sm-600p { + max-height: 600%; } + .mn-ht-sm-600p { + min-height: 600%; } + .ht-sm-600-f { + height: 600px !important; } + .ht-sm-600p-f { + height: 600% !important; } + .ht-sm-650 { + height: 650px; } + .ht-sm-650p { + height: 650%; } + .mx-ht-sm-650p { + max-height: 650%; } + .mn-ht-sm-650p { + min-height: 650%; } + .ht-sm-650-f { + height: 650px !important; } + .ht-sm-650p-f { + height: 650% !important; } + .ht-sm-700 { + height: 700px; } + .ht-sm-700p { + height: 700%; } + .mx-ht-sm-700p { + max-height: 700%; } + .mn-ht-sm-700p { + min-height: 700%; } + .ht-sm-700-f { + height: 700px !important; } + .ht-sm-700p-f { + height: 700% !important; } + .ht-sm-750 { + height: 750px; } + .ht-sm-750p { + height: 750%; } + .mx-ht-sm-750p { + max-height: 750%; } + .mn-ht-sm-750p { + min-height: 750%; } + .ht-sm-750-f { + height: 750px !important; } + .ht-sm-750p-f { + height: 750% !important; } + .ht-sm-800 { + height: 800px; } + .ht-sm-800p { + height: 800%; } + .mx-ht-sm-800p { + max-height: 800%; } + .mn-ht-sm-800p { + min-height: 800%; } + .ht-sm-800-f { + height: 800px !important; } + .ht-sm-800p-f { + height: 800% !important; } + .ht-sm-850 { + height: 850px; } + .ht-sm-850p { + height: 850%; } + .mx-ht-sm-850p { + max-height: 850%; } + .mn-ht-sm-850p { + min-height: 850%; } + .ht-sm-850-f { + height: 850px !important; } + .ht-sm-850p-f { + height: 850% !important; } + .ht-sm-100v { + height: 100vh; } } + +@media (min-width: 768px) { + .ht-md-5 { + height: 5px; } + .ht-md-5p { + height: 5%; } + .mx-ht-md-5p { + max-height: 5%; } + .mn-ht-md-5p { + min-height: 5%; } + .ht-md-5-f { + height: 5px !important; } + .ht-md-5p-f { + height: 5% !important; } + .ht-md-10 { + height: 10px; } + .ht-md-10p { + height: 10%; } + .mx-ht-md-10p { + max-height: 10%; } + .mn-ht-md-10p { + min-height: 10%; } + .ht-md-10-f { + height: 10px !important; } + .ht-md-10p-f { + height: 10% !important; } + .ht-md-15 { + height: 15px; } + .ht-md-15p { + height: 15%; } + .mx-ht-md-15p { + max-height: 15%; } + .mn-ht-md-15p { + min-height: 15%; } + .ht-md-15-f { + height: 15px !important; } + .ht-md-15p-f { + height: 15% !important; } + .ht-md-20 { + height: 20px; } + .ht-md-20p { + height: 20%; } + .mx-ht-md-20p { + max-height: 20%; } + .mn-ht-md-20p { + min-height: 20%; } + .ht-md-20-f { + height: 20px !important; } + .ht-md-20p-f { + height: 20% !important; } + .ht-md-25 { + height: 25px; } + .ht-md-25p { + height: 25%; } + .mx-ht-md-25p { + max-height: 25%; } + .mn-ht-md-25p { + min-height: 25%; } + .ht-md-25-f { + height: 25px !important; } + .ht-md-25p-f { + height: 25% !important; } + .ht-md-30 { + height: 30px; } + .ht-md-30p { + height: 30%; } + .mx-ht-md-30p { + max-height: 30%; } + .mn-ht-md-30p { + min-height: 30%; } + .ht-md-30-f { + height: 30px !important; } + .ht-md-30p-f { + height: 30% !important; } + .ht-md-35 { + height: 35px; } + .ht-md-35p { + height: 35%; } + .mx-ht-md-35p { + max-height: 35%; } + .mn-ht-md-35p { + min-height: 35%; } + .ht-md-35-f { + height: 35px !important; } + .ht-md-35p-f { + height: 35% !important; } + .ht-md-40 { + height: 40px; } + .ht-md-40p { + height: 40%; } + .mx-ht-md-40p { + max-height: 40%; } + .mn-ht-md-40p { + min-height: 40%; } + .ht-md-40-f { + height: 40px !important; } + .ht-md-40p-f { + height: 40% !important; } + .ht-md-45 { + height: 45px; } + .ht-md-45p { + height: 45%; } + .mx-ht-md-45p { + max-height: 45%; } + .mn-ht-md-45p { + min-height: 45%; } + .ht-md-45-f { + height: 45px !important; } + .ht-md-45p-f { + height: 45% !important; } + .ht-md-50 { + height: 50px; } + .ht-md-50p { + height: 50%; } + .mx-ht-md-50p { + max-height: 50%; } + .mn-ht-md-50p { + min-height: 50%; } + .ht-md-50-f { + height: 50px !important; } + .ht-md-50p-f { + height: 50% !important; } + .ht-md-55 { + height: 55px; } + .ht-md-55p { + height: 55%; } + .mx-ht-md-55p { + max-height: 55%; } + .mn-ht-md-55p { + min-height: 55%; } + .ht-md-55-f { + height: 55px !important; } + .ht-md-55p-f { + height: 55% !important; } + .ht-md-60 { + height: 60px; } + .ht-md-60p { + height: 60%; } + .mx-ht-md-60p { + max-height: 60%; } + .mn-ht-md-60p { + min-height: 60%; } + .ht-md-60-f { + height: 60px !important; } + .ht-md-60p-f { + height: 60% !important; } + .ht-md-65 { + height: 65px; } + .ht-md-65p { + height: 65%; } + .mx-ht-md-65p { + max-height: 65%; } + .mn-ht-md-65p { + min-height: 65%; } + .ht-md-65-f { + height: 65px !important; } + .ht-md-65p-f { + height: 65% !important; } + .ht-md-70 { + height: 70px; } + .ht-md-70p { + height: 70%; } + .mx-ht-md-70p { + max-height: 70%; } + .mn-ht-md-70p { + min-height: 70%; } + .ht-md-70-f { + height: 70px !important; } + .ht-md-70p-f { + height: 70% !important; } + .ht-md-75 { + height: 75px; } + .ht-md-75p { + height: 75%; } + .mx-ht-md-75p { + max-height: 75%; } + .mn-ht-md-75p { + min-height: 75%; } + .ht-md-75-f { + height: 75px !important; } + .ht-md-75p-f { + height: 75% !important; } + .ht-md-80 { + height: 80px; } + .ht-md-80p { + height: 80%; } + .mx-ht-md-80p { + max-height: 80%; } + .mn-ht-md-80p { + min-height: 80%; } + .ht-md-80-f { + height: 80px !important; } + .ht-md-80p-f { + height: 80% !important; } + .ht-md-85 { + height: 85px; } + .ht-md-85p { + height: 85%; } + .mx-ht-md-85p { + max-height: 85%; } + .mn-ht-md-85p { + min-height: 85%; } + .ht-md-85-f { + height: 85px !important; } + .ht-md-85p-f { + height: 85% !important; } + .ht-md-90 { + height: 90px; } + .ht-md-90p { + height: 90%; } + .mx-ht-md-90p { + max-height: 90%; } + .mn-ht-md-90p { + min-height: 90%; } + .ht-md-90-f { + height: 90px !important; } + .ht-md-90p-f { + height: 90% !important; } + .ht-md-95 { + height: 95px; } + .ht-md-95p { + height: 95%; } + .mx-ht-md-95p { + max-height: 95%; } + .mn-ht-md-95p { + min-height: 95%; } + .ht-md-95-f { + height: 95px !important; } + .ht-md-95p-f { + height: 95% !important; } + .ht-md-100 { + height: 100px; } + .ht-md-100p { + height: 100%; } + .mx-ht-md-100p { + max-height: 100%; } + .mn-ht-md-100p { + min-height: 100%; } + .ht-md-100-f { + height: 100px !important; } + .ht-md-100p-f { + height: 100% !important; } + .ht-md-150 { + height: 150px; } + .ht-md-150p { + height: 150%; } + .mx-ht-md-150p { + max-height: 150%; } + .mn-ht-md-150p { + min-height: 150%; } + .ht-md-150-f { + height: 150px !important; } + .ht-md-150p-f { + height: 150% !important; } + .ht-md-200 { + height: 200px; } + .ht-md-200p { + height: 200%; } + .mx-ht-md-200p { + max-height: 200%; } + .mn-ht-md-200p { + min-height: 200%; } + .ht-md-200-f { + height: 200px !important; } + .ht-md-200p-f { + height: 200% !important; } + .ht-md-250 { + height: 250px; } + .ht-md-250p { + height: 250%; } + .mx-ht-md-250p { + max-height: 250%; } + .mn-ht-md-250p { + min-height: 250%; } + .ht-md-250-f { + height: 250px !important; } + .ht-md-250p-f { + height: 250% !important; } + .ht-md-300 { + height: 300px; } + .ht-md-300p { + height: 300%; } + .mx-ht-md-300p { + max-height: 300%; } + .mn-ht-md-300p { + min-height: 300%; } + .ht-md-300-f { + height: 300px !important; } + .ht-md-300p-f { + height: 300% !important; } + .ht-md-350 { + height: 350px; } + .ht-md-350p { + height: 350%; } + .mx-ht-md-350p { + max-height: 350%; } + .mn-ht-md-350p { + min-height: 350%; } + .ht-md-350-f { + height: 350px !important; } + .ht-md-350p-f { + height: 350% !important; } + .ht-md-400 { + height: 400px; } + .ht-md-400p { + height: 400%; } + .mx-ht-md-400p { + max-height: 400%; } + .mn-ht-md-400p { + min-height: 400%; } + .ht-md-400-f { + height: 400px !important; } + .ht-md-400p-f { + height: 400% !important; } + .ht-md-450 { + height: 450px; } + .ht-md-450p { + height: 450%; } + .mx-ht-md-450p { + max-height: 450%; } + .mn-ht-md-450p { + min-height: 450%; } + .ht-md-450-f { + height: 450px !important; } + .ht-md-450p-f { + height: 450% !important; } + .ht-md-500 { + height: 500px; } + .ht-md-500p { + height: 500%; } + .mx-ht-md-500p { + max-height: 500%; } + .mn-ht-md-500p { + min-height: 500%; } + .ht-md-500-f { + height: 500px !important; } + .ht-md-500p-f { + height: 500% !important; } + .ht-md-550 { + height: 550px; } + .ht-md-550p { + height: 550%; } + .mx-ht-md-550p { + max-height: 550%; } + .mn-ht-md-550p { + min-height: 550%; } + .ht-md-550-f { + height: 550px !important; } + .ht-md-550p-f { + height: 550% !important; } + .ht-md-600 { + height: 600px; } + .ht-md-600p { + height: 600%; } + .mx-ht-md-600p { + max-height: 600%; } + .mn-ht-md-600p { + min-height: 600%; } + .ht-md-600-f { + height: 600px !important; } + .ht-md-600p-f { + height: 600% !important; } + .ht-md-650 { + height: 650px; } + .ht-md-650p { + height: 650%; } + .mx-ht-md-650p { + max-height: 650%; } + .mn-ht-md-650p { + min-height: 650%; } + .ht-md-650-f { + height: 650px !important; } + .ht-md-650p-f { + height: 650% !important; } + .ht-md-700 { + height: 700px; } + .ht-md-700p { + height: 700%; } + .mx-ht-md-700p { + max-height: 700%; } + .mn-ht-md-700p { + min-height: 700%; } + .ht-md-700-f { + height: 700px !important; } + .ht-md-700p-f { + height: 700% !important; } + .ht-md-750 { + height: 750px; } + .ht-md-750p { + height: 750%; } + .mx-ht-md-750p { + max-height: 750%; } + .mn-ht-md-750p { + min-height: 750%; } + .ht-md-750-f { + height: 750px !important; } + .ht-md-750p-f { + height: 750% !important; } + .ht-md-800 { + height: 800px; } + .ht-md-800p { + height: 800%; } + .mx-ht-md-800p { + max-height: 800%; } + .mn-ht-md-800p { + min-height: 800%; } + .ht-md-800-f { + height: 800px !important; } + .ht-md-800p-f { + height: 800% !important; } + .ht-md-850 { + height: 850px; } + .ht-md-850p { + height: 850%; } + .mx-ht-md-850p { + max-height: 850%; } + .mn-ht-md-850p { + min-height: 850%; } + .ht-md-850-f { + height: 850px !important; } + .ht-md-850p-f { + height: 850% !important; } + .ht-md-100v { + height: 100vh; } } + +@media (min-width: 992px) { + .ht-lg-5 { + height: 5px; } + .ht-lg-5p { + height: 5%; } + .mx-ht-lg-5p { + max-height: 5%; } + .mn-ht-lg-5p { + min-height: 5%; } + .ht-lg-5-f { + height: 5px !important; } + .ht-lg-5p-f { + height: 5% !important; } + .ht-lg-10 { + height: 10px; } + .ht-lg-10p { + height: 10%; } + .mx-ht-lg-10p { + max-height: 10%; } + .mn-ht-lg-10p { + min-height: 10%; } + .ht-lg-10-f { + height: 10px !important; } + .ht-lg-10p-f { + height: 10% !important; } + .ht-lg-15 { + height: 15px; } + .ht-lg-15p { + height: 15%; } + .mx-ht-lg-15p { + max-height: 15%; } + .mn-ht-lg-15p { + min-height: 15%; } + .ht-lg-15-f { + height: 15px !important; } + .ht-lg-15p-f { + height: 15% !important; } + .ht-lg-20 { + height: 20px; } + .ht-lg-20p { + height: 20%; } + .mx-ht-lg-20p { + max-height: 20%; } + .mn-ht-lg-20p { + min-height: 20%; } + .ht-lg-20-f { + height: 20px !important; } + .ht-lg-20p-f { + height: 20% !important; } + .ht-lg-25 { + height: 25px; } + .ht-lg-25p { + height: 25%; } + .mx-ht-lg-25p { + max-height: 25%; } + .mn-ht-lg-25p { + min-height: 25%; } + .ht-lg-25-f { + height: 25px !important; } + .ht-lg-25p-f { + height: 25% !important; } + .ht-lg-30 { + height: 30px; } + .ht-lg-30p { + height: 30%; } + .mx-ht-lg-30p { + max-height: 30%; } + .mn-ht-lg-30p { + min-height: 30%; } + .ht-lg-30-f { + height: 30px !important; } + .ht-lg-30p-f { + height: 30% !important; } + .ht-lg-35 { + height: 35px; } + .ht-lg-35p { + height: 35%; } + .mx-ht-lg-35p { + max-height: 35%; } + .mn-ht-lg-35p { + min-height: 35%; } + .ht-lg-35-f { + height: 35px !important; } + .ht-lg-35p-f { + height: 35% !important; } + .ht-lg-40 { + height: 40px; } + .ht-lg-40p { + height: 40%; } + .mx-ht-lg-40p { + max-height: 40%; } + .mn-ht-lg-40p { + min-height: 40%; } + .ht-lg-40-f { + height: 40px !important; } + .ht-lg-40p-f { + height: 40% !important; } + .ht-lg-45 { + height: 45px; } + .ht-lg-45p { + height: 45%; } + .mx-ht-lg-45p { + max-height: 45%; } + .mn-ht-lg-45p { + min-height: 45%; } + .ht-lg-45-f { + height: 45px !important; } + .ht-lg-45p-f { + height: 45% !important; } + .ht-lg-50 { + height: 50px; } + .ht-lg-50p { + height: 50%; } + .mx-ht-lg-50p { + max-height: 50%; } + .mn-ht-lg-50p { + min-height: 50%; } + .ht-lg-50-f { + height: 50px !important; } + .ht-lg-50p-f { + height: 50% !important; } + .ht-lg-55 { + height: 55px; } + .ht-lg-55p { + height: 55%; } + .mx-ht-lg-55p { + max-height: 55%; } + .mn-ht-lg-55p { + min-height: 55%; } + .ht-lg-55-f { + height: 55px !important; } + .ht-lg-55p-f { + height: 55% !important; } + .ht-lg-60 { + height: 60px; } + .ht-lg-60p { + height: 60%; } + .mx-ht-lg-60p { + max-height: 60%; } + .mn-ht-lg-60p { + min-height: 60%; } + .ht-lg-60-f { + height: 60px !important; } + .ht-lg-60p-f { + height: 60% !important; } + .ht-lg-65 { + height: 65px; } + .ht-lg-65p { + height: 65%; } + .mx-ht-lg-65p { + max-height: 65%; } + .mn-ht-lg-65p { + min-height: 65%; } + .ht-lg-65-f { + height: 65px !important; } + .ht-lg-65p-f { + height: 65% !important; } + .ht-lg-70 { + height: 70px; } + .ht-lg-70p { + height: 70%; } + .mx-ht-lg-70p { + max-height: 70%; } + .mn-ht-lg-70p { + min-height: 70%; } + .ht-lg-70-f { + height: 70px !important; } + .ht-lg-70p-f { + height: 70% !important; } + .ht-lg-75 { + height: 75px; } + .ht-lg-75p { + height: 75%; } + .mx-ht-lg-75p { + max-height: 75%; } + .mn-ht-lg-75p { + min-height: 75%; } + .ht-lg-75-f { + height: 75px !important; } + .ht-lg-75p-f { + height: 75% !important; } + .ht-lg-80 { + height: 80px; } + .ht-lg-80p { + height: 80%; } + .mx-ht-lg-80p { + max-height: 80%; } + .mn-ht-lg-80p { + min-height: 80%; } + .ht-lg-80-f { + height: 80px !important; } + .ht-lg-80p-f { + height: 80% !important; } + .ht-lg-85 { + height: 85px; } + .ht-lg-85p { + height: 85%; } + .mx-ht-lg-85p { + max-height: 85%; } + .mn-ht-lg-85p { + min-height: 85%; } + .ht-lg-85-f { + height: 85px !important; } + .ht-lg-85p-f { + height: 85% !important; } + .ht-lg-90 { + height: 90px; } + .ht-lg-90p { + height: 90%; } + .mx-ht-lg-90p { + max-height: 90%; } + .mn-ht-lg-90p { + min-height: 90%; } + .ht-lg-90-f { + height: 90px !important; } + .ht-lg-90p-f { + height: 90% !important; } + .ht-lg-95 { + height: 95px; } + .ht-lg-95p { + height: 95%; } + .mx-ht-lg-95p { + max-height: 95%; } + .mn-ht-lg-95p { + min-height: 95%; } + .ht-lg-95-f { + height: 95px !important; } + .ht-lg-95p-f { + height: 95% !important; } + .ht-lg-100 { + height: 100px; } + .ht-lg-100p { + height: 100%; } + .mx-ht-lg-100p { + max-height: 100%; } + .mn-ht-lg-100p { + min-height: 100%; } + .ht-lg-100-f { + height: 100px !important; } + .ht-lg-100p-f { + height: 100% !important; } + .ht-lg-150 { + height: 150px; } + .ht-lg-150p { + height: 150%; } + .mx-ht-lg-150p { + max-height: 150%; } + .mn-ht-lg-150p { + min-height: 150%; } + .ht-lg-150-f { + height: 150px !important; } + .ht-lg-150p-f { + height: 150% !important; } + .ht-lg-200 { + height: 200px; } + .ht-lg-200p { + height: 200%; } + .mx-ht-lg-200p { + max-height: 200%; } + .mn-ht-lg-200p { + min-height: 200%; } + .ht-lg-200-f { + height: 200px !important; } + .ht-lg-200p-f { + height: 200% !important; } + .ht-lg-250 { + height: 250px; } + .ht-lg-250p { + height: 250%; } + .mx-ht-lg-250p { + max-height: 250%; } + .mn-ht-lg-250p { + min-height: 250%; } + .ht-lg-250-f { + height: 250px !important; } + .ht-lg-250p-f { + height: 250% !important; } + .ht-lg-300 { + height: 300px; } + .ht-lg-300p { + height: 300%; } + .mx-ht-lg-300p { + max-height: 300%; } + .mn-ht-lg-300p { + min-height: 300%; } + .ht-lg-300-f { + height: 300px !important; } + .ht-lg-300p-f { + height: 300% !important; } + .ht-lg-350 { + height: 350px; } + .ht-lg-350p { + height: 350%; } + .mx-ht-lg-350p { + max-height: 350%; } + .mn-ht-lg-350p { + min-height: 350%; } + .ht-lg-350-f { + height: 350px !important; } + .ht-lg-350p-f { + height: 350% !important; } + .ht-lg-400 { + height: 400px; } + .ht-lg-400p { + height: 400%; } + .mx-ht-lg-400p { + max-height: 400%; } + .mn-ht-lg-400p { + min-height: 400%; } + .ht-lg-400-f { + height: 400px !important; } + .ht-lg-400p-f { + height: 400% !important; } + .ht-lg-450 { + height: 450px; } + .ht-lg-450p { + height: 450%; } + .mx-ht-lg-450p { + max-height: 450%; } + .mn-ht-lg-450p { + min-height: 450%; } + .ht-lg-450-f { + height: 450px !important; } + .ht-lg-450p-f { + height: 450% !important; } + .ht-lg-500 { + height: 500px; } + .ht-lg-500p { + height: 500%; } + .mx-ht-lg-500p { + max-height: 500%; } + .mn-ht-lg-500p { + min-height: 500%; } + .ht-lg-500-f { + height: 500px !important; } + .ht-lg-500p-f { + height: 500% !important; } + .ht-lg-550 { + height: 550px; } + .ht-lg-550p { + height: 550%; } + .mx-ht-lg-550p { + max-height: 550%; } + .mn-ht-lg-550p { + min-height: 550%; } + .ht-lg-550-f { + height: 550px !important; } + .ht-lg-550p-f { + height: 550% !important; } + .ht-lg-600 { + height: 600px; } + .ht-lg-600p { + height: 600%; } + .mx-ht-lg-600p { + max-height: 600%; } + .mn-ht-lg-600p { + min-height: 600%; } + .ht-lg-600-f { + height: 600px !important; } + .ht-lg-600p-f { + height: 600% !important; } + .ht-lg-650 { + height: 650px; } + .ht-lg-650p { + height: 650%; } + .mx-ht-lg-650p { + max-height: 650%; } + .mn-ht-lg-650p { + min-height: 650%; } + .ht-lg-650-f { + height: 650px !important; } + .ht-lg-650p-f { + height: 650% !important; } + .ht-lg-700 { + height: 700px; } + .ht-lg-700p { + height: 700%; } + .mx-ht-lg-700p { + max-height: 700%; } + .mn-ht-lg-700p { + min-height: 700%; } + .ht-lg-700-f { + height: 700px !important; } + .ht-lg-700p-f { + height: 700% !important; } + .ht-lg-750 { + height: 750px; } + .ht-lg-750p { + height: 750%; } + .mx-ht-lg-750p { + max-height: 750%; } + .mn-ht-lg-750p { + min-height: 750%; } + .ht-lg-750-f { + height: 750px !important; } + .ht-lg-750p-f { + height: 750% !important; } + .ht-lg-800 { + height: 800px; } + .ht-lg-800p { + height: 800%; } + .mx-ht-lg-800p { + max-height: 800%; } + .mn-ht-lg-800p { + min-height: 800%; } + .ht-lg-800-f { + height: 800px !important; } + .ht-lg-800p-f { + height: 800% !important; } + .ht-lg-850 { + height: 850px; } + .ht-lg-850p { + height: 850%; } + .mx-ht-lg-850p { + max-height: 850%; } + .mn-ht-lg-850p { + min-height: 850%; } + .ht-lg-850-f { + height: 850px !important; } + .ht-lg-850p-f { + height: 850% !important; } + .ht-lg-100v { + height: 100vh; } } + +@media (min-width: 1200px) { + .ht-xl-5 { + height: 5px; } + .ht-xl-5p { + height: 5%; } + .mx-ht-xl-5p { + max-height: 5%; } + .mn-ht-xl-5p { + min-height: 5%; } + .ht-xl-5-f { + height: 5px !important; } + .ht-xl-5p-f { + height: 5% !important; } + .ht-xl-10 { + height: 10px; } + .ht-xl-10p { + height: 10%; } + .mx-ht-xl-10p { + max-height: 10%; } + .mn-ht-xl-10p { + min-height: 10%; } + .ht-xl-10-f { + height: 10px !important; } + .ht-xl-10p-f { + height: 10% !important; } + .ht-xl-15 { + height: 15px; } + .ht-xl-15p { + height: 15%; } + .mx-ht-xl-15p { + max-height: 15%; } + .mn-ht-xl-15p { + min-height: 15%; } + .ht-xl-15-f { + height: 15px !important; } + .ht-xl-15p-f { + height: 15% !important; } + .ht-xl-20 { + height: 20px; } + .ht-xl-20p { + height: 20%; } + .mx-ht-xl-20p { + max-height: 20%; } + .mn-ht-xl-20p { + min-height: 20%; } + .ht-xl-20-f { + height: 20px !important; } + .ht-xl-20p-f { + height: 20% !important; } + .ht-xl-25 { + height: 25px; } + .ht-xl-25p { + height: 25%; } + .mx-ht-xl-25p { + max-height: 25%; } + .mn-ht-xl-25p { + min-height: 25%; } + .ht-xl-25-f { + height: 25px !important; } + .ht-xl-25p-f { + height: 25% !important; } + .ht-xl-30 { + height: 30px; } + .ht-xl-30p { + height: 30%; } + .mx-ht-xl-30p { + max-height: 30%; } + .mn-ht-xl-30p { + min-height: 30%; } + .ht-xl-30-f { + height: 30px !important; } + .ht-xl-30p-f { + height: 30% !important; } + .ht-xl-35 { + height: 35px; } + .ht-xl-35p { + height: 35%; } + .mx-ht-xl-35p { + max-height: 35%; } + .mn-ht-xl-35p { + min-height: 35%; } + .ht-xl-35-f { + height: 35px !important; } + .ht-xl-35p-f { + height: 35% !important; } + .ht-xl-40 { + height: 40px; } + .ht-xl-40p { + height: 40%; } + .mx-ht-xl-40p { + max-height: 40%; } + .mn-ht-xl-40p { + min-height: 40%; } + .ht-xl-40-f { + height: 40px !important; } + .ht-xl-40p-f { + height: 40% !important; } + .ht-xl-45 { + height: 45px; } + .ht-xl-45p { + height: 45%; } + .mx-ht-xl-45p { + max-height: 45%; } + .mn-ht-xl-45p { + min-height: 45%; } + .ht-xl-45-f { + height: 45px !important; } + .ht-xl-45p-f { + height: 45% !important; } + .ht-xl-50 { + height: 50px; } + .ht-xl-50p { + height: 50%; } + .mx-ht-xl-50p { + max-height: 50%; } + .mn-ht-xl-50p { + min-height: 50%; } + .ht-xl-50-f { + height: 50px !important; } + .ht-xl-50p-f { + height: 50% !important; } + .ht-xl-55 { + height: 55px; } + .ht-xl-55p { + height: 55%; } + .mx-ht-xl-55p { + max-height: 55%; } + .mn-ht-xl-55p { + min-height: 55%; } + .ht-xl-55-f { + height: 55px !important; } + .ht-xl-55p-f { + height: 55% !important; } + .ht-xl-60 { + height: 60px; } + .ht-xl-60p { + height: 60%; } + .mx-ht-xl-60p { + max-height: 60%; } + .mn-ht-xl-60p { + min-height: 60%; } + .ht-xl-60-f { + height: 60px !important; } + .ht-xl-60p-f { + height: 60% !important; } + .ht-xl-65 { + height: 65px; } + .ht-xl-65p { + height: 65%; } + .mx-ht-xl-65p { + max-height: 65%; } + .mn-ht-xl-65p { + min-height: 65%; } + .ht-xl-65-f { + height: 65px !important; } + .ht-xl-65p-f { + height: 65% !important; } + .ht-xl-70 { + height: 70px; } + .ht-xl-70p { + height: 70%; } + .mx-ht-xl-70p { + max-height: 70%; } + .mn-ht-xl-70p { + min-height: 70%; } + .ht-xl-70-f { + height: 70px !important; } + .ht-xl-70p-f { + height: 70% !important; } + .ht-xl-75 { + height: 75px; } + .ht-xl-75p { + height: 75%; } + .mx-ht-xl-75p { + max-height: 75%; } + .mn-ht-xl-75p { + min-height: 75%; } + .ht-xl-75-f { + height: 75px !important; } + .ht-xl-75p-f { + height: 75% !important; } + .ht-xl-80 { + height: 80px; } + .ht-xl-80p { + height: 80%; } + .mx-ht-xl-80p { + max-height: 80%; } + .mn-ht-xl-80p { + min-height: 80%; } + .ht-xl-80-f { + height: 80px !important; } + .ht-xl-80p-f { + height: 80% !important; } + .ht-xl-85 { + height: 85px; } + .ht-xl-85p { + height: 85%; } + .mx-ht-xl-85p { + max-height: 85%; } + .mn-ht-xl-85p { + min-height: 85%; } + .ht-xl-85-f { + height: 85px !important; } + .ht-xl-85p-f { + height: 85% !important; } + .ht-xl-90 { + height: 90px; } + .ht-xl-90p { + height: 90%; } + .mx-ht-xl-90p { + max-height: 90%; } + .mn-ht-xl-90p { + min-height: 90%; } + .ht-xl-90-f { + height: 90px !important; } + .ht-xl-90p-f { + height: 90% !important; } + .ht-xl-95 { + height: 95px; } + .ht-xl-95p { + height: 95%; } + .mx-ht-xl-95p { + max-height: 95%; } + .mn-ht-xl-95p { + min-height: 95%; } + .ht-xl-95-f { + height: 95px !important; } + .ht-xl-95p-f { + height: 95% !important; } + .ht-xl-100 { + height: 100px; } + .ht-xl-100p { + height: 100%; } + .mx-ht-xl-100p { + max-height: 100%; } + .mn-ht-xl-100p { + min-height: 100%; } + .ht-xl-100-f { + height: 100px !important; } + .ht-xl-100p-f { + height: 100% !important; } + .ht-xl-150 { + height: 150px; } + .ht-xl-150p { + height: 150%; } + .mx-ht-xl-150p { + max-height: 150%; } + .mn-ht-xl-150p { + min-height: 150%; } + .ht-xl-150-f { + height: 150px !important; } + .ht-xl-150p-f { + height: 150% !important; } + .ht-xl-200 { + height: 200px; } + .ht-xl-200p { + height: 200%; } + .mx-ht-xl-200p { + max-height: 200%; } + .mn-ht-xl-200p { + min-height: 200%; } + .ht-xl-200-f { + height: 200px !important; } + .ht-xl-200p-f { + height: 200% !important; } + .ht-xl-250 { + height: 250px; } + .ht-xl-250p { + height: 250%; } + .mx-ht-xl-250p { + max-height: 250%; } + .mn-ht-xl-250p { + min-height: 250%; } + .ht-xl-250-f { + height: 250px !important; } + .ht-xl-250p-f { + height: 250% !important; } + .ht-xl-300 { + height: 300px; } + .ht-xl-300p { + height: 300%; } + .mx-ht-xl-300p { + max-height: 300%; } + .mn-ht-xl-300p { + min-height: 300%; } + .ht-xl-300-f { + height: 300px !important; } + .ht-xl-300p-f { + height: 300% !important; } + .ht-xl-350 { + height: 350px; } + .ht-xl-350p { + height: 350%; } + .mx-ht-xl-350p { + max-height: 350%; } + .mn-ht-xl-350p { + min-height: 350%; } + .ht-xl-350-f { + height: 350px !important; } + .ht-xl-350p-f { + height: 350% !important; } + .ht-xl-400 { + height: 400px; } + .ht-xl-400p { + height: 400%; } + .mx-ht-xl-400p { + max-height: 400%; } + .mn-ht-xl-400p { + min-height: 400%; } + .ht-xl-400-f { + height: 400px !important; } + .ht-xl-400p-f { + height: 400% !important; } + .ht-xl-450 { + height: 450px; } + .ht-xl-450p { + height: 450%; } + .mx-ht-xl-450p { + max-height: 450%; } + .mn-ht-xl-450p { + min-height: 450%; } + .ht-xl-450-f { + height: 450px !important; } + .ht-xl-450p-f { + height: 450% !important; } + .ht-xl-500 { + height: 500px; } + .ht-xl-500p { + height: 500%; } + .mx-ht-xl-500p { + max-height: 500%; } + .mn-ht-xl-500p { + min-height: 500%; } + .ht-xl-500-f { + height: 500px !important; } + .ht-xl-500p-f { + height: 500% !important; } + .ht-xl-550 { + height: 550px; } + .ht-xl-550p { + height: 550%; } + .mx-ht-xl-550p { + max-height: 550%; } + .mn-ht-xl-550p { + min-height: 550%; } + .ht-xl-550-f { + height: 550px !important; } + .ht-xl-550p-f { + height: 550% !important; } + .ht-xl-600 { + height: 600px; } + .ht-xl-600p { + height: 600%; } + .mx-ht-xl-600p { + max-height: 600%; } + .mn-ht-xl-600p { + min-height: 600%; } + .ht-xl-600-f { + height: 600px !important; } + .ht-xl-600p-f { + height: 600% !important; } + .ht-xl-650 { + height: 650px; } + .ht-xl-650p { + height: 650%; } + .mx-ht-xl-650p { + max-height: 650%; } + .mn-ht-xl-650p { + min-height: 650%; } + .ht-xl-650-f { + height: 650px !important; } + .ht-xl-650p-f { + height: 650% !important; } + .ht-xl-700 { + height: 700px; } + .ht-xl-700p { + height: 700%; } + .mx-ht-xl-700p { + max-height: 700%; } + .mn-ht-xl-700p { + min-height: 700%; } + .ht-xl-700-f { + height: 700px !important; } + .ht-xl-700p-f { + height: 700% !important; } + .ht-xl-750 { + height: 750px; } + .ht-xl-750p { + height: 750%; } + .mx-ht-xl-750p { + max-height: 750%; } + .mn-ht-xl-750p { + min-height: 750%; } + .ht-xl-750-f { + height: 750px !important; } + .ht-xl-750p-f { + height: 750% !important; } + .ht-xl-800 { + height: 800px; } + .ht-xl-800p { + height: 800%; } + .mx-ht-xl-800p { + max-height: 800%; } + .mn-ht-xl-800p { + min-height: 800%; } + .ht-xl-800-f { + height: 800px !important; } + .ht-xl-800p-f { + height: 800% !important; } + .ht-xl-850 { + height: 850px; } + .ht-xl-850p { + height: 850%; } + .mx-ht-xl-850p { + max-height: 850%; } + .mn-ht-xl-850p { + min-height: 850%; } + .ht-xl-850-f { + height: 850px !important; } + .ht-xl-850p-f { + height: 850% !important; } + .ht-xl-100v { + height: 100vh; } } + +/* ###### 9.4 Margin ###### */ +.mg-0 { + margin: 0px; } + +.mg-0-f { + margin: 0px !important; } + +.mg-y-0 { + margin-top: 0px; + margin-bottom: 0px; } + +.mg-y-0-f { + margin-top: 0px !important; + margin-bottom: 0px !important; } + +.mg-x-0 { + margin-left: 0px; + margin-right: 0px; } + +.mg-x-0-f { + margin-left: 0px !important; + margin-right: 0px !important; } + +.mg-t-0 { + margin-top: 0px; } + +.mg-r-0 { + margin-right: 0px; } + +.mg-b-0 { + margin-bottom: 0px; } + +.mg-l-0 { + margin-left: 0px; } + +.mg-t-0-f { + margin-top: 0px !important; } + +.mg-r-0-f { + margin-right: 0px !important; } + +.mg-b-0-f { + margin-bottom: 0px !important; } + +.mg-l-0-f { + margin-left: 0px !important; } + +.mg-1 { + margin: 1px; } + +.mg-1-f { + margin: 1px !important; } + +.mg-y-1 { + margin-top: 1px; + margin-bottom: 1px; } + +.mg-y-1-f { + margin-top: 1px !important; + margin-bottom: 1px !important; } + +.mg-x-1 { + margin-left: 1px; + margin-right: 1px; } + +.mg-x-1-f { + margin-left: 1px !important; + margin-right: 1px !important; } + +.mg-t-1 { + margin-top: 1px; } + +.mg-r-1 { + margin-right: 1px; } + +.mg-b-1 { + margin-bottom: 1px; } + +.mg-l-1 { + margin-left: 1px; } + +.mg-t-1-f { + margin-top: 1px !important; } + +.mg-r-1-f { + margin-right: 1px !important; } + +.mg-b-1-f { + margin-bottom: 1px !important; } + +.mg-l-1-f { + margin-left: 1px !important; } + +.mg-2 { + margin: 2px; } + +.mg-2-f { + margin: 2px !important; } + +.mg-y-2 { + margin-top: 2px; + margin-bottom: 2px; } + +.mg-y-2-f { + margin-top: 2px !important; + margin-bottom: 2px !important; } + +.mg-x-2 { + margin-left: 2px; + margin-right: 2px; } + +.mg-x-2-f { + margin-left: 2px !important; + margin-right: 2px !important; } + +.mg-t-2 { + margin-top: 2px; } + +.mg-r-2 { + margin-right: 2px; } + +.mg-b-2 { + margin-bottom: 2px; } + +.mg-l-2 { + margin-left: 2px; } + +.mg-t-2-f { + margin-top: 2px !important; } + +.mg-r-2-f { + margin-right: 2px !important; } + +.mg-b-2-f { + margin-bottom: 2px !important; } + +.mg-l-2-f { + margin-left: 2px !important; } + +.mg-3 { + margin: 3px; } + +.mg-3-f { + margin: 3px !important; } + +.mg-y-3 { + margin-top: 3px; + margin-bottom: 3px; } + +.mg-y-3-f { + margin-top: 3px !important; + margin-bottom: 3px !important; } + +.mg-x-3 { + margin-left: 3px; + margin-right: 3px; } + +.mg-x-3-f { + margin-left: 3px !important; + margin-right: 3px !important; } + +.mg-t-3 { + margin-top: 3px; } + +.mg-r-3 { + margin-right: 3px; } + +.mg-b-3 { + margin-bottom: 3px; } + +.mg-l-3 { + margin-left: 3px; } + +.mg-t-3-f { + margin-top: 3px !important; } + +.mg-r-3-f { + margin-right: 3px !important; } + +.mg-b-3-f { + margin-bottom: 3px !important; } + +.mg-l-3-f { + margin-left: 3px !important; } + +.mg-4 { + margin: 4px; } + +.mg-4-f { + margin: 4px !important; } + +.mg-y-4 { + margin-top: 4px; + margin-bottom: 4px; } + +.mg-y-4-f { + margin-top: 4px !important; + margin-bottom: 4px !important; } + +.mg-x-4 { + margin-left: 4px; + margin-right: 4px; } + +.mg-x-4-f { + margin-left: 4px !important; + margin-right: 4px !important; } + +.mg-t-4 { + margin-top: 4px; } + +.mg-r-4 { + margin-right: 4px; } + +.mg-b-4 { + margin-bottom: 4px; } + +.mg-l-4 { + margin-left: 4px; } + +.mg-t-4-f { + margin-top: 4px !important; } + +.mg-r-4-f { + margin-right: 4px !important; } + +.mg-b-4-f { + margin-bottom: 4px !important; } + +.mg-l-4-f { + margin-left: 4px !important; } + +.mg-5 { + margin: 5px; } + +.mg-5-f { + margin: 5px !important; } + +.mg-y-5 { + margin-top: 5px; + margin-bottom: 5px; } + +.mg-y-5-f { + margin-top: 5px !important; + margin-bottom: 5px !important; } + +.mg-x-5 { + margin-left: 5px; + margin-right: 5px; } + +.mg-x-5-f { + margin-left: 5px !important; + margin-right: 5px !important; } + +.mg-t-5 { + margin-top: 5px; } + +.mg-r-5 { + margin-right: 5px; } + +.mg-b-5 { + margin-bottom: 5px; } + +.mg-l-5 { + margin-left: 5px; } + +.mg-t-5-f { + margin-top: 5px !important; } + +.mg-r-5-f { + margin-right: 5px !important; } + +.mg-b-5-f { + margin-bottom: 5px !important; } + +.mg-l-5-f { + margin-left: 5px !important; } + +.mg-6 { + margin: 6px; } + +.mg-6-f { + margin: 6px !important; } + +.mg-y-6 { + margin-top: 6px; + margin-bottom: 6px; } + +.mg-y-6-f { + margin-top: 6px !important; + margin-bottom: 6px !important; } + +.mg-x-6 { + margin-left: 6px; + margin-right: 6px; } + +.mg-x-6-f { + margin-left: 6px !important; + margin-right: 6px !important; } + +.mg-t-6 { + margin-top: 6px; } + +.mg-r-6 { + margin-right: 6px; } + +.mg-b-6 { + margin-bottom: 6px; } + +.mg-l-6 { + margin-left: 6px; } + +.mg-t-6-f { + margin-top: 6px !important; } + +.mg-r-6-f { + margin-right: 6px !important; } + +.mg-b-6-f { + margin-bottom: 6px !important; } + +.mg-l-6-f { + margin-left: 6px !important; } + +.mg-7 { + margin: 7px; } + +.mg-7-f { + margin: 7px !important; } + +.mg-y-7 { + margin-top: 7px; + margin-bottom: 7px; } + +.mg-y-7-f { + margin-top: 7px !important; + margin-bottom: 7px !important; } + +.mg-x-7 { + margin-left: 7px; + margin-right: 7px; } + +.mg-x-7-f { + margin-left: 7px !important; + margin-right: 7px !important; } + +.mg-t-7 { + margin-top: 7px; } + +.mg-r-7 { + margin-right: 7px; } + +.mg-b-7 { + margin-bottom: 7px; } + +.mg-l-7 { + margin-left: 7px; } + +.mg-t-7-f { + margin-top: 7px !important; } + +.mg-r-7-f { + margin-right: 7px !important; } + +.mg-b-7-f { + margin-bottom: 7px !important; } + +.mg-l-7-f { + margin-left: 7px !important; } + +.mg-8 { + margin: 8px; } + +.mg-8-f { + margin: 8px !important; } + +.mg-y-8 { + margin-top: 8px; + margin-bottom: 8px; } + +.mg-y-8-f { + margin-top: 8px !important; + margin-bottom: 8px !important; } + +.mg-x-8 { + margin-left: 8px; + margin-right: 8px; } + +.mg-x-8-f { + margin-left: 8px !important; + margin-right: 8px !important; } + +.mg-t-8 { + margin-top: 8px; } + +.mg-r-8 { + margin-right: 8px; } + +.mg-b-8 { + margin-bottom: 8px; } + +.mg-l-8 { + margin-left: 8px; } + +.mg-t-8-f { + margin-top: 8px !important; } + +.mg-r-8-f { + margin-right: 8px !important; } + +.mg-b-8-f { + margin-bottom: 8px !important; } + +.mg-l-8-f { + margin-left: 8px !important; } + +.mg-9 { + margin: 9px; } + +.mg-9-f { + margin: 9px !important; } + +.mg-y-9 { + margin-top: 9px; + margin-bottom: 9px; } + +.mg-y-9-f { + margin-top: 9px !important; + margin-bottom: 9px !important; } + +.mg-x-9 { + margin-left: 9px; + margin-right: 9px; } + +.mg-x-9-f { + margin-left: 9px !important; + margin-right: 9px !important; } + +.mg-t-9 { + margin-top: 9px; } + +.mg-r-9 { + margin-right: 9px; } + +.mg-b-9 { + margin-bottom: 9px; } + +.mg-l-9 { + margin-left: 9px; } + +.mg-t-9-f { + margin-top: 9px !important; } + +.mg-r-9-f { + margin-right: 9px !important; } + +.mg-b-9-f { + margin-bottom: 9px !important; } + +.mg-l-9-f { + margin-left: 9px !important; } + +.mg-10 { + margin: 10px; } + +.mg-10-f { + margin: 10px !important; } + +.mg-y-10 { + margin-top: 10px; + margin-bottom: 10px; } + +.mg-y-10-f { + margin-top: 10px !important; + margin-bottom: 10px !important; } + +.mg-x-10 { + margin-left: 10px; + margin-right: 10px; } + +.mg-x-10-f { + margin-left: 10px !important; + margin-right: 10px !important; } + +.mg-t-10 { + margin-top: 10px; } + +.mg-r-10 { + margin-right: 10px; } + +.mg-b-10 { + margin-bottom: 10px; } + +.mg-l-10 { + margin-left: 10px; } + +.mg-t-10-f { + margin-top: 10px !important; } + +.mg-r-10-f { + margin-right: 10px !important; } + +.mg-b-10-f { + margin-bottom: 10px !important; } + +.mg-l-10-f { + margin-left: 10px !important; } + +.mg-15 { + margin: 15px; } + +.mg-15-f { + margin: 15px !important; } + +.mg-y-15 { + margin-top: 15px; + margin-bottom: 15px; } + +.mg-y-15-f { + margin-top: 15px !important; + margin-bottom: 15px !important; } + +.mg-x-15 { + margin-left: 15px; + margin-right: 15px; } + +.mg-x-15-f { + margin-left: 15px !important; + margin-right: 15px !important; } + +.mg-t-15 { + margin-top: 15px; } + +.mg-r-15 { + margin-right: 15px; } + +.mg-b-15 { + margin-bottom: 15px; } + +.mg-l-15 { + margin-left: 15px; } + +.mg-t-15-f { + margin-top: 15px !important; } + +.mg-r-15-f { + margin-right: 15px !important; } + +.mg-b-15-f { + margin-bottom: 15px !important; } + +.mg-l-15-f { + margin-left: 15px !important; } + +.mg-20 { + margin: 20px; } + +.mg-20-f { + margin: 20px !important; } + +.mg-y-20 { + margin-top: 20px; + margin-bottom: 20px; } + +.mg-y-20-f { + margin-top: 20px !important; + margin-bottom: 20px !important; } + +.mg-x-20 { + margin-left: 20px; + margin-right: 20px; } + +.mg-x-20-f { + margin-left: 20px !important; + margin-right: 20px !important; } + +.mg-t-20 { + margin-top: 20px; } + +.mg-r-20 { + margin-right: 20px; } + +.mg-b-20 { + margin-bottom: 20px; } + +.mg-l-20 { + margin-left: 20px; } + +.mg-t-20-f { + margin-top: 20px !important; } + +.mg-r-20-f { + margin-right: 20px !important; } + +.mg-b-20-f { + margin-bottom: 20px !important; } + +.mg-l-20-f { + margin-left: 20px !important; } + +.mg-25 { + margin: 25px; } + +.mg-25-f { + margin: 25px !important; } + +.mg-y-25 { + margin-top: 25px; + margin-bottom: 25px; } + +.mg-y-25-f { + margin-top: 25px !important; + margin-bottom: 25px !important; } + +.mg-x-25 { + margin-left: 25px; + margin-right: 25px; } + +.mg-x-25-f { + margin-left: 25px !important; + margin-right: 25px !important; } + +.mg-t-25 { + margin-top: 25px; } + +.mg-r-25 { + margin-right: 25px; } + +.mg-b-25 { + margin-bottom: 25px; } + +.mg-l-25 { + margin-left: 25px; } + +.mg-t-25-f { + margin-top: 25px !important; } + +.mg-r-25-f { + margin-right: 25px !important; } + +.mg-b-25-f { + margin-bottom: 25px !important; } + +.mg-l-25-f { + margin-left: 25px !important; } + +.mg-30 { + margin: 30px; } + +.mg-30-f { + margin: 30px !important; } + +.mg-y-30 { + margin-top: 30px; + margin-bottom: 30px; } + +.mg-y-30-f { + margin-top: 30px !important; + margin-bottom: 30px !important; } + +.mg-x-30 { + margin-left: 30px; + margin-right: 30px; } + +.mg-x-30-f { + margin-left: 30px !important; + margin-right: 30px !important; } + +.mg-t-30 { + margin-top: 30px; } + +.mg-r-30 { + margin-right: 30px; } + +.mg-b-30 { + margin-bottom: 30px; } + +.mg-l-30 { + margin-left: 30px; } + +.mg-t-30-f { + margin-top: 30px !important; } + +.mg-r-30-f { + margin-right: 30px !important; } + +.mg-b-30-f { + margin-bottom: 30px !important; } + +.mg-l-30-f { + margin-left: 30px !important; } + +.mg-35 { + margin: 35px; } + +.mg-35-f { + margin: 35px !important; } + +.mg-y-35 { + margin-top: 35px; + margin-bottom: 35px; } + +.mg-y-35-f { + margin-top: 35px !important; + margin-bottom: 35px !important; } + +.mg-x-35 { + margin-left: 35px; + margin-right: 35px; } + +.mg-x-35-f { + margin-left: 35px !important; + margin-right: 35px !important; } + +.mg-t-35 { + margin-top: 35px; } + +.mg-r-35 { + margin-right: 35px; } + +.mg-b-35 { + margin-bottom: 35px; } + +.mg-l-35 { + margin-left: 35px; } + +.mg-t-35-f { + margin-top: 35px !important; } + +.mg-r-35-f { + margin-right: 35px !important; } + +.mg-b-35-f { + margin-bottom: 35px !important; } + +.mg-l-35-f { + margin-left: 35px !important; } + +.mg-40 { + margin: 40px; } + +.mg-40-f { + margin: 40px !important; } + +.mg-y-40 { + margin-top: 40px; + margin-bottom: 40px; } + +.mg-y-40-f { + margin-top: 40px !important; + margin-bottom: 40px !important; } + +.mg-x-40 { + margin-left: 40px; + margin-right: 40px; } + +.mg-x-40-f { + margin-left: 40px !important; + margin-right: 40px !important; } + +.mg-t-40 { + margin-top: 40px; } + +.mg-r-40 { + margin-right: 40px; } + +.mg-b-40 { + margin-bottom: 40px; } + +.mg-l-40 { + margin-left: 40px; } + +.mg-t-40-f { + margin-top: 40px !important; } + +.mg-r-40-f { + margin-right: 40px !important; } + +.mg-b-40-f { + margin-bottom: 40px !important; } + +.mg-l-40-f { + margin-left: 40px !important; } + +.mg-45 { + margin: 45px; } + +.mg-45-f { + margin: 45px !important; } + +.mg-y-45 { + margin-top: 45px; + margin-bottom: 45px; } + +.mg-y-45-f { + margin-top: 45px !important; + margin-bottom: 45px !important; } + +.mg-x-45 { + margin-left: 45px; + margin-right: 45px; } + +.mg-x-45-f { + margin-left: 45px !important; + margin-right: 45px !important; } + +.mg-t-45 { + margin-top: 45px; } + +.mg-r-45 { + margin-right: 45px; } + +.mg-b-45 { + margin-bottom: 45px; } + +.mg-l-45 { + margin-left: 45px; } + +.mg-t-45-f { + margin-top: 45px !important; } + +.mg-r-45-f { + margin-right: 45px !important; } + +.mg-b-45-f { + margin-bottom: 45px !important; } + +.mg-l-45-f { + margin-left: 45px !important; } + +.mg-50 { + margin: 50px; } + +.mg-50-f { + margin: 50px !important; } + +.mg-y-50 { + margin-top: 50px; + margin-bottom: 50px; } + +.mg-y-50-f { + margin-top: 50px !important; + margin-bottom: 50px !important; } + +.mg-x-50 { + margin-left: 50px; + margin-right: 50px; } + +.mg-x-50-f { + margin-left: 50px !important; + margin-right: 50px !important; } + +.mg-t-50 { + margin-top: 50px; } + +.mg-r-50 { + margin-right: 50px; } + +.mg-b-50 { + margin-bottom: 50px; } + +.mg-l-50 { + margin-left: 50px; } + +.mg-t-50-f { + margin-top: 50px !important; } + +.mg-r-50-f { + margin-right: 50px !important; } + +.mg-b-50-f { + margin-bottom: 50px !important; } + +.mg-l-50-f { + margin-left: 50px !important; } + +.mg-55 { + margin: 55px; } + +.mg-55-f { + margin: 55px !important; } + +.mg-y-55 { + margin-top: 55px; + margin-bottom: 55px; } + +.mg-y-55-f { + margin-top: 55px !important; + margin-bottom: 55px !important; } + +.mg-x-55 { + margin-left: 55px; + margin-right: 55px; } + +.mg-x-55-f { + margin-left: 55px !important; + margin-right: 55px !important; } + +.mg-t-55 { + margin-top: 55px; } + +.mg-r-55 { + margin-right: 55px; } + +.mg-b-55 { + margin-bottom: 55px; } + +.mg-l-55 { + margin-left: 55px; } + +.mg-t-55-f { + margin-top: 55px !important; } + +.mg-r-55-f { + margin-right: 55px !important; } + +.mg-b-55-f { + margin-bottom: 55px !important; } + +.mg-l-55-f { + margin-left: 55px !important; } + +.mg-60 { + margin: 60px; } + +.mg-60-f { + margin: 60px !important; } + +.mg-y-60 { + margin-top: 60px; + margin-bottom: 60px; } + +.mg-y-60-f { + margin-top: 60px !important; + margin-bottom: 60px !important; } + +.mg-x-60 { + margin-left: 60px; + margin-right: 60px; } + +.mg-x-60-f { + margin-left: 60px !important; + margin-right: 60px !important; } + +.mg-t-60 { + margin-top: 60px; } + +.mg-r-60 { + margin-right: 60px; } + +.mg-b-60 { + margin-bottom: 60px; } + +.mg-l-60 { + margin-left: 60px; } + +.mg-t-60-f { + margin-top: 60px !important; } + +.mg-r-60-f { + margin-right: 60px !important; } + +.mg-b-60-f { + margin-bottom: 60px !important; } + +.mg-l-60-f { + margin-left: 60px !important; } + +.mg-65 { + margin: 65px; } + +.mg-65-f { + margin: 65px !important; } + +.mg-y-65 { + margin-top: 65px; + margin-bottom: 65px; } + +.mg-y-65-f { + margin-top: 65px !important; + margin-bottom: 65px !important; } + +.mg-x-65 { + margin-left: 65px; + margin-right: 65px; } + +.mg-x-65-f { + margin-left: 65px !important; + margin-right: 65px !important; } + +.mg-t-65 { + margin-top: 65px; } + +.mg-r-65 { + margin-right: 65px; } + +.mg-b-65 { + margin-bottom: 65px; } + +.mg-l-65 { + margin-left: 65px; } + +.mg-t-65-f { + margin-top: 65px !important; } + +.mg-r-65-f { + margin-right: 65px !important; } + +.mg-b-65-f { + margin-bottom: 65px !important; } + +.mg-l-65-f { + margin-left: 65px !important; } + +.mg-70 { + margin: 70px; } + +.mg-70-f { + margin: 70px !important; } + +.mg-y-70 { + margin-top: 70px; + margin-bottom: 70px; } + +.mg-y-70-f { + margin-top: 70px !important; + margin-bottom: 70px !important; } + +.mg-x-70 { + margin-left: 70px; + margin-right: 70px; } + +.mg-x-70-f { + margin-left: 70px !important; + margin-right: 70px !important; } + +.mg-t-70 { + margin-top: 70px; } + +.mg-r-70 { + margin-right: 70px; } + +.mg-b-70 { + margin-bottom: 70px; } + +.mg-l-70 { + margin-left: 70px; } + +.mg-t-70-f { + margin-top: 70px !important; } + +.mg-r-70-f { + margin-right: 70px !important; } + +.mg-b-70-f { + margin-bottom: 70px !important; } + +.mg-l-70-f { + margin-left: 70px !important; } + +.mg-75 { + margin: 75px; } + +.mg-75-f { + margin: 75px !important; } + +.mg-y-75 { + margin-top: 75px; + margin-bottom: 75px; } + +.mg-y-75-f { + margin-top: 75px !important; + margin-bottom: 75px !important; } + +.mg-x-75 { + margin-left: 75px; + margin-right: 75px; } + +.mg-x-75-f { + margin-left: 75px !important; + margin-right: 75px !important; } + +.mg-t-75 { + margin-top: 75px; } + +.mg-r-75 { + margin-right: 75px; } + +.mg-b-75 { + margin-bottom: 75px; } + +.mg-l-75 { + margin-left: 75px; } + +.mg-t-75-f { + margin-top: 75px !important; } + +.mg-r-75-f { + margin-right: 75px !important; } + +.mg-b-75-f { + margin-bottom: 75px !important; } + +.mg-l-75-f { + margin-left: 75px !important; } + +.mg-80 { + margin: 80px; } + +.mg-80-f { + margin: 80px !important; } + +.mg-y-80 { + margin-top: 80px; + margin-bottom: 80px; } + +.mg-y-80-f { + margin-top: 80px !important; + margin-bottom: 80px !important; } + +.mg-x-80 { + margin-left: 80px; + margin-right: 80px; } + +.mg-x-80-f { + margin-left: 80px !important; + margin-right: 80px !important; } + +.mg-t-80 { + margin-top: 80px; } + +.mg-r-80 { + margin-right: 80px; } + +.mg-b-80 { + margin-bottom: 80px; } + +.mg-l-80 { + margin-left: 80px; } + +.mg-t-80-f { + margin-top: 80px !important; } + +.mg-r-80-f { + margin-right: 80px !important; } + +.mg-b-80-f { + margin-bottom: 80px !important; } + +.mg-l-80-f { + margin-left: 80px !important; } + +.mg-85 { + margin: 85px; } + +.mg-85-f { + margin: 85px !important; } + +.mg-y-85 { + margin-top: 85px; + margin-bottom: 85px; } + +.mg-y-85-f { + margin-top: 85px !important; + margin-bottom: 85px !important; } + +.mg-x-85 { + margin-left: 85px; + margin-right: 85px; } + +.mg-x-85-f { + margin-left: 85px !important; + margin-right: 85px !important; } + +.mg-t-85 { + margin-top: 85px; } + +.mg-r-85 { + margin-right: 85px; } + +.mg-b-85 { + margin-bottom: 85px; } + +.mg-l-85 { + margin-left: 85px; } + +.mg-t-85-f { + margin-top: 85px !important; } + +.mg-r-85-f { + margin-right: 85px !important; } + +.mg-b-85-f { + margin-bottom: 85px !important; } + +.mg-l-85-f { + margin-left: 85px !important; } + +.mg-90 { + margin: 90px; } + +.mg-90-f { + margin: 90px !important; } + +.mg-y-90 { + margin-top: 90px; + margin-bottom: 90px; } + +.mg-y-90-f { + margin-top: 90px !important; + margin-bottom: 90px !important; } + +.mg-x-90 { + margin-left: 90px; + margin-right: 90px; } + +.mg-x-90-f { + margin-left: 90px !important; + margin-right: 90px !important; } + +.mg-t-90 { + margin-top: 90px; } + +.mg-r-90 { + margin-right: 90px; } + +.mg-b-90 { + margin-bottom: 90px; } + +.mg-l-90 { + margin-left: 90px; } + +.mg-t-90-f { + margin-top: 90px !important; } + +.mg-r-90-f { + margin-right: 90px !important; } + +.mg-b-90-f { + margin-bottom: 90px !important; } + +.mg-l-90-f { + margin-left: 90px !important; } + +.mg-95 { + margin: 95px; } + +.mg-95-f { + margin: 95px !important; } + +.mg-y-95 { + margin-top: 95px; + margin-bottom: 95px; } + +.mg-y-95-f { + margin-top: 95px !important; + margin-bottom: 95px !important; } + +.mg-x-95 { + margin-left: 95px; + margin-right: 95px; } + +.mg-x-95-f { + margin-left: 95px !important; + margin-right: 95px !important; } + +.mg-t-95 { + margin-top: 95px; } + +.mg-r-95 { + margin-right: 95px; } + +.mg-b-95 { + margin-bottom: 95px; } + +.mg-l-95 { + margin-left: 95px; } + +.mg-t-95-f { + margin-top: 95px !important; } + +.mg-r-95-f { + margin-right: 95px !important; } + +.mg-b-95-f { + margin-bottom: 95px !important; } + +.mg-l-95-f { + margin-left: 95px !important; } + +.mg-100 { + margin: 100px; } + +.mg-100-f { + margin: 100px !important; } + +.mg-y-100 { + margin-top: 100px; + margin-bottom: 100px; } + +.mg-y-100-f { + margin-top: 100px !important; + margin-bottom: 100px !important; } + +.mg-x-100 { + margin-left: 100px; + margin-right: 100px; } + +.mg-x-100-f { + margin-left: 100px !important; + margin-right: 100px !important; } + +.mg-t-100 { + margin-top: 100px; } + +.mg-r-100 { + margin-right: 100px; } + +.mg-b-100 { + margin-bottom: 100px; } + +.mg-l-100 { + margin-left: 100px; } + +.mg-t-100-f { + margin-top: 100px !important; } + +.mg-r-100-f { + margin-right: 100px !important; } + +.mg-b-100-f { + margin-bottom: 100px !important; } + +.mg-l-100-f { + margin-left: 100px !important; } + +.mg-105 { + margin: 105px; } + +.mg-105-f { + margin: 105px !important; } + +.mg-y-105 { + margin-top: 105px; + margin-bottom: 105px; } + +.mg-y-105-f { + margin-top: 105px !important; + margin-bottom: 105px !important; } + +.mg-x-105 { + margin-left: 105px; + margin-right: 105px; } + +.mg-x-105-f { + margin-left: 105px !important; + margin-right: 105px !important; } + +.mg-t-105 { + margin-top: 105px; } + +.mg-r-105 { + margin-right: 105px; } + +.mg-b-105 { + margin-bottom: 105px; } + +.mg-l-105 { + margin-left: 105px; } + +.mg-t-105-f { + margin-top: 105px !important; } + +.mg-r-105-f { + margin-right: 105px !important; } + +.mg-b-105-f { + margin-bottom: 105px !important; } + +.mg-l-105-f { + margin-left: 105px !important; } + +.mg-110 { + margin: 110px; } + +.mg-110-f { + margin: 110px !important; } + +.mg-y-110 { + margin-top: 110px; + margin-bottom: 110px; } + +.mg-y-110-f { + margin-top: 110px !important; + margin-bottom: 110px !important; } + +.mg-x-110 { + margin-left: 110px; + margin-right: 110px; } + +.mg-x-110-f { + margin-left: 110px !important; + margin-right: 110px !important; } + +.mg-t-110 { + margin-top: 110px; } + +.mg-r-110 { + margin-right: 110px; } + +.mg-b-110 { + margin-bottom: 110px; } + +.mg-l-110 { + margin-left: 110px; } + +.mg-t-110-f { + margin-top: 110px !important; } + +.mg-r-110-f { + margin-right: 110px !important; } + +.mg-b-110-f { + margin-bottom: 110px !important; } + +.mg-l-110-f { + margin-left: 110px !important; } + +.mg-115 { + margin: 115px; } + +.mg-115-f { + margin: 115px !important; } + +.mg-y-115 { + margin-top: 115px; + margin-bottom: 115px; } + +.mg-y-115-f { + margin-top: 115px !important; + margin-bottom: 115px !important; } + +.mg-x-115 { + margin-left: 115px; + margin-right: 115px; } + +.mg-x-115-f { + margin-left: 115px !important; + margin-right: 115px !important; } + +.mg-t-115 { + margin-top: 115px; } + +.mg-r-115 { + margin-right: 115px; } + +.mg-b-115 { + margin-bottom: 115px; } + +.mg-l-115 { + margin-left: 115px; } + +.mg-t-115-f { + margin-top: 115px !important; } + +.mg-r-115-f { + margin-right: 115px !important; } + +.mg-b-115-f { + margin-bottom: 115px !important; } + +.mg-l-115-f { + margin-left: 115px !important; } + +.mg-120 { + margin: 120px; } + +.mg-120-f { + margin: 120px !important; } + +.mg-y-120 { + margin-top: 120px; + margin-bottom: 120px; } + +.mg-y-120-f { + margin-top: 120px !important; + margin-bottom: 120px !important; } + +.mg-x-120 { + margin-left: 120px; + margin-right: 120px; } + +.mg-x-120-f { + margin-left: 120px !important; + margin-right: 120px !important; } + +.mg-t-120 { + margin-top: 120px; } + +.mg-r-120 { + margin-right: 120px; } + +.mg-b-120 { + margin-bottom: 120px; } + +.mg-l-120 { + margin-left: 120px; } + +.mg-t-120-f { + margin-top: 120px !important; } + +.mg-r-120-f { + margin-right: 120px !important; } + +.mg-b-120-f { + margin-bottom: 120px !important; } + +.mg-l-120-f { + margin-left: 120px !important; } + +.mg-t-auto { + margin-top: auto; } + +.mg-r-auto { + margin-right: auto; } + +.mg-b-auto { + margin-bottom: auto; } + +.mg-l-auto { + margin-left: auto; } + +.mg-x-auto { + margin: auto; } + +@media (min-width: 480px) { + .mg-xs-0 { + margin: 0px; } + .mg-xs-0-f { + margin: 0px !important; } + .mg-xs-y-0 { + margin-top: 0px; + margin-bottom: 0px; } + .mg-xs-y-0-f { + margin-top: 0px !important; + margin-bottom: 0px !important; } + .mg-xs-x-0 { + margin-left: 0px; + margin-right: 0px; } + .mg-xs-x-0-f { + margin-left: 0px !important; + margin-right: 0px !important; } + .mg-xs-t-0 { + margin-top: 0px; } + .mg-xs-r-0 { + margin-right: 0px; } + .mg-xs-b-0 { + margin-bottom: 0px; } + .mg-xs-l-0 { + margin-left: 0px; } + .mg-xs-t-0-f { + margin-top: 0px !important; } + .mg-xs-r-0-f { + margin-right: 0px !important; } + .mg-xs-b-0-f { + margin-bottom: 0px !important; } + .mg-xs-l-0-f { + margin-left: 0px !important; } + .mg-xs-1 { + margin: 1px; } + .mg-xs-1-f { + margin: 1px !important; } + .mg-xs-y-1 { + margin-top: 1px; + margin-bottom: 1px; } + .mg-xs-y-1-f { + margin-top: 1px !important; + margin-bottom: 1px !important; } + .mg-xs-x-1 { + margin-left: 1px; + margin-right: 1px; } + .mg-xs-x-1-f { + margin-left: 1px !important; + margin-right: 1px !important; } + .mg-xs-t-1 { + margin-top: 1px; } + .mg-xs-r-1 { + margin-right: 1px; } + .mg-xs-b-1 { + margin-bottom: 1px; } + .mg-xs-l-1 { + margin-left: 1px; } + .mg-xs-t-1-f { + margin-top: 1px !important; } + .mg-xs-r-1-f { + margin-right: 1px !important; } + .mg-xs-b-1-f { + margin-bottom: 1px !important; } + .mg-xs-l-1-f { + margin-left: 1px !important; } + .mg-xs-2 { + margin: 2px; } + .mg-xs-2-f { + margin: 2px !important; } + .mg-xs-y-2 { + margin-top: 2px; + margin-bottom: 2px; } + .mg-xs-y-2-f { + margin-top: 2px !important; + margin-bottom: 2px !important; } + .mg-xs-x-2 { + margin-left: 2px; + margin-right: 2px; } + .mg-xs-x-2-f { + margin-left: 2px !important; + margin-right: 2px !important; } + .mg-xs-t-2 { + margin-top: 2px; } + .mg-xs-r-2 { + margin-right: 2px; } + .mg-xs-b-2 { + margin-bottom: 2px; } + .mg-xs-l-2 { + margin-left: 2px; } + .mg-xs-t-2-f { + margin-top: 2px !important; } + .mg-xs-r-2-f { + margin-right: 2px !important; } + .mg-xs-b-2-f { + margin-bottom: 2px !important; } + .mg-xs-l-2-f { + margin-left: 2px !important; } + .mg-xs-3 { + margin: 3px; } + .mg-xs-3-f { + margin: 3px !important; } + .mg-xs-y-3 { + margin-top: 3px; + margin-bottom: 3px; } + .mg-xs-y-3-f { + margin-top: 3px !important; + margin-bottom: 3px !important; } + .mg-xs-x-3 { + margin-left: 3px; + margin-right: 3px; } + .mg-xs-x-3-f { + margin-left: 3px !important; + margin-right: 3px !important; } + .mg-xs-t-3 { + margin-top: 3px; } + .mg-xs-r-3 { + margin-right: 3px; } + .mg-xs-b-3 { + margin-bottom: 3px; } + .mg-xs-l-3 { + margin-left: 3px; } + .mg-xs-t-3-f { + margin-top: 3px !important; } + .mg-xs-r-3-f { + margin-right: 3px !important; } + .mg-xs-b-3-f { + margin-bottom: 3px !important; } + .mg-xs-l-3-f { + margin-left: 3px !important; } + .mg-xs-4 { + margin: 4px; } + .mg-xs-4-f { + margin: 4px !important; } + .mg-xs-y-4 { + margin-top: 4px; + margin-bottom: 4px; } + .mg-xs-y-4-f { + margin-top: 4px !important; + margin-bottom: 4px !important; } + .mg-xs-x-4 { + margin-left: 4px; + margin-right: 4px; } + .mg-xs-x-4-f { + margin-left: 4px !important; + margin-right: 4px !important; } + .mg-xs-t-4 { + margin-top: 4px; } + .mg-xs-r-4 { + margin-right: 4px; } + .mg-xs-b-4 { + margin-bottom: 4px; } + .mg-xs-l-4 { + margin-left: 4px; } + .mg-xs-t-4-f { + margin-top: 4px !important; } + .mg-xs-r-4-f { + margin-right: 4px !important; } + .mg-xs-b-4-f { + margin-bottom: 4px !important; } + .mg-xs-l-4-f { + margin-left: 4px !important; } + .mg-xs-5 { + margin: 5px; } + .mg-xs-5-f { + margin: 5px !important; } + .mg-xs-y-5 { + margin-top: 5px; + margin-bottom: 5px; } + .mg-xs-y-5-f { + margin-top: 5px !important; + margin-bottom: 5px !important; } + .mg-xs-x-5 { + margin-left: 5px; + margin-right: 5px; } + .mg-xs-x-5-f { + margin-left: 5px !important; + margin-right: 5px !important; } + .mg-xs-t-5 { + margin-top: 5px; } + .mg-xs-r-5 { + margin-right: 5px; } + .mg-xs-b-5 { + margin-bottom: 5px; } + .mg-xs-l-5 { + margin-left: 5px; } + .mg-xs-t-5-f { + margin-top: 5px !important; } + .mg-xs-r-5-f { + margin-right: 5px !important; } + .mg-xs-b-5-f { + margin-bottom: 5px !important; } + .mg-xs-l-5-f { + margin-left: 5px !important; } + .mg-xs-6 { + margin: 6px; } + .mg-xs-6-f { + margin: 6px !important; } + .mg-xs-y-6 { + margin-top: 6px; + margin-bottom: 6px; } + .mg-xs-y-6-f { + margin-top: 6px !important; + margin-bottom: 6px !important; } + .mg-xs-x-6 { + margin-left: 6px; + margin-right: 6px; } + .mg-xs-x-6-f { + margin-left: 6px !important; + margin-right: 6px !important; } + .mg-xs-t-6 { + margin-top: 6px; } + .mg-xs-r-6 { + margin-right: 6px; } + .mg-xs-b-6 { + margin-bottom: 6px; } + .mg-xs-l-6 { + margin-left: 6px; } + .mg-xs-t-6-f { + margin-top: 6px !important; } + .mg-xs-r-6-f { + margin-right: 6px !important; } + .mg-xs-b-6-f { + margin-bottom: 6px !important; } + .mg-xs-l-6-f { + margin-left: 6px !important; } + .mg-xs-7 { + margin: 7px; } + .mg-xs-7-f { + margin: 7px !important; } + .mg-xs-y-7 { + margin-top: 7px; + margin-bottom: 7px; } + .mg-xs-y-7-f { + margin-top: 7px !important; + margin-bottom: 7px !important; } + .mg-xs-x-7 { + margin-left: 7px; + margin-right: 7px; } + .mg-xs-x-7-f { + margin-left: 7px !important; + margin-right: 7px !important; } + .mg-xs-t-7 { + margin-top: 7px; } + .mg-xs-r-7 { + margin-right: 7px; } + .mg-xs-b-7 { + margin-bottom: 7px; } + .mg-xs-l-7 { + margin-left: 7px; } + .mg-xs-t-7-f { + margin-top: 7px !important; } + .mg-xs-r-7-f { + margin-right: 7px !important; } + .mg-xs-b-7-f { + margin-bottom: 7px !important; } + .mg-xs-l-7-f { + margin-left: 7px !important; } + .mg-xs-8 { + margin: 8px; } + .mg-xs-8-f { + margin: 8px !important; } + .mg-xs-y-8 { + margin-top: 8px; + margin-bottom: 8px; } + .mg-xs-y-8-f { + margin-top: 8px !important; + margin-bottom: 8px !important; } + .mg-xs-x-8 { + margin-left: 8px; + margin-right: 8px; } + .mg-xs-x-8-f { + margin-left: 8px !important; + margin-right: 8px !important; } + .mg-xs-t-8 { + margin-top: 8px; } + .mg-xs-r-8 { + margin-right: 8px; } + .mg-xs-b-8 { + margin-bottom: 8px; } + .mg-xs-l-8 { + margin-left: 8px; } + .mg-xs-t-8-f { + margin-top: 8px !important; } + .mg-xs-r-8-f { + margin-right: 8px !important; } + .mg-xs-b-8-f { + margin-bottom: 8px !important; } + .mg-xs-l-8-f { + margin-left: 8px !important; } + .mg-xs-9 { + margin: 9px; } + .mg-xs-9-f { + margin: 9px !important; } + .mg-xs-y-9 { + margin-top: 9px; + margin-bottom: 9px; } + .mg-xs-y-9-f { + margin-top: 9px !important; + margin-bottom: 9px !important; } + .mg-xs-x-9 { + margin-left: 9px; + margin-right: 9px; } + .mg-xs-x-9-f { + margin-left: 9px !important; + margin-right: 9px !important; } + .mg-xs-t-9 { + margin-top: 9px; } + .mg-xs-r-9 { + margin-right: 9px; } + .mg-xs-b-9 { + margin-bottom: 9px; } + .mg-xs-l-9 { + margin-left: 9px; } + .mg-xs-t-9-f { + margin-top: 9px !important; } + .mg-xs-r-9-f { + margin-right: 9px !important; } + .mg-xs-b-9-f { + margin-bottom: 9px !important; } + .mg-xs-l-9-f { + margin-left: 9px !important; } + .mg-xs-10 { + margin: 10px; } + .mg-xs-10-f { + margin: 10px !important; } + .mg-xs-y-10 { + margin-top: 10px; + margin-bottom: 10px; } + .mg-xs-y-10-f { + margin-top: 10px !important; + margin-bottom: 10px !important; } + .mg-xs-x-10 { + margin-left: 10px; + margin-right: 10px; } + .mg-xs-x-10-f { + margin-left: 10px !important; + margin-right: 10px !important; } + .mg-xs-t-10 { + margin-top: 10px; } + .mg-xs-r-10 { + margin-right: 10px; } + .mg-xs-b-10 { + margin-bottom: 10px; } + .mg-xs-l-10 { + margin-left: 10px; } + .mg-xs-t-10-f { + margin-top: 10px !important; } + .mg-xs-r-10-f { + margin-right: 10px !important; } + .mg-xs-b-10-f { + margin-bottom: 10px !important; } + .mg-xs-l-10-f { + margin-left: 10px !important; } + .mg-xs-15 { + margin: 15px; } + .mg-xs-15-f { + margin: 15px !important; } + .mg-xs-y-15 { + margin-top: 15px; + margin-bottom: 15px; } + .mg-xs-y-15-f { + margin-top: 15px !important; + margin-bottom: 15px !important; } + .mg-xs-x-15 { + margin-left: 15px; + margin-right: 15px; } + .mg-xs-x-15-f { + margin-left: 15px !important; + margin-right: 15px !important; } + .mg-xs-t-15 { + margin-top: 15px; } + .mg-xs-r-15 { + margin-right: 15px; } + .mg-xs-b-15 { + margin-bottom: 15px; } + .mg-xs-l-15 { + margin-left: 15px; } + .mg-xs-t-15-f { + margin-top: 15px !important; } + .mg-xs-r-15-f { + margin-right: 15px !important; } + .mg-xs-b-15-f { + margin-bottom: 15px !important; } + .mg-xs-l-15-f { + margin-left: 15px !important; } + .mg-xs-20 { + margin: 20px; } + .mg-xs-20-f { + margin: 20px !important; } + .mg-xs-y-20 { + margin-top: 20px; + margin-bottom: 20px; } + .mg-xs-y-20-f { + margin-top: 20px !important; + margin-bottom: 20px !important; } + .mg-xs-x-20 { + margin-left: 20px; + margin-right: 20px; } + .mg-xs-x-20-f { + margin-left: 20px !important; + margin-right: 20px !important; } + .mg-xs-t-20 { + margin-top: 20px; } + .mg-xs-r-20 { + margin-right: 20px; } + .mg-xs-b-20 { + margin-bottom: 20px; } + .mg-xs-l-20 { + margin-left: 20px; } + .mg-xs-t-20-f { + margin-top: 20px !important; } + .mg-xs-r-20-f { + margin-right: 20px !important; } + .mg-xs-b-20-f { + margin-bottom: 20px !important; } + .mg-xs-l-20-f { + margin-left: 20px !important; } + .mg-xs-25 { + margin: 25px; } + .mg-xs-25-f { + margin: 25px !important; } + .mg-xs-y-25 { + margin-top: 25px; + margin-bottom: 25px; } + .mg-xs-y-25-f { + margin-top: 25px !important; + margin-bottom: 25px !important; } + .mg-xs-x-25 { + margin-left: 25px; + margin-right: 25px; } + .mg-xs-x-25-f { + margin-left: 25px !important; + margin-right: 25px !important; } + .mg-xs-t-25 { + margin-top: 25px; } + .mg-xs-r-25 { + margin-right: 25px; } + .mg-xs-b-25 { + margin-bottom: 25px; } + .mg-xs-l-25 { + margin-left: 25px; } + .mg-xs-t-25-f { + margin-top: 25px !important; } + .mg-xs-r-25-f { + margin-right: 25px !important; } + .mg-xs-b-25-f { + margin-bottom: 25px !important; } + .mg-xs-l-25-f { + margin-left: 25px !important; } + .mg-xs-30 { + margin: 30px; } + .mg-xs-30-f { + margin: 30px !important; } + .mg-xs-y-30 { + margin-top: 30px; + margin-bottom: 30px; } + .mg-xs-y-30-f { + margin-top: 30px !important; + margin-bottom: 30px !important; } + .mg-xs-x-30 { + margin-left: 30px; + margin-right: 30px; } + .mg-xs-x-30-f { + margin-left: 30px !important; + margin-right: 30px !important; } + .mg-xs-t-30 { + margin-top: 30px; } + .mg-xs-r-30 { + margin-right: 30px; } + .mg-xs-b-30 { + margin-bottom: 30px; } + .mg-xs-l-30 { + margin-left: 30px; } + .mg-xs-t-30-f { + margin-top: 30px !important; } + .mg-xs-r-30-f { + margin-right: 30px !important; } + .mg-xs-b-30-f { + margin-bottom: 30px !important; } + .mg-xs-l-30-f { + margin-left: 30px !important; } + .mg-xs-35 { + margin: 35px; } + .mg-xs-35-f { + margin: 35px !important; } + .mg-xs-y-35 { + margin-top: 35px; + margin-bottom: 35px; } + .mg-xs-y-35-f { + margin-top: 35px !important; + margin-bottom: 35px !important; } + .mg-xs-x-35 { + margin-left: 35px; + margin-right: 35px; } + .mg-xs-x-35-f { + margin-left: 35px !important; + margin-right: 35px !important; } + .mg-xs-t-35 { + margin-top: 35px; } + .mg-xs-r-35 { + margin-right: 35px; } + .mg-xs-b-35 { + margin-bottom: 35px; } + .mg-xs-l-35 { + margin-left: 35px; } + .mg-xs-t-35-f { + margin-top: 35px !important; } + .mg-xs-r-35-f { + margin-right: 35px !important; } + .mg-xs-b-35-f { + margin-bottom: 35px !important; } + .mg-xs-l-35-f { + margin-left: 35px !important; } + .mg-xs-40 { + margin: 40px; } + .mg-xs-40-f { + margin: 40px !important; } + .mg-xs-y-40 { + margin-top: 40px; + margin-bottom: 40px; } + .mg-xs-y-40-f { + margin-top: 40px !important; + margin-bottom: 40px !important; } + .mg-xs-x-40 { + margin-left: 40px; + margin-right: 40px; } + .mg-xs-x-40-f { + margin-left: 40px !important; + margin-right: 40px !important; } + .mg-xs-t-40 { + margin-top: 40px; } + .mg-xs-r-40 { + margin-right: 40px; } + .mg-xs-b-40 { + margin-bottom: 40px; } + .mg-xs-l-40 { + margin-left: 40px; } + .mg-xs-t-40-f { + margin-top: 40px !important; } + .mg-xs-r-40-f { + margin-right: 40px !important; } + .mg-xs-b-40-f { + margin-bottom: 40px !important; } + .mg-xs-l-40-f { + margin-left: 40px !important; } + .mg-xs-45 { + margin: 45px; } + .mg-xs-45-f { + margin: 45px !important; } + .mg-xs-y-45 { + margin-top: 45px; + margin-bottom: 45px; } + .mg-xs-y-45-f { + margin-top: 45px !important; + margin-bottom: 45px !important; } + .mg-xs-x-45 { + margin-left: 45px; + margin-right: 45px; } + .mg-xs-x-45-f { + margin-left: 45px !important; + margin-right: 45px !important; } + .mg-xs-t-45 { + margin-top: 45px; } + .mg-xs-r-45 { + margin-right: 45px; } + .mg-xs-b-45 { + margin-bottom: 45px; } + .mg-xs-l-45 { + margin-left: 45px; } + .mg-xs-t-45-f { + margin-top: 45px !important; } + .mg-xs-r-45-f { + margin-right: 45px !important; } + .mg-xs-b-45-f { + margin-bottom: 45px !important; } + .mg-xs-l-45-f { + margin-left: 45px !important; } + .mg-xs-50 { + margin: 50px; } + .mg-xs-50-f { + margin: 50px !important; } + .mg-xs-y-50 { + margin-top: 50px; + margin-bottom: 50px; } + .mg-xs-y-50-f { + margin-top: 50px !important; + margin-bottom: 50px !important; } + .mg-xs-x-50 { + margin-left: 50px; + margin-right: 50px; } + .mg-xs-x-50-f { + margin-left: 50px !important; + margin-right: 50px !important; } + .mg-xs-t-50 { + margin-top: 50px; } + .mg-xs-r-50 { + margin-right: 50px; } + .mg-xs-b-50 { + margin-bottom: 50px; } + .mg-xs-l-50 { + margin-left: 50px; } + .mg-xs-t-50-f { + margin-top: 50px !important; } + .mg-xs-r-50-f { + margin-right: 50px !important; } + .mg-xs-b-50-f { + margin-bottom: 50px !important; } + .mg-xs-l-50-f { + margin-left: 50px !important; } + .mg-xs-55 { + margin: 55px; } + .mg-xs-55-f { + margin: 55px !important; } + .mg-xs-y-55 { + margin-top: 55px; + margin-bottom: 55px; } + .mg-xs-y-55-f { + margin-top: 55px !important; + margin-bottom: 55px !important; } + .mg-xs-x-55 { + margin-left: 55px; + margin-right: 55px; } + .mg-xs-x-55-f { + margin-left: 55px !important; + margin-right: 55px !important; } + .mg-xs-t-55 { + margin-top: 55px; } + .mg-xs-r-55 { + margin-right: 55px; } + .mg-xs-b-55 { + margin-bottom: 55px; } + .mg-xs-l-55 { + margin-left: 55px; } + .mg-xs-t-55-f { + margin-top: 55px !important; } + .mg-xs-r-55-f { + margin-right: 55px !important; } + .mg-xs-b-55-f { + margin-bottom: 55px !important; } + .mg-xs-l-55-f { + margin-left: 55px !important; } + .mg-xs-60 { + margin: 60px; } + .mg-xs-60-f { + margin: 60px !important; } + .mg-xs-y-60 { + margin-top: 60px; + margin-bottom: 60px; } + .mg-xs-y-60-f { + margin-top: 60px !important; + margin-bottom: 60px !important; } + .mg-xs-x-60 { + margin-left: 60px; + margin-right: 60px; } + .mg-xs-x-60-f { + margin-left: 60px !important; + margin-right: 60px !important; } + .mg-xs-t-60 { + margin-top: 60px; } + .mg-xs-r-60 { + margin-right: 60px; } + .mg-xs-b-60 { + margin-bottom: 60px; } + .mg-xs-l-60 { + margin-left: 60px; } + .mg-xs-t-60-f { + margin-top: 60px !important; } + .mg-xs-r-60-f { + margin-right: 60px !important; } + .mg-xs-b-60-f { + margin-bottom: 60px !important; } + .mg-xs-l-60-f { + margin-left: 60px !important; } + .mg-xs-65 { + margin: 65px; } + .mg-xs-65-f { + margin: 65px !important; } + .mg-xs-y-65 { + margin-top: 65px; + margin-bottom: 65px; } + .mg-xs-y-65-f { + margin-top: 65px !important; + margin-bottom: 65px !important; } + .mg-xs-x-65 { + margin-left: 65px; + margin-right: 65px; } + .mg-xs-x-65-f { + margin-left: 65px !important; + margin-right: 65px !important; } + .mg-xs-t-65 { + margin-top: 65px; } + .mg-xs-r-65 { + margin-right: 65px; } + .mg-xs-b-65 { + margin-bottom: 65px; } + .mg-xs-l-65 { + margin-left: 65px; } + .mg-xs-t-65-f { + margin-top: 65px !important; } + .mg-xs-r-65-f { + margin-right: 65px !important; } + .mg-xs-b-65-f { + margin-bottom: 65px !important; } + .mg-xs-l-65-f { + margin-left: 65px !important; } + .mg-xs-70 { + margin: 70px; } + .mg-xs-70-f { + margin: 70px !important; } + .mg-xs-y-70 { + margin-top: 70px; + margin-bottom: 70px; } + .mg-xs-y-70-f { + margin-top: 70px !important; + margin-bottom: 70px !important; } + .mg-xs-x-70 { + margin-left: 70px; + margin-right: 70px; } + .mg-xs-x-70-f { + margin-left: 70px !important; + margin-right: 70px !important; } + .mg-xs-t-70 { + margin-top: 70px; } + .mg-xs-r-70 { + margin-right: 70px; } + .mg-xs-b-70 { + margin-bottom: 70px; } + .mg-xs-l-70 { + margin-left: 70px; } + .mg-xs-t-70-f { + margin-top: 70px !important; } + .mg-xs-r-70-f { + margin-right: 70px !important; } + .mg-xs-b-70-f { + margin-bottom: 70px !important; } + .mg-xs-l-70-f { + margin-left: 70px !important; } + .mg-xs-75 { + margin: 75px; } + .mg-xs-75-f { + margin: 75px !important; } + .mg-xs-y-75 { + margin-top: 75px; + margin-bottom: 75px; } + .mg-xs-y-75-f { + margin-top: 75px !important; + margin-bottom: 75px !important; } + .mg-xs-x-75 { + margin-left: 75px; + margin-right: 75px; } + .mg-xs-x-75-f { + margin-left: 75px !important; + margin-right: 75px !important; } + .mg-xs-t-75 { + margin-top: 75px; } + .mg-xs-r-75 { + margin-right: 75px; } + .mg-xs-b-75 { + margin-bottom: 75px; } + .mg-xs-l-75 { + margin-left: 75px; } + .mg-xs-t-75-f { + margin-top: 75px !important; } + .mg-xs-r-75-f { + margin-right: 75px !important; } + .mg-xs-b-75-f { + margin-bottom: 75px !important; } + .mg-xs-l-75-f { + margin-left: 75px !important; } + .mg-xs-80 { + margin: 80px; } + .mg-xs-80-f { + margin: 80px !important; } + .mg-xs-y-80 { + margin-top: 80px; + margin-bottom: 80px; } + .mg-xs-y-80-f { + margin-top: 80px !important; + margin-bottom: 80px !important; } + .mg-xs-x-80 { + margin-left: 80px; + margin-right: 80px; } + .mg-xs-x-80-f { + margin-left: 80px !important; + margin-right: 80px !important; } + .mg-xs-t-80 { + margin-top: 80px; } + .mg-xs-r-80 { + margin-right: 80px; } + .mg-xs-b-80 { + margin-bottom: 80px; } + .mg-xs-l-80 { + margin-left: 80px; } + .mg-xs-t-80-f { + margin-top: 80px !important; } + .mg-xs-r-80-f { + margin-right: 80px !important; } + .mg-xs-b-80-f { + margin-bottom: 80px !important; } + .mg-xs-l-80-f { + margin-left: 80px !important; } + .mg-xs-85 { + margin: 85px; } + .mg-xs-85-f { + margin: 85px !important; } + .mg-xs-y-85 { + margin-top: 85px; + margin-bottom: 85px; } + .mg-xs-y-85-f { + margin-top: 85px !important; + margin-bottom: 85px !important; } + .mg-xs-x-85 { + margin-left: 85px; + margin-right: 85px; } + .mg-xs-x-85-f { + margin-left: 85px !important; + margin-right: 85px !important; } + .mg-xs-t-85 { + margin-top: 85px; } + .mg-xs-r-85 { + margin-right: 85px; } + .mg-xs-b-85 { + margin-bottom: 85px; } + .mg-xs-l-85 { + margin-left: 85px; } + .mg-xs-t-85-f { + margin-top: 85px !important; } + .mg-xs-r-85-f { + margin-right: 85px !important; } + .mg-xs-b-85-f { + margin-bottom: 85px !important; } + .mg-xs-l-85-f { + margin-left: 85px !important; } + .mg-xs-90 { + margin: 90px; } + .mg-xs-90-f { + margin: 90px !important; } + .mg-xs-y-90 { + margin-top: 90px; + margin-bottom: 90px; } + .mg-xs-y-90-f { + margin-top: 90px !important; + margin-bottom: 90px !important; } + .mg-xs-x-90 { + margin-left: 90px; + margin-right: 90px; } + .mg-xs-x-90-f { + margin-left: 90px !important; + margin-right: 90px !important; } + .mg-xs-t-90 { + margin-top: 90px; } + .mg-xs-r-90 { + margin-right: 90px; } + .mg-xs-b-90 { + margin-bottom: 90px; } + .mg-xs-l-90 { + margin-left: 90px; } + .mg-xs-t-90-f { + margin-top: 90px !important; } + .mg-xs-r-90-f { + margin-right: 90px !important; } + .mg-xs-b-90-f { + margin-bottom: 90px !important; } + .mg-xs-l-90-f { + margin-left: 90px !important; } + .mg-xs-95 { + margin: 95px; } + .mg-xs-95-f { + margin: 95px !important; } + .mg-xs-y-95 { + margin-top: 95px; + margin-bottom: 95px; } + .mg-xs-y-95-f { + margin-top: 95px !important; + margin-bottom: 95px !important; } + .mg-xs-x-95 { + margin-left: 95px; + margin-right: 95px; } + .mg-xs-x-95-f { + margin-left: 95px !important; + margin-right: 95px !important; } + .mg-xs-t-95 { + margin-top: 95px; } + .mg-xs-r-95 { + margin-right: 95px; } + .mg-xs-b-95 { + margin-bottom: 95px; } + .mg-xs-l-95 { + margin-left: 95px; } + .mg-xs-t-95-f { + margin-top: 95px !important; } + .mg-xs-r-95-f { + margin-right: 95px !important; } + .mg-xs-b-95-f { + margin-bottom: 95px !important; } + .mg-xs-l-95-f { + margin-left: 95px !important; } + .mg-xs-100 { + margin: 100px; } + .mg-xs-100-f { + margin: 100px !important; } + .mg-xs-y-100 { + margin-top: 100px; + margin-bottom: 100px; } + .mg-xs-y-100-f { + margin-top: 100px !important; + margin-bottom: 100px !important; } + .mg-xs-x-100 { + margin-left: 100px; + margin-right: 100px; } + .mg-xs-x-100-f { + margin-left: 100px !important; + margin-right: 100px !important; } + .mg-xs-t-100 { + margin-top: 100px; } + .mg-xs-r-100 { + margin-right: 100px; } + .mg-xs-b-100 { + margin-bottom: 100px; } + .mg-xs-l-100 { + margin-left: 100px; } + .mg-xs-t-100-f { + margin-top: 100px !important; } + .mg-xs-r-100-f { + margin-right: 100px !important; } + .mg-xs-b-100-f { + margin-bottom: 100px !important; } + .mg-xs-l-100-f { + margin-left: 100px !important; } + .mg-xs-t-auto { + margin-top: auto; } + .mg-xs-r-auto { + margin-right: auto; } + .mg-xs-b-auto { + margin-bottom: auto; } + .mg-xs-l-auto { + margin-left: auto; } + .mg-xs-auto { + margin: auto; } + .mg-xs-x-auto { + margin-left: auto; + margin-right: auto; } } + +@media (min-width: 576px) { + .mg-sm-0 { + margin: 0px; } + .mg-sm-0-f { + margin: 0px !important; } + .mg-sm-y-0 { + margin-top: 0px; + margin-bottom: 0px; } + .mg-sm-y-0-f { + margin-top: 0px !important; + margin-bottom: 0px !important; } + .mg-sm-x-0 { + margin-left: 0px; + margin-right: 0px; } + .mg-sm-x-0-f { + margin-left: 0px !important; + margin-right: 0px !important; } + .mg-sm-t-0 { + margin-top: 0px; } + .mg-sm-r-0 { + margin-right: 0px; } + .mg-sm-b-0 { + margin-bottom: 0px; } + .mg-sm-l-0 { + margin-left: 0px; } + .mg-sm-t-0-f { + margin-top: 0px !important; } + .mg-sm-r-0-f { + margin-right: 0px !important; } + .mg-sm-b-0-f { + margin-bottom: 0px !important; } + .mg-sm-l-0-f { + margin-left: 0px !important; } + .mg-sm-1 { + margin: 1px; } + .mg-sm-1-f { + margin: 1px !important; } + .mg-sm-y-1 { + margin-top: 1px; + margin-bottom: 1px; } + .mg-sm-y-1-f { + margin-top: 1px !important; + margin-bottom: 1px !important; } + .mg-sm-x-1 { + margin-left: 1px; + margin-right: 1px; } + .mg-sm-x-1-f { + margin-left: 1px !important; + margin-right: 1px !important; } + .mg-sm-t-1 { + margin-top: 1px; } + .mg-sm-r-1 { + margin-right: 1px; } + .mg-sm-b-1 { + margin-bottom: 1px; } + .mg-sm-l-1 { + margin-left: 1px; } + .mg-sm-t-1-f { + margin-top: 1px !important; } + .mg-sm-r-1-f { + margin-right: 1px !important; } + .mg-sm-b-1-f { + margin-bottom: 1px !important; } + .mg-sm-l-1-f { + margin-left: 1px !important; } + .mg-sm-2 { + margin: 2px; } + .mg-sm-2-f { + margin: 2px !important; } + .mg-sm-y-2 { + margin-top: 2px; + margin-bottom: 2px; } + .mg-sm-y-2-f { + margin-top: 2px !important; + margin-bottom: 2px !important; } + .mg-sm-x-2 { + margin-left: 2px; + margin-right: 2px; } + .mg-sm-x-2-f { + margin-left: 2px !important; + margin-right: 2px !important; } + .mg-sm-t-2 { + margin-top: 2px; } + .mg-sm-r-2 { + margin-right: 2px; } + .mg-sm-b-2 { + margin-bottom: 2px; } + .mg-sm-l-2 { + margin-left: 2px; } + .mg-sm-t-2-f { + margin-top: 2px !important; } + .mg-sm-r-2-f { + margin-right: 2px !important; } + .mg-sm-b-2-f { + margin-bottom: 2px !important; } + .mg-sm-l-2-f { + margin-left: 2px !important; } + .mg-sm-3 { + margin: 3px; } + .mg-sm-3-f { + margin: 3px !important; } + .mg-sm-y-3 { + margin-top: 3px; + margin-bottom: 3px; } + .mg-sm-y-3-f { + margin-top: 3px !important; + margin-bottom: 3px !important; } + .mg-sm-x-3 { + margin-left: 3px; + margin-right: 3px; } + .mg-sm-x-3-f { + margin-left: 3px !important; + margin-right: 3px !important; } + .mg-sm-t-3 { + margin-top: 3px; } + .mg-sm-r-3 { + margin-right: 3px; } + .mg-sm-b-3 { + margin-bottom: 3px; } + .mg-sm-l-3 { + margin-left: 3px; } + .mg-sm-t-3-f { + margin-top: 3px !important; } + .mg-sm-r-3-f { + margin-right: 3px !important; } + .mg-sm-b-3-f { + margin-bottom: 3px !important; } + .mg-sm-l-3-f { + margin-left: 3px !important; } + .mg-sm-4 { + margin: 4px; } + .mg-sm-4-f { + margin: 4px !important; } + .mg-sm-y-4 { + margin-top: 4px; + margin-bottom: 4px; } + .mg-sm-y-4-f { + margin-top: 4px !important; + margin-bottom: 4px !important; } + .mg-sm-x-4 { + margin-left: 4px; + margin-right: 4px; } + .mg-sm-x-4-f { + margin-left: 4px !important; + margin-right: 4px !important; } + .mg-sm-t-4 { + margin-top: 4px; } + .mg-sm-r-4 { + margin-right: 4px; } + .mg-sm-b-4 { + margin-bottom: 4px; } + .mg-sm-l-4 { + margin-left: 4px; } + .mg-sm-t-4-f { + margin-top: 4px !important; } + .mg-sm-r-4-f { + margin-right: 4px !important; } + .mg-sm-b-4-f { + margin-bottom: 4px !important; } + .mg-sm-l-4-f { + margin-left: 4px !important; } + .mg-sm-5 { + margin: 5px; } + .mg-sm-5-f { + margin: 5px !important; } + .mg-sm-y-5 { + margin-top: 5px; + margin-bottom: 5px; } + .mg-sm-y-5-f { + margin-top: 5px !important; + margin-bottom: 5px !important; } + .mg-sm-x-5 { + margin-left: 5px; + margin-right: 5px; } + .mg-sm-x-5-f { + margin-left: 5px !important; + margin-right: 5px !important; } + .mg-sm-t-5 { + margin-top: 5px; } + .mg-sm-r-5 { + margin-right: 5px; } + .mg-sm-b-5 { + margin-bottom: 5px; } + .mg-sm-l-5 { + margin-left: 5px; } + .mg-sm-t-5-f { + margin-top: 5px !important; } + .mg-sm-r-5-f { + margin-right: 5px !important; } + .mg-sm-b-5-f { + margin-bottom: 5px !important; } + .mg-sm-l-5-f { + margin-left: 5px !important; } + .mg-sm-6 { + margin: 6px; } + .mg-sm-6-f { + margin: 6px !important; } + .mg-sm-y-6 { + margin-top: 6px; + margin-bottom: 6px; } + .mg-sm-y-6-f { + margin-top: 6px !important; + margin-bottom: 6px !important; } + .mg-sm-x-6 { + margin-left: 6px; + margin-right: 6px; } + .mg-sm-x-6-f { + margin-left: 6px !important; + margin-right: 6px !important; } + .mg-sm-t-6 { + margin-top: 6px; } + .mg-sm-r-6 { + margin-right: 6px; } + .mg-sm-b-6 { + margin-bottom: 6px; } + .mg-sm-l-6 { + margin-left: 6px; } + .mg-sm-t-6-f { + margin-top: 6px !important; } + .mg-sm-r-6-f { + margin-right: 6px !important; } + .mg-sm-b-6-f { + margin-bottom: 6px !important; } + .mg-sm-l-6-f { + margin-left: 6px !important; } + .mg-sm-7 { + margin: 7px; } + .mg-sm-7-f { + margin: 7px !important; } + .mg-sm-y-7 { + margin-top: 7px; + margin-bottom: 7px; } + .mg-sm-y-7-f { + margin-top: 7px !important; + margin-bottom: 7px !important; } + .mg-sm-x-7 { + margin-left: 7px; + margin-right: 7px; } + .mg-sm-x-7-f { + margin-left: 7px !important; + margin-right: 7px !important; } + .mg-sm-t-7 { + margin-top: 7px; } + .mg-sm-r-7 { + margin-right: 7px; } + .mg-sm-b-7 { + margin-bottom: 7px; } + .mg-sm-l-7 { + margin-left: 7px; } + .mg-sm-t-7-f { + margin-top: 7px !important; } + .mg-sm-r-7-f { + margin-right: 7px !important; } + .mg-sm-b-7-f { + margin-bottom: 7px !important; } + .mg-sm-l-7-f { + margin-left: 7px !important; } + .mg-sm-8 { + margin: 8px; } + .mg-sm-8-f { + margin: 8px !important; } + .mg-sm-y-8 { + margin-top: 8px; + margin-bottom: 8px; } + .mg-sm-y-8-f { + margin-top: 8px !important; + margin-bottom: 8px !important; } + .mg-sm-x-8 { + margin-left: 8px; + margin-right: 8px; } + .mg-sm-x-8-f { + margin-left: 8px !important; + margin-right: 8px !important; } + .mg-sm-t-8 { + margin-top: 8px; } + .mg-sm-r-8 { + margin-right: 8px; } + .mg-sm-b-8 { + margin-bottom: 8px; } + .mg-sm-l-8 { + margin-left: 8px; } + .mg-sm-t-8-f { + margin-top: 8px !important; } + .mg-sm-r-8-f { + margin-right: 8px !important; } + .mg-sm-b-8-f { + margin-bottom: 8px !important; } + .mg-sm-l-8-f { + margin-left: 8px !important; } + .mg-sm-9 { + margin: 9px; } + .mg-sm-9-f { + margin: 9px !important; } + .mg-sm-y-9 { + margin-top: 9px; + margin-bottom: 9px; } + .mg-sm-y-9-f { + margin-top: 9px !important; + margin-bottom: 9px !important; } + .mg-sm-x-9 { + margin-left: 9px; + margin-right: 9px; } + .mg-sm-x-9-f { + margin-left: 9px !important; + margin-right: 9px !important; } + .mg-sm-t-9 { + margin-top: 9px; } + .mg-sm-r-9 { + margin-right: 9px; } + .mg-sm-b-9 { + margin-bottom: 9px; } + .mg-sm-l-9 { + margin-left: 9px; } + .mg-sm-t-9-f { + margin-top: 9px !important; } + .mg-sm-r-9-f { + margin-right: 9px !important; } + .mg-sm-b-9-f { + margin-bottom: 9px !important; } + .mg-sm-l-9-f { + margin-left: 9px !important; } + .mg-sm-10 { + margin: 10px; } + .mg-sm-10-f { + margin: 10px !important; } + .mg-sm-y-10 { + margin-top: 10px; + margin-bottom: 10px; } + .mg-sm-y-10-f { + margin-top: 10px !important; + margin-bottom: 10px !important; } + .mg-sm-x-10 { + margin-left: 10px; + margin-right: 10px; } + .mg-sm-x-10-f { + margin-left: 10px !important; + margin-right: 10px !important; } + .mg-sm-t-10 { + margin-top: 10px; } + .mg-sm-r-10 { + margin-right: 10px; } + .mg-sm-b-10 { + margin-bottom: 10px; } + .mg-sm-l-10 { + margin-left: 10px; } + .mg-sm-t-10-f { + margin-top: 10px !important; } + .mg-sm-r-10-f { + margin-right: 10px !important; } + .mg-sm-b-10-f { + margin-bottom: 10px !important; } + .mg-sm-l-10-f { + margin-left: 10px !important; } + .mg-sm-15 { + margin: 15px; } + .mg-sm-15-f { + margin: 15px !important; } + .mg-sm-y-15 { + margin-top: 15px; + margin-bottom: 15px; } + .mg-sm-y-15-f { + margin-top: 15px !important; + margin-bottom: 15px !important; } + .mg-sm-x-15 { + margin-left: 15px; + margin-right: 15px; } + .mg-sm-x-15-f { + margin-left: 15px !important; + margin-right: 15px !important; } + .mg-sm-t-15 { + margin-top: 15px; } + .mg-sm-r-15 { + margin-right: 15px; } + .mg-sm-b-15 { + margin-bottom: 15px; } + .mg-sm-l-15 { + margin-left: 15px; } + .mg-sm-t-15-f { + margin-top: 15px !important; } + .mg-sm-r-15-f { + margin-right: 15px !important; } + .mg-sm-b-15-f { + margin-bottom: 15px !important; } + .mg-sm-l-15-f { + margin-left: 15px !important; } + .mg-sm-20 { + margin: 20px; } + .mg-sm-20-f { + margin: 20px !important; } + .mg-sm-y-20 { + margin-top: 20px; + margin-bottom: 20px; } + .mg-sm-y-20-f { + margin-top: 20px !important; + margin-bottom: 20px !important; } + .mg-sm-x-20 { + margin-left: 20px; + margin-right: 20px; } + .mg-sm-x-20-f { + margin-left: 20px !important; + margin-right: 20px !important; } + .mg-sm-t-20 { + margin-top: 20px; } + .mg-sm-r-20 { + margin-right: 20px; } + .mg-sm-b-20 { + margin-bottom: 20px; } + .mg-sm-l-20 { + margin-left: 20px; } + .mg-sm-t-20-f { + margin-top: 20px !important; } + .mg-sm-r-20-f { + margin-right: 20px !important; } + .mg-sm-b-20-f { + margin-bottom: 20px !important; } + .mg-sm-l-20-f { + margin-left: 20px !important; } + .mg-sm-25 { + margin: 25px; } + .mg-sm-25-f { + margin: 25px !important; } + .mg-sm-y-25 { + margin-top: 25px; + margin-bottom: 25px; } + .mg-sm-y-25-f { + margin-top: 25px !important; + margin-bottom: 25px !important; } + .mg-sm-x-25 { + margin-left: 25px; + margin-right: 25px; } + .mg-sm-x-25-f { + margin-left: 25px !important; + margin-right: 25px !important; } + .mg-sm-t-25 { + margin-top: 25px; } + .mg-sm-r-25 { + margin-right: 25px; } + .mg-sm-b-25 { + margin-bottom: 25px; } + .mg-sm-l-25 { + margin-left: 25px; } + .mg-sm-t-25-f { + margin-top: 25px !important; } + .mg-sm-r-25-f { + margin-right: 25px !important; } + .mg-sm-b-25-f { + margin-bottom: 25px !important; } + .mg-sm-l-25-f { + margin-left: 25px !important; } + .mg-sm-30 { + margin: 30px; } + .mg-sm-30-f { + margin: 30px !important; } + .mg-sm-y-30 { + margin-top: 30px; + margin-bottom: 30px; } + .mg-sm-y-30-f { + margin-top: 30px !important; + margin-bottom: 30px !important; } + .mg-sm-x-30 { + margin-left: 30px; + margin-right: 30px; } + .mg-sm-x-30-f { + margin-left: 30px !important; + margin-right: 30px !important; } + .mg-sm-t-30 { + margin-top: 30px; } + .mg-sm-r-30 { + margin-right: 30px; } + .mg-sm-b-30 { + margin-bottom: 30px; } + .mg-sm-l-30 { + margin-left: 30px; } + .mg-sm-t-30-f { + margin-top: 30px !important; } + .mg-sm-r-30-f { + margin-right: 30px !important; } + .mg-sm-b-30-f { + margin-bottom: 30px !important; } + .mg-sm-l-30-f { + margin-left: 30px !important; } + .mg-sm-35 { + margin: 35px; } + .mg-sm-35-f { + margin: 35px !important; } + .mg-sm-y-35 { + margin-top: 35px; + margin-bottom: 35px; } + .mg-sm-y-35-f { + margin-top: 35px !important; + margin-bottom: 35px !important; } + .mg-sm-x-35 { + margin-left: 35px; + margin-right: 35px; } + .mg-sm-x-35-f { + margin-left: 35px !important; + margin-right: 35px !important; } + .mg-sm-t-35 { + margin-top: 35px; } + .mg-sm-r-35 { + margin-right: 35px; } + .mg-sm-b-35 { + margin-bottom: 35px; } + .mg-sm-l-35 { + margin-left: 35px; } + .mg-sm-t-35-f { + margin-top: 35px !important; } + .mg-sm-r-35-f { + margin-right: 35px !important; } + .mg-sm-b-35-f { + margin-bottom: 35px !important; } + .mg-sm-l-35-f { + margin-left: 35px !important; } + .mg-sm-40 { + margin: 40px; } + .mg-sm-40-f { + margin: 40px !important; } + .mg-sm-y-40 { + margin-top: 40px; + margin-bottom: 40px; } + .mg-sm-y-40-f { + margin-top: 40px !important; + margin-bottom: 40px !important; } + .mg-sm-x-40 { + margin-left: 40px; + margin-right: 40px; } + .mg-sm-x-40-f { + margin-left: 40px !important; + margin-right: 40px !important; } + .mg-sm-t-40 { + margin-top: 40px; } + .mg-sm-r-40 { + margin-right: 40px; } + .mg-sm-b-40 { + margin-bottom: 40px; } + .mg-sm-l-40 { + margin-left: 40px; } + .mg-sm-t-40-f { + margin-top: 40px !important; } + .mg-sm-r-40-f { + margin-right: 40px !important; } + .mg-sm-b-40-f { + margin-bottom: 40px !important; } + .mg-sm-l-40-f { + margin-left: 40px !important; } + .mg-sm-45 { + margin: 45px; } + .mg-sm-45-f { + margin: 45px !important; } + .mg-sm-y-45 { + margin-top: 45px; + margin-bottom: 45px; } + .mg-sm-y-45-f { + margin-top: 45px !important; + margin-bottom: 45px !important; } + .mg-sm-x-45 { + margin-left: 45px; + margin-right: 45px; } + .mg-sm-x-45-f { + margin-left: 45px !important; + margin-right: 45px !important; } + .mg-sm-t-45 { + margin-top: 45px; } + .mg-sm-r-45 { + margin-right: 45px; } + .mg-sm-b-45 { + margin-bottom: 45px; } + .mg-sm-l-45 { + margin-left: 45px; } + .mg-sm-t-45-f { + margin-top: 45px !important; } + .mg-sm-r-45-f { + margin-right: 45px !important; } + .mg-sm-b-45-f { + margin-bottom: 45px !important; } + .mg-sm-l-45-f { + margin-left: 45px !important; } + .mg-sm-50 { + margin: 50px; } + .mg-sm-50-f { + margin: 50px !important; } + .mg-sm-y-50 { + margin-top: 50px; + margin-bottom: 50px; } + .mg-sm-y-50-f { + margin-top: 50px !important; + margin-bottom: 50px !important; } + .mg-sm-x-50 { + margin-left: 50px; + margin-right: 50px; } + .mg-sm-x-50-f { + margin-left: 50px !important; + margin-right: 50px !important; } + .mg-sm-t-50 { + margin-top: 50px; } + .mg-sm-r-50 { + margin-right: 50px; } + .mg-sm-b-50 { + margin-bottom: 50px; } + .mg-sm-l-50 { + margin-left: 50px; } + .mg-sm-t-50-f { + margin-top: 50px !important; } + .mg-sm-r-50-f { + margin-right: 50px !important; } + .mg-sm-b-50-f { + margin-bottom: 50px !important; } + .mg-sm-l-50-f { + margin-left: 50px !important; } + .mg-sm-55 { + margin: 55px; } + .mg-sm-55-f { + margin: 55px !important; } + .mg-sm-y-55 { + margin-top: 55px; + margin-bottom: 55px; } + .mg-sm-y-55-f { + margin-top: 55px !important; + margin-bottom: 55px !important; } + .mg-sm-x-55 { + margin-left: 55px; + margin-right: 55px; } + .mg-sm-x-55-f { + margin-left: 55px !important; + margin-right: 55px !important; } + .mg-sm-t-55 { + margin-top: 55px; } + .mg-sm-r-55 { + margin-right: 55px; } + .mg-sm-b-55 { + margin-bottom: 55px; } + .mg-sm-l-55 { + margin-left: 55px; } + .mg-sm-t-55-f { + margin-top: 55px !important; } + .mg-sm-r-55-f { + margin-right: 55px !important; } + .mg-sm-b-55-f { + margin-bottom: 55px !important; } + .mg-sm-l-55-f { + margin-left: 55px !important; } + .mg-sm-60 { + margin: 60px; } + .mg-sm-60-f { + margin: 60px !important; } + .mg-sm-y-60 { + margin-top: 60px; + margin-bottom: 60px; } + .mg-sm-y-60-f { + margin-top: 60px !important; + margin-bottom: 60px !important; } + .mg-sm-x-60 { + margin-left: 60px; + margin-right: 60px; } + .mg-sm-x-60-f { + margin-left: 60px !important; + margin-right: 60px !important; } + .mg-sm-t-60 { + margin-top: 60px; } + .mg-sm-r-60 { + margin-right: 60px; } + .mg-sm-b-60 { + margin-bottom: 60px; } + .mg-sm-l-60 { + margin-left: 60px; } + .mg-sm-t-60-f { + margin-top: 60px !important; } + .mg-sm-r-60-f { + margin-right: 60px !important; } + .mg-sm-b-60-f { + margin-bottom: 60px !important; } + .mg-sm-l-60-f { + margin-left: 60px !important; } + .mg-sm-65 { + margin: 65px; } + .mg-sm-65-f { + margin: 65px !important; } + .mg-sm-y-65 { + margin-top: 65px; + margin-bottom: 65px; } + .mg-sm-y-65-f { + margin-top: 65px !important; + margin-bottom: 65px !important; } + .mg-sm-x-65 { + margin-left: 65px; + margin-right: 65px; } + .mg-sm-x-65-f { + margin-left: 65px !important; + margin-right: 65px !important; } + .mg-sm-t-65 { + margin-top: 65px; } + .mg-sm-r-65 { + margin-right: 65px; } + .mg-sm-b-65 { + margin-bottom: 65px; } + .mg-sm-l-65 { + margin-left: 65px; } + .mg-sm-t-65-f { + margin-top: 65px !important; } + .mg-sm-r-65-f { + margin-right: 65px !important; } + .mg-sm-b-65-f { + margin-bottom: 65px !important; } + .mg-sm-l-65-f { + margin-left: 65px !important; } + .mg-sm-70 { + margin: 70px; } + .mg-sm-70-f { + margin: 70px !important; } + .mg-sm-y-70 { + margin-top: 70px; + margin-bottom: 70px; } + .mg-sm-y-70-f { + margin-top: 70px !important; + margin-bottom: 70px !important; } + .mg-sm-x-70 { + margin-left: 70px; + margin-right: 70px; } + .mg-sm-x-70-f { + margin-left: 70px !important; + margin-right: 70px !important; } + .mg-sm-t-70 { + margin-top: 70px; } + .mg-sm-r-70 { + margin-right: 70px; } + .mg-sm-b-70 { + margin-bottom: 70px; } + .mg-sm-l-70 { + margin-left: 70px; } + .mg-sm-t-70-f { + margin-top: 70px !important; } + .mg-sm-r-70-f { + margin-right: 70px !important; } + .mg-sm-b-70-f { + margin-bottom: 70px !important; } + .mg-sm-l-70-f { + margin-left: 70px !important; } + .mg-sm-75 { + margin: 75px; } + .mg-sm-75-f { + margin: 75px !important; } + .mg-sm-y-75 { + margin-top: 75px; + margin-bottom: 75px; } + .mg-sm-y-75-f { + margin-top: 75px !important; + margin-bottom: 75px !important; } + .mg-sm-x-75 { + margin-left: 75px; + margin-right: 75px; } + .mg-sm-x-75-f { + margin-left: 75px !important; + margin-right: 75px !important; } + .mg-sm-t-75 { + margin-top: 75px; } + .mg-sm-r-75 { + margin-right: 75px; } + .mg-sm-b-75 { + margin-bottom: 75px; } + .mg-sm-l-75 { + margin-left: 75px; } + .mg-sm-t-75-f { + margin-top: 75px !important; } + .mg-sm-r-75-f { + margin-right: 75px !important; } + .mg-sm-b-75-f { + margin-bottom: 75px !important; } + .mg-sm-l-75-f { + margin-left: 75px !important; } + .mg-sm-80 { + margin: 80px; } + .mg-sm-80-f { + margin: 80px !important; } + .mg-sm-y-80 { + margin-top: 80px; + margin-bottom: 80px; } + .mg-sm-y-80-f { + margin-top: 80px !important; + margin-bottom: 80px !important; } + .mg-sm-x-80 { + margin-left: 80px; + margin-right: 80px; } + .mg-sm-x-80-f { + margin-left: 80px !important; + margin-right: 80px !important; } + .mg-sm-t-80 { + margin-top: 80px; } + .mg-sm-r-80 { + margin-right: 80px; } + .mg-sm-b-80 { + margin-bottom: 80px; } + .mg-sm-l-80 { + margin-left: 80px; } + .mg-sm-t-80-f { + margin-top: 80px !important; } + .mg-sm-r-80-f { + margin-right: 80px !important; } + .mg-sm-b-80-f { + margin-bottom: 80px !important; } + .mg-sm-l-80-f { + margin-left: 80px !important; } + .mg-sm-85 { + margin: 85px; } + .mg-sm-85-f { + margin: 85px !important; } + .mg-sm-y-85 { + margin-top: 85px; + margin-bottom: 85px; } + .mg-sm-y-85-f { + margin-top: 85px !important; + margin-bottom: 85px !important; } + .mg-sm-x-85 { + margin-left: 85px; + margin-right: 85px; } + .mg-sm-x-85-f { + margin-left: 85px !important; + margin-right: 85px !important; } + .mg-sm-t-85 { + margin-top: 85px; } + .mg-sm-r-85 { + margin-right: 85px; } + .mg-sm-b-85 { + margin-bottom: 85px; } + .mg-sm-l-85 { + margin-left: 85px; } + .mg-sm-t-85-f { + margin-top: 85px !important; } + .mg-sm-r-85-f { + margin-right: 85px !important; } + .mg-sm-b-85-f { + margin-bottom: 85px !important; } + .mg-sm-l-85-f { + margin-left: 85px !important; } + .mg-sm-90 { + margin: 90px; } + .mg-sm-90-f { + margin: 90px !important; } + .mg-sm-y-90 { + margin-top: 90px; + margin-bottom: 90px; } + .mg-sm-y-90-f { + margin-top: 90px !important; + margin-bottom: 90px !important; } + .mg-sm-x-90 { + margin-left: 90px; + margin-right: 90px; } + .mg-sm-x-90-f { + margin-left: 90px !important; + margin-right: 90px !important; } + .mg-sm-t-90 { + margin-top: 90px; } + .mg-sm-r-90 { + margin-right: 90px; } + .mg-sm-b-90 { + margin-bottom: 90px; } + .mg-sm-l-90 { + margin-left: 90px; } + .mg-sm-t-90-f { + margin-top: 90px !important; } + .mg-sm-r-90-f { + margin-right: 90px !important; } + .mg-sm-b-90-f { + margin-bottom: 90px !important; } + .mg-sm-l-90-f { + margin-left: 90px !important; } + .mg-sm-95 { + margin: 95px; } + .mg-sm-95-f { + margin: 95px !important; } + .mg-sm-y-95 { + margin-top: 95px; + margin-bottom: 95px; } + .mg-sm-y-95-f { + margin-top: 95px !important; + margin-bottom: 95px !important; } + .mg-sm-x-95 { + margin-left: 95px; + margin-right: 95px; } + .mg-sm-x-95-f { + margin-left: 95px !important; + margin-right: 95px !important; } + .mg-sm-t-95 { + margin-top: 95px; } + .mg-sm-r-95 { + margin-right: 95px; } + .mg-sm-b-95 { + margin-bottom: 95px; } + .mg-sm-l-95 { + margin-left: 95px; } + .mg-sm-t-95-f { + margin-top: 95px !important; } + .mg-sm-r-95-f { + margin-right: 95px !important; } + .mg-sm-b-95-f { + margin-bottom: 95px !important; } + .mg-sm-l-95-f { + margin-left: 95px !important; } + .mg-sm-100 { + margin: 100px; } + .mg-sm-100-f { + margin: 100px !important; } + .mg-sm-y-100 { + margin-top: 100px; + margin-bottom: 100px; } + .mg-sm-y-100-f { + margin-top: 100px !important; + margin-bottom: 100px !important; } + .mg-sm-x-100 { + margin-left: 100px; + margin-right: 100px; } + .mg-sm-x-100-f { + margin-left: 100px !important; + margin-right: 100px !important; } + .mg-sm-t-100 { + margin-top: 100px; } + .mg-sm-r-100 { + margin-right: 100px; } + .mg-sm-b-100 { + margin-bottom: 100px; } + .mg-sm-l-100 { + margin-left: 100px; } + .mg-sm-t-100-f { + margin-top: 100px !important; } + .mg-sm-r-100-f { + margin-right: 100px !important; } + .mg-sm-b-100-f { + margin-bottom: 100px !important; } + .mg-sm-l-100-f { + margin-left: 100px !important; } + .mg-sm-t-auto { + margin-top: auto; } + .mg-sm-r-auto { + margin-right: auto; } + .mg-sm-b-auto { + margin-bottom: auto; } + .mg-sm-l-auto { + margin-left: auto; } + .mg-sm-auto { + margin: auto; } + .mg-sm-x-auto { + margin-left: auto; + margin-right: auto; } } + +@media (min-width: 768px) { + .mg-md-0 { + margin: 0px; } + .mg-md-0-f { + margin: 0px !important; } + .mg-md-y-0 { + margin-top: 0px; + margin-bottom: 0px; } + .mg-md-y-0-f { + margin-top: 0px !important; + margin-bottom: 0px !important; } + .mg-md-x-0 { + margin-left: 0px; + margin-right: 0px; } + .mg-md-x-0-f { + margin-left: 0px !important; + margin-right: 0px !important; } + .mg-md-t-0 { + margin-top: 0px; } + .mg-md-r-0 { + margin-right: 0px; } + .mg-md-b-0 { + margin-bottom: 0px; } + .mg-md-l-0 { + margin-left: 0px; } + .mg-md-t-0-f { + margin-top: 0px !important; } + .mg-md-r-0-f { + margin-right: 0px !important; } + .mg-md-b-0-f { + margin-bottom: 0px !important; } + .mg-md-l-0-f { + margin-left: 0px !important; } + .mg-md-1 { + margin: 1px; } + .mg-md-1-f { + margin: 1px !important; } + .mg-md-y-1 { + margin-top: 1px; + margin-bottom: 1px; } + .mg-md-y-1-f { + margin-top: 1px !important; + margin-bottom: 1px !important; } + .mg-md-x-1 { + margin-left: 1px; + margin-right: 1px; } + .mg-md-x-1-f { + margin-left: 1px !important; + margin-right: 1px !important; } + .mg-md-t-1 { + margin-top: 1px; } + .mg-md-r-1 { + margin-right: 1px; } + .mg-md-b-1 { + margin-bottom: 1px; } + .mg-md-l-1 { + margin-left: 1px; } + .mg-md-t-1-f { + margin-top: 1px !important; } + .mg-md-r-1-f { + margin-right: 1px !important; } + .mg-md-b-1-f { + margin-bottom: 1px !important; } + .mg-md-l-1-f { + margin-left: 1px !important; } + .mg-md-2 { + margin: 2px; } + .mg-md-2-f { + margin: 2px !important; } + .mg-md-y-2 { + margin-top: 2px; + margin-bottom: 2px; } + .mg-md-y-2-f { + margin-top: 2px !important; + margin-bottom: 2px !important; } + .mg-md-x-2 { + margin-left: 2px; + margin-right: 2px; } + .mg-md-x-2-f { + margin-left: 2px !important; + margin-right: 2px !important; } + .mg-md-t-2 { + margin-top: 2px; } + .mg-md-r-2 { + margin-right: 2px; } + .mg-md-b-2 { + margin-bottom: 2px; } + .mg-md-l-2 { + margin-left: 2px; } + .mg-md-t-2-f { + margin-top: 2px !important; } + .mg-md-r-2-f { + margin-right: 2px !important; } + .mg-md-b-2-f { + margin-bottom: 2px !important; } + .mg-md-l-2-f { + margin-left: 2px !important; } + .mg-md-3 { + margin: 3px; } + .mg-md-3-f { + margin: 3px !important; } + .mg-md-y-3 { + margin-top: 3px; + margin-bottom: 3px; } + .mg-md-y-3-f { + margin-top: 3px !important; + margin-bottom: 3px !important; } + .mg-md-x-3 { + margin-left: 3px; + margin-right: 3px; } + .mg-md-x-3-f { + margin-left: 3px !important; + margin-right: 3px !important; } + .mg-md-t-3 { + margin-top: 3px; } + .mg-md-r-3 { + margin-right: 3px; } + .mg-md-b-3 { + margin-bottom: 3px; } + .mg-md-l-3 { + margin-left: 3px; } + .mg-md-t-3-f { + margin-top: 3px !important; } + .mg-md-r-3-f { + margin-right: 3px !important; } + .mg-md-b-3-f { + margin-bottom: 3px !important; } + .mg-md-l-3-f { + margin-left: 3px !important; } + .mg-md-4 { + margin: 4px; } + .mg-md-4-f { + margin: 4px !important; } + .mg-md-y-4 { + margin-top: 4px; + margin-bottom: 4px; } + .mg-md-y-4-f { + margin-top: 4px !important; + margin-bottom: 4px !important; } + .mg-md-x-4 { + margin-left: 4px; + margin-right: 4px; } + .mg-md-x-4-f { + margin-left: 4px !important; + margin-right: 4px !important; } + .mg-md-t-4 { + margin-top: 4px; } + .mg-md-r-4 { + margin-right: 4px; } + .mg-md-b-4 { + margin-bottom: 4px; } + .mg-md-l-4 { + margin-left: 4px; } + .mg-md-t-4-f { + margin-top: 4px !important; } + .mg-md-r-4-f { + margin-right: 4px !important; } + .mg-md-b-4-f { + margin-bottom: 4px !important; } + .mg-md-l-4-f { + margin-left: 4px !important; } + .mg-md-5 { + margin: 5px; } + .mg-md-5-f { + margin: 5px !important; } + .mg-md-y-5 { + margin-top: 5px; + margin-bottom: 5px; } + .mg-md-y-5-f { + margin-top: 5px !important; + margin-bottom: 5px !important; } + .mg-md-x-5 { + margin-left: 5px; + margin-right: 5px; } + .mg-md-x-5-f { + margin-left: 5px !important; + margin-right: 5px !important; } + .mg-md-t-5 { + margin-top: 5px; } + .mg-md-r-5 { + margin-right: 5px; } + .mg-md-b-5 { + margin-bottom: 5px; } + .mg-md-l-5 { + margin-left: 5px; } + .mg-md-t-5-f { + margin-top: 5px !important; } + .mg-md-r-5-f { + margin-right: 5px !important; } + .mg-md-b-5-f { + margin-bottom: 5px !important; } + .mg-md-l-5-f { + margin-left: 5px !important; } + .mg-md-6 { + margin: 6px; } + .mg-md-6-f { + margin: 6px !important; } + .mg-md-y-6 { + margin-top: 6px; + margin-bottom: 6px; } + .mg-md-y-6-f { + margin-top: 6px !important; + margin-bottom: 6px !important; } + .mg-md-x-6 { + margin-left: 6px; + margin-right: 6px; } + .mg-md-x-6-f { + margin-left: 6px !important; + margin-right: 6px !important; } + .mg-md-t-6 { + margin-top: 6px; } + .mg-md-r-6 { + margin-right: 6px; } + .mg-md-b-6 { + margin-bottom: 6px; } + .mg-md-l-6 { + margin-left: 6px; } + .mg-md-t-6-f { + margin-top: 6px !important; } + .mg-md-r-6-f { + margin-right: 6px !important; } + .mg-md-b-6-f { + margin-bottom: 6px !important; } + .mg-md-l-6-f { + margin-left: 6px !important; } + .mg-md-7 { + margin: 7px; } + .mg-md-7-f { + margin: 7px !important; } + .mg-md-y-7 { + margin-top: 7px; + margin-bottom: 7px; } + .mg-md-y-7-f { + margin-top: 7px !important; + margin-bottom: 7px !important; } + .mg-md-x-7 { + margin-left: 7px; + margin-right: 7px; } + .mg-md-x-7-f { + margin-left: 7px !important; + margin-right: 7px !important; } + .mg-md-t-7 { + margin-top: 7px; } + .mg-md-r-7 { + margin-right: 7px; } + .mg-md-b-7 { + margin-bottom: 7px; } + .mg-md-l-7 { + margin-left: 7px; } + .mg-md-t-7-f { + margin-top: 7px !important; } + .mg-md-r-7-f { + margin-right: 7px !important; } + .mg-md-b-7-f { + margin-bottom: 7px !important; } + .mg-md-l-7-f { + margin-left: 7px !important; } + .mg-md-8 { + margin: 8px; } + .mg-md-8-f { + margin: 8px !important; } + .mg-md-y-8 { + margin-top: 8px; + margin-bottom: 8px; } + .mg-md-y-8-f { + margin-top: 8px !important; + margin-bottom: 8px !important; } + .mg-md-x-8 { + margin-left: 8px; + margin-right: 8px; } + .mg-md-x-8-f { + margin-left: 8px !important; + margin-right: 8px !important; } + .mg-md-t-8 { + margin-top: 8px; } + .mg-md-r-8 { + margin-right: 8px; } + .mg-md-b-8 { + margin-bottom: 8px; } + .mg-md-l-8 { + margin-left: 8px; } + .mg-md-t-8-f { + margin-top: 8px !important; } + .mg-md-r-8-f { + margin-right: 8px !important; } + .mg-md-b-8-f { + margin-bottom: 8px !important; } + .mg-md-l-8-f { + margin-left: 8px !important; } + .mg-md-9 { + margin: 9px; } + .mg-md-9-f { + margin: 9px !important; } + .mg-md-y-9 { + margin-top: 9px; + margin-bottom: 9px; } + .mg-md-y-9-f { + margin-top: 9px !important; + margin-bottom: 9px !important; } + .mg-md-x-9 { + margin-left: 9px; + margin-right: 9px; } + .mg-md-x-9-f { + margin-left: 9px !important; + margin-right: 9px !important; } + .mg-md-t-9 { + margin-top: 9px; } + .mg-md-r-9 { + margin-right: 9px; } + .mg-md-b-9 { + margin-bottom: 9px; } + .mg-md-l-9 { + margin-left: 9px; } + .mg-md-t-9-f { + margin-top: 9px !important; } + .mg-md-r-9-f { + margin-right: 9px !important; } + .mg-md-b-9-f { + margin-bottom: 9px !important; } + .mg-md-l-9-f { + margin-left: 9px !important; } + .mg-md-10 { + margin: 10px; } + .mg-md-10-f { + margin: 10px !important; } + .mg-md-y-10 { + margin-top: 10px; + margin-bottom: 10px; } + .mg-md-y-10-f { + margin-top: 10px !important; + margin-bottom: 10px !important; } + .mg-md-x-10 { + margin-left: 10px; + margin-right: 10px; } + .mg-md-x-10-f { + margin-left: 10px !important; + margin-right: 10px !important; } + .mg-md-t-10 { + margin-top: 10px; } + .mg-md-r-10 { + margin-right: 10px; } + .mg-md-b-10 { + margin-bottom: 10px; } + .mg-md-l-10 { + margin-left: 10px; } + .mg-md-t-10-f { + margin-top: 10px !important; } + .mg-md-r-10-f { + margin-right: 10px !important; } + .mg-md-b-10-f { + margin-bottom: 10px !important; } + .mg-md-l-10-f { + margin-left: 10px !important; } + .mg-md-15 { + margin: 15px; } + .mg-md-15-f { + margin: 15px !important; } + .mg-md-y-15 { + margin-top: 15px; + margin-bottom: 15px; } + .mg-md-y-15-f { + margin-top: 15px !important; + margin-bottom: 15px !important; } + .mg-md-x-15 { + margin-left: 15px; + margin-right: 15px; } + .mg-md-x-15-f { + margin-left: 15px !important; + margin-right: 15px !important; } + .mg-md-t-15 { + margin-top: 15px; } + .mg-md-r-15 { + margin-right: 15px; } + .mg-md-b-15 { + margin-bottom: 15px; } + .mg-md-l-15 { + margin-left: 15px; } + .mg-md-t-15-f { + margin-top: 15px !important; } + .mg-md-r-15-f { + margin-right: 15px !important; } + .mg-md-b-15-f { + margin-bottom: 15px !important; } + .mg-md-l-15-f { + margin-left: 15px !important; } + .mg-md-20 { + margin: 20px; } + .mg-md-20-f { + margin: 20px !important; } + .mg-md-y-20 { + margin-top: 20px; + margin-bottom: 20px; } + .mg-md-y-20-f { + margin-top: 20px !important; + margin-bottom: 20px !important; } + .mg-md-x-20 { + margin-left: 20px; + margin-right: 20px; } + .mg-md-x-20-f { + margin-left: 20px !important; + margin-right: 20px !important; } + .mg-md-t-20 { + margin-top: 20px; } + .mg-md-r-20 { + margin-right: 20px; } + .mg-md-b-20 { + margin-bottom: 20px; } + .mg-md-l-20 { + margin-left: 20px; } + .mg-md-t-20-f { + margin-top: 20px !important; } + .mg-md-r-20-f { + margin-right: 20px !important; } + .mg-md-b-20-f { + margin-bottom: 20px !important; } + .mg-md-l-20-f { + margin-left: 20px !important; } + .mg-md-25 { + margin: 25px; } + .mg-md-25-f { + margin: 25px !important; } + .mg-md-y-25 { + margin-top: 25px; + margin-bottom: 25px; } + .mg-md-y-25-f { + margin-top: 25px !important; + margin-bottom: 25px !important; } + .mg-md-x-25 { + margin-left: 25px; + margin-right: 25px; } + .mg-md-x-25-f { + margin-left: 25px !important; + margin-right: 25px !important; } + .mg-md-t-25 { + margin-top: 25px; } + .mg-md-r-25 { + margin-right: 25px; } + .mg-md-b-25 { + margin-bottom: 25px; } + .mg-md-l-25 { + margin-left: 25px; } + .mg-md-t-25-f { + margin-top: 25px !important; } + .mg-md-r-25-f { + margin-right: 25px !important; } + .mg-md-b-25-f { + margin-bottom: 25px !important; } + .mg-md-l-25-f { + margin-left: 25px !important; } + .mg-md-30 { + margin: 30px; } + .mg-md-30-f { + margin: 30px !important; } + .mg-md-y-30 { + margin-top: 30px; + margin-bottom: 30px; } + .mg-md-y-30-f { + margin-top: 30px !important; + margin-bottom: 30px !important; } + .mg-md-x-30 { + margin-left: 30px; + margin-right: 30px; } + .mg-md-x-30-f { + margin-left: 30px !important; + margin-right: 30px !important; } + .mg-md-t-30 { + margin-top: 30px; } + .mg-md-r-30 { + margin-right: 30px; } + .mg-md-b-30 { + margin-bottom: 30px; } + .mg-md-l-30 { + margin-left: 30px; } + .mg-md-t-30-f { + margin-top: 30px !important; } + .mg-md-r-30-f { + margin-right: 30px !important; } + .mg-md-b-30-f { + margin-bottom: 30px !important; } + .mg-md-l-30-f { + margin-left: 30px !important; } + .mg-md-35 { + margin: 35px; } + .mg-md-35-f { + margin: 35px !important; } + .mg-md-y-35 { + margin-top: 35px; + margin-bottom: 35px; } + .mg-md-y-35-f { + margin-top: 35px !important; + margin-bottom: 35px !important; } + .mg-md-x-35 { + margin-left: 35px; + margin-right: 35px; } + .mg-md-x-35-f { + margin-left: 35px !important; + margin-right: 35px !important; } + .mg-md-t-35 { + margin-top: 35px; } + .mg-md-r-35 { + margin-right: 35px; } + .mg-md-b-35 { + margin-bottom: 35px; } + .mg-md-l-35 { + margin-left: 35px; } + .mg-md-t-35-f { + margin-top: 35px !important; } + .mg-md-r-35-f { + margin-right: 35px !important; } + .mg-md-b-35-f { + margin-bottom: 35px !important; } + .mg-md-l-35-f { + margin-left: 35px !important; } + .mg-md-40 { + margin: 40px; } + .mg-md-40-f { + margin: 40px !important; } + .mg-md-y-40 { + margin-top: 40px; + margin-bottom: 40px; } + .mg-md-y-40-f { + margin-top: 40px !important; + margin-bottom: 40px !important; } + .mg-md-x-40 { + margin-left: 40px; + margin-right: 40px; } + .mg-md-x-40-f { + margin-left: 40px !important; + margin-right: 40px !important; } + .mg-md-t-40 { + margin-top: 40px; } + .mg-md-r-40 { + margin-right: 40px; } + .mg-md-b-40 { + margin-bottom: 40px; } + .mg-md-l-40 { + margin-left: 40px; } + .mg-md-t-40-f { + margin-top: 40px !important; } + .mg-md-r-40-f { + margin-right: 40px !important; } + .mg-md-b-40-f { + margin-bottom: 40px !important; } + .mg-md-l-40-f { + margin-left: 40px !important; } + .mg-md-45 { + margin: 45px; } + .mg-md-45-f { + margin: 45px !important; } + .mg-md-y-45 { + margin-top: 45px; + margin-bottom: 45px; } + .mg-md-y-45-f { + margin-top: 45px !important; + margin-bottom: 45px !important; } + .mg-md-x-45 { + margin-left: 45px; + margin-right: 45px; } + .mg-md-x-45-f { + margin-left: 45px !important; + margin-right: 45px !important; } + .mg-md-t-45 { + margin-top: 45px; } + .mg-md-r-45 { + margin-right: 45px; } + .mg-md-b-45 { + margin-bottom: 45px; } + .mg-md-l-45 { + margin-left: 45px; } + .mg-md-t-45-f { + margin-top: 45px !important; } + .mg-md-r-45-f { + margin-right: 45px !important; } + .mg-md-b-45-f { + margin-bottom: 45px !important; } + .mg-md-l-45-f { + margin-left: 45px !important; } + .mg-md-50 { + margin: 50px; } + .mg-md-50-f { + margin: 50px !important; } + .mg-md-y-50 { + margin-top: 50px; + margin-bottom: 50px; } + .mg-md-y-50-f { + margin-top: 50px !important; + margin-bottom: 50px !important; } + .mg-md-x-50 { + margin-left: 50px; + margin-right: 50px; } + .mg-md-x-50-f { + margin-left: 50px !important; + margin-right: 50px !important; } + .mg-md-t-50 { + margin-top: 50px; } + .mg-md-r-50 { + margin-right: 50px; } + .mg-md-b-50 { + margin-bottom: 50px; } + .mg-md-l-50 { + margin-left: 50px; } + .mg-md-t-50-f { + margin-top: 50px !important; } + .mg-md-r-50-f { + margin-right: 50px !important; } + .mg-md-b-50-f { + margin-bottom: 50px !important; } + .mg-md-l-50-f { + margin-left: 50px !important; } + .mg-md-55 { + margin: 55px; } + .mg-md-55-f { + margin: 55px !important; } + .mg-md-y-55 { + margin-top: 55px; + margin-bottom: 55px; } + .mg-md-y-55-f { + margin-top: 55px !important; + margin-bottom: 55px !important; } + .mg-md-x-55 { + margin-left: 55px; + margin-right: 55px; } + .mg-md-x-55-f { + margin-left: 55px !important; + margin-right: 55px !important; } + .mg-md-t-55 { + margin-top: 55px; } + .mg-md-r-55 { + margin-right: 55px; } + .mg-md-b-55 { + margin-bottom: 55px; } + .mg-md-l-55 { + margin-left: 55px; } + .mg-md-t-55-f { + margin-top: 55px !important; } + .mg-md-r-55-f { + margin-right: 55px !important; } + .mg-md-b-55-f { + margin-bottom: 55px !important; } + .mg-md-l-55-f { + margin-left: 55px !important; } + .mg-md-60 { + margin: 60px; } + .mg-md-60-f { + margin: 60px !important; } + .mg-md-y-60 { + margin-top: 60px; + margin-bottom: 60px; } + .mg-md-y-60-f { + margin-top: 60px !important; + margin-bottom: 60px !important; } + .mg-md-x-60 { + margin-left: 60px; + margin-right: 60px; } + .mg-md-x-60-f { + margin-left: 60px !important; + margin-right: 60px !important; } + .mg-md-t-60 { + margin-top: 60px; } + .mg-md-r-60 { + margin-right: 60px; } + .mg-md-b-60 { + margin-bottom: 60px; } + .mg-md-l-60 { + margin-left: 60px; } + .mg-md-t-60-f { + margin-top: 60px !important; } + .mg-md-r-60-f { + margin-right: 60px !important; } + .mg-md-b-60-f { + margin-bottom: 60px !important; } + .mg-md-l-60-f { + margin-left: 60px !important; } + .mg-md-65 { + margin: 65px; } + .mg-md-65-f { + margin: 65px !important; } + .mg-md-y-65 { + margin-top: 65px; + margin-bottom: 65px; } + .mg-md-y-65-f { + margin-top: 65px !important; + margin-bottom: 65px !important; } + .mg-md-x-65 { + margin-left: 65px; + margin-right: 65px; } + .mg-md-x-65-f { + margin-left: 65px !important; + margin-right: 65px !important; } + .mg-md-t-65 { + margin-top: 65px; } + .mg-md-r-65 { + margin-right: 65px; } + .mg-md-b-65 { + margin-bottom: 65px; } + .mg-md-l-65 { + margin-left: 65px; } + .mg-md-t-65-f { + margin-top: 65px !important; } + .mg-md-r-65-f { + margin-right: 65px !important; } + .mg-md-b-65-f { + margin-bottom: 65px !important; } + .mg-md-l-65-f { + margin-left: 65px !important; } + .mg-md-70 { + margin: 70px; } + .mg-md-70-f { + margin: 70px !important; } + .mg-md-y-70 { + margin-top: 70px; + margin-bottom: 70px; } + .mg-md-y-70-f { + margin-top: 70px !important; + margin-bottom: 70px !important; } + .mg-md-x-70 { + margin-left: 70px; + margin-right: 70px; } + .mg-md-x-70-f { + margin-left: 70px !important; + margin-right: 70px !important; } + .mg-md-t-70 { + margin-top: 70px; } + .mg-md-r-70 { + margin-right: 70px; } + .mg-md-b-70 { + margin-bottom: 70px; } + .mg-md-l-70 { + margin-left: 70px; } + .mg-md-t-70-f { + margin-top: 70px !important; } + .mg-md-r-70-f { + margin-right: 70px !important; } + .mg-md-b-70-f { + margin-bottom: 70px !important; } + .mg-md-l-70-f { + margin-left: 70px !important; } + .mg-md-75 { + margin: 75px; } + .mg-md-75-f { + margin: 75px !important; } + .mg-md-y-75 { + margin-top: 75px; + margin-bottom: 75px; } + .mg-md-y-75-f { + margin-top: 75px !important; + margin-bottom: 75px !important; } + .mg-md-x-75 { + margin-left: 75px; + margin-right: 75px; } + .mg-md-x-75-f { + margin-left: 75px !important; + margin-right: 75px !important; } + .mg-md-t-75 { + margin-top: 75px; } + .mg-md-r-75 { + margin-right: 75px; } + .mg-md-b-75 { + margin-bottom: 75px; } + .mg-md-l-75 { + margin-left: 75px; } + .mg-md-t-75-f { + margin-top: 75px !important; } + .mg-md-r-75-f { + margin-right: 75px !important; } + .mg-md-b-75-f { + margin-bottom: 75px !important; } + .mg-md-l-75-f { + margin-left: 75px !important; } + .mg-md-80 { + margin: 80px; } + .mg-md-80-f { + margin: 80px !important; } + .mg-md-y-80 { + margin-top: 80px; + margin-bottom: 80px; } + .mg-md-y-80-f { + margin-top: 80px !important; + margin-bottom: 80px !important; } + .mg-md-x-80 { + margin-left: 80px; + margin-right: 80px; } + .mg-md-x-80-f { + margin-left: 80px !important; + margin-right: 80px !important; } + .mg-md-t-80 { + margin-top: 80px; } + .mg-md-r-80 { + margin-right: 80px; } + .mg-md-b-80 { + margin-bottom: 80px; } + .mg-md-l-80 { + margin-left: 80px; } + .mg-md-t-80-f { + margin-top: 80px !important; } + .mg-md-r-80-f { + margin-right: 80px !important; } + .mg-md-b-80-f { + margin-bottom: 80px !important; } + .mg-md-l-80-f { + margin-left: 80px !important; } + .mg-md-85 { + margin: 85px; } + .mg-md-85-f { + margin: 85px !important; } + .mg-md-y-85 { + margin-top: 85px; + margin-bottom: 85px; } + .mg-md-y-85-f { + margin-top: 85px !important; + margin-bottom: 85px !important; } + .mg-md-x-85 { + margin-left: 85px; + margin-right: 85px; } + .mg-md-x-85-f { + margin-left: 85px !important; + margin-right: 85px !important; } + .mg-md-t-85 { + margin-top: 85px; } + .mg-md-r-85 { + margin-right: 85px; } + .mg-md-b-85 { + margin-bottom: 85px; } + .mg-md-l-85 { + margin-left: 85px; } + .mg-md-t-85-f { + margin-top: 85px !important; } + .mg-md-r-85-f { + margin-right: 85px !important; } + .mg-md-b-85-f { + margin-bottom: 85px !important; } + .mg-md-l-85-f { + margin-left: 85px !important; } + .mg-md-90 { + margin: 90px; } + .mg-md-90-f { + margin: 90px !important; } + .mg-md-y-90 { + margin-top: 90px; + margin-bottom: 90px; } + .mg-md-y-90-f { + margin-top: 90px !important; + margin-bottom: 90px !important; } + .mg-md-x-90 { + margin-left: 90px; + margin-right: 90px; } + .mg-md-x-90-f { + margin-left: 90px !important; + margin-right: 90px !important; } + .mg-md-t-90 { + margin-top: 90px; } + .mg-md-r-90 { + margin-right: 90px; } + .mg-md-b-90 { + margin-bottom: 90px; } + .mg-md-l-90 { + margin-left: 90px; } + .mg-md-t-90-f { + margin-top: 90px !important; } + .mg-md-r-90-f { + margin-right: 90px !important; } + .mg-md-b-90-f { + margin-bottom: 90px !important; } + .mg-md-l-90-f { + margin-left: 90px !important; } + .mg-md-95 { + margin: 95px; } + .mg-md-95-f { + margin: 95px !important; } + .mg-md-y-95 { + margin-top: 95px; + margin-bottom: 95px; } + .mg-md-y-95-f { + margin-top: 95px !important; + margin-bottom: 95px !important; } + .mg-md-x-95 { + margin-left: 95px; + margin-right: 95px; } + .mg-md-x-95-f { + margin-left: 95px !important; + margin-right: 95px !important; } + .mg-md-t-95 { + margin-top: 95px; } + .mg-md-r-95 { + margin-right: 95px; } + .mg-md-b-95 { + margin-bottom: 95px; } + .mg-md-l-95 { + margin-left: 95px; } + .mg-md-t-95-f { + margin-top: 95px !important; } + .mg-md-r-95-f { + margin-right: 95px !important; } + .mg-md-b-95-f { + margin-bottom: 95px !important; } + .mg-md-l-95-f { + margin-left: 95px !important; } + .mg-md-100 { + margin: 100px; } + .mg-md-100-f { + margin: 100px !important; } + .mg-md-y-100 { + margin-top: 100px; + margin-bottom: 100px; } + .mg-md-y-100-f { + margin-top: 100px !important; + margin-bottom: 100px !important; } + .mg-md-x-100 { + margin-left: 100px; + margin-right: 100px; } + .mg-md-x-100-f { + margin-left: 100px !important; + margin-right: 100px !important; } + .mg-md-t-100 { + margin-top: 100px; } + .mg-md-r-100 { + margin-right: 100px; } + .mg-md-b-100 { + margin-bottom: 100px; } + .mg-md-l-100 { + margin-left: 100px; } + .mg-md-t-100-f { + margin-top: 100px !important; } + .mg-md-r-100-f { + margin-right: 100px !important; } + .mg-md-b-100-f { + margin-bottom: 100px !important; } + .mg-md-l-100-f { + margin-left: 100px !important; } + .mg-md-t-auto { + margin-top: auto; } + .mg-md-r-auto { + margin-right: auto; } + .mg-md-b-auto { + margin-bottom: auto; } + .mg-md-l-auto { + margin-left: auto; } + .mg-md-auto { + margin: auto; } + .mg-md-x-auto { + margin-left: auto; + margin-right: auto; } } + +@media (min-width: 992px) { + .mg-lg-0 { + margin: 0px; } + .mg-lg-0-f { + margin: 0px !important; } + .mg-lg-y-0 { + margin-top: 0px; + margin-bottom: 0px; } + .mg-lg-y-0-f { + margin-top: 0px !important; + margin-bottom: 0px !important; } + .mg-lg-x-0 { + margin-left: 0px; + margin-right: 0px; } + .mg-lg-x-0-f { + margin-left: 0px !important; + margin-right: 0px !important; } + .mg-lg-t-0 { + margin-top: 0px; } + .mg-lg-r-0 { + margin-right: 0px; } + .mg-lg-b-0 { + margin-bottom: 0px; } + .mg-lg-l-0 { + margin-left: 0px; } + .mg-lg-t-0-f { + margin-top: 0px !important; } + .mg-lg-r-0-f { + margin-right: 0px !important; } + .mg-lg-b-0-f { + margin-bottom: 0px !important; } + .mg-lg-l-0-f { + margin-left: 0px !important; } + .mg-lg-1 { + margin: 1px; } + .mg-lg-1-f { + margin: 1px !important; } + .mg-lg-y-1 { + margin-top: 1px; + margin-bottom: 1px; } + .mg-lg-y-1-f { + margin-top: 1px !important; + margin-bottom: 1px !important; } + .mg-lg-x-1 { + margin-left: 1px; + margin-right: 1px; } + .mg-lg-x-1-f { + margin-left: 1px !important; + margin-right: 1px !important; } + .mg-lg-t-1 { + margin-top: 1px; } + .mg-lg-r-1 { + margin-right: 1px; } + .mg-lg-b-1 { + margin-bottom: 1px; } + .mg-lg-l-1 { + margin-left: 1px; } + .mg-lg-t-1-f { + margin-top: 1px !important; } + .mg-lg-r-1-f { + margin-right: 1px !important; } + .mg-lg-b-1-f { + margin-bottom: 1px !important; } + .mg-lg-l-1-f { + margin-left: 1px !important; } + .mg-lg-2 { + margin: 2px; } + .mg-lg-2-f { + margin: 2px !important; } + .mg-lg-y-2 { + margin-top: 2px; + margin-bottom: 2px; } + .mg-lg-y-2-f { + margin-top: 2px !important; + margin-bottom: 2px !important; } + .mg-lg-x-2 { + margin-left: 2px; + margin-right: 2px; } + .mg-lg-x-2-f { + margin-left: 2px !important; + margin-right: 2px !important; } + .mg-lg-t-2 { + margin-top: 2px; } + .mg-lg-r-2 { + margin-right: 2px; } + .mg-lg-b-2 { + margin-bottom: 2px; } + .mg-lg-l-2 { + margin-left: 2px; } + .mg-lg-t-2-f { + margin-top: 2px !important; } + .mg-lg-r-2-f { + margin-right: 2px !important; } + .mg-lg-b-2-f { + margin-bottom: 2px !important; } + .mg-lg-l-2-f { + margin-left: 2px !important; } + .mg-lg-3 { + margin: 3px; } + .mg-lg-3-f { + margin: 3px !important; } + .mg-lg-y-3 { + margin-top: 3px; + margin-bottom: 3px; } + .mg-lg-y-3-f { + margin-top: 3px !important; + margin-bottom: 3px !important; } + .mg-lg-x-3 { + margin-left: 3px; + margin-right: 3px; } + .mg-lg-x-3-f { + margin-left: 3px !important; + margin-right: 3px !important; } + .mg-lg-t-3 { + margin-top: 3px; } + .mg-lg-r-3 { + margin-right: 3px; } + .mg-lg-b-3 { + margin-bottom: 3px; } + .mg-lg-l-3 { + margin-left: 3px; } + .mg-lg-t-3-f { + margin-top: 3px !important; } + .mg-lg-r-3-f { + margin-right: 3px !important; } + .mg-lg-b-3-f { + margin-bottom: 3px !important; } + .mg-lg-l-3-f { + margin-left: 3px !important; } + .mg-lg-4 { + margin: 4px; } + .mg-lg-4-f { + margin: 4px !important; } + .mg-lg-y-4 { + margin-top: 4px; + margin-bottom: 4px; } + .mg-lg-y-4-f { + margin-top: 4px !important; + margin-bottom: 4px !important; } + .mg-lg-x-4 { + margin-left: 4px; + margin-right: 4px; } + .mg-lg-x-4-f { + margin-left: 4px !important; + margin-right: 4px !important; } + .mg-lg-t-4 { + margin-top: 4px; } + .mg-lg-r-4 { + margin-right: 4px; } + .mg-lg-b-4 { + margin-bottom: 4px; } + .mg-lg-l-4 { + margin-left: 4px; } + .mg-lg-t-4-f { + margin-top: 4px !important; } + .mg-lg-r-4-f { + margin-right: 4px !important; } + .mg-lg-b-4-f { + margin-bottom: 4px !important; } + .mg-lg-l-4-f { + margin-left: 4px !important; } + .mg-lg-5 { + margin: 5px; } + .mg-lg-5-f { + margin: 5px !important; } + .mg-lg-y-5 { + margin-top: 5px; + margin-bottom: 5px; } + .mg-lg-y-5-f { + margin-top: 5px !important; + margin-bottom: 5px !important; } + .mg-lg-x-5 { + margin-left: 5px; + margin-right: 5px; } + .mg-lg-x-5-f { + margin-left: 5px !important; + margin-right: 5px !important; } + .mg-lg-t-5 { + margin-top: 5px; } + .mg-lg-r-5 { + margin-right: 5px; } + .mg-lg-b-5 { + margin-bottom: 5px; } + .mg-lg-l-5 { + margin-left: 5px; } + .mg-lg-t-5-f { + margin-top: 5px !important; } + .mg-lg-r-5-f { + margin-right: 5px !important; } + .mg-lg-b-5-f { + margin-bottom: 5px !important; } + .mg-lg-l-5-f { + margin-left: 5px !important; } + .mg-lg-6 { + margin: 6px; } + .mg-lg-6-f { + margin: 6px !important; } + .mg-lg-y-6 { + margin-top: 6px; + margin-bottom: 6px; } + .mg-lg-y-6-f { + margin-top: 6px !important; + margin-bottom: 6px !important; } + .mg-lg-x-6 { + margin-left: 6px; + margin-right: 6px; } + .mg-lg-x-6-f { + margin-left: 6px !important; + margin-right: 6px !important; } + .mg-lg-t-6 { + margin-top: 6px; } + .mg-lg-r-6 { + margin-right: 6px; } + .mg-lg-b-6 { + margin-bottom: 6px; } + .mg-lg-l-6 { + margin-left: 6px; } + .mg-lg-t-6-f { + margin-top: 6px !important; } + .mg-lg-r-6-f { + margin-right: 6px !important; } + .mg-lg-b-6-f { + margin-bottom: 6px !important; } + .mg-lg-l-6-f { + margin-left: 6px !important; } + .mg-lg-7 { + margin: 7px; } + .mg-lg-7-f { + margin: 7px !important; } + .mg-lg-y-7 { + margin-top: 7px; + margin-bottom: 7px; } + .mg-lg-y-7-f { + margin-top: 7px !important; + margin-bottom: 7px !important; } + .mg-lg-x-7 { + margin-left: 7px; + margin-right: 7px; } + .mg-lg-x-7-f { + margin-left: 7px !important; + margin-right: 7px !important; } + .mg-lg-t-7 { + margin-top: 7px; } + .mg-lg-r-7 { + margin-right: 7px; } + .mg-lg-b-7 { + margin-bottom: 7px; } + .mg-lg-l-7 { + margin-left: 7px; } + .mg-lg-t-7-f { + margin-top: 7px !important; } + .mg-lg-r-7-f { + margin-right: 7px !important; } + .mg-lg-b-7-f { + margin-bottom: 7px !important; } + .mg-lg-l-7-f { + margin-left: 7px !important; } + .mg-lg-8 { + margin: 8px; } + .mg-lg-8-f { + margin: 8px !important; } + .mg-lg-y-8 { + margin-top: 8px; + margin-bottom: 8px; } + .mg-lg-y-8-f { + margin-top: 8px !important; + margin-bottom: 8px !important; } + .mg-lg-x-8 { + margin-left: 8px; + margin-right: 8px; } + .mg-lg-x-8-f { + margin-left: 8px !important; + margin-right: 8px !important; } + .mg-lg-t-8 { + margin-top: 8px; } + .mg-lg-r-8 { + margin-right: 8px; } + .mg-lg-b-8 { + margin-bottom: 8px; } + .mg-lg-l-8 { + margin-left: 8px; } + .mg-lg-t-8-f { + margin-top: 8px !important; } + .mg-lg-r-8-f { + margin-right: 8px !important; } + .mg-lg-b-8-f { + margin-bottom: 8px !important; } + .mg-lg-l-8-f { + margin-left: 8px !important; } + .mg-lg-9 { + margin: 9px; } + .mg-lg-9-f { + margin: 9px !important; } + .mg-lg-y-9 { + margin-top: 9px; + margin-bottom: 9px; } + .mg-lg-y-9-f { + margin-top: 9px !important; + margin-bottom: 9px !important; } + .mg-lg-x-9 { + margin-left: 9px; + margin-right: 9px; } + .mg-lg-x-9-f { + margin-left: 9px !important; + margin-right: 9px !important; } + .mg-lg-t-9 { + margin-top: 9px; } + .mg-lg-r-9 { + margin-right: 9px; } + .mg-lg-b-9 { + margin-bottom: 9px; } + .mg-lg-l-9 { + margin-left: 9px; } + .mg-lg-t-9-f { + margin-top: 9px !important; } + .mg-lg-r-9-f { + margin-right: 9px !important; } + .mg-lg-b-9-f { + margin-bottom: 9px !important; } + .mg-lg-l-9-f { + margin-left: 9px !important; } + .mg-lg-10 { + margin: 10px; } + .mg-lg-10-f { + margin: 10px !important; } + .mg-lg-y-10 { + margin-top: 10px; + margin-bottom: 10px; } + .mg-lg-y-10-f { + margin-top: 10px !important; + margin-bottom: 10px !important; } + .mg-lg-x-10 { + margin-left: 10px; + margin-right: 10px; } + .mg-lg-x-10-f { + margin-left: 10px !important; + margin-right: 10px !important; } + .mg-lg-t-10 { + margin-top: 10px; } + .mg-lg-r-10 { + margin-right: 10px; } + .mg-lg-b-10 { + margin-bottom: 10px; } + .mg-lg-l-10 { + margin-left: 10px; } + .mg-lg-t-10-f { + margin-top: 10px !important; } + .mg-lg-r-10-f { + margin-right: 10px !important; } + .mg-lg-b-10-f { + margin-bottom: 10px !important; } + .mg-lg-l-10-f { + margin-left: 10px !important; } + .mg-lg-15 { + margin: 15px; } + .mg-lg-15-f { + margin: 15px !important; } + .mg-lg-y-15 { + margin-top: 15px; + margin-bottom: 15px; } + .mg-lg-y-15-f { + margin-top: 15px !important; + margin-bottom: 15px !important; } + .mg-lg-x-15 { + margin-left: 15px; + margin-right: 15px; } + .mg-lg-x-15-f { + margin-left: 15px !important; + margin-right: 15px !important; } + .mg-lg-t-15 { + margin-top: 15px; } + .mg-lg-r-15 { + margin-right: 15px; } + .mg-lg-b-15 { + margin-bottom: 15px; } + .mg-lg-l-15 { + margin-left: 15px; } + .mg-lg-t-15-f { + margin-top: 15px !important; } + .mg-lg-r-15-f { + margin-right: 15px !important; } + .mg-lg-b-15-f { + margin-bottom: 15px !important; } + .mg-lg-l-15-f { + margin-left: 15px !important; } + .mg-lg-20 { + margin: 20px; } + .mg-lg-20-f { + margin: 20px !important; } + .mg-lg-y-20 { + margin-top: 20px; + margin-bottom: 20px; } + .mg-lg-y-20-f { + margin-top: 20px !important; + margin-bottom: 20px !important; } + .mg-lg-x-20 { + margin-left: 20px; + margin-right: 20px; } + .mg-lg-x-20-f { + margin-left: 20px !important; + margin-right: 20px !important; } + .mg-lg-t-20 { + margin-top: 20px; } + .mg-lg-r-20 { + margin-right: 20px; } + .mg-lg-b-20 { + margin-bottom: 20px; } + .mg-lg-l-20 { + margin-left: 20px; } + .mg-lg-t-20-f { + margin-top: 20px !important; } + .mg-lg-r-20-f { + margin-right: 20px !important; } + .mg-lg-b-20-f { + margin-bottom: 20px !important; } + .mg-lg-l-20-f { + margin-left: 20px !important; } + .mg-lg-25 { + margin: 25px; } + .mg-lg-25-f { + margin: 25px !important; } + .mg-lg-y-25 { + margin-top: 25px; + margin-bottom: 25px; } + .mg-lg-y-25-f { + margin-top: 25px !important; + margin-bottom: 25px !important; } + .mg-lg-x-25 { + margin-left: 25px; + margin-right: 25px; } + .mg-lg-x-25-f { + margin-left: 25px !important; + margin-right: 25px !important; } + .mg-lg-t-25 { + margin-top: 25px; } + .mg-lg-r-25 { + margin-right: 25px; } + .mg-lg-b-25 { + margin-bottom: 25px; } + .mg-lg-l-25 { + margin-left: 25px; } + .mg-lg-t-25-f { + margin-top: 25px !important; } + .mg-lg-r-25-f { + margin-right: 25px !important; } + .mg-lg-b-25-f { + margin-bottom: 25px !important; } + .mg-lg-l-25-f { + margin-left: 25px !important; } + .mg-lg-30 { + margin: 30px; } + .mg-lg-30-f { + margin: 30px !important; } + .mg-lg-y-30 { + margin-top: 30px; + margin-bottom: 30px; } + .mg-lg-y-30-f { + margin-top: 30px !important; + margin-bottom: 30px !important; } + .mg-lg-x-30 { + margin-left: 30px; + margin-right: 30px; } + .mg-lg-x-30-f { + margin-left: 30px !important; + margin-right: 30px !important; } + .mg-lg-t-30 { + margin-top: 30px; } + .mg-lg-r-30 { + margin-right: 30px; } + .mg-lg-b-30 { + margin-bottom: 30px; } + .mg-lg-l-30 { + margin-left: 30px; } + .mg-lg-t-30-f { + margin-top: 30px !important; } + .mg-lg-r-30-f { + margin-right: 30px !important; } + .mg-lg-b-30-f { + margin-bottom: 30px !important; } + .mg-lg-l-30-f { + margin-left: 30px !important; } + .mg-lg-35 { + margin: 35px; } + .mg-lg-35-f { + margin: 35px !important; } + .mg-lg-y-35 { + margin-top: 35px; + margin-bottom: 35px; } + .mg-lg-y-35-f { + margin-top: 35px !important; + margin-bottom: 35px !important; } + .mg-lg-x-35 { + margin-left: 35px; + margin-right: 35px; } + .mg-lg-x-35-f { + margin-left: 35px !important; + margin-right: 35px !important; } + .mg-lg-t-35 { + margin-top: 35px; } + .mg-lg-r-35 { + margin-right: 35px; } + .mg-lg-b-35 { + margin-bottom: 35px; } + .mg-lg-l-35 { + margin-left: 35px; } + .mg-lg-t-35-f { + margin-top: 35px !important; } + .mg-lg-r-35-f { + margin-right: 35px !important; } + .mg-lg-b-35-f { + margin-bottom: 35px !important; } + .mg-lg-l-35-f { + margin-left: 35px !important; } + .mg-lg-40 { + margin: 40px; } + .mg-lg-40-f { + margin: 40px !important; } + .mg-lg-y-40 { + margin-top: 40px; + margin-bottom: 40px; } + .mg-lg-y-40-f { + margin-top: 40px !important; + margin-bottom: 40px !important; } + .mg-lg-x-40 { + margin-left: 40px; + margin-right: 40px; } + .mg-lg-x-40-f { + margin-left: 40px !important; + margin-right: 40px !important; } + .mg-lg-t-40 { + margin-top: 40px; } + .mg-lg-r-40 { + margin-right: 40px; } + .mg-lg-b-40 { + margin-bottom: 40px; } + .mg-lg-l-40 { + margin-left: 40px; } + .mg-lg-t-40-f { + margin-top: 40px !important; } + .mg-lg-r-40-f { + margin-right: 40px !important; } + .mg-lg-b-40-f { + margin-bottom: 40px !important; } + .mg-lg-l-40-f { + margin-left: 40px !important; } + .mg-lg-45 { + margin: 45px; } + .mg-lg-45-f { + margin: 45px !important; } + .mg-lg-y-45 { + margin-top: 45px; + margin-bottom: 45px; } + .mg-lg-y-45-f { + margin-top: 45px !important; + margin-bottom: 45px !important; } + .mg-lg-x-45 { + margin-left: 45px; + margin-right: 45px; } + .mg-lg-x-45-f { + margin-left: 45px !important; + margin-right: 45px !important; } + .mg-lg-t-45 { + margin-top: 45px; } + .mg-lg-r-45 { + margin-right: 45px; } + .mg-lg-b-45 { + margin-bottom: 45px; } + .mg-lg-l-45 { + margin-left: 45px; } + .mg-lg-t-45-f { + margin-top: 45px !important; } + .mg-lg-r-45-f { + margin-right: 45px !important; } + .mg-lg-b-45-f { + margin-bottom: 45px !important; } + .mg-lg-l-45-f { + margin-left: 45px !important; } + .mg-lg-50 { + margin: 50px; } + .mg-lg-50-f { + margin: 50px !important; } + .mg-lg-y-50 { + margin-top: 50px; + margin-bottom: 50px; } + .mg-lg-y-50-f { + margin-top: 50px !important; + margin-bottom: 50px !important; } + .mg-lg-x-50 { + margin-left: 50px; + margin-right: 50px; } + .mg-lg-x-50-f { + margin-left: 50px !important; + margin-right: 50px !important; } + .mg-lg-t-50 { + margin-top: 50px; } + .mg-lg-r-50 { + margin-right: 50px; } + .mg-lg-b-50 { + margin-bottom: 50px; } + .mg-lg-l-50 { + margin-left: 50px; } + .mg-lg-t-50-f { + margin-top: 50px !important; } + .mg-lg-r-50-f { + margin-right: 50px !important; } + .mg-lg-b-50-f { + margin-bottom: 50px !important; } + .mg-lg-l-50-f { + margin-left: 50px !important; } + .mg-lg-55 { + margin: 55px; } + .mg-lg-55-f { + margin: 55px !important; } + .mg-lg-y-55 { + margin-top: 55px; + margin-bottom: 55px; } + .mg-lg-y-55-f { + margin-top: 55px !important; + margin-bottom: 55px !important; } + .mg-lg-x-55 { + margin-left: 55px; + margin-right: 55px; } + .mg-lg-x-55-f { + margin-left: 55px !important; + margin-right: 55px !important; } + .mg-lg-t-55 { + margin-top: 55px; } + .mg-lg-r-55 { + margin-right: 55px; } + .mg-lg-b-55 { + margin-bottom: 55px; } + .mg-lg-l-55 { + margin-left: 55px; } + .mg-lg-t-55-f { + margin-top: 55px !important; } + .mg-lg-r-55-f { + margin-right: 55px !important; } + .mg-lg-b-55-f { + margin-bottom: 55px !important; } + .mg-lg-l-55-f { + margin-left: 55px !important; } + .mg-lg-60 { + margin: 60px; } + .mg-lg-60-f { + margin: 60px !important; } + .mg-lg-y-60 { + margin-top: 60px; + margin-bottom: 60px; } + .mg-lg-y-60-f { + margin-top: 60px !important; + margin-bottom: 60px !important; } + .mg-lg-x-60 { + margin-left: 60px; + margin-right: 60px; } + .mg-lg-x-60-f { + margin-left: 60px !important; + margin-right: 60px !important; } + .mg-lg-t-60 { + margin-top: 60px; } + .mg-lg-r-60 { + margin-right: 60px; } + .mg-lg-b-60 { + margin-bottom: 60px; } + .mg-lg-l-60 { + margin-left: 60px; } + .mg-lg-t-60-f { + margin-top: 60px !important; } + .mg-lg-r-60-f { + margin-right: 60px !important; } + .mg-lg-b-60-f { + margin-bottom: 60px !important; } + .mg-lg-l-60-f { + margin-left: 60px !important; } + .mg-lg-65 { + margin: 65px; } + .mg-lg-65-f { + margin: 65px !important; } + .mg-lg-y-65 { + margin-top: 65px; + margin-bottom: 65px; } + .mg-lg-y-65-f { + margin-top: 65px !important; + margin-bottom: 65px !important; } + .mg-lg-x-65 { + margin-left: 65px; + margin-right: 65px; } + .mg-lg-x-65-f { + margin-left: 65px !important; + margin-right: 65px !important; } + .mg-lg-t-65 { + margin-top: 65px; } + .mg-lg-r-65 { + margin-right: 65px; } + .mg-lg-b-65 { + margin-bottom: 65px; } + .mg-lg-l-65 { + margin-left: 65px; } + .mg-lg-t-65-f { + margin-top: 65px !important; } + .mg-lg-r-65-f { + margin-right: 65px !important; } + .mg-lg-b-65-f { + margin-bottom: 65px !important; } + .mg-lg-l-65-f { + margin-left: 65px !important; } + .mg-lg-70 { + margin: 70px; } + .mg-lg-70-f { + margin: 70px !important; } + .mg-lg-y-70 { + margin-top: 70px; + margin-bottom: 70px; } + .mg-lg-y-70-f { + margin-top: 70px !important; + margin-bottom: 70px !important; } + .mg-lg-x-70 { + margin-left: 70px; + margin-right: 70px; } + .mg-lg-x-70-f { + margin-left: 70px !important; + margin-right: 70px !important; } + .mg-lg-t-70 { + margin-top: 70px; } + .mg-lg-r-70 { + margin-right: 70px; } + .mg-lg-b-70 { + margin-bottom: 70px; } + .mg-lg-l-70 { + margin-left: 70px; } + .mg-lg-t-70-f { + margin-top: 70px !important; } + .mg-lg-r-70-f { + margin-right: 70px !important; } + .mg-lg-b-70-f { + margin-bottom: 70px !important; } + .mg-lg-l-70-f { + margin-left: 70px !important; } + .mg-lg-75 { + margin: 75px; } + .mg-lg-75-f { + margin: 75px !important; } + .mg-lg-y-75 { + margin-top: 75px; + margin-bottom: 75px; } + .mg-lg-y-75-f { + margin-top: 75px !important; + margin-bottom: 75px !important; } + .mg-lg-x-75 { + margin-left: 75px; + margin-right: 75px; } + .mg-lg-x-75-f { + margin-left: 75px !important; + margin-right: 75px !important; } + .mg-lg-t-75 { + margin-top: 75px; } + .mg-lg-r-75 { + margin-right: 75px; } + .mg-lg-b-75 { + margin-bottom: 75px; } + .mg-lg-l-75 { + margin-left: 75px; } + .mg-lg-t-75-f { + margin-top: 75px !important; } + .mg-lg-r-75-f { + margin-right: 75px !important; } + .mg-lg-b-75-f { + margin-bottom: 75px !important; } + .mg-lg-l-75-f { + margin-left: 75px !important; } + .mg-lg-80 { + margin: 80px; } + .mg-lg-80-f { + margin: 80px !important; } + .mg-lg-y-80 { + margin-top: 80px; + margin-bottom: 80px; } + .mg-lg-y-80-f { + margin-top: 80px !important; + margin-bottom: 80px !important; } + .mg-lg-x-80 { + margin-left: 80px; + margin-right: 80px; } + .mg-lg-x-80-f { + margin-left: 80px !important; + margin-right: 80px !important; } + .mg-lg-t-80 { + margin-top: 80px; } + .mg-lg-r-80 { + margin-right: 80px; } + .mg-lg-b-80 { + margin-bottom: 80px; } + .mg-lg-l-80 { + margin-left: 80px; } + .mg-lg-t-80-f { + margin-top: 80px !important; } + .mg-lg-r-80-f { + margin-right: 80px !important; } + .mg-lg-b-80-f { + margin-bottom: 80px !important; } + .mg-lg-l-80-f { + margin-left: 80px !important; } + .mg-lg-85 { + margin: 85px; } + .mg-lg-85-f { + margin: 85px !important; } + .mg-lg-y-85 { + margin-top: 85px; + margin-bottom: 85px; } + .mg-lg-y-85-f { + margin-top: 85px !important; + margin-bottom: 85px !important; } + .mg-lg-x-85 { + margin-left: 85px; + margin-right: 85px; } + .mg-lg-x-85-f { + margin-left: 85px !important; + margin-right: 85px !important; } + .mg-lg-t-85 { + margin-top: 85px; } + .mg-lg-r-85 { + margin-right: 85px; } + .mg-lg-b-85 { + margin-bottom: 85px; } + .mg-lg-l-85 { + margin-left: 85px; } + .mg-lg-t-85-f { + margin-top: 85px !important; } + .mg-lg-r-85-f { + margin-right: 85px !important; } + .mg-lg-b-85-f { + margin-bottom: 85px !important; } + .mg-lg-l-85-f { + margin-left: 85px !important; } + .mg-lg-90 { + margin: 90px; } + .mg-lg-90-f { + margin: 90px !important; } + .mg-lg-y-90 { + margin-top: 90px; + margin-bottom: 90px; } + .mg-lg-y-90-f { + margin-top: 90px !important; + margin-bottom: 90px !important; } + .mg-lg-x-90 { + margin-left: 90px; + margin-right: 90px; } + .mg-lg-x-90-f { + margin-left: 90px !important; + margin-right: 90px !important; } + .mg-lg-t-90 { + margin-top: 90px; } + .mg-lg-r-90 { + margin-right: 90px; } + .mg-lg-b-90 { + margin-bottom: 90px; } + .mg-lg-l-90 { + margin-left: 90px; } + .mg-lg-t-90-f { + margin-top: 90px !important; } + .mg-lg-r-90-f { + margin-right: 90px !important; } + .mg-lg-b-90-f { + margin-bottom: 90px !important; } + .mg-lg-l-90-f { + margin-left: 90px !important; } + .mg-lg-95 { + margin: 95px; } + .mg-lg-95-f { + margin: 95px !important; } + .mg-lg-y-95 { + margin-top: 95px; + margin-bottom: 95px; } + .mg-lg-y-95-f { + margin-top: 95px !important; + margin-bottom: 95px !important; } + .mg-lg-x-95 { + margin-left: 95px; + margin-right: 95px; } + .mg-lg-x-95-f { + margin-left: 95px !important; + margin-right: 95px !important; } + .mg-lg-t-95 { + margin-top: 95px; } + .mg-lg-r-95 { + margin-right: 95px; } + .mg-lg-b-95 { + margin-bottom: 95px; } + .mg-lg-l-95 { + margin-left: 95px; } + .mg-lg-t-95-f { + margin-top: 95px !important; } + .mg-lg-r-95-f { + margin-right: 95px !important; } + .mg-lg-b-95-f { + margin-bottom: 95px !important; } + .mg-lg-l-95-f { + margin-left: 95px !important; } + .mg-lg-100 { + margin: 100px; } + .mg-lg-100-f { + margin: 100px !important; } + .mg-lg-y-100 { + margin-top: 100px; + margin-bottom: 100px; } + .mg-lg-y-100-f { + margin-top: 100px !important; + margin-bottom: 100px !important; } + .mg-lg-x-100 { + margin-left: 100px; + margin-right: 100px; } + .mg-lg-x-100-f { + margin-left: 100px !important; + margin-right: 100px !important; } + .mg-lg-t-100 { + margin-top: 100px; } + .mg-lg-r-100 { + margin-right: 100px; } + .mg-lg-b-100 { + margin-bottom: 100px; } + .mg-lg-l-100 { + margin-left: 100px; } + .mg-lg-t-100-f { + margin-top: 100px !important; } + .mg-lg-r-100-f { + margin-right: 100px !important; } + .mg-lg-b-100-f { + margin-bottom: 100px !important; } + .mg-lg-l-100-f { + margin-left: 100px !important; } + .mg-lg-t-auto { + margin-top: auto; } + .mg-lg-r-auto { + margin-right: auto; } + .mg-lg-b-auto { + margin-bottom: auto; } + .mg-lg-l-auto { + margin-left: auto; } + .mg-lg-auto { + margin: auto; } + .mg-lg-x-auto { + margin-left: auto; + margin-right: auto; } } + +@media (min-width: 1200px) { + .mg-xl-0 { + margin: 0px; } + .mg-xl-0-f { + margin: 0px !important; } + .mg-xl-y-0 { + margin-top: 0px; + margin-bottom: 0px; } + .mg-xl-y-0-f { + margin-top: 0px !important; + margin-bottom: 0px !important; } + .mg-xl-x-0 { + margin-left: 0px; + margin-right: 0px; } + .mg-xl-x-0-f { + margin-left: 0px !important; + margin-right: 0px !important; } + .mg-xl-t-0 { + margin-top: 0px; } + .mg-xl-r-0 { + margin-right: 0px; } + .mg-xl-b-0 { + margin-bottom: 0px; } + .mg-xl-l-0 { + margin-left: 0px; } + .mg-xl-t-0-f { + margin-top: 0px !important; } + .mg-xl-r-0-f { + margin-right: 0px !important; } + .mg-xl-b-0-f { + margin-bottom: 0px !important; } + .mg-xl-l-0-f { + margin-left: 0px !important; } + .mg-xl-1 { + margin: 1px; } + .mg-xl-1-f { + margin: 1px !important; } + .mg-xl-y-1 { + margin-top: 1px; + margin-bottom: 1px; } + .mg-xl-y-1-f { + margin-top: 1px !important; + margin-bottom: 1px !important; } + .mg-xl-x-1 { + margin-left: 1px; + margin-right: 1px; } + .mg-xl-x-1-f { + margin-left: 1px !important; + margin-right: 1px !important; } + .mg-xl-t-1 { + margin-top: 1px; } + .mg-xl-r-1 { + margin-right: 1px; } + .mg-xl-b-1 { + margin-bottom: 1px; } + .mg-xl-l-1 { + margin-left: 1px; } + .mg-xl-t-1-f { + margin-top: 1px !important; } + .mg-xl-r-1-f { + margin-right: 1px !important; } + .mg-xl-b-1-f { + margin-bottom: 1px !important; } + .mg-xl-l-1-f { + margin-left: 1px !important; } + .mg-xl-2 { + margin: 2px; } + .mg-xl-2-f { + margin: 2px !important; } + .mg-xl-y-2 { + margin-top: 2px; + margin-bottom: 2px; } + .mg-xl-y-2-f { + margin-top: 2px !important; + margin-bottom: 2px !important; } + .mg-xl-x-2 { + margin-left: 2px; + margin-right: 2px; } + .mg-xl-x-2-f { + margin-left: 2px !important; + margin-right: 2px !important; } + .mg-xl-t-2 { + margin-top: 2px; } + .mg-xl-r-2 { + margin-right: 2px; } + .mg-xl-b-2 { + margin-bottom: 2px; } + .mg-xl-l-2 { + margin-left: 2px; } + .mg-xl-t-2-f { + margin-top: 2px !important; } + .mg-xl-r-2-f { + margin-right: 2px !important; } + .mg-xl-b-2-f { + margin-bottom: 2px !important; } + .mg-xl-l-2-f { + margin-left: 2px !important; } + .mg-xl-3 { + margin: 3px; } + .mg-xl-3-f { + margin: 3px !important; } + .mg-xl-y-3 { + margin-top: 3px; + margin-bottom: 3px; } + .mg-xl-y-3-f { + margin-top: 3px !important; + margin-bottom: 3px !important; } + .mg-xl-x-3 { + margin-left: 3px; + margin-right: 3px; } + .mg-xl-x-3-f { + margin-left: 3px !important; + margin-right: 3px !important; } + .mg-xl-t-3 { + margin-top: 3px; } + .mg-xl-r-3 { + margin-right: 3px; } + .mg-xl-b-3 { + margin-bottom: 3px; } + .mg-xl-l-3 { + margin-left: 3px; } + .mg-xl-t-3-f { + margin-top: 3px !important; } + .mg-xl-r-3-f { + margin-right: 3px !important; } + .mg-xl-b-3-f { + margin-bottom: 3px !important; } + .mg-xl-l-3-f { + margin-left: 3px !important; } + .mg-xl-4 { + margin: 4px; } + .mg-xl-4-f { + margin: 4px !important; } + .mg-xl-y-4 { + margin-top: 4px; + margin-bottom: 4px; } + .mg-xl-y-4-f { + margin-top: 4px !important; + margin-bottom: 4px !important; } + .mg-xl-x-4 { + margin-left: 4px; + margin-right: 4px; } + .mg-xl-x-4-f { + margin-left: 4px !important; + margin-right: 4px !important; } + .mg-xl-t-4 { + margin-top: 4px; } + .mg-xl-r-4 { + margin-right: 4px; } + .mg-xl-b-4 { + margin-bottom: 4px; } + .mg-xl-l-4 { + margin-left: 4px; } + .mg-xl-t-4-f { + margin-top: 4px !important; } + .mg-xl-r-4-f { + margin-right: 4px !important; } + .mg-xl-b-4-f { + margin-bottom: 4px !important; } + .mg-xl-l-4-f { + margin-left: 4px !important; } + .mg-xl-5 { + margin: 5px; } + .mg-xl-5-f { + margin: 5px !important; } + .mg-xl-y-5 { + margin-top: 5px; + margin-bottom: 5px; } + .mg-xl-y-5-f { + margin-top: 5px !important; + margin-bottom: 5px !important; } + .mg-xl-x-5 { + margin-left: 5px; + margin-right: 5px; } + .mg-xl-x-5-f { + margin-left: 5px !important; + margin-right: 5px !important; } + .mg-xl-t-5 { + margin-top: 5px; } + .mg-xl-r-5 { + margin-right: 5px; } + .mg-xl-b-5 { + margin-bottom: 5px; } + .mg-xl-l-5 { + margin-left: 5px; } + .mg-xl-t-5-f { + margin-top: 5px !important; } + .mg-xl-r-5-f { + margin-right: 5px !important; } + .mg-xl-b-5-f { + margin-bottom: 5px !important; } + .mg-xl-l-5-f { + margin-left: 5px !important; } + .mg-xl-6 { + margin: 6px; } + .mg-xl-6-f { + margin: 6px !important; } + .mg-xl-y-6 { + margin-top: 6px; + margin-bottom: 6px; } + .mg-xl-y-6-f { + margin-top: 6px !important; + margin-bottom: 6px !important; } + .mg-xl-x-6 { + margin-left: 6px; + margin-right: 6px; } + .mg-xl-x-6-f { + margin-left: 6px !important; + margin-right: 6px !important; } + .mg-xl-t-6 { + margin-top: 6px; } + .mg-xl-r-6 { + margin-right: 6px; } + .mg-xl-b-6 { + margin-bottom: 6px; } + .mg-xl-l-6 { + margin-left: 6px; } + .mg-xl-t-6-f { + margin-top: 6px !important; } + .mg-xl-r-6-f { + margin-right: 6px !important; } + .mg-xl-b-6-f { + margin-bottom: 6px !important; } + .mg-xl-l-6-f { + margin-left: 6px !important; } + .mg-xl-7 { + margin: 7px; } + .mg-xl-7-f { + margin: 7px !important; } + .mg-xl-y-7 { + margin-top: 7px; + margin-bottom: 7px; } + .mg-xl-y-7-f { + margin-top: 7px !important; + margin-bottom: 7px !important; } + .mg-xl-x-7 { + margin-left: 7px; + margin-right: 7px; } + .mg-xl-x-7-f { + margin-left: 7px !important; + margin-right: 7px !important; } + .mg-xl-t-7 { + margin-top: 7px; } + .mg-xl-r-7 { + margin-right: 7px; } + .mg-xl-b-7 { + margin-bottom: 7px; } + .mg-xl-l-7 { + margin-left: 7px; } + .mg-xl-t-7-f { + margin-top: 7px !important; } + .mg-xl-r-7-f { + margin-right: 7px !important; } + .mg-xl-b-7-f { + margin-bottom: 7px !important; } + .mg-xl-l-7-f { + margin-left: 7px !important; } + .mg-xl-8 { + margin: 8px; } + .mg-xl-8-f { + margin: 8px !important; } + .mg-xl-y-8 { + margin-top: 8px; + margin-bottom: 8px; } + .mg-xl-y-8-f { + margin-top: 8px !important; + margin-bottom: 8px !important; } + .mg-xl-x-8 { + margin-left: 8px; + margin-right: 8px; } + .mg-xl-x-8-f { + margin-left: 8px !important; + margin-right: 8px !important; } + .mg-xl-t-8 { + margin-top: 8px; } + .mg-xl-r-8 { + margin-right: 8px; } + .mg-xl-b-8 { + margin-bottom: 8px; } + .mg-xl-l-8 { + margin-left: 8px; } + .mg-xl-t-8-f { + margin-top: 8px !important; } + .mg-xl-r-8-f { + margin-right: 8px !important; } + .mg-xl-b-8-f { + margin-bottom: 8px !important; } + .mg-xl-l-8-f { + margin-left: 8px !important; } + .mg-xl-9 { + margin: 9px; } + .mg-xl-9-f { + margin: 9px !important; } + .mg-xl-y-9 { + margin-top: 9px; + margin-bottom: 9px; } + .mg-xl-y-9-f { + margin-top: 9px !important; + margin-bottom: 9px !important; } + .mg-xl-x-9 { + margin-left: 9px; + margin-right: 9px; } + .mg-xl-x-9-f { + margin-left: 9px !important; + margin-right: 9px !important; } + .mg-xl-t-9 { + margin-top: 9px; } + .mg-xl-r-9 { + margin-right: 9px; } + .mg-xl-b-9 { + margin-bottom: 9px; } + .mg-xl-l-9 { + margin-left: 9px; } + .mg-xl-t-9-f { + margin-top: 9px !important; } + .mg-xl-r-9-f { + margin-right: 9px !important; } + .mg-xl-b-9-f { + margin-bottom: 9px !important; } + .mg-xl-l-9-f { + margin-left: 9px !important; } + .mg-xl-10 { + margin: 10px; } + .mg-xl-10-f { + margin: 10px !important; } + .mg-xl-y-10 { + margin-top: 10px; + margin-bottom: 10px; } + .mg-xl-y-10-f { + margin-top: 10px !important; + margin-bottom: 10px !important; } + .mg-xl-x-10 { + margin-left: 10px; + margin-right: 10px; } + .mg-xl-x-10-f { + margin-left: 10px !important; + margin-right: 10px !important; } + .mg-xl-t-10 { + margin-top: 10px; } + .mg-xl-r-10 { + margin-right: 10px; } + .mg-xl-b-10 { + margin-bottom: 10px; } + .mg-xl-l-10 { + margin-left: 10px; } + .mg-xl-t-10-f { + margin-top: 10px !important; } + .mg-xl-r-10-f { + margin-right: 10px !important; } + .mg-xl-b-10-f { + margin-bottom: 10px !important; } + .mg-xl-l-10-f { + margin-left: 10px !important; } + .mg-xl-15 { + margin: 15px; } + .mg-xl-15-f { + margin: 15px !important; } + .mg-xl-y-15 { + margin-top: 15px; + margin-bottom: 15px; } + .mg-xl-y-15-f { + margin-top: 15px !important; + margin-bottom: 15px !important; } + .mg-xl-x-15 { + margin-left: 15px; + margin-right: 15px; } + .mg-xl-x-15-f { + margin-left: 15px !important; + margin-right: 15px !important; } + .mg-xl-t-15 { + margin-top: 15px; } + .mg-xl-r-15 { + margin-right: 15px; } + .mg-xl-b-15 { + margin-bottom: 15px; } + .mg-xl-l-15 { + margin-left: 15px; } + .mg-xl-t-15-f { + margin-top: 15px !important; } + .mg-xl-r-15-f { + margin-right: 15px !important; } + .mg-xl-b-15-f { + margin-bottom: 15px !important; } + .mg-xl-l-15-f { + margin-left: 15px !important; } + .mg-xl-20 { + margin: 20px; } + .mg-xl-20-f { + margin: 20px !important; } + .mg-xl-y-20 { + margin-top: 20px; + margin-bottom: 20px; } + .mg-xl-y-20-f { + margin-top: 20px !important; + margin-bottom: 20px !important; } + .mg-xl-x-20 { + margin-left: 20px; + margin-right: 20px; } + .mg-xl-x-20-f { + margin-left: 20px !important; + margin-right: 20px !important; } + .mg-xl-t-20 { + margin-top: 20px; } + .mg-xl-r-20 { + margin-right: 20px; } + .mg-xl-b-20 { + margin-bottom: 20px; } + .mg-xl-l-20 { + margin-left: 20px; } + .mg-xl-t-20-f { + margin-top: 20px !important; } + .mg-xl-r-20-f { + margin-right: 20px !important; } + .mg-xl-b-20-f { + margin-bottom: 20px !important; } + .mg-xl-l-20-f { + margin-left: 20px !important; } + .mg-xl-25 { + margin: 25px; } + .mg-xl-25-f { + margin: 25px !important; } + .mg-xl-y-25 { + margin-top: 25px; + margin-bottom: 25px; } + .mg-xl-y-25-f { + margin-top: 25px !important; + margin-bottom: 25px !important; } + .mg-xl-x-25 { + margin-left: 25px; + margin-right: 25px; } + .mg-xl-x-25-f { + margin-left: 25px !important; + margin-right: 25px !important; } + .mg-xl-t-25 { + margin-top: 25px; } + .mg-xl-r-25 { + margin-right: 25px; } + .mg-xl-b-25 { + margin-bottom: 25px; } + .mg-xl-l-25 { + margin-left: 25px; } + .mg-xl-t-25-f { + margin-top: 25px !important; } + .mg-xl-r-25-f { + margin-right: 25px !important; } + .mg-xl-b-25-f { + margin-bottom: 25px !important; } + .mg-xl-l-25-f { + margin-left: 25px !important; } + .mg-xl-30 { + margin: 30px; } + .mg-xl-30-f { + margin: 30px !important; } + .mg-xl-y-30 { + margin-top: 30px; + margin-bottom: 30px; } + .mg-xl-y-30-f { + margin-top: 30px !important; + margin-bottom: 30px !important; } + .mg-xl-x-30 { + margin-left: 30px; + margin-right: 30px; } + .mg-xl-x-30-f { + margin-left: 30px !important; + margin-right: 30px !important; } + .mg-xl-t-30 { + margin-top: 30px; } + .mg-xl-r-30 { + margin-right: 30px; } + .mg-xl-b-30 { + margin-bottom: 30px; } + .mg-xl-l-30 { + margin-left: 30px; } + .mg-xl-t-30-f { + margin-top: 30px !important; } + .mg-xl-r-30-f { + margin-right: 30px !important; } + .mg-xl-b-30-f { + margin-bottom: 30px !important; } + .mg-xl-l-30-f { + margin-left: 30px !important; } + .mg-xl-35 { + margin: 35px; } + .mg-xl-35-f { + margin: 35px !important; } + .mg-xl-y-35 { + margin-top: 35px; + margin-bottom: 35px; } + .mg-xl-y-35-f { + margin-top: 35px !important; + margin-bottom: 35px !important; } + .mg-xl-x-35 { + margin-left: 35px; + margin-right: 35px; } + .mg-xl-x-35-f { + margin-left: 35px !important; + margin-right: 35px !important; } + .mg-xl-t-35 { + margin-top: 35px; } + .mg-xl-r-35 { + margin-right: 35px; } + .mg-xl-b-35 { + margin-bottom: 35px; } + .mg-xl-l-35 { + margin-left: 35px; } + .mg-xl-t-35-f { + margin-top: 35px !important; } + .mg-xl-r-35-f { + margin-right: 35px !important; } + .mg-xl-b-35-f { + margin-bottom: 35px !important; } + .mg-xl-l-35-f { + margin-left: 35px !important; } + .mg-xl-40 { + margin: 40px; } + .mg-xl-40-f { + margin: 40px !important; } + .mg-xl-y-40 { + margin-top: 40px; + margin-bottom: 40px; } + .mg-xl-y-40-f { + margin-top: 40px !important; + margin-bottom: 40px !important; } + .mg-xl-x-40 { + margin-left: 40px; + margin-right: 40px; } + .mg-xl-x-40-f { + margin-left: 40px !important; + margin-right: 40px !important; } + .mg-xl-t-40 { + margin-top: 40px; } + .mg-xl-r-40 { + margin-right: 40px; } + .mg-xl-b-40 { + margin-bottom: 40px; } + .mg-xl-l-40 { + margin-left: 40px; } + .mg-xl-t-40-f { + margin-top: 40px !important; } + .mg-xl-r-40-f { + margin-right: 40px !important; } + .mg-xl-b-40-f { + margin-bottom: 40px !important; } + .mg-xl-l-40-f { + margin-left: 40px !important; } + .mg-xl-45 { + margin: 45px; } + .mg-xl-45-f { + margin: 45px !important; } + .mg-xl-y-45 { + margin-top: 45px; + margin-bottom: 45px; } + .mg-xl-y-45-f { + margin-top: 45px !important; + margin-bottom: 45px !important; } + .mg-xl-x-45 { + margin-left: 45px; + margin-right: 45px; } + .mg-xl-x-45-f { + margin-left: 45px !important; + margin-right: 45px !important; } + .mg-xl-t-45 { + margin-top: 45px; } + .mg-xl-r-45 { + margin-right: 45px; } + .mg-xl-b-45 { + margin-bottom: 45px; } + .mg-xl-l-45 { + margin-left: 45px; } + .mg-xl-t-45-f { + margin-top: 45px !important; } + .mg-xl-r-45-f { + margin-right: 45px !important; } + .mg-xl-b-45-f { + margin-bottom: 45px !important; } + .mg-xl-l-45-f { + margin-left: 45px !important; } + .mg-xl-50 { + margin: 50px; } + .mg-xl-50-f { + margin: 50px !important; } + .mg-xl-y-50 { + margin-top: 50px; + margin-bottom: 50px; } + .mg-xl-y-50-f { + margin-top: 50px !important; + margin-bottom: 50px !important; } + .mg-xl-x-50 { + margin-left: 50px; + margin-right: 50px; } + .mg-xl-x-50-f { + margin-left: 50px !important; + margin-right: 50px !important; } + .mg-xl-t-50 { + margin-top: 50px; } + .mg-xl-r-50 { + margin-right: 50px; } + .mg-xl-b-50 { + margin-bottom: 50px; } + .mg-xl-l-50 { + margin-left: 50px; } + .mg-xl-t-50-f { + margin-top: 50px !important; } + .mg-xl-r-50-f { + margin-right: 50px !important; } + .mg-xl-b-50-f { + margin-bottom: 50px !important; } + .mg-xl-l-50-f { + margin-left: 50px !important; } + .mg-xl-55 { + margin: 55px; } + .mg-xl-55-f { + margin: 55px !important; } + .mg-xl-y-55 { + margin-top: 55px; + margin-bottom: 55px; } + .mg-xl-y-55-f { + margin-top: 55px !important; + margin-bottom: 55px !important; } + .mg-xl-x-55 { + margin-left: 55px; + margin-right: 55px; } + .mg-xl-x-55-f { + margin-left: 55px !important; + margin-right: 55px !important; } + .mg-xl-t-55 { + margin-top: 55px; } + .mg-xl-r-55 { + margin-right: 55px; } + .mg-xl-b-55 { + margin-bottom: 55px; } + .mg-xl-l-55 { + margin-left: 55px; } + .mg-xl-t-55-f { + margin-top: 55px !important; } + .mg-xl-r-55-f { + margin-right: 55px !important; } + .mg-xl-b-55-f { + margin-bottom: 55px !important; } + .mg-xl-l-55-f { + margin-left: 55px !important; } + .mg-xl-60 { + margin: 60px; } + .mg-xl-60-f { + margin: 60px !important; } + .mg-xl-y-60 { + margin-top: 60px; + margin-bottom: 60px; } + .mg-xl-y-60-f { + margin-top: 60px !important; + margin-bottom: 60px !important; } + .mg-xl-x-60 { + margin-left: 60px; + margin-right: 60px; } + .mg-xl-x-60-f { + margin-left: 60px !important; + margin-right: 60px !important; } + .mg-xl-t-60 { + margin-top: 60px; } + .mg-xl-r-60 { + margin-right: 60px; } + .mg-xl-b-60 { + margin-bottom: 60px; } + .mg-xl-l-60 { + margin-left: 60px; } + .mg-xl-t-60-f { + margin-top: 60px !important; } + .mg-xl-r-60-f { + margin-right: 60px !important; } + .mg-xl-b-60-f { + margin-bottom: 60px !important; } + .mg-xl-l-60-f { + margin-left: 60px !important; } + .mg-xl-65 { + margin: 65px; } + .mg-xl-65-f { + margin: 65px !important; } + .mg-xl-y-65 { + margin-top: 65px; + margin-bottom: 65px; } + .mg-xl-y-65-f { + margin-top: 65px !important; + margin-bottom: 65px !important; } + .mg-xl-x-65 { + margin-left: 65px; + margin-right: 65px; } + .mg-xl-x-65-f { + margin-left: 65px !important; + margin-right: 65px !important; } + .mg-xl-t-65 { + margin-top: 65px; } + .mg-xl-r-65 { + margin-right: 65px; } + .mg-xl-b-65 { + margin-bottom: 65px; } + .mg-xl-l-65 { + margin-left: 65px; } + .mg-xl-t-65-f { + margin-top: 65px !important; } + .mg-xl-r-65-f { + margin-right: 65px !important; } + .mg-xl-b-65-f { + margin-bottom: 65px !important; } + .mg-xl-l-65-f { + margin-left: 65px !important; } + .mg-xl-70 { + margin: 70px; } + .mg-xl-70-f { + margin: 70px !important; } + .mg-xl-y-70 { + margin-top: 70px; + margin-bottom: 70px; } + .mg-xl-y-70-f { + margin-top: 70px !important; + margin-bottom: 70px !important; } + .mg-xl-x-70 { + margin-left: 70px; + margin-right: 70px; } + .mg-xl-x-70-f { + margin-left: 70px !important; + margin-right: 70px !important; } + .mg-xl-t-70 { + margin-top: 70px; } + .mg-xl-r-70 { + margin-right: 70px; } + .mg-xl-b-70 { + margin-bottom: 70px; } + .mg-xl-l-70 { + margin-left: 70px; } + .mg-xl-t-70-f { + margin-top: 70px !important; } + .mg-xl-r-70-f { + margin-right: 70px !important; } + .mg-xl-b-70-f { + margin-bottom: 70px !important; } + .mg-xl-l-70-f { + margin-left: 70px !important; } + .mg-xl-75 { + margin: 75px; } + .mg-xl-75-f { + margin: 75px !important; } + .mg-xl-y-75 { + margin-top: 75px; + margin-bottom: 75px; } + .mg-xl-y-75-f { + margin-top: 75px !important; + margin-bottom: 75px !important; } + .mg-xl-x-75 { + margin-left: 75px; + margin-right: 75px; } + .mg-xl-x-75-f { + margin-left: 75px !important; + margin-right: 75px !important; } + .mg-xl-t-75 { + margin-top: 75px; } + .mg-xl-r-75 { + margin-right: 75px; } + .mg-xl-b-75 { + margin-bottom: 75px; } + .mg-xl-l-75 { + margin-left: 75px; } + .mg-xl-t-75-f { + margin-top: 75px !important; } + .mg-xl-r-75-f { + margin-right: 75px !important; } + .mg-xl-b-75-f { + margin-bottom: 75px !important; } + .mg-xl-l-75-f { + margin-left: 75px !important; } + .mg-xl-80 { + margin: 80px; } + .mg-xl-80-f { + margin: 80px !important; } + .mg-xl-y-80 { + margin-top: 80px; + margin-bottom: 80px; } + .mg-xl-y-80-f { + margin-top: 80px !important; + margin-bottom: 80px !important; } + .mg-xl-x-80 { + margin-left: 80px; + margin-right: 80px; } + .mg-xl-x-80-f { + margin-left: 80px !important; + margin-right: 80px !important; } + .mg-xl-t-80 { + margin-top: 80px; } + .mg-xl-r-80 { + margin-right: 80px; } + .mg-xl-b-80 { + margin-bottom: 80px; } + .mg-xl-l-80 { + margin-left: 80px; } + .mg-xl-t-80-f { + margin-top: 80px !important; } + .mg-xl-r-80-f { + margin-right: 80px !important; } + .mg-xl-b-80-f { + margin-bottom: 80px !important; } + .mg-xl-l-80-f { + margin-left: 80px !important; } + .mg-xl-85 { + margin: 85px; } + .mg-xl-85-f { + margin: 85px !important; } + .mg-xl-y-85 { + margin-top: 85px; + margin-bottom: 85px; } + .mg-xl-y-85-f { + margin-top: 85px !important; + margin-bottom: 85px !important; } + .mg-xl-x-85 { + margin-left: 85px; + margin-right: 85px; } + .mg-xl-x-85-f { + margin-left: 85px !important; + margin-right: 85px !important; } + .mg-xl-t-85 { + margin-top: 85px; } + .mg-xl-r-85 { + margin-right: 85px; } + .mg-xl-b-85 { + margin-bottom: 85px; } + .mg-xl-l-85 { + margin-left: 85px; } + .mg-xl-t-85-f { + margin-top: 85px !important; } + .mg-xl-r-85-f { + margin-right: 85px !important; } + .mg-xl-b-85-f { + margin-bottom: 85px !important; } + .mg-xl-l-85-f { + margin-left: 85px !important; } + .mg-xl-90 { + margin: 90px; } + .mg-xl-90-f { + margin: 90px !important; } + .mg-xl-y-90 { + margin-top: 90px; + margin-bottom: 90px; } + .mg-xl-y-90-f { + margin-top: 90px !important; + margin-bottom: 90px !important; } + .mg-xl-x-90 { + margin-left: 90px; + margin-right: 90px; } + .mg-xl-x-90-f { + margin-left: 90px !important; + margin-right: 90px !important; } + .mg-xl-t-90 { + margin-top: 90px; } + .mg-xl-r-90 { + margin-right: 90px; } + .mg-xl-b-90 { + margin-bottom: 90px; } + .mg-xl-l-90 { + margin-left: 90px; } + .mg-xl-t-90-f { + margin-top: 90px !important; } + .mg-xl-r-90-f { + margin-right: 90px !important; } + .mg-xl-b-90-f { + margin-bottom: 90px !important; } + .mg-xl-l-90-f { + margin-left: 90px !important; } + .mg-xl-95 { + margin: 95px; } + .mg-xl-95-f { + margin: 95px !important; } + .mg-xl-y-95 { + margin-top: 95px; + margin-bottom: 95px; } + .mg-xl-y-95-f { + margin-top: 95px !important; + margin-bottom: 95px !important; } + .mg-xl-x-95 { + margin-left: 95px; + margin-right: 95px; } + .mg-xl-x-95-f { + margin-left: 95px !important; + margin-right: 95px !important; } + .mg-xl-t-95 { + margin-top: 95px; } + .mg-xl-r-95 { + margin-right: 95px; } + .mg-xl-b-95 { + margin-bottom: 95px; } + .mg-xl-l-95 { + margin-left: 95px; } + .mg-xl-t-95-f { + margin-top: 95px !important; } + .mg-xl-r-95-f { + margin-right: 95px !important; } + .mg-xl-b-95-f { + margin-bottom: 95px !important; } + .mg-xl-l-95-f { + margin-left: 95px !important; } + .mg-xl-100 { + margin: 100px; } + .mg-xl-100-f { + margin: 100px !important; } + .mg-xl-y-100 { + margin-top: 100px; + margin-bottom: 100px; } + .mg-xl-y-100-f { + margin-top: 100px !important; + margin-bottom: 100px !important; } + .mg-xl-x-100 { + margin-left: 100px; + margin-right: 100px; } + .mg-xl-x-100-f { + margin-left: 100px !important; + margin-right: 100px !important; } + .mg-xl-t-100 { + margin-top: 100px; } + .mg-xl-r-100 { + margin-right: 100px; } + .mg-xl-b-100 { + margin-bottom: 100px; } + .mg-xl-l-100 { + margin-left: 100px; } + .mg-xl-t-100-f { + margin-top: 100px !important; } + .mg-xl-r-100-f { + margin-right: 100px !important; } + .mg-xl-b-100-f { + margin-bottom: 100px !important; } + .mg-xl-l-100-f { + margin-left: 100px !important; } + .mg-xl-t-auto { + margin-top: auto; } + .mg-xl-r-auto { + margin-right: auto; } + .mg-xl-b-auto { + margin-bottom: auto; } + .mg-xl-l-auto { + margin-left: auto; } + .mg-xl-auto { + margin: auto; } + .mg-xl-x-auto { + margin-left: auto; + margin-right: auto; } } + +/* ###### 9.5 Misc ###### */ +.op-0 { + opacity: 0; } + +.op-0-f { + opacity: 0 !important; } + +.op-1 { + opacity: 0.1; } + +.op-1-f { + opacity: 0.1 !important; } + +.op-2 { + opacity: 0.2; } + +.op-2-f { + opacity: 0.2 !important; } + +.op-3 { + opacity: 0.3; } + +.op-3-f { + opacity: 0.3 !important; } + +.op-4 { + opacity: 0.4; } + +.op-4-f { + opacity: 0.4 !important; } + +.op-5 { + opacity: 0.5; } + +.op-5-f { + opacity: 0.5 !important; } + +.op-6 { + opacity: 0.6; } + +.op-6-f { + opacity: 0.6 !important; } + +.op-7 { + opacity: 0.7; } + +.op-7-f { + opacity: 0.7 !important; } + +.op-8 { + opacity: 0.8; } + +.op-8-f { + opacity: 0.8 !important; } + +.op-9 { + opacity: 0.9; } + +.op-9-f { + opacity: 0.9 !important; } + +.opacity-1 { + opacity: 1; } + +.shadow-base { + box-shadow: 0 0 2px 2px rgba(28, 39, 60, 0.03); } + +.shadow-1 { + box-shadow: 0 0 7px 7px rgba(28, 39, 60, 0.1); } + +.shadow-2 { + box-shadow: 0 0 30px rgba(28, 39, 60, 0.08); } + +.shadow-none { + box-shadow: none; } + +.overflow-y-auto { + overflow-y: auto; } + +.overflow-hidden { + overflow: hidden; } + +.flex-1 { + flex: 1; } + +.flex-0 { + flex: 0; } + +.img-fit-cover { + width: 100%; + height: 100%; + object-fit: cover; } + +@media (min-width: 480px) { + .op-xs-0 { + opacity: 0; } + .op-xs-0-f { + opacity: 0 !important; } + .op-xs-1 { + opacity: 0.1; } + .op-xs-1-f { + opacity: 0.1 !important; } + .op-xs-2 { + opacity: 0.2; } + .op-xs-2-f { + opacity: 0.2 !important; } + .op-xs-3 { + opacity: 0.3; } + .op-xs-3-f { + opacity: 0.3 !important; } + .op-xs-4 { + opacity: 0.4; } + .op-xs-4-f { + opacity: 0.4 !important; } + .op-xs-5 { + opacity: 0.5; } + .op-xs-5-f { + opacity: 0.5 !important; } + .op-xs-6 { + opacity: 0.6; } + .op-xs-6-f { + opacity: 0.6 !important; } + .op-xs-7 { + opacity: 0.7; } + .op-xs-7-f { + opacity: 0.7 !important; } + .op-xs-8 { + opacity: 0.8; } + .op-xs-8-f { + opacity: 0.8 !important; } + .op-xs-9 { + opacity: 0.9; } + .op-xs-9-f { + opacity: 0.9 !important; } } + +@media (min-width: 576px) { + .op-sm-0 { + opacity: 0; } + .op-sm-0-f { + opacity: 0 !important; } + .op-sm-1 { + opacity: 0.1; } + .op-sm-1-f { + opacity: 0.1 !important; } + .op-sm-2 { + opacity: 0.2; } + .op-sm-2-f { + opacity: 0.2 !important; } + .op-sm-3 { + opacity: 0.3; } + .op-sm-3-f { + opacity: 0.3 !important; } + .op-sm-4 { + opacity: 0.4; } + .op-sm-4-f { + opacity: 0.4 !important; } + .op-sm-5 { + opacity: 0.5; } + .op-sm-5-f { + opacity: 0.5 !important; } + .op-sm-6 { + opacity: 0.6; } + .op-sm-6-f { + opacity: 0.6 !important; } + .op-sm-7 { + opacity: 0.7; } + .op-sm-7-f { + opacity: 0.7 !important; } + .op-sm-8 { + opacity: 0.8; } + .op-sm-8-f { + opacity: 0.8 !important; } + .op-sm-9 { + opacity: 0.9; } + .op-sm-9-f { + opacity: 0.9 !important; } } + +@media (min-width: 768px) { + .op-md-0 { + opacity: 0; } + .op-md-0-f { + opacity: 0 !important; } + .op-md-1 { + opacity: 0.1; } + .op-md-1-f { + opacity: 0.1 !important; } + .op-md-2 { + opacity: 0.2; } + .op-md-2-f { + opacity: 0.2 !important; } + .op-md-3 { + opacity: 0.3; } + .op-md-3-f { + opacity: 0.3 !important; } + .op-md-4 { + opacity: 0.4; } + .op-md-4-f { + opacity: 0.4 !important; } + .op-md-5 { + opacity: 0.5; } + .op-md-5-f { + opacity: 0.5 !important; } + .op-md-6 { + opacity: 0.6; } + .op-md-6-f { + opacity: 0.6 !important; } + .op-md-7 { + opacity: 0.7; } + .op-md-7-f { + opacity: 0.7 !important; } + .op-md-8 { + opacity: 0.8; } + .op-md-8-f { + opacity: 0.8 !important; } + .op-md-9 { + opacity: 0.9; } + .op-md-9-f { + opacity: 0.9 !important; } } + +@media (min-width: 992px) { + .op-lg-0 { + opacity: 0; } + .op-lg-0-f { + opacity: 0 !important; } + .op-lg-1 { + opacity: 0.1; } + .op-lg-1-f { + opacity: 0.1 !important; } + .op-lg-2 { + opacity: 0.2; } + .op-lg-2-f { + opacity: 0.2 !important; } + .op-lg-3 { + opacity: 0.3; } + .op-lg-3-f { + opacity: 0.3 !important; } + .op-lg-4 { + opacity: 0.4; } + .op-lg-4-f { + opacity: 0.4 !important; } + .op-lg-5 { + opacity: 0.5; } + .op-lg-5-f { + opacity: 0.5 !important; } + .op-lg-6 { + opacity: 0.6; } + .op-lg-6-f { + opacity: 0.6 !important; } + .op-lg-7 { + opacity: 0.7; } + .op-lg-7-f { + opacity: 0.7 !important; } + .op-lg-8 { + opacity: 0.8; } + .op-lg-8-f { + opacity: 0.8 !important; } + .op-lg-9 { + opacity: 0.9; } + .op-lg-9-f { + opacity: 0.9 !important; } } + +@media (min-width: 1200px) { + .op-xl-0 { + opacity: 0; } + .op-xl-0-f { + opacity: 0 !important; } + .op-xl-1 { + opacity: 0.1; } + .op-xl-1-f { + opacity: 0.1 !important; } + .op-xl-2 { + opacity: 0.2; } + .op-xl-2-f { + opacity: 0.2 !important; } + .op-xl-3 { + opacity: 0.3; } + .op-xl-3-f { + opacity: 0.3 !important; } + .op-xl-4 { + opacity: 0.4; } + .op-xl-4-f { + opacity: 0.4 !important; } + .op-xl-5 { + opacity: 0.5; } + .op-xl-5-f { + opacity: 0.5 !important; } + .op-xl-6 { + opacity: 0.6; } + .op-xl-6-f { + opacity: 0.6 !important; } + .op-xl-7 { + opacity: 0.7; } + .op-xl-7-f { + opacity: 0.7 !important; } + .op-xl-8 { + opacity: 0.8; } + .op-xl-8-f { + opacity: 0.8 !important; } + .op-xl-9 { + opacity: 0.9; } + .op-xl-9-f { + opacity: 0.9 !important; } } + +.img-lg { + width: 92px; + height: 92px; } + +.img-sm { + width: 43px; + height: 43px; } + +.img-xs { + width: 37px; + height: 37px; } + +.img-ss, .image-grouped .text-avatar, +.image-grouped img { + width: 35px; + height: 35px; } + +.img-es { + width: 25px; + height: 25px; } + +.image-grouped { + display: flex; } + .image-grouped .text-avatar, + .image-grouped img { + border-radius: 100%; + margin-left: -10px; + z-index: 0; + border: 4px solid #fff; + transform: scale(1); + transition-duration: 0.3s; + transition-timing-function: ease; + transition-property: "box-shadow", "z-index", "transform", "border-width"; } + .image-grouped .text-avatar:first-child, + .image-grouped img:first-child { + margin-left: 0; } + .image-grouped .text-avatar:hover, + .image-grouped img:hover { + z-index: 1; + box-shadow: 0 0 5px -2px rgba(0, 0, 0, 0.5); + transform: scale(1.05); + border-width: 0; } + .image-grouped .text-avatar { + color: #3366ff; + font-size: 11px; + font-weight: 600; } + +/* ###### 9.6 Padding ###### */ +.pd-0 { + padding: 0px; } + +.pd-0-f { + padding: 0px !important; } + +.pd-y-0 { + padding-top: 0px; + padding-bottom: 0px; } + +.pd-y-0-f { + padding-top: 0px !important; + padding-bottom: 0px !important; } + +.pd-x-0 { + padding-left: 0px; + padding-right: 0px; } + +.pd-x-0-f { + padding-left: 0px !important; + padding-right: 0px !important; } + +.pd-t-0 { + padding-top: 0px; } + +.pd-r-0 { + padding-right: 0px; } + +.pd-b-0 { + padding-bottom: 0px; } + +.pd-l-0 { + padding-left: 0px; } + +.pd-t-0-f { + padding-top: 0px !important; } + +.pd-r-0-f { + padding-right: 0px !important; } + +.pd-b-0-f { + padding-bottom: 0px !important; } + +.pd-l-0-f { + padding-left: 0px !important; } + +.pd-1 { + padding: 1px; } + +.pd-1-f { + padding: 1px !important; } + +.pd-y-1 { + padding-top: 1px; + padding-bottom: 1px; } + +.pd-y-1-f { + padding-top: 1px !important; + padding-bottom: 1px !important; } + +.pd-x-1 { + padding-left: 1px; + padding-right: 1px; } + +.pd-x-1-f { + padding-left: 1px !important; + padding-right: 1px !important; } + +.pd-t-1 { + padding-top: 1px; } + +.pd-r-1 { + padding-right: 1px; } + +.pd-b-1 { + padding-bottom: 1px; } + +.pd-l-1 { + padding-left: 1px; } + +.pd-t-1-f { + padding-top: 1px !important; } + +.pd-r-1-f { + padding-right: 1px !important; } + +.pd-b-1-f { + padding-bottom: 1px !important; } + +.pd-l-1-f { + padding-left: 1px !important; } + +.pd-2 { + padding: 2px; } + +.pd-2-f { + padding: 2px !important; } + +.pd-y-2 { + padding-top: 2px; + padding-bottom: 2px; } + +.pd-y-2-f { + padding-top: 2px !important; + padding-bottom: 2px !important; } + +.pd-x-2 { + padding-left: 2px; + padding-right: 2px; } + +.pd-x-2-f { + padding-left: 2px !important; + padding-right: 2px !important; } + +.pd-t-2 { + padding-top: 2px; } + +.pd-r-2 { + padding-right: 2px; } + +.pd-b-2 { + padding-bottom: 2px; } + +.pd-l-2 { + padding-left: 2px; } + +.pd-t-2-f { + padding-top: 2px !important; } + +.pd-r-2-f { + padding-right: 2px !important; } + +.pd-b-2-f { + padding-bottom: 2px !important; } + +.pd-l-2-f { + padding-left: 2px !important; } + +.pd-3 { + padding: 3px; } + +.pd-3-f { + padding: 3px !important; } + +.pd-y-3 { + padding-top: 3px; + padding-bottom: 3px; } + +.pd-y-3-f { + padding-top: 3px !important; + padding-bottom: 3px !important; } + +.pd-x-3 { + padding-left: 3px; + padding-right: 3px; } + +.pd-x-3-f { + padding-left: 3px !important; + padding-right: 3px !important; } + +.pd-t-3 { + padding-top: 3px; } + +.pd-r-3 { + padding-right: 3px; } + +.pd-b-3 { + padding-bottom: 3px; } + +.pd-l-3 { + padding-left: 3px; } + +.pd-t-3-f { + padding-top: 3px !important; } + +.pd-r-3-f { + padding-right: 3px !important; } + +.pd-b-3-f { + padding-bottom: 3px !important; } + +.pd-l-3-f { + padding-left: 3px !important; } + +.pd-4 { + padding: 4px; } + +.pd-4-f { + padding: 4px !important; } + +.pd-y-4 { + padding-top: 4px; + padding-bottom: 4px; } + +.pd-y-4-f { + padding-top: 4px !important; + padding-bottom: 4px !important; } + +.pd-x-4 { + padding-left: 4px; + padding-right: 4px; } + +.pd-x-4-f { + padding-left: 4px !important; + padding-right: 4px !important; } + +.pd-t-4 { + padding-top: 4px; } + +.pd-r-4 { + padding-right: 4px; } + +.pd-b-4 { + padding-bottom: 4px; } + +.pd-l-4 { + padding-left: 4px; } + +.pd-t-4-f { + padding-top: 4px !important; } + +.pd-r-4-f { + padding-right: 4px !important; } + +.pd-b-4-f { + padding-bottom: 4px !important; } + +.pd-l-4-f { + padding-left: 4px !important; } + +.pd-5 { + padding: 5px; } + +.pd-5-f { + padding: 5px !important; } + +.pd-y-5 { + padding-top: 5px; + padding-bottom: 5px; } + +.pd-y-5-f { + padding-top: 5px !important; + padding-bottom: 5px !important; } + +.pd-x-5 { + padding-left: 5px; + padding-right: 5px; } + +.pd-x-5-f { + padding-left: 5px !important; + padding-right: 5px !important; } + +.pd-t-5 { + padding-top: 5px; } + +.pd-r-5 { + padding-right: 5px; } + +.pd-b-5 { + padding-bottom: 5px; } + +.pd-l-5 { + padding-left: 5px; } + +.pd-t-5-f { + padding-top: 5px !important; } + +.pd-r-5-f { + padding-right: 5px !important; } + +.pd-b-5-f { + padding-bottom: 5px !important; } + +.pd-l-5-f { + padding-left: 5px !important; } + +.pd-6 { + padding: 6px; } + +.pd-6-f { + padding: 6px !important; } + +.pd-y-6 { + padding-top: 6px; + padding-bottom: 6px; } + +.pd-y-6-f { + padding-top: 6px !important; + padding-bottom: 6px !important; } + +.pd-x-6 { + padding-left: 6px; + padding-right: 6px; } + +.pd-x-6-f { + padding-left: 6px !important; + padding-right: 6px !important; } + +.pd-t-6 { + padding-top: 6px; } + +.pd-r-6 { + padding-right: 6px; } + +.pd-b-6 { + padding-bottom: 6px; } + +.pd-l-6 { + padding-left: 6px; } + +.pd-t-6-f { + padding-top: 6px !important; } + +.pd-r-6-f { + padding-right: 6px !important; } + +.pd-b-6-f { + padding-bottom: 6px !important; } + +.pd-l-6-f { + padding-left: 6px !important; } + +.pd-7 { + padding: 7px; } + +.pd-7-f { + padding: 7px !important; } + +.pd-y-7 { + padding-top: 7px; + padding-bottom: 7px; } + +.pd-y-7-f { + padding-top: 7px !important; + padding-bottom: 7px !important; } + +.pd-x-7 { + padding-left: 7px; + padding-right: 7px; } + +.pd-x-7-f { + padding-left: 7px !important; + padding-right: 7px !important; } + +.pd-t-7 { + padding-top: 7px; } + +.pd-r-7 { + padding-right: 7px; } + +.pd-b-7 { + padding-bottom: 7px; } + +.pd-l-7 { + padding-left: 7px; } + +.pd-t-7-f { + padding-top: 7px !important; } + +.pd-r-7-f { + padding-right: 7px !important; } + +.pd-b-7-f { + padding-bottom: 7px !important; } + +.pd-l-7-f { + padding-left: 7px !important; } + +.pd-8 { + padding: 8px; } + +.pd-8-f { + padding: 8px !important; } + +.pd-y-8 { + padding-top: 8px; + padding-bottom: 8px; } + +.pd-y-8-f { + padding-top: 8px !important; + padding-bottom: 8px !important; } + +.pd-x-8 { + padding-left: 8px; + padding-right: 8px; } + +.pd-x-8-f { + padding-left: 8px !important; + padding-right: 8px !important; } + +.pd-t-8 { + padding-top: 8px; } + +.pd-r-8 { + padding-right: 8px; } + +.pd-b-8 { + padding-bottom: 8px; } + +.pd-l-8 { + padding-left: 8px; } + +.pd-t-8-f { + padding-top: 8px !important; } + +.pd-r-8-f { + padding-right: 8px !important; } + +.pd-b-8-f { + padding-bottom: 8px !important; } + +.pd-l-8-f { + padding-left: 8px !important; } + +.pd-9 { + padding: 9px; } + +.pd-9-f { + padding: 9px !important; } + +.pd-y-9 { + padding-top: 9px; + padding-bottom: 9px; } + +.pd-y-9-f { + padding-top: 9px !important; + padding-bottom: 9px !important; } + +.pd-x-9 { + padding-left: 9px; + padding-right: 9px; } + +.pd-x-9-f { + padding-left: 9px !important; + padding-right: 9px !important; } + +.pd-t-9 { + padding-top: 9px; } + +.pd-r-9 { + padding-right: 9px; } + +.pd-b-9 { + padding-bottom: 9px; } + +.pd-l-9 { + padding-left: 9px; } + +.pd-t-9-f { + padding-top: 9px !important; } + +.pd-r-9-f { + padding-right: 9px !important; } + +.pd-b-9-f { + padding-bottom: 9px !important; } + +.pd-l-9-f { + padding-left: 9px !important; } + +.pd-10 { + padding: 10px; } + +.pd-10-f { + padding: 10px !important; } + +.pd-y-10 { + padding-top: 10px; + padding-bottom: 10px; } + +.pd-y-10-f { + padding-top: 10px !important; + padding-bottom: 10px !important; } + +.pd-x-10 { + padding-left: 10px; + padding-right: 10px; } + +.pd-x-10-f { + padding-left: 10px !important; + padding-right: 10px !important; } + +.pd-t-10 { + padding-top: 10px; } + +.pd-r-10 { + padding-right: 10px; } + +.pd-b-10 { + padding-bottom: 10px; } + +.pd-l-10 { + padding-left: 10px; } + +.pd-t-10-f { + padding-top: 10px !important; } + +.pd-r-10-f { + padding-right: 10px !important; } + +.pd-b-10-f { + padding-bottom: 10px !important; } + +.pd-l-10-f { + padding-left: 10px !important; } + +.pd-15 { + padding: 15px; } + +.pd-15-f { + padding: 15px !important; } + +.pd-y-15 { + padding-top: 15px; + padding-bottom: 15px; } + +.pd-y-15-f { + padding-top: 15px !important; + padding-bottom: 15px !important; } + +.pd-x-15 { + padding-left: 15px; + padding-right: 15px; } + +.pd-x-15-f { + padding-left: 15px !important; + padding-right: 15px !important; } + +.pd-t-15 { + padding-top: 15px; } + +.pd-r-15 { + padding-right: 15px; } + +.pd-b-15 { + padding-bottom: 15px; } + +.pd-l-15 { + padding-left: 15px; } + +.pd-t-15-f { + padding-top: 15px !important; } + +.pd-r-15-f { + padding-right: 15px !important; } + +.pd-b-15-f { + padding-bottom: 15px !important; } + +.pd-l-15-f { + padding-left: 15px !important; } + +.pd-20 { + padding: 20px; } + +.pd-20-f { + padding: 20px !important; } + +.pd-y-20 { + padding-top: 20px; + padding-bottom: 20px; } + +.pd-y-20-f { + padding-top: 20px !important; + padding-bottom: 20px !important; } + +.pd-x-20 { + padding-left: 20px; + padding-right: 20px; } + +.pd-x-20-f { + padding-left: 20px !important; + padding-right: 20px !important; } + +.pd-t-20 { + padding-top: 20px; } + +.pd-r-20 { + padding-right: 20px; } + +.pd-b-20 { + padding-bottom: 20px; } + +.pd-l-20 { + padding-left: 20px; } + +.pd-t-20-f { + padding-top: 20px !important; } + +.pd-r-20-f { + padding-right: 20px !important; } + +.pd-b-20-f { + padding-bottom: 20px !important; } + +.pd-l-20-f { + padding-left: 20px !important; } + +.pd-25 { + padding: 25px; } + +.pd-25-f { + padding: 25px !important; } + +.pd-y-25 { + padding-top: 25px; + padding-bottom: 25px; } + +.pd-y-25-f { + padding-top: 25px !important; + padding-bottom: 25px !important; } + +.pd-x-25 { + padding-left: 25px; + padding-right: 25px; } + +.pd-x-25-f { + padding-left: 25px !important; + padding-right: 25px !important; } + +.pd-t-25 { + padding-top: 25px; } + +.pd-r-25 { + padding-right: 25px; } + +.pd-b-25 { + padding-bottom: 25px; } + +.pd-l-25 { + padding-left: 25px; } + +.pd-t-25-f { + padding-top: 25px !important; } + +.pd-r-25-f { + padding-right: 25px !important; } + +.pd-b-25-f { + padding-bottom: 25px !important; } + +.pd-l-25-f { + padding-left: 25px !important; } + +.pd-30 { + padding: 30px; } + +.pd-30-f { + padding: 30px !important; } + +.pd-y-30 { + padding-top: 30px; + padding-bottom: 30px; } + +.pd-y-30-f { + padding-top: 30px !important; + padding-bottom: 30px !important; } + +.pd-x-30 { + padding-left: 30px; + padding-right: 30px; } + +.pd-x-30-f { + padding-left: 30px !important; + padding-right: 30px !important; } + +.pd-t-30 { + padding-top: 30px; } + +.pd-r-30 { + padding-right: 30px; } + +.pd-b-30 { + padding-bottom: 30px; } + +.pd-l-30 { + padding-left: 30px; } + +.pd-t-30-f { + padding-top: 30px !important; } + +.pd-r-30-f { + padding-right: 30px !important; } + +.pd-b-30-f { + padding-bottom: 30px !important; } + +.pd-l-30-f { + padding-left: 30px !important; } + +.pd-35 { + padding: 35px; } + +.pd-35-f { + padding: 35px !important; } + +.pd-y-35 { + padding-top: 35px; + padding-bottom: 35px; } + +.pd-y-35-f { + padding-top: 35px !important; + padding-bottom: 35px !important; } + +.pd-x-35 { + padding-left: 35px; + padding-right: 35px; } + +.pd-x-35-f { + padding-left: 35px !important; + padding-right: 35px !important; } + +.pd-t-35 { + padding-top: 35px; } + +.pd-r-35 { + padding-right: 35px; } + +.pd-b-35 { + padding-bottom: 35px; } + +.pd-l-35 { + padding-left: 35px; } + +.pd-t-35-f { + padding-top: 35px !important; } + +.pd-r-35-f { + padding-right: 35px !important; } + +.pd-b-35-f { + padding-bottom: 35px !important; } + +.pd-l-35-f { + padding-left: 35px !important; } + +.pd-40 { + padding: 40px; } + +.pd-40-f { + padding: 40px !important; } + +.pd-y-40 { + padding-top: 40px; + padding-bottom: 40px; } + +.pd-y-40-f { + padding-top: 40px !important; + padding-bottom: 40px !important; } + +.pd-x-40 { + padding-left: 40px; + padding-right: 40px; } + +.pd-x-40-f { + padding-left: 40px !important; + padding-right: 40px !important; } + +.pd-t-40 { + padding-top: 40px; } + +.pd-r-40 { + padding-right: 40px; } + +.pd-b-40 { + padding-bottom: 40px; } + +.pd-l-40 { + padding-left: 40px; } + +.pd-t-40-f { + padding-top: 40px !important; } + +.pd-r-40-f { + padding-right: 40px !important; } + +.pd-b-40-f { + padding-bottom: 40px !important; } + +.pd-l-40-f { + padding-left: 40px !important; } + +.pd-45 { + padding: 45px; } + +.pd-45-f { + padding: 45px !important; } + +.pd-y-45 { + padding-top: 45px; + padding-bottom: 45px; } + +.pd-y-45-f { + padding-top: 45px !important; + padding-bottom: 45px !important; } + +.pd-x-45 { + padding-left: 45px; + padding-right: 45px; } + +.pd-x-45-f { + padding-left: 45px !important; + padding-right: 45px !important; } + +.pd-t-45 { + padding-top: 45px; } + +.pd-r-45 { + padding-right: 45px; } + +.pd-b-45 { + padding-bottom: 45px; } + +.pd-l-45 { + padding-left: 45px; } + +.pd-t-45-f { + padding-top: 45px !important; } + +.pd-r-45-f { + padding-right: 45px !important; } + +.pd-b-45-f { + padding-bottom: 45px !important; } + +.pd-l-45-f { + padding-left: 45px !important; } + +.pd-50 { + padding: 50px; } + +.pd-50-f { + padding: 50px !important; } + +.pd-y-50 { + padding-top: 50px; + padding-bottom: 50px; } + +.pd-y-50-f { + padding-top: 50px !important; + padding-bottom: 50px !important; } + +.pd-x-50 { + padding-left: 50px; + padding-right: 50px; } + +.pd-x-50-f { + padding-left: 50px !important; + padding-right: 50px !important; } + +.pd-t-50 { + padding-top: 50px; } + +.pd-r-50 { + padding-right: 50px; } + +.pd-b-50 { + padding-bottom: 50px; } + +.pd-l-50 { + padding-left: 50px; } + +.pd-t-50-f { + padding-top: 50px !important; } + +.pd-r-50-f { + padding-right: 50px !important; } + +.pd-b-50-f { + padding-bottom: 50px !important; } + +.pd-l-50-f { + padding-left: 50px !important; } + +.pd-55 { + padding: 55px; } + +.pd-55-f { + padding: 55px !important; } + +.pd-y-55 { + padding-top: 55px; + padding-bottom: 55px; } + +.pd-y-55-f { + padding-top: 55px !important; + padding-bottom: 55px !important; } + +.pd-x-55 { + padding-left: 55px; + padding-right: 55px; } + +.pd-x-55-f { + padding-left: 55px !important; + padding-right: 55px !important; } + +.pd-t-55 { + padding-top: 55px; } + +.pd-r-55 { + padding-right: 55px; } + +.pd-b-55 { + padding-bottom: 55px; } + +.pd-l-55 { + padding-left: 55px; } + +.pd-t-55-f { + padding-top: 55px !important; } + +.pd-r-55-f { + padding-right: 55px !important; } + +.pd-b-55-f { + padding-bottom: 55px !important; } + +.pd-l-55-f { + padding-left: 55px !important; } + +.pd-60 { + padding: 60px; } + +.pd-60-f { + padding: 60px !important; } + +.pd-y-60 { + padding-top: 60px; + padding-bottom: 60px; } + +.pd-y-60-f { + padding-top: 60px !important; + padding-bottom: 60px !important; } + +.pd-x-60 { + padding-left: 60px; + padding-right: 60px; } + +.pd-x-60-f { + padding-left: 60px !important; + padding-right: 60px !important; } + +.pd-t-60 { + padding-top: 60px; } + +.pd-r-60 { + padding-right: 60px; } + +.pd-b-60 { + padding-bottom: 60px; } + +.pd-l-60 { + padding-left: 60px; } + +.pd-t-60-f { + padding-top: 60px !important; } + +.pd-r-60-f { + padding-right: 60px !important; } + +.pd-b-60-f { + padding-bottom: 60px !important; } + +.pd-l-60-f { + padding-left: 60px !important; } + +.pd-65 { + padding: 65px; } + +.pd-65-f { + padding: 65px !important; } + +.pd-y-65 { + padding-top: 65px; + padding-bottom: 65px; } + +.pd-y-65-f { + padding-top: 65px !important; + padding-bottom: 65px !important; } + +.pd-x-65 { + padding-left: 65px; + padding-right: 65px; } + +.pd-x-65-f { + padding-left: 65px !important; + padding-right: 65px !important; } + +.pd-t-65 { + padding-top: 65px; } + +.pd-r-65 { + padding-right: 65px; } + +.pd-b-65 { + padding-bottom: 65px; } + +.pd-l-65 { + padding-left: 65px; } + +.pd-t-65-f { + padding-top: 65px !important; } + +.pd-r-65-f { + padding-right: 65px !important; } + +.pd-b-65-f { + padding-bottom: 65px !important; } + +.pd-l-65-f { + padding-left: 65px !important; } + +.pd-70 { + padding: 70px; } + +.pd-70-f { + padding: 70px !important; } + +.pd-y-70 { + padding-top: 70px; + padding-bottom: 70px; } + +.pd-y-70-f { + padding-top: 70px !important; + padding-bottom: 70px !important; } + +.pd-x-70 { + padding-left: 70px; + padding-right: 70px; } + +.pd-x-70-f { + padding-left: 70px !important; + padding-right: 70px !important; } + +.pd-t-70 { + padding-top: 70px; } + +.pd-r-70 { + padding-right: 70px; } + +.pd-b-70 { + padding-bottom: 70px; } + +.pd-l-70 { + padding-left: 70px; } + +.pd-t-70-f { + padding-top: 70px !important; } + +.pd-r-70-f { + padding-right: 70px !important; } + +.pd-b-70-f { + padding-bottom: 70px !important; } + +.pd-l-70-f { + padding-left: 70px !important; } + +.pd-75 { + padding: 75px; } + +.pd-75-f { + padding: 75px !important; } + +.pd-y-75 { + padding-top: 75px; + padding-bottom: 75px; } + +.pd-y-75-f { + padding-top: 75px !important; + padding-bottom: 75px !important; } + +.pd-x-75 { + padding-left: 75px; + padding-right: 75px; } + +.pd-x-75-f { + padding-left: 75px !important; + padding-right: 75px !important; } + +.pd-t-75 { + padding-top: 75px; } + +.pd-r-75 { + padding-right: 75px; } + +.pd-b-75 { + padding-bottom: 75px; } + +.pd-l-75 { + padding-left: 75px; } + +.pd-t-75-f { + padding-top: 75px !important; } + +.pd-r-75-f { + padding-right: 75px !important; } + +.pd-b-75-f { + padding-bottom: 75px !important; } + +.pd-l-75-f { + padding-left: 75px !important; } + +.pd-80 { + padding: 80px; } + +.pd-80-f { + padding: 80px !important; } + +.pd-y-80 { + padding-top: 80px; + padding-bottom: 80px; } + +.pd-y-80-f { + padding-top: 80px !important; + padding-bottom: 80px !important; } + +.pd-x-80 { + padding-left: 80px; + padding-right: 80px; } + +.pd-x-80-f { + padding-left: 80px !important; + padding-right: 80px !important; } + +.pd-t-80 { + padding-top: 80px; } + +.pd-r-80 { + padding-right: 80px; } + +.pd-b-80 { + padding-bottom: 80px; } + +.pd-l-80 { + padding-left: 80px; } + +.pd-t-80-f { + padding-top: 80px !important; } + +.pd-r-80-f { + padding-right: 80px !important; } + +.pd-b-80-f { + padding-bottom: 80px !important; } + +.pd-l-80-f { + padding-left: 80px !important; } + +.pd-85 { + padding: 85px; } + +.pd-85-f { + padding: 85px !important; } + +.pd-y-85 { + padding-top: 85px; + padding-bottom: 85px; } + +.pd-y-85-f { + padding-top: 85px !important; + padding-bottom: 85px !important; } + +.pd-x-85 { + padding-left: 85px; + padding-right: 85px; } + +.pd-x-85-f { + padding-left: 85px !important; + padding-right: 85px !important; } + +.pd-t-85 { + padding-top: 85px; } + +.pd-r-85 { + padding-right: 85px; } + +.pd-b-85 { + padding-bottom: 85px; } + +.pd-l-85 { + padding-left: 85px; } + +.pd-t-85-f { + padding-top: 85px !important; } + +.pd-r-85-f { + padding-right: 85px !important; } + +.pd-b-85-f { + padding-bottom: 85px !important; } + +.pd-l-85-f { + padding-left: 85px !important; } + +.pd-90 { + padding: 90px; } + +.pd-90-f { + padding: 90px !important; } + +.pd-y-90 { + padding-top: 90px; + padding-bottom: 90px; } + +.pd-y-90-f { + padding-top: 90px !important; + padding-bottom: 90px !important; } + +.pd-x-90 { + padding-left: 90px; + padding-right: 90px; } + +.pd-x-90-f { + padding-left: 90px !important; + padding-right: 90px !important; } + +.pd-t-90 { + padding-top: 90px; } + +.pd-r-90 { + padding-right: 90px; } + +.pd-b-90 { + padding-bottom: 90px; } + +.pd-l-90 { + padding-left: 90px; } + +.pd-t-90-f { + padding-top: 90px !important; } + +.pd-r-90-f { + padding-right: 90px !important; } + +.pd-b-90-f { + padding-bottom: 90px !important; } + +.pd-l-90-f { + padding-left: 90px !important; } + +.pd-95 { + padding: 95px; } + +.pd-95-f { + padding: 95px !important; } + +.pd-y-95 { + padding-top: 95px; + padding-bottom: 95px; } + +.pd-y-95-f { + padding-top: 95px !important; + padding-bottom: 95px !important; } + +.pd-x-95 { + padding-left: 95px; + padding-right: 95px; } + +.pd-x-95-f { + padding-left: 95px !important; + padding-right: 95px !important; } + +.pd-t-95 { + padding-top: 95px; } + +.pd-r-95 { + padding-right: 95px; } + +.pd-b-95 { + padding-bottom: 95px; } + +.pd-l-95 { + padding-left: 95px; } + +.pd-t-95-f { + padding-top: 95px !important; } + +.pd-r-95-f { + padding-right: 95px !important; } + +.pd-b-95-f { + padding-bottom: 95px !important; } + +.pd-l-95-f { + padding-left: 95px !important; } + +.pd-100 { + padding: 100px; } + +.pd-100-f { + padding: 100px !important; } + +.pd-y-100 { + padding-top: 100px; + padding-bottom: 100px; } + +.pd-y-100-f { + padding-top: 100px !important; + padding-bottom: 100px !important; } + +.pd-x-100 { + padding-left: 100px; + padding-right: 100px; } + +.pd-x-100-f { + padding-left: 100px !important; + padding-right: 100px !important; } + +.pd-t-100 { + padding-top: 100px; } + +.pd-r-100 { + padding-right: 100px; } + +.pd-b-100 { + padding-bottom: 100px; } + +.pd-l-100 { + padding-left: 100px; } + +.pd-t-100-f { + padding-top: 100px !important; } + +.pd-r-100-f { + padding-right: 100px !important; } + +.pd-b-100-f { + padding-bottom: 100px !important; } + +.pd-l-100-f { + padding-left: 100px !important; } + +.pd-110 { + padding: 110px; } + +.pd-110-f { + padding: 110px !important; } + +.pd-y-110 { + padding-top: 110px; + padding-bottom: 110px; } + +.pd-y-110-f { + padding-top: 110px !important; + padding-bottom: 110px !important; } + +.pd-x-110 { + padding-left: 110px; + padding-right: 110px; } + +.pd-x-110-f { + padding-left: 110px !important; + padding-right: 110px !important; } + +.pd-t-110 { + padding-top: 110px; } + +.pd-r-110 { + padding-right: 110px; } + +.pd-b-110 { + padding-bottom: 110px; } + +.pd-l-110 { + padding-left: 110px; } + +.pd-t-110-f { + padding-top: 110px !important; } + +.pd-r-110-f { + padding-right: 110px !important; } + +.pd-b-110-f { + padding-bottom: 110px !important; } + +.pd-l-110-f { + padding-left: 110px !important; } + +.pd-120 { + padding: 120px; } + +.pd-120-f { + padding: 120px !important; } + +.pd-y-120 { + padding-top: 120px; + padding-bottom: 120px; } + +.pd-y-120-f { + padding-top: 120px !important; + padding-bottom: 120px !important; } + +.pd-x-120 { + padding-left: 120px; + padding-right: 120px; } + +.pd-x-120-f { + padding-left: 120px !important; + padding-right: 120px !important; } + +.pd-t-120 { + padding-top: 120px; } + +.pd-r-120 { + padding-right: 120px; } + +.pd-b-120 { + padding-bottom: 120px; } + +.pd-l-120 { + padding-left: 120px; } + +.pd-t-120-f { + padding-top: 120px !important; } + +.pd-r-120-f { + padding-right: 120px !important; } + +.pd-b-120-f { + padding-bottom: 120px !important; } + +.pd-l-120-f { + padding-left: 120px !important; } + +.pd-130 { + padding: 130px; } + +.pd-130-f { + padding: 130px !important; } + +.pd-y-130 { + padding-top: 130px; + padding-bottom: 130px; } + +.pd-y-130-f { + padding-top: 130px !important; + padding-bottom: 130px !important; } + +.pd-x-130 { + padding-left: 130px; + padding-right: 130px; } + +.pd-x-130-f { + padding-left: 130px !important; + padding-right: 130px !important; } + +.pd-t-130 { + padding-top: 130px; } + +.pd-r-130 { + padding-right: 130px; } + +.pd-b-130 { + padding-bottom: 130px; } + +.pd-l-130 { + padding-left: 130px; } + +.pd-t-130-f { + padding-top: 130px !important; } + +.pd-r-130-f { + padding-right: 130px !important; } + +.pd-b-130-f { + padding-bottom: 130px !important; } + +.pd-l-130-f { + padding-left: 130px !important; } + +.pd-140 { + padding: 140px; } + +.pd-140-f { + padding: 140px !important; } + +.pd-y-140 { + padding-top: 140px; + padding-bottom: 140px; } + +.pd-y-140-f { + padding-top: 140px !important; + padding-bottom: 140px !important; } + +.pd-x-140 { + padding-left: 140px; + padding-right: 140px; } + +.pd-x-140-f { + padding-left: 140px !important; + padding-right: 140px !important; } + +.pd-t-140 { + padding-top: 140px; } + +.pd-r-140 { + padding-right: 140px; } + +.pd-b-140 { + padding-bottom: 140px; } + +.pd-l-140 { + padding-left: 140px; } + +.pd-t-140-f { + padding-top: 140px !important; } + +.pd-r-140-f { + padding-right: 140px !important; } + +.pd-b-140-f { + padding-bottom: 140px !important; } + +.pd-l-140-f { + padding-left: 140px !important; } + +.pd-150 { + padding: 150px; } + +.pd-150-f { + padding: 150px !important; } + +.pd-y-150 { + padding-top: 150px; + padding-bottom: 150px; } + +.pd-y-150-f { + padding-top: 150px !important; + padding-bottom: 150px !important; } + +.pd-x-150 { + padding-left: 150px; + padding-right: 150px; } + +.pd-x-150-f { + padding-left: 150px !important; + padding-right: 150px !important; } + +.pd-t-150 { + padding-top: 150px; } + +.pd-r-150 { + padding-right: 150px; } + +.pd-b-150 { + padding-bottom: 150px; } + +.pd-l-150 { + padding-left: 150px; } + +.pd-t-150-f { + padding-top: 150px !important; } + +.pd-r-150-f { + padding-right: 150px !important; } + +.pd-b-150-f { + padding-bottom: 150px !important; } + +.pd-l-150-f { + padding-left: 150px !important; } + +.pd-160 { + padding: 160px; } + +.pd-160-f { + padding: 160px !important; } + +.pd-y-160 { + padding-top: 160px; + padding-bottom: 160px; } + +.pd-y-160-f { + padding-top: 160px !important; + padding-bottom: 160px !important; } + +.pd-x-160 { + padding-left: 160px; + padding-right: 160px; } + +.pd-x-160-f { + padding-left: 160px !important; + padding-right: 160px !important; } + +.pd-t-160 { + padding-top: 160px; } + +.pd-r-160 { + padding-right: 160px; } + +.pd-b-160 { + padding-bottom: 160px; } + +.pd-l-160 { + padding-left: 160px; } + +.pd-t-160-f { + padding-top: 160px !important; } + +.pd-r-160-f { + padding-right: 160px !important; } + +.pd-b-160-f { + padding-bottom: 160px !important; } + +.pd-l-160-f { + padding-left: 160px !important; } + +.pd-170 { + padding: 170px; } + +.pd-170-f { + padding: 170px !important; } + +.pd-y-170 { + padding-top: 170px; + padding-bottom: 170px; } + +.pd-y-170-f { + padding-top: 170px !important; + padding-bottom: 170px !important; } + +.pd-x-170 { + padding-left: 170px; + padding-right: 170px; } + +.pd-x-170-f { + padding-left: 170px !important; + padding-right: 170px !important; } + +.pd-t-170 { + padding-top: 170px; } + +.pd-r-170 { + padding-right: 170px; } + +.pd-b-170 { + padding-bottom: 170px; } + +.pd-l-170 { + padding-left: 170px; } + +.pd-t-170-f { + padding-top: 170px !important; } + +.pd-r-170-f { + padding-right: 170px !important; } + +.pd-b-170-f { + padding-bottom: 170px !important; } + +.pd-l-170-f { + padding-left: 170px !important; } + +.pd-180 { + padding: 180px; } + +.pd-180-f { + padding: 180px !important; } + +.pd-y-180 { + padding-top: 180px; + padding-bottom: 180px; } + +.pd-y-180-f { + padding-top: 180px !important; + padding-bottom: 180px !important; } + +.pd-x-180 { + padding-left: 180px; + padding-right: 180px; } + +.pd-x-180-f { + padding-left: 180px !important; + padding-right: 180px !important; } + +.pd-t-180 { + padding-top: 180px; } + +.pd-r-180 { + padding-right: 180px; } + +.pd-b-180 { + padding-bottom: 180px; } + +.pd-l-180 { + padding-left: 180px; } + +.pd-t-180-f { + padding-top: 180px !important; } + +.pd-r-180-f { + padding-right: 180px !important; } + +.pd-b-180-f { + padding-bottom: 180px !important; } + +.pd-l-180-f { + padding-left: 180px !important; } + +.pd-190 { + padding: 190px; } + +.pd-190-f { + padding: 190px !important; } + +.pd-y-190 { + padding-top: 190px; + padding-bottom: 190px; } + +.pd-y-190-f { + padding-top: 190px !important; + padding-bottom: 190px !important; } + +.pd-x-190 { + padding-left: 190px; + padding-right: 190px; } + +.pd-x-190-f { + padding-left: 190px !important; + padding-right: 190px !important; } + +.pd-t-190 { + padding-top: 190px; } + +.pd-r-190 { + padding-right: 190px; } + +.pd-b-190 { + padding-bottom: 190px; } + +.pd-l-190 { + padding-left: 190px; } + +.pd-t-190-f { + padding-top: 190px !important; } + +.pd-r-190-f { + padding-right: 190px !important; } + +.pd-b-190-f { + padding-bottom: 190px !important; } + +.pd-l-190-f { + padding-left: 190px !important; } + +.pd-200 { + padding: 200px; } + +.pd-200-f { + padding: 200px !important; } + +.pd-y-200 { + padding-top: 200px; + padding-bottom: 200px; } + +.pd-y-200-f { + padding-top: 200px !important; + padding-bottom: 200px !important; } + +.pd-x-200 { + padding-left: 200px; + padding-right: 200px; } + +.pd-x-200-f { + padding-left: 200px !important; + padding-right: 200px !important; } + +.pd-t-200 { + padding-top: 200px; } + +.pd-r-200 { + padding-right: 200px; } + +.pd-b-200 { + padding-bottom: 200px; } + +.pd-l-200 { + padding-left: 200px; } + +.pd-t-200-f { + padding-top: 200px !important; } + +.pd-r-200-f { + padding-right: 200px !important; } + +.pd-b-200-f { + padding-bottom: 200px !important; } + +.pd-l-200-f { + padding-left: 200px !important; } + +@media (min-width: 480px) { + .pd-xs-0 { + padding: 0px; } + .pd-xs-0-f { + padding: 0px !important; } + .pd-xs-y-0 { + padding-top: 0px; + padding-bottom: 0px; } + .pd-xs-y-0-f { + padding-top: 0px !important; + padding-bottom: 0px !important; } + .pd-xs-x-0 { + padding-left: 0px; + padding-right: 0px; } + .pd-xs-x-0-f { + padding-left: 0px !important; + padding-right: 0px !important; } + .pd-xs-t-0 { + padding-top: 0px; } + .pd-xs-r-0 { + padding-right: 0px; } + .pd-xs-b-0 { + padding-bottom: 0px; } + .pd-xs-l-0 { + padding-left: 0px; } + .pd-xs-t-0-f { + padding-top: 0px !important; } + .pd-xs-r-0-f { + padding-right: 0px !important; } + .pd-xs-b-0-f { + padding-bottom: 0px !important; } + .pd-xs-l-0-f { + padding-left: 0px !important; } + .pd-xs-1 { + padding: 1px; } + .pd-xs-1-f { + padding: 1px !important; } + .pd-xs-y-1 { + padding-top: 1px; + padding-bottom: 1px; } + .pd-xs-y-1-f { + padding-top: 1px !important; + padding-bottom: 1px !important; } + .pd-xs-x-1 { + padding-left: 1px; + padding-right: 1px; } + .pd-xs-x-1-f { + padding-left: 1px !important; + padding-right: 1px !important; } + .pd-xs-t-1 { + padding-top: 1px; } + .pd-xs-r-1 { + padding-right: 1px; } + .pd-xs-b-1 { + padding-bottom: 1px; } + .pd-xs-l-1 { + padding-left: 1px; } + .pd-xs-t-1-f { + padding-top: 1px !important; } + .pd-xs-r-1-f { + padding-right: 1px !important; } + .pd-xs-b-1-f { + padding-bottom: 1px !important; } + .pd-xs-l-1-f { + padding-left: 1px !important; } + .pd-xs-2 { + padding: 2px; } + .pd-xs-2-f { + padding: 2px !important; } + .pd-xs-y-2 { + padding-top: 2px; + padding-bottom: 2px; } + .pd-xs-y-2-f { + padding-top: 2px !important; + padding-bottom: 2px !important; } + .pd-xs-x-2 { + padding-left: 2px; + padding-right: 2px; } + .pd-xs-x-2-f { + padding-left: 2px !important; + padding-right: 2px !important; } + .pd-xs-t-2 { + padding-top: 2px; } + .pd-xs-r-2 { + padding-right: 2px; } + .pd-xs-b-2 { + padding-bottom: 2px; } + .pd-xs-l-2 { + padding-left: 2px; } + .pd-xs-t-2-f { + padding-top: 2px !important; } + .pd-xs-r-2-f { + padding-right: 2px !important; } + .pd-xs-b-2-f { + padding-bottom: 2px !important; } + .pd-xs-l-2-f { + padding-left: 2px !important; } + .pd-xs-3 { + padding: 3px; } + .pd-xs-3-f { + padding: 3px !important; } + .pd-xs-y-3 { + padding-top: 3px; + padding-bottom: 3px; } + .pd-xs-y-3-f { + padding-top: 3px !important; + padding-bottom: 3px !important; } + .pd-xs-x-3 { + padding-left: 3px; + padding-right: 3px; } + .pd-xs-x-3-f { + padding-left: 3px !important; + padding-right: 3px !important; } + .pd-xs-t-3 { + padding-top: 3px; } + .pd-xs-r-3 { + padding-right: 3px; } + .pd-xs-b-3 { + padding-bottom: 3px; } + .pd-xs-l-3 { + padding-left: 3px; } + .pd-xs-t-3-f { + padding-top: 3px !important; } + .pd-xs-r-3-f { + padding-right: 3px !important; } + .pd-xs-b-3-f { + padding-bottom: 3px !important; } + .pd-xs-l-3-f { + padding-left: 3px !important; } + .pd-xs-4 { + padding: 4px; } + .pd-xs-4-f { + padding: 4px !important; } + .pd-xs-y-4 { + padding-top: 4px; + padding-bottom: 4px; } + .pd-xs-y-4-f { + padding-top: 4px !important; + padding-bottom: 4px !important; } + .pd-xs-x-4 { + padding-left: 4px; + padding-right: 4px; } + .pd-xs-x-4-f { + padding-left: 4px !important; + padding-right: 4px !important; } + .pd-xs-t-4 { + padding-top: 4px; } + .pd-xs-r-4 { + padding-right: 4px; } + .pd-xs-b-4 { + padding-bottom: 4px; } + .pd-xs-l-4 { + padding-left: 4px; } + .pd-xs-t-4-f { + padding-top: 4px !important; } + .pd-xs-r-4-f { + padding-right: 4px !important; } + .pd-xs-b-4-f { + padding-bottom: 4px !important; } + .pd-xs-l-4-f { + padding-left: 4px !important; } + .pd-xs-5 { + padding: 5px; } + .pd-xs-5-f { + padding: 5px !important; } + .pd-xs-y-5 { + padding-top: 5px; + padding-bottom: 5px; } + .pd-xs-y-5-f { + padding-top: 5px !important; + padding-bottom: 5px !important; } + .pd-xs-x-5 { + padding-left: 5px; + padding-right: 5px; } + .pd-xs-x-5-f { + padding-left: 5px !important; + padding-right: 5px !important; } + .pd-xs-t-5 { + padding-top: 5px; } + .pd-xs-r-5 { + padding-right: 5px; } + .pd-xs-b-5 { + padding-bottom: 5px; } + .pd-xs-l-5 { + padding-left: 5px; } + .pd-xs-t-5-f { + padding-top: 5px !important; } + .pd-xs-r-5-f { + padding-right: 5px !important; } + .pd-xs-b-5-f { + padding-bottom: 5px !important; } + .pd-xs-l-5-f { + padding-left: 5px !important; } + .pd-xs-6 { + padding: 6px; } + .pd-xs-6-f { + padding: 6px !important; } + .pd-xs-y-6 { + padding-top: 6px; + padding-bottom: 6px; } + .pd-xs-y-6-f { + padding-top: 6px !important; + padding-bottom: 6px !important; } + .pd-xs-x-6 { + padding-left: 6px; + padding-right: 6px; } + .pd-xs-x-6-f { + padding-left: 6px !important; + padding-right: 6px !important; } + .pd-xs-t-6 { + padding-top: 6px; } + .pd-xs-r-6 { + padding-right: 6px; } + .pd-xs-b-6 { + padding-bottom: 6px; } + .pd-xs-l-6 { + padding-left: 6px; } + .pd-xs-t-6-f { + padding-top: 6px !important; } + .pd-xs-r-6-f { + padding-right: 6px !important; } + .pd-xs-b-6-f { + padding-bottom: 6px !important; } + .pd-xs-l-6-f { + padding-left: 6px !important; } + .pd-xs-7 { + padding: 7px; } + .pd-xs-7-f { + padding: 7px !important; } + .pd-xs-y-7 { + padding-top: 7px; + padding-bottom: 7px; } + .pd-xs-y-7-f { + padding-top: 7px !important; + padding-bottom: 7px !important; } + .pd-xs-x-7 { + padding-left: 7px; + padding-right: 7px; } + .pd-xs-x-7-f { + padding-left: 7px !important; + padding-right: 7px !important; } + .pd-xs-t-7 { + padding-top: 7px; } + .pd-xs-r-7 { + padding-right: 7px; } + .pd-xs-b-7 { + padding-bottom: 7px; } + .pd-xs-l-7 { + padding-left: 7px; } + .pd-xs-t-7-f { + padding-top: 7px !important; } + .pd-xs-r-7-f { + padding-right: 7px !important; } + .pd-xs-b-7-f { + padding-bottom: 7px !important; } + .pd-xs-l-7-f { + padding-left: 7px !important; } + .pd-xs-8 { + padding: 8px; } + .pd-xs-8-f { + padding: 8px !important; } + .pd-xs-y-8 { + padding-top: 8px; + padding-bottom: 8px; } + .pd-xs-y-8-f { + padding-top: 8px !important; + padding-bottom: 8px !important; } + .pd-xs-x-8 { + padding-left: 8px; + padding-right: 8px; } + .pd-xs-x-8-f { + padding-left: 8px !important; + padding-right: 8px !important; } + .pd-xs-t-8 { + padding-top: 8px; } + .pd-xs-r-8 { + padding-right: 8px; } + .pd-xs-b-8 { + padding-bottom: 8px; } + .pd-xs-l-8 { + padding-left: 8px; } + .pd-xs-t-8-f { + padding-top: 8px !important; } + .pd-xs-r-8-f { + padding-right: 8px !important; } + .pd-xs-b-8-f { + padding-bottom: 8px !important; } + .pd-xs-l-8-f { + padding-left: 8px !important; } + .pd-xs-9 { + padding: 9px; } + .pd-xs-9-f { + padding: 9px !important; } + .pd-xs-y-9 { + padding-top: 9px; + padding-bottom: 9px; } + .pd-xs-y-9-f { + padding-top: 9px !important; + padding-bottom: 9px !important; } + .pd-xs-x-9 { + padding-left: 9px; + padding-right: 9px; } + .pd-xs-x-9-f { + padding-left: 9px !important; + padding-right: 9px !important; } + .pd-xs-t-9 { + padding-top: 9px; } + .pd-xs-r-9 { + padding-right: 9px; } + .pd-xs-b-9 { + padding-bottom: 9px; } + .pd-xs-l-9 { + padding-left: 9px; } + .pd-xs-t-9-f { + padding-top: 9px !important; } + .pd-xs-r-9-f { + padding-right: 9px !important; } + .pd-xs-b-9-f { + padding-bottom: 9px !important; } + .pd-xs-l-9-f { + padding-left: 9px !important; } + .pd-xs-10 { + padding: 10px; } + .pd-xs-10-f { + padding: 10px !important; } + .pd-xs-y-10 { + padding-top: 10px; + padding-bottom: 10px; } + .pd-xs-y-10-f { + padding-top: 10px !important; + padding-bottom: 10px !important; } + .pd-xs-x-10 { + padding-left: 10px; + padding-right: 10px; } + .pd-xs-x-10-f { + padding-left: 10px !important; + padding-right: 10px !important; } + .pd-xs-t-10 { + padding-top: 10px; } + .pd-xs-r-10 { + padding-right: 10px; } + .pd-xs-b-10 { + padding-bottom: 10px; } + .pd-xs-l-10 { + padding-left: 10px; } + .pd-xs-t-10-f { + padding-top: 10px !important; } + .pd-xs-r-10-f { + padding-right: 10px !important; } + .pd-xs-b-10-f { + padding-bottom: 10px !important; } + .pd-xs-l-10-f { + padding-left: 10px !important; } + .pd-xs-15 { + padding: 15px; } + .pd-xs-15-f { + padding: 15px !important; } + .pd-xs-y-15 { + padding-top: 15px; + padding-bottom: 15px; } + .pd-xs-y-15-f { + padding-top: 15px !important; + padding-bottom: 15px !important; } + .pd-xs-x-15 { + padding-left: 15px; + padding-right: 15px; } + .pd-xs-x-15-f { + padding-left: 15px !important; + padding-right: 15px !important; } + .pd-xs-t-15 { + padding-top: 15px; } + .pd-xs-r-15 { + padding-right: 15px; } + .pd-xs-b-15 { + padding-bottom: 15px; } + .pd-xs-l-15 { + padding-left: 15px; } + .pd-xs-t-15-f { + padding-top: 15px !important; } + .pd-xs-r-15-f { + padding-right: 15px !important; } + .pd-xs-b-15-f { + padding-bottom: 15px !important; } + .pd-xs-l-15-f { + padding-left: 15px !important; } + .pd-xs-20 { + padding: 20px; } + .pd-xs-20-f { + padding: 20px !important; } + .pd-xs-y-20 { + padding-top: 20px; + padding-bottom: 20px; } + .pd-xs-y-20-f { + padding-top: 20px !important; + padding-bottom: 20px !important; } + .pd-xs-x-20 { + padding-left: 20px; + padding-right: 20px; } + .pd-xs-x-20-f { + padding-left: 20px !important; + padding-right: 20px !important; } + .pd-xs-t-20 { + padding-top: 20px; } + .pd-xs-r-20 { + padding-right: 20px; } + .pd-xs-b-20 { + padding-bottom: 20px; } + .pd-xs-l-20 { + padding-left: 20px; } + .pd-xs-t-20-f { + padding-top: 20px !important; } + .pd-xs-r-20-f { + padding-right: 20px !important; } + .pd-xs-b-20-f { + padding-bottom: 20px !important; } + .pd-xs-l-20-f { + padding-left: 20px !important; } + .pd-xs-25 { + padding: 25px; } + .pd-xs-25-f { + padding: 25px !important; } + .pd-xs-y-25 { + padding-top: 25px; + padding-bottom: 25px; } + .pd-xs-y-25-f { + padding-top: 25px !important; + padding-bottom: 25px !important; } + .pd-xs-x-25 { + padding-left: 25px; + padding-right: 25px; } + .pd-xs-x-25-f { + padding-left: 25px !important; + padding-right: 25px !important; } + .pd-xs-t-25 { + padding-top: 25px; } + .pd-xs-r-25 { + padding-right: 25px; } + .pd-xs-b-25 { + padding-bottom: 25px; } + .pd-xs-l-25 { + padding-left: 25px; } + .pd-xs-t-25-f { + padding-top: 25px !important; } + .pd-xs-r-25-f { + padding-right: 25px !important; } + .pd-xs-b-25-f { + padding-bottom: 25px !important; } + .pd-xs-l-25-f { + padding-left: 25px !important; } + .pd-xs-30 { + padding: 30px; } + .pd-xs-30-f { + padding: 30px !important; } + .pd-xs-y-30 { + padding-top: 30px; + padding-bottom: 30px; } + .pd-xs-y-30-f { + padding-top: 30px !important; + padding-bottom: 30px !important; } + .pd-xs-x-30 { + padding-left: 30px; + padding-right: 30px; } + .pd-xs-x-30-f { + padding-left: 30px !important; + padding-right: 30px !important; } + .pd-xs-t-30 { + padding-top: 30px; } + .pd-xs-r-30 { + padding-right: 30px; } + .pd-xs-b-30 { + padding-bottom: 30px; } + .pd-xs-l-30 { + padding-left: 30px; } + .pd-xs-t-30-f { + padding-top: 30px !important; } + .pd-xs-r-30-f { + padding-right: 30px !important; } + .pd-xs-b-30-f { + padding-bottom: 30px !important; } + .pd-xs-l-30-f { + padding-left: 30px !important; } + .pd-xs-35 { + padding: 35px; } + .pd-xs-35-f { + padding: 35px !important; } + .pd-xs-y-35 { + padding-top: 35px; + padding-bottom: 35px; } + .pd-xs-y-35-f { + padding-top: 35px !important; + padding-bottom: 35px !important; } + .pd-xs-x-35 { + padding-left: 35px; + padding-right: 35px; } + .pd-xs-x-35-f { + padding-left: 35px !important; + padding-right: 35px !important; } + .pd-xs-t-35 { + padding-top: 35px; } + .pd-xs-r-35 { + padding-right: 35px; } + .pd-xs-b-35 { + padding-bottom: 35px; } + .pd-xs-l-35 { + padding-left: 35px; } + .pd-xs-t-35-f { + padding-top: 35px !important; } + .pd-xs-r-35-f { + padding-right: 35px !important; } + .pd-xs-b-35-f { + padding-bottom: 35px !important; } + .pd-xs-l-35-f { + padding-left: 35px !important; } + .pd-xs-40 { + padding: 40px; } + .pd-xs-40-f { + padding: 40px !important; } + .pd-xs-y-40 { + padding-top: 40px; + padding-bottom: 40px; } + .pd-xs-y-40-f { + padding-top: 40px !important; + padding-bottom: 40px !important; } + .pd-xs-x-40 { + padding-left: 40px; + padding-right: 40px; } + .pd-xs-x-40-f { + padding-left: 40px !important; + padding-right: 40px !important; } + .pd-xs-t-40 { + padding-top: 40px; } + .pd-xs-r-40 { + padding-right: 40px; } + .pd-xs-b-40 { + padding-bottom: 40px; } + .pd-xs-l-40 { + padding-left: 40px; } + .pd-xs-t-40-f { + padding-top: 40px !important; } + .pd-xs-r-40-f { + padding-right: 40px !important; } + .pd-xs-b-40-f { + padding-bottom: 40px !important; } + .pd-xs-l-40-f { + padding-left: 40px !important; } + .pd-xs-45 { + padding: 45px; } + .pd-xs-45-f { + padding: 45px !important; } + .pd-xs-y-45 { + padding-top: 45px; + padding-bottom: 45px; } + .pd-xs-y-45-f { + padding-top: 45px !important; + padding-bottom: 45px !important; } + .pd-xs-x-45 { + padding-left: 45px; + padding-right: 45px; } + .pd-xs-x-45-f { + padding-left: 45px !important; + padding-right: 45px !important; } + .pd-xs-t-45 { + padding-top: 45px; } + .pd-xs-r-45 { + padding-right: 45px; } + .pd-xs-b-45 { + padding-bottom: 45px; } + .pd-xs-l-45 { + padding-left: 45px; } + .pd-xs-t-45-f { + padding-top: 45px !important; } + .pd-xs-r-45-f { + padding-right: 45px !important; } + .pd-xs-b-45-f { + padding-bottom: 45px !important; } + .pd-xs-l-45-f { + padding-left: 45px !important; } + .pd-xs-50 { + padding: 50px; } + .pd-xs-50-f { + padding: 50px !important; } + .pd-xs-y-50 { + padding-top: 50px; + padding-bottom: 50px; } + .pd-xs-y-50-f { + padding-top: 50px !important; + padding-bottom: 50px !important; } + .pd-xs-x-50 { + padding-left: 50px; + padding-right: 50px; } + .pd-xs-x-50-f { + padding-left: 50px !important; + padding-right: 50px !important; } + .pd-xs-t-50 { + padding-top: 50px; } + .pd-xs-r-50 { + padding-right: 50px; } + .pd-xs-b-50 { + padding-bottom: 50px; } + .pd-xs-l-50 { + padding-left: 50px; } + .pd-xs-t-50-f { + padding-top: 50px !important; } + .pd-xs-r-50-f { + padding-right: 50px !important; } + .pd-xs-b-50-f { + padding-bottom: 50px !important; } + .pd-xs-l-50-f { + padding-left: 50px !important; } + .pd-xs-55 { + padding: 55px; } + .pd-xs-55-f { + padding: 55px !important; } + .pd-xs-y-55 { + padding-top: 55px; + padding-bottom: 55px; } + .pd-xs-y-55-f { + padding-top: 55px !important; + padding-bottom: 55px !important; } + .pd-xs-x-55 { + padding-left: 55px; + padding-right: 55px; } + .pd-xs-x-55-f { + padding-left: 55px !important; + padding-right: 55px !important; } + .pd-xs-t-55 { + padding-top: 55px; } + .pd-xs-r-55 { + padding-right: 55px; } + .pd-xs-b-55 { + padding-bottom: 55px; } + .pd-xs-l-55 { + padding-left: 55px; } + .pd-xs-t-55-f { + padding-top: 55px !important; } + .pd-xs-r-55-f { + padding-right: 55px !important; } + .pd-xs-b-55-f { + padding-bottom: 55px !important; } + .pd-xs-l-55-f { + padding-left: 55px !important; } + .pd-xs-60 { + padding: 60px; } + .pd-xs-60-f { + padding: 60px !important; } + .pd-xs-y-60 { + padding-top: 60px; + padding-bottom: 60px; } + .pd-xs-y-60-f { + padding-top: 60px !important; + padding-bottom: 60px !important; } + .pd-xs-x-60 { + padding-left: 60px; + padding-right: 60px; } + .pd-xs-x-60-f { + padding-left: 60px !important; + padding-right: 60px !important; } + .pd-xs-t-60 { + padding-top: 60px; } + .pd-xs-r-60 { + padding-right: 60px; } + .pd-xs-b-60 { + padding-bottom: 60px; } + .pd-xs-l-60 { + padding-left: 60px; } + .pd-xs-t-60-f { + padding-top: 60px !important; } + .pd-xs-r-60-f { + padding-right: 60px !important; } + .pd-xs-b-60-f { + padding-bottom: 60px !important; } + .pd-xs-l-60-f { + padding-left: 60px !important; } + .pd-xs-65 { + padding: 65px; } + .pd-xs-65-f { + padding: 65px !important; } + .pd-xs-y-65 { + padding-top: 65px; + padding-bottom: 65px; } + .pd-xs-y-65-f { + padding-top: 65px !important; + padding-bottom: 65px !important; } + .pd-xs-x-65 { + padding-left: 65px; + padding-right: 65px; } + .pd-xs-x-65-f { + padding-left: 65px !important; + padding-right: 65px !important; } + .pd-xs-t-65 { + padding-top: 65px; } + .pd-xs-r-65 { + padding-right: 65px; } + .pd-xs-b-65 { + padding-bottom: 65px; } + .pd-xs-l-65 { + padding-left: 65px; } + .pd-xs-t-65-f { + padding-top: 65px !important; } + .pd-xs-r-65-f { + padding-right: 65px !important; } + .pd-xs-b-65-f { + padding-bottom: 65px !important; } + .pd-xs-l-65-f { + padding-left: 65px !important; } + .pd-xs-70 { + padding: 70px; } + .pd-xs-70-f { + padding: 70px !important; } + .pd-xs-y-70 { + padding-top: 70px; + padding-bottom: 70px; } + .pd-xs-y-70-f { + padding-top: 70px !important; + padding-bottom: 70px !important; } + .pd-xs-x-70 { + padding-left: 70px; + padding-right: 70px; } + .pd-xs-x-70-f { + padding-left: 70px !important; + padding-right: 70px !important; } + .pd-xs-t-70 { + padding-top: 70px; } + .pd-xs-r-70 { + padding-right: 70px; } + .pd-xs-b-70 { + padding-bottom: 70px; } + .pd-xs-l-70 { + padding-left: 70px; } + .pd-xs-t-70-f { + padding-top: 70px !important; } + .pd-xs-r-70-f { + padding-right: 70px !important; } + .pd-xs-b-70-f { + padding-bottom: 70px !important; } + .pd-xs-l-70-f { + padding-left: 70px !important; } + .pd-xs-75 { + padding: 75px; } + .pd-xs-75-f { + padding: 75px !important; } + .pd-xs-y-75 { + padding-top: 75px; + padding-bottom: 75px; } + .pd-xs-y-75-f { + padding-top: 75px !important; + padding-bottom: 75px !important; } + .pd-xs-x-75 { + padding-left: 75px; + padding-right: 75px; } + .pd-xs-x-75-f { + padding-left: 75px !important; + padding-right: 75px !important; } + .pd-xs-t-75 { + padding-top: 75px; } + .pd-xs-r-75 { + padding-right: 75px; } + .pd-xs-b-75 { + padding-bottom: 75px; } + .pd-xs-l-75 { + padding-left: 75px; } + .pd-xs-t-75-f { + padding-top: 75px !important; } + .pd-xs-r-75-f { + padding-right: 75px !important; } + .pd-xs-b-75-f { + padding-bottom: 75px !important; } + .pd-xs-l-75-f { + padding-left: 75px !important; } + .pd-xs-80 { + padding: 80px; } + .pd-xs-80-f { + padding: 80px !important; } + .pd-xs-y-80 { + padding-top: 80px; + padding-bottom: 80px; } + .pd-xs-y-80-f { + padding-top: 80px !important; + padding-bottom: 80px !important; } + .pd-xs-x-80 { + padding-left: 80px; + padding-right: 80px; } + .pd-xs-x-80-f { + padding-left: 80px !important; + padding-right: 80px !important; } + .pd-xs-t-80 { + padding-top: 80px; } + .pd-xs-r-80 { + padding-right: 80px; } + .pd-xs-b-80 { + padding-bottom: 80px; } + .pd-xs-l-80 { + padding-left: 80px; } + .pd-xs-t-80-f { + padding-top: 80px !important; } + .pd-xs-r-80-f { + padding-right: 80px !important; } + .pd-xs-b-80-f { + padding-bottom: 80px !important; } + .pd-xs-l-80-f { + padding-left: 80px !important; } + .pd-xs-85 { + padding: 85px; } + .pd-xs-85-f { + padding: 85px !important; } + .pd-xs-y-85 { + padding-top: 85px; + padding-bottom: 85px; } + .pd-xs-y-85-f { + padding-top: 85px !important; + padding-bottom: 85px !important; } + .pd-xs-x-85 { + padding-left: 85px; + padding-right: 85px; } + .pd-xs-x-85-f { + padding-left: 85px !important; + padding-right: 85px !important; } + .pd-xs-t-85 { + padding-top: 85px; } + .pd-xs-r-85 { + padding-right: 85px; } + .pd-xs-b-85 { + padding-bottom: 85px; } + .pd-xs-l-85 { + padding-left: 85px; } + .pd-xs-t-85-f { + padding-top: 85px !important; } + .pd-xs-r-85-f { + padding-right: 85px !important; } + .pd-xs-b-85-f { + padding-bottom: 85px !important; } + .pd-xs-l-85-f { + padding-left: 85px !important; } + .pd-xs-90 { + padding: 90px; } + .pd-xs-90-f { + padding: 90px !important; } + .pd-xs-y-90 { + padding-top: 90px; + padding-bottom: 90px; } + .pd-xs-y-90-f { + padding-top: 90px !important; + padding-bottom: 90px !important; } + .pd-xs-x-90 { + padding-left: 90px; + padding-right: 90px; } + .pd-xs-x-90-f { + padding-left: 90px !important; + padding-right: 90px !important; } + .pd-xs-t-90 { + padding-top: 90px; } + .pd-xs-r-90 { + padding-right: 90px; } + .pd-xs-b-90 { + padding-bottom: 90px; } + .pd-xs-l-90 { + padding-left: 90px; } + .pd-xs-t-90-f { + padding-top: 90px !important; } + .pd-xs-r-90-f { + padding-right: 90px !important; } + .pd-xs-b-90-f { + padding-bottom: 90px !important; } + .pd-xs-l-90-f { + padding-left: 90px !important; } + .pd-xs-95 { + padding: 95px; } + .pd-xs-95-f { + padding: 95px !important; } + .pd-xs-y-95 { + padding-top: 95px; + padding-bottom: 95px; } + .pd-xs-y-95-f { + padding-top: 95px !important; + padding-bottom: 95px !important; } + .pd-xs-x-95 { + padding-left: 95px; + padding-right: 95px; } + .pd-xs-x-95-f { + padding-left: 95px !important; + padding-right: 95px !important; } + .pd-xs-t-95 { + padding-top: 95px; } + .pd-xs-r-95 { + padding-right: 95px; } + .pd-xs-b-95 { + padding-bottom: 95px; } + .pd-xs-l-95 { + padding-left: 95px; } + .pd-xs-t-95-f { + padding-top: 95px !important; } + .pd-xs-r-95-f { + padding-right: 95px !important; } + .pd-xs-b-95-f { + padding-bottom: 95px !important; } + .pd-xs-l-95-f { + padding-left: 95px !important; } + .pd-xs-100 { + padding: 100px; } + .pd-xs-100-f { + padding: 100px !important; } + .pd-xs-y-100 { + padding-top: 100px; + padding-bottom: 100px; } + .pd-xs-y-100-f { + padding-top: 100px !important; + padding-bottom: 100px !important; } + .pd-xs-x-100 { + padding-left: 100px; + padding-right: 100px; } + .pd-xs-x-100-f { + padding-left: 100px !important; + padding-right: 100px !important; } + .pd-xs-t-100 { + padding-top: 100px; } + .pd-xs-r-100 { + padding-right: 100px; } + .pd-xs-b-100 { + padding-bottom: 100px; } + .pd-xs-l-100 { + padding-left: 100px; } + .pd-xs-t-100-f { + padding-top: 100px !important; } + .pd-xs-r-100-f { + padding-right: 100px !important; } + .pd-xs-b-100-f { + padding-bottom: 100px !important; } + .pd-xs-l-100-f { + padding-left: 100px !important; } + .pd-xs-110 { + padding: 110px; } + .pd-xs-110-f { + padding: 110px !important; } + .pd-xs-y-110 { + padding-top: 110px; + padding-bottom: 110px; } + .pd-xs-y-110-f { + padding-top: 110px !important; + padding-bottom: 110px !important; } + .pd-xs-x-110 { + padding-left: 110px; + padding-right: 110px; } + .pd-xs-x-110-f { + padding-left: 110px !important; + padding-right: 110px !important; } + .pd-xs-t-110 { + padding-top: 110px; } + .pd-xs-r-110 { + padding-right: 110px; } + .pd-xs-b-110 { + padding-bottom: 110px; } + .pd-xs-l-110 { + padding-left: 110px; } + .pd-xs-t-110-f { + padding-top: 110px !important; } + .pd-xs-r-110-f { + padding-right: 110px !important; } + .pd-xs-b-110-f { + padding-bottom: 110px !important; } + .pd-xs-l-110-f { + padding-left: 110px !important; } + .pd-xs-120 { + padding: 120px; } + .pd-xs-120-f { + padding: 120px !important; } + .pd-xs-y-120 { + padding-top: 120px; + padding-bottom: 120px; } + .pd-xs-y-120-f { + padding-top: 120px !important; + padding-bottom: 120px !important; } + .pd-xs-x-120 { + padding-left: 120px; + padding-right: 120px; } + .pd-xs-x-120-f { + padding-left: 120px !important; + padding-right: 120px !important; } + .pd-xs-t-120 { + padding-top: 120px; } + .pd-xs-r-120 { + padding-right: 120px; } + .pd-xs-b-120 { + padding-bottom: 120px; } + .pd-xs-l-120 { + padding-left: 120px; } + .pd-xs-t-120-f { + padding-top: 120px !important; } + .pd-xs-r-120-f { + padding-right: 120px !important; } + .pd-xs-b-120-f { + padding-bottom: 120px !important; } + .pd-xs-l-120-f { + padding-left: 120px !important; } + .pd-xs-130 { + padding: 130px; } + .pd-xs-130-f { + padding: 130px !important; } + .pd-xs-y-130 { + padding-top: 130px; + padding-bottom: 130px; } + .pd-xs-y-130-f { + padding-top: 130px !important; + padding-bottom: 130px !important; } + .pd-xs-x-130 { + padding-left: 130px; + padding-right: 130px; } + .pd-xs-x-130-f { + padding-left: 130px !important; + padding-right: 130px !important; } + .pd-xs-t-130 { + padding-top: 130px; } + .pd-xs-r-130 { + padding-right: 130px; } + .pd-xs-b-130 { + padding-bottom: 130px; } + .pd-xs-l-130 { + padding-left: 130px; } + .pd-xs-t-130-f { + padding-top: 130px !important; } + .pd-xs-r-130-f { + padding-right: 130px !important; } + .pd-xs-b-130-f { + padding-bottom: 130px !important; } + .pd-xs-l-130-f { + padding-left: 130px !important; } + .pd-xs-140 { + padding: 140px; } + .pd-xs-140-f { + padding: 140px !important; } + .pd-xs-y-140 { + padding-top: 140px; + padding-bottom: 140px; } + .pd-xs-y-140-f { + padding-top: 140px !important; + padding-bottom: 140px !important; } + .pd-xs-x-140 { + padding-left: 140px; + padding-right: 140px; } + .pd-xs-x-140-f { + padding-left: 140px !important; + padding-right: 140px !important; } + .pd-xs-t-140 { + padding-top: 140px; } + .pd-xs-r-140 { + padding-right: 140px; } + .pd-xs-b-140 { + padding-bottom: 140px; } + .pd-xs-l-140 { + padding-left: 140px; } + .pd-xs-t-140-f { + padding-top: 140px !important; } + .pd-xs-r-140-f { + padding-right: 140px !important; } + .pd-xs-b-140-f { + padding-bottom: 140px !important; } + .pd-xs-l-140-f { + padding-left: 140px !important; } + .pd-xs-150 { + padding: 150px; } + .pd-xs-150-f { + padding: 150px !important; } + .pd-xs-y-150 { + padding-top: 150px; + padding-bottom: 150px; } + .pd-xs-y-150-f { + padding-top: 150px !important; + padding-bottom: 150px !important; } + .pd-xs-x-150 { + padding-left: 150px; + padding-right: 150px; } + .pd-xs-x-150-f { + padding-left: 150px !important; + padding-right: 150px !important; } + .pd-xs-t-150 { + padding-top: 150px; } + .pd-xs-r-150 { + padding-right: 150px; } + .pd-xs-b-150 { + padding-bottom: 150px; } + .pd-xs-l-150 { + padding-left: 150px; } + .pd-xs-t-150-f { + padding-top: 150px !important; } + .pd-xs-r-150-f { + padding-right: 150px !important; } + .pd-xs-b-150-f { + padding-bottom: 150px !important; } + .pd-xs-l-150-f { + padding-left: 150px !important; } + .pd-xs-160 { + padding: 160px; } + .pd-xs-160-f { + padding: 160px !important; } + .pd-xs-y-160 { + padding-top: 160px; + padding-bottom: 160px; } + .pd-xs-y-160-f { + padding-top: 160px !important; + padding-bottom: 160px !important; } + .pd-xs-x-160 { + padding-left: 160px; + padding-right: 160px; } + .pd-xs-x-160-f { + padding-left: 160px !important; + padding-right: 160px !important; } + .pd-xs-t-160 { + padding-top: 160px; } + .pd-xs-r-160 { + padding-right: 160px; } + .pd-xs-b-160 { + padding-bottom: 160px; } + .pd-xs-l-160 { + padding-left: 160px; } + .pd-xs-t-160-f { + padding-top: 160px !important; } + .pd-xs-r-160-f { + padding-right: 160px !important; } + .pd-xs-b-160-f { + padding-bottom: 160px !important; } + .pd-xs-l-160-f { + padding-left: 160px !important; } + .pd-xs-170 { + padding: 170px; } + .pd-xs-170-f { + padding: 170px !important; } + .pd-xs-y-170 { + padding-top: 170px; + padding-bottom: 170px; } + .pd-xs-y-170-f { + padding-top: 170px !important; + padding-bottom: 170px !important; } + .pd-xs-x-170 { + padding-left: 170px; + padding-right: 170px; } + .pd-xs-x-170-f { + padding-left: 170px !important; + padding-right: 170px !important; } + .pd-xs-t-170 { + padding-top: 170px; } + .pd-xs-r-170 { + padding-right: 170px; } + .pd-xs-b-170 { + padding-bottom: 170px; } + .pd-xs-l-170 { + padding-left: 170px; } + .pd-xs-t-170-f { + padding-top: 170px !important; } + .pd-xs-r-170-f { + padding-right: 170px !important; } + .pd-xs-b-170-f { + padding-bottom: 170px !important; } + .pd-xs-l-170-f { + padding-left: 170px !important; } + .pd-xs-180 { + padding: 180px; } + .pd-xs-180-f { + padding: 180px !important; } + .pd-xs-y-180 { + padding-top: 180px; + padding-bottom: 180px; } + .pd-xs-y-180-f { + padding-top: 180px !important; + padding-bottom: 180px !important; } + .pd-xs-x-180 { + padding-left: 180px; + padding-right: 180px; } + .pd-xs-x-180-f { + padding-left: 180px !important; + padding-right: 180px !important; } + .pd-xs-t-180 { + padding-top: 180px; } + .pd-xs-r-180 { + padding-right: 180px; } + .pd-xs-b-180 { + padding-bottom: 180px; } + .pd-xs-l-180 { + padding-left: 180px; } + .pd-xs-t-180-f { + padding-top: 180px !important; } + .pd-xs-r-180-f { + padding-right: 180px !important; } + .pd-xs-b-180-f { + padding-bottom: 180px !important; } + .pd-xs-l-180-f { + padding-left: 180px !important; } + .pd-xs-190 { + padding: 190px; } + .pd-xs-190-f { + padding: 190px !important; } + .pd-xs-y-190 { + padding-top: 190px; + padding-bottom: 190px; } + .pd-xs-y-190-f { + padding-top: 190px !important; + padding-bottom: 190px !important; } + .pd-xs-x-190 { + padding-left: 190px; + padding-right: 190px; } + .pd-xs-x-190-f { + padding-left: 190px !important; + padding-right: 190px !important; } + .pd-xs-t-190 { + padding-top: 190px; } + .pd-xs-r-190 { + padding-right: 190px; } + .pd-xs-b-190 { + padding-bottom: 190px; } + .pd-xs-l-190 { + padding-left: 190px; } + .pd-xs-t-190-f { + padding-top: 190px !important; } + .pd-xs-r-190-f { + padding-right: 190px !important; } + .pd-xs-b-190-f { + padding-bottom: 190px !important; } + .pd-xs-l-190-f { + padding-left: 190px !important; } + .pd-xs-200 { + padding: 200px; } + .pd-xs-200-f { + padding: 200px !important; } + .pd-xs-y-200 { + padding-top: 200px; + padding-bottom: 200px; } + .pd-xs-y-200-f { + padding-top: 200px !important; + padding-bottom: 200px !important; } + .pd-xs-x-200 { + padding-left: 200px; + padding-right: 200px; } + .pd-xs-x-200-f { + padding-left: 200px !important; + padding-right: 200px !important; } + .pd-xs-t-200 { + padding-top: 200px; } + .pd-xs-r-200 { + padding-right: 200px; } + .pd-xs-b-200 { + padding-bottom: 200px; } + .pd-xs-l-200 { + padding-left: 200px; } + .pd-xs-t-200-f { + padding-top: 200px !important; } + .pd-xs-r-200-f { + padding-right: 200px !important; } + .pd-xs-b-200-f { + padding-bottom: 200px !important; } + .pd-xs-l-200-f { + padding-left: 200px !important; } } + +@media (min-width: 576px) { + .pd-sm-0 { + padding: 0px; } + .pd-sm-0-f { + padding: 0px !important; } + .pd-sm-y-0 { + padding-top: 0px; + padding-bottom: 0px; } + .pd-sm-y-0-f { + padding-top: 0px !important; + padding-bottom: 0px !important; } + .pd-sm-x-0 { + padding-left: 0px; + padding-right: 0px; } + .pd-sm-x-0-f { + padding-left: 0px !important; + padding-right: 0px !important; } + .pd-sm-t-0 { + padding-top: 0px; } + .pd-sm-r-0 { + padding-right: 0px; } + .pd-sm-b-0 { + padding-bottom: 0px; } + .pd-sm-l-0 { + padding-left: 0px; } + .pd-sm-t-0-f { + padding-top: 0px !important; } + .pd-sm-r-0-f { + padding-right: 0px !important; } + .pd-sm-b-0-f { + padding-bottom: 0px !important; } + .pd-sm-l-0-f { + padding-left: 0px !important; } + .pd-sm-1 { + padding: 1px; } + .pd-sm-1-f { + padding: 1px !important; } + .pd-sm-y-1 { + padding-top: 1px; + padding-bottom: 1px; } + .pd-sm-y-1-f { + padding-top: 1px !important; + padding-bottom: 1px !important; } + .pd-sm-x-1 { + padding-left: 1px; + padding-right: 1px; } + .pd-sm-x-1-f { + padding-left: 1px !important; + padding-right: 1px !important; } + .pd-sm-t-1 { + padding-top: 1px; } + .pd-sm-r-1 { + padding-right: 1px; } + .pd-sm-b-1 { + padding-bottom: 1px; } + .pd-sm-l-1 { + padding-left: 1px; } + .pd-sm-t-1-f { + padding-top: 1px !important; } + .pd-sm-r-1-f { + padding-right: 1px !important; } + .pd-sm-b-1-f { + padding-bottom: 1px !important; } + .pd-sm-l-1-f { + padding-left: 1px !important; } + .pd-sm-2 { + padding: 2px; } + .pd-sm-2-f { + padding: 2px !important; } + .pd-sm-y-2 { + padding-top: 2px; + padding-bottom: 2px; } + .pd-sm-y-2-f { + padding-top: 2px !important; + padding-bottom: 2px !important; } + .pd-sm-x-2 { + padding-left: 2px; + padding-right: 2px; } + .pd-sm-x-2-f { + padding-left: 2px !important; + padding-right: 2px !important; } + .pd-sm-t-2 { + padding-top: 2px; } + .pd-sm-r-2 { + padding-right: 2px; } + .pd-sm-b-2 { + padding-bottom: 2px; } + .pd-sm-l-2 { + padding-left: 2px; } + .pd-sm-t-2-f { + padding-top: 2px !important; } + .pd-sm-r-2-f { + padding-right: 2px !important; } + .pd-sm-b-2-f { + padding-bottom: 2px !important; } + .pd-sm-l-2-f { + padding-left: 2px !important; } + .pd-sm-3 { + padding: 3px; } + .pd-sm-3-f { + padding: 3px !important; } + .pd-sm-y-3 { + padding-top: 3px; + padding-bottom: 3px; } + .pd-sm-y-3-f { + padding-top: 3px !important; + padding-bottom: 3px !important; } + .pd-sm-x-3 { + padding-left: 3px; + padding-right: 3px; } + .pd-sm-x-3-f { + padding-left: 3px !important; + padding-right: 3px !important; } + .pd-sm-t-3 { + padding-top: 3px; } + .pd-sm-r-3 { + padding-right: 3px; } + .pd-sm-b-3 { + padding-bottom: 3px; } + .pd-sm-l-3 { + padding-left: 3px; } + .pd-sm-t-3-f { + padding-top: 3px !important; } + .pd-sm-r-3-f { + padding-right: 3px !important; } + .pd-sm-b-3-f { + padding-bottom: 3px !important; } + .pd-sm-l-3-f { + padding-left: 3px !important; } + .pd-sm-4 { + padding: 4px; } + .pd-sm-4-f { + padding: 4px !important; } + .pd-sm-y-4 { + padding-top: 4px; + padding-bottom: 4px; } + .pd-sm-y-4-f { + padding-top: 4px !important; + padding-bottom: 4px !important; } + .pd-sm-x-4 { + padding-left: 4px; + padding-right: 4px; } + .pd-sm-x-4-f { + padding-left: 4px !important; + padding-right: 4px !important; } + .pd-sm-t-4 { + padding-top: 4px; } + .pd-sm-r-4 { + padding-right: 4px; } + .pd-sm-b-4 { + padding-bottom: 4px; } + .pd-sm-l-4 { + padding-left: 4px; } + .pd-sm-t-4-f { + padding-top: 4px !important; } + .pd-sm-r-4-f { + padding-right: 4px !important; } + .pd-sm-b-4-f { + padding-bottom: 4px !important; } + .pd-sm-l-4-f { + padding-left: 4px !important; } + .pd-sm-5 { + padding: 5px; } + .pd-sm-5-f { + padding: 5px !important; } + .pd-sm-y-5 { + padding-top: 5px; + padding-bottom: 5px; } + .pd-sm-y-5-f { + padding-top: 5px !important; + padding-bottom: 5px !important; } + .pd-sm-x-5 { + padding-left: 5px; + padding-right: 5px; } + .pd-sm-x-5-f { + padding-left: 5px !important; + padding-right: 5px !important; } + .pd-sm-t-5 { + padding-top: 5px; } + .pd-sm-r-5 { + padding-right: 5px; } + .pd-sm-b-5 { + padding-bottom: 5px; } + .pd-sm-l-5 { + padding-left: 5px; } + .pd-sm-t-5-f { + padding-top: 5px !important; } + .pd-sm-r-5-f { + padding-right: 5px !important; } + .pd-sm-b-5-f { + padding-bottom: 5px !important; } + .pd-sm-l-5-f { + padding-left: 5px !important; } + .pd-sm-6 { + padding: 6px; } + .pd-sm-6-f { + padding: 6px !important; } + .pd-sm-y-6 { + padding-top: 6px; + padding-bottom: 6px; } + .pd-sm-y-6-f { + padding-top: 6px !important; + padding-bottom: 6px !important; } + .pd-sm-x-6 { + padding-left: 6px; + padding-right: 6px; } + .pd-sm-x-6-f { + padding-left: 6px !important; + padding-right: 6px !important; } + .pd-sm-t-6 { + padding-top: 6px; } + .pd-sm-r-6 { + padding-right: 6px; } + .pd-sm-b-6 { + padding-bottom: 6px; } + .pd-sm-l-6 { + padding-left: 6px; } + .pd-sm-t-6-f { + padding-top: 6px !important; } + .pd-sm-r-6-f { + padding-right: 6px !important; } + .pd-sm-b-6-f { + padding-bottom: 6px !important; } + .pd-sm-l-6-f { + padding-left: 6px !important; } + .pd-sm-7 { + padding: 7px; } + .pd-sm-7-f { + padding: 7px !important; } + .pd-sm-y-7 { + padding-top: 7px; + padding-bottom: 7px; } + .pd-sm-y-7-f { + padding-top: 7px !important; + padding-bottom: 7px !important; } + .pd-sm-x-7 { + padding-left: 7px; + padding-right: 7px; } + .pd-sm-x-7-f { + padding-left: 7px !important; + padding-right: 7px !important; } + .pd-sm-t-7 { + padding-top: 7px; } + .pd-sm-r-7 { + padding-right: 7px; } + .pd-sm-b-7 { + padding-bottom: 7px; } + .pd-sm-l-7 { + padding-left: 7px; } + .pd-sm-t-7-f { + padding-top: 7px !important; } + .pd-sm-r-7-f { + padding-right: 7px !important; } + .pd-sm-b-7-f { + padding-bottom: 7px !important; } + .pd-sm-l-7-f { + padding-left: 7px !important; } + .pd-sm-8 { + padding: 8px; } + .pd-sm-8-f { + padding: 8px !important; } + .pd-sm-y-8 { + padding-top: 8px; + padding-bottom: 8px; } + .pd-sm-y-8-f { + padding-top: 8px !important; + padding-bottom: 8px !important; } + .pd-sm-x-8 { + padding-left: 8px; + padding-right: 8px; } + .pd-sm-x-8-f { + padding-left: 8px !important; + padding-right: 8px !important; } + .pd-sm-t-8 { + padding-top: 8px; } + .pd-sm-r-8 { + padding-right: 8px; } + .pd-sm-b-8 { + padding-bottom: 8px; } + .pd-sm-l-8 { + padding-left: 8px; } + .pd-sm-t-8-f { + padding-top: 8px !important; } + .pd-sm-r-8-f { + padding-right: 8px !important; } + .pd-sm-b-8-f { + padding-bottom: 8px !important; } + .pd-sm-l-8-f { + padding-left: 8px !important; } + .pd-sm-9 { + padding: 9px; } + .pd-sm-9-f { + padding: 9px !important; } + .pd-sm-y-9 { + padding-top: 9px; + padding-bottom: 9px; } + .pd-sm-y-9-f { + padding-top: 9px !important; + padding-bottom: 9px !important; } + .pd-sm-x-9 { + padding-left: 9px; + padding-right: 9px; } + .pd-sm-x-9-f { + padding-left: 9px !important; + padding-right: 9px !important; } + .pd-sm-t-9 { + padding-top: 9px; } + .pd-sm-r-9 { + padding-right: 9px; } + .pd-sm-b-9 { + padding-bottom: 9px; } + .pd-sm-l-9 { + padding-left: 9px; } + .pd-sm-t-9-f { + padding-top: 9px !important; } + .pd-sm-r-9-f { + padding-right: 9px !important; } + .pd-sm-b-9-f { + padding-bottom: 9px !important; } + .pd-sm-l-9-f { + padding-left: 9px !important; } + .pd-sm-10 { + padding: 10px; } + .pd-sm-10-f { + padding: 10px !important; } + .pd-sm-y-10 { + padding-top: 10px; + padding-bottom: 10px; } + .pd-sm-y-10-f { + padding-top: 10px !important; + padding-bottom: 10px !important; } + .pd-sm-x-10 { + padding-left: 10px; + padding-right: 10px; } + .pd-sm-x-10-f { + padding-left: 10px !important; + padding-right: 10px !important; } + .pd-sm-t-10 { + padding-top: 10px; } + .pd-sm-r-10 { + padding-right: 10px; } + .pd-sm-b-10 { + padding-bottom: 10px; } + .pd-sm-l-10 { + padding-left: 10px; } + .pd-sm-t-10-f { + padding-top: 10px !important; } + .pd-sm-r-10-f { + padding-right: 10px !important; } + .pd-sm-b-10-f { + padding-bottom: 10px !important; } + .pd-sm-l-10-f { + padding-left: 10px !important; } + .pd-sm-15 { + padding: 15px; } + .pd-sm-15-f { + padding: 15px !important; } + .pd-sm-y-15 { + padding-top: 15px; + padding-bottom: 15px; } + .pd-sm-y-15-f { + padding-top: 15px !important; + padding-bottom: 15px !important; } + .pd-sm-x-15 { + padding-left: 15px; + padding-right: 15px; } + .pd-sm-x-15-f { + padding-left: 15px !important; + padding-right: 15px !important; } + .pd-sm-t-15 { + padding-top: 15px; } + .pd-sm-r-15 { + padding-right: 15px; } + .pd-sm-b-15 { + padding-bottom: 15px; } + .pd-sm-l-15 { + padding-left: 15px; } + .pd-sm-t-15-f { + padding-top: 15px !important; } + .pd-sm-r-15-f { + padding-right: 15px !important; } + .pd-sm-b-15-f { + padding-bottom: 15px !important; } + .pd-sm-l-15-f { + padding-left: 15px !important; } + .pd-sm-20 { + padding: 20px; } + .pd-sm-20-f { + padding: 20px !important; } + .pd-sm-y-20 { + padding-top: 20px; + padding-bottom: 20px; } + .pd-sm-y-20-f { + padding-top: 20px !important; + padding-bottom: 20px !important; } + .pd-sm-x-20 { + padding-left: 20px; + padding-right: 20px; } + .pd-sm-x-20-f { + padding-left: 20px !important; + padding-right: 20px !important; } + .pd-sm-t-20 { + padding-top: 20px; } + .pd-sm-r-20 { + padding-right: 20px; } + .pd-sm-b-20 { + padding-bottom: 20px; } + .pd-sm-l-20 { + padding-left: 20px; } + .pd-sm-t-20-f { + padding-top: 20px !important; } + .pd-sm-r-20-f { + padding-right: 20px !important; } + .pd-sm-b-20-f { + padding-bottom: 20px !important; } + .pd-sm-l-20-f { + padding-left: 20px !important; } + .pd-sm-25 { + padding: 25px; } + .pd-sm-25-f { + padding: 25px !important; } + .pd-sm-y-25 { + padding-top: 25px; + padding-bottom: 25px; } + .pd-sm-y-25-f { + padding-top: 25px !important; + padding-bottom: 25px !important; } + .pd-sm-x-25 { + padding-left: 25px; + padding-right: 25px; } + .pd-sm-x-25-f { + padding-left: 25px !important; + padding-right: 25px !important; } + .pd-sm-t-25 { + padding-top: 25px; } + .pd-sm-r-25 { + padding-right: 25px; } + .pd-sm-b-25 { + padding-bottom: 25px; } + .pd-sm-l-25 { + padding-left: 25px; } + .pd-sm-t-25-f { + padding-top: 25px !important; } + .pd-sm-r-25-f { + padding-right: 25px !important; } + .pd-sm-b-25-f { + padding-bottom: 25px !important; } + .pd-sm-l-25-f { + padding-left: 25px !important; } + .pd-sm-30 { + padding: 30px; } + .pd-sm-30-f { + padding: 30px !important; } + .pd-sm-y-30 { + padding-top: 30px; + padding-bottom: 30px; } + .pd-sm-y-30-f { + padding-top: 30px !important; + padding-bottom: 30px !important; } + .pd-sm-x-30 { + padding-left: 30px; + padding-right: 30px; } + .pd-sm-x-30-f { + padding-left: 30px !important; + padding-right: 30px !important; } + .pd-sm-t-30 { + padding-top: 30px; } + .pd-sm-r-30 { + padding-right: 30px; } + .pd-sm-b-30 { + padding-bottom: 30px; } + .pd-sm-l-30 { + padding-left: 30px; } + .pd-sm-t-30-f { + padding-top: 30px !important; } + .pd-sm-r-30-f { + padding-right: 30px !important; } + .pd-sm-b-30-f { + padding-bottom: 30px !important; } + .pd-sm-l-30-f { + padding-left: 30px !important; } + .pd-sm-35 { + padding: 35px; } + .pd-sm-35-f { + padding: 35px !important; } + .pd-sm-y-35 { + padding-top: 35px; + padding-bottom: 35px; } + .pd-sm-y-35-f { + padding-top: 35px !important; + padding-bottom: 35px !important; } + .pd-sm-x-35 { + padding-left: 35px; + padding-right: 35px; } + .pd-sm-x-35-f { + padding-left: 35px !important; + padding-right: 35px !important; } + .pd-sm-t-35 { + padding-top: 35px; } + .pd-sm-r-35 { + padding-right: 35px; } + .pd-sm-b-35 { + padding-bottom: 35px; } + .pd-sm-l-35 { + padding-left: 35px; } + .pd-sm-t-35-f { + padding-top: 35px !important; } + .pd-sm-r-35-f { + padding-right: 35px !important; } + .pd-sm-b-35-f { + padding-bottom: 35px !important; } + .pd-sm-l-35-f { + padding-left: 35px !important; } + .pd-sm-40 { + padding: 40px; } + .pd-sm-40-f { + padding: 40px !important; } + .pd-sm-y-40 { + padding-top: 40px; + padding-bottom: 40px; } + .pd-sm-y-40-f { + padding-top: 40px !important; + padding-bottom: 40px !important; } + .pd-sm-x-40 { + padding-left: 40px; + padding-right: 40px; } + .pd-sm-x-40-f { + padding-left: 40px !important; + padding-right: 40px !important; } + .pd-sm-t-40 { + padding-top: 40px; } + .pd-sm-r-40 { + padding-right: 40px; } + .pd-sm-b-40 { + padding-bottom: 40px; } + .pd-sm-l-40 { + padding-left: 40px; } + .pd-sm-t-40-f { + padding-top: 40px !important; } + .pd-sm-r-40-f { + padding-right: 40px !important; } + .pd-sm-b-40-f { + padding-bottom: 40px !important; } + .pd-sm-l-40-f { + padding-left: 40px !important; } + .pd-sm-45 { + padding: 45px; } + .pd-sm-45-f { + padding: 45px !important; } + .pd-sm-y-45 { + padding-top: 45px; + padding-bottom: 45px; } + .pd-sm-y-45-f { + padding-top: 45px !important; + padding-bottom: 45px !important; } + .pd-sm-x-45 { + padding-left: 45px; + padding-right: 45px; } + .pd-sm-x-45-f { + padding-left: 45px !important; + padding-right: 45px !important; } + .pd-sm-t-45 { + padding-top: 45px; } + .pd-sm-r-45 { + padding-right: 45px; } + .pd-sm-b-45 { + padding-bottom: 45px; } + .pd-sm-l-45 { + padding-left: 45px; } + .pd-sm-t-45-f { + padding-top: 45px !important; } + .pd-sm-r-45-f { + padding-right: 45px !important; } + .pd-sm-b-45-f { + padding-bottom: 45px !important; } + .pd-sm-l-45-f { + padding-left: 45px !important; } + .pd-sm-50 { + padding: 50px; } + .pd-sm-50-f { + padding: 50px !important; } + .pd-sm-y-50 { + padding-top: 50px; + padding-bottom: 50px; } + .pd-sm-y-50-f { + padding-top: 50px !important; + padding-bottom: 50px !important; } + .pd-sm-x-50 { + padding-left: 50px; + padding-right: 50px; } + .pd-sm-x-50-f { + padding-left: 50px !important; + padding-right: 50px !important; } + .pd-sm-t-50 { + padding-top: 50px; } + .pd-sm-r-50 { + padding-right: 50px; } + .pd-sm-b-50 { + padding-bottom: 50px; } + .pd-sm-l-50 { + padding-left: 50px; } + .pd-sm-t-50-f { + padding-top: 50px !important; } + .pd-sm-r-50-f { + padding-right: 50px !important; } + .pd-sm-b-50-f { + padding-bottom: 50px !important; } + .pd-sm-l-50-f { + padding-left: 50px !important; } + .pd-sm-55 { + padding: 55px; } + .pd-sm-55-f { + padding: 55px !important; } + .pd-sm-y-55 { + padding-top: 55px; + padding-bottom: 55px; } + .pd-sm-y-55-f { + padding-top: 55px !important; + padding-bottom: 55px !important; } + .pd-sm-x-55 { + padding-left: 55px; + padding-right: 55px; } + .pd-sm-x-55-f { + padding-left: 55px !important; + padding-right: 55px !important; } + .pd-sm-t-55 { + padding-top: 55px; } + .pd-sm-r-55 { + padding-right: 55px; } + .pd-sm-b-55 { + padding-bottom: 55px; } + .pd-sm-l-55 { + padding-left: 55px; } + .pd-sm-t-55-f { + padding-top: 55px !important; } + .pd-sm-r-55-f { + padding-right: 55px !important; } + .pd-sm-b-55-f { + padding-bottom: 55px !important; } + .pd-sm-l-55-f { + padding-left: 55px !important; } + .pd-sm-60 { + padding: 60px; } + .pd-sm-60-f { + padding: 60px !important; } + .pd-sm-y-60 { + padding-top: 60px; + padding-bottom: 60px; } + .pd-sm-y-60-f { + padding-top: 60px !important; + padding-bottom: 60px !important; } + .pd-sm-x-60 { + padding-left: 60px; + padding-right: 60px; } + .pd-sm-x-60-f { + padding-left: 60px !important; + padding-right: 60px !important; } + .pd-sm-t-60 { + padding-top: 60px; } + .pd-sm-r-60 { + padding-right: 60px; } + .pd-sm-b-60 { + padding-bottom: 60px; } + .pd-sm-l-60 { + padding-left: 60px; } + .pd-sm-t-60-f { + padding-top: 60px !important; } + .pd-sm-r-60-f { + padding-right: 60px !important; } + .pd-sm-b-60-f { + padding-bottom: 60px !important; } + .pd-sm-l-60-f { + padding-left: 60px !important; } + .pd-sm-65 { + padding: 65px; } + .pd-sm-65-f { + padding: 65px !important; } + .pd-sm-y-65 { + padding-top: 65px; + padding-bottom: 65px; } + .pd-sm-y-65-f { + padding-top: 65px !important; + padding-bottom: 65px !important; } + .pd-sm-x-65 { + padding-left: 65px; + padding-right: 65px; } + .pd-sm-x-65-f { + padding-left: 65px !important; + padding-right: 65px !important; } + .pd-sm-t-65 { + padding-top: 65px; } + .pd-sm-r-65 { + padding-right: 65px; } + .pd-sm-b-65 { + padding-bottom: 65px; } + .pd-sm-l-65 { + padding-left: 65px; } + .pd-sm-t-65-f { + padding-top: 65px !important; } + .pd-sm-r-65-f { + padding-right: 65px !important; } + .pd-sm-b-65-f { + padding-bottom: 65px !important; } + .pd-sm-l-65-f { + padding-left: 65px !important; } + .pd-sm-70 { + padding: 70px; } + .pd-sm-70-f { + padding: 70px !important; } + .pd-sm-y-70 { + padding-top: 70px; + padding-bottom: 70px; } + .pd-sm-y-70-f { + padding-top: 70px !important; + padding-bottom: 70px !important; } + .pd-sm-x-70 { + padding-left: 70px; + padding-right: 70px; } + .pd-sm-x-70-f { + padding-left: 70px !important; + padding-right: 70px !important; } + .pd-sm-t-70 { + padding-top: 70px; } + .pd-sm-r-70 { + padding-right: 70px; } + .pd-sm-b-70 { + padding-bottom: 70px; } + .pd-sm-l-70 { + padding-left: 70px; } + .pd-sm-t-70-f { + padding-top: 70px !important; } + .pd-sm-r-70-f { + padding-right: 70px !important; } + .pd-sm-b-70-f { + padding-bottom: 70px !important; } + .pd-sm-l-70-f { + padding-left: 70px !important; } + .pd-sm-75 { + padding: 75px; } + .pd-sm-75-f { + padding: 75px !important; } + .pd-sm-y-75 { + padding-top: 75px; + padding-bottom: 75px; } + .pd-sm-y-75-f { + padding-top: 75px !important; + padding-bottom: 75px !important; } + .pd-sm-x-75 { + padding-left: 75px; + padding-right: 75px; } + .pd-sm-x-75-f { + padding-left: 75px !important; + padding-right: 75px !important; } + .pd-sm-t-75 { + padding-top: 75px; } + .pd-sm-r-75 { + padding-right: 75px; } + .pd-sm-b-75 { + padding-bottom: 75px; } + .pd-sm-l-75 { + padding-left: 75px; } + .pd-sm-t-75-f { + padding-top: 75px !important; } + .pd-sm-r-75-f { + padding-right: 75px !important; } + .pd-sm-b-75-f { + padding-bottom: 75px !important; } + .pd-sm-l-75-f { + padding-left: 75px !important; } + .pd-sm-80 { + padding: 80px; } + .pd-sm-80-f { + padding: 80px !important; } + .pd-sm-y-80 { + padding-top: 80px; + padding-bottom: 80px; } + .pd-sm-y-80-f { + padding-top: 80px !important; + padding-bottom: 80px !important; } + .pd-sm-x-80 { + padding-left: 80px; + padding-right: 80px; } + .pd-sm-x-80-f { + padding-left: 80px !important; + padding-right: 80px !important; } + .pd-sm-t-80 { + padding-top: 80px; } + .pd-sm-r-80 { + padding-right: 80px; } + .pd-sm-b-80 { + padding-bottom: 80px; } + .pd-sm-l-80 { + padding-left: 80px; } + .pd-sm-t-80-f { + padding-top: 80px !important; } + .pd-sm-r-80-f { + padding-right: 80px !important; } + .pd-sm-b-80-f { + padding-bottom: 80px !important; } + .pd-sm-l-80-f { + padding-left: 80px !important; } + .pd-sm-85 { + padding: 85px; } + .pd-sm-85-f { + padding: 85px !important; } + .pd-sm-y-85 { + padding-top: 85px; + padding-bottom: 85px; } + .pd-sm-y-85-f { + padding-top: 85px !important; + padding-bottom: 85px !important; } + .pd-sm-x-85 { + padding-left: 85px; + padding-right: 85px; } + .pd-sm-x-85-f { + padding-left: 85px !important; + padding-right: 85px !important; } + .pd-sm-t-85 { + padding-top: 85px; } + .pd-sm-r-85 { + padding-right: 85px; } + .pd-sm-b-85 { + padding-bottom: 85px; } + .pd-sm-l-85 { + padding-left: 85px; } + .pd-sm-t-85-f { + padding-top: 85px !important; } + .pd-sm-r-85-f { + padding-right: 85px !important; } + .pd-sm-b-85-f { + padding-bottom: 85px !important; } + .pd-sm-l-85-f { + padding-left: 85px !important; } + .pd-sm-90 { + padding: 90px; } + .pd-sm-90-f { + padding: 90px !important; } + .pd-sm-y-90 { + padding-top: 90px; + padding-bottom: 90px; } + .pd-sm-y-90-f { + padding-top: 90px !important; + padding-bottom: 90px !important; } + .pd-sm-x-90 { + padding-left: 90px; + padding-right: 90px; } + .pd-sm-x-90-f { + padding-left: 90px !important; + padding-right: 90px !important; } + .pd-sm-t-90 { + padding-top: 90px; } + .pd-sm-r-90 { + padding-right: 90px; } + .pd-sm-b-90 { + padding-bottom: 90px; } + .pd-sm-l-90 { + padding-left: 90px; } + .pd-sm-t-90-f { + padding-top: 90px !important; } + .pd-sm-r-90-f { + padding-right: 90px !important; } + .pd-sm-b-90-f { + padding-bottom: 90px !important; } + .pd-sm-l-90-f { + padding-left: 90px !important; } + .pd-sm-95 { + padding: 95px; } + .pd-sm-95-f { + padding: 95px !important; } + .pd-sm-y-95 { + padding-top: 95px; + padding-bottom: 95px; } + .pd-sm-y-95-f { + padding-top: 95px !important; + padding-bottom: 95px !important; } + .pd-sm-x-95 { + padding-left: 95px; + padding-right: 95px; } + .pd-sm-x-95-f { + padding-left: 95px !important; + padding-right: 95px !important; } + .pd-sm-t-95 { + padding-top: 95px; } + .pd-sm-r-95 { + padding-right: 95px; } + .pd-sm-b-95 { + padding-bottom: 95px; } + .pd-sm-l-95 { + padding-left: 95px; } + .pd-sm-t-95-f { + padding-top: 95px !important; } + .pd-sm-r-95-f { + padding-right: 95px !important; } + .pd-sm-b-95-f { + padding-bottom: 95px !important; } + .pd-sm-l-95-f { + padding-left: 95px !important; } + .pd-sm-100 { + padding: 100px; } + .pd-sm-100-f { + padding: 100px !important; } + .pd-sm-y-100 { + padding-top: 100px; + padding-bottom: 100px; } + .pd-sm-y-100-f { + padding-top: 100px !important; + padding-bottom: 100px !important; } + .pd-sm-x-100 { + padding-left: 100px; + padding-right: 100px; } + .pd-sm-x-100-f { + padding-left: 100px !important; + padding-right: 100px !important; } + .pd-sm-t-100 { + padding-top: 100px; } + .pd-sm-r-100 { + padding-right: 100px; } + .pd-sm-b-100 { + padding-bottom: 100px; } + .pd-sm-l-100 { + padding-left: 100px; } + .pd-sm-t-100-f { + padding-top: 100px !important; } + .pd-sm-r-100-f { + padding-right: 100px !important; } + .pd-sm-b-100-f { + padding-bottom: 100px !important; } + .pd-sm-l-100-f { + padding-left: 100px !important; } + .pd-sm-110 { + padding: 110px; } + .pd-sm-110-f { + padding: 110px !important; } + .pd-sm-y-110 { + padding-top: 110px; + padding-bottom: 110px; } + .pd-sm-y-110-f { + padding-top: 110px !important; + padding-bottom: 110px !important; } + .pd-sm-x-110 { + padding-left: 110px; + padding-right: 110px; } + .pd-sm-x-110-f { + padding-left: 110px !important; + padding-right: 110px !important; } + .pd-sm-t-110 { + padding-top: 110px; } + .pd-sm-r-110 { + padding-right: 110px; } + .pd-sm-b-110 { + padding-bottom: 110px; } + .pd-sm-l-110 { + padding-left: 110px; } + .pd-sm-t-110-f { + padding-top: 110px !important; } + .pd-sm-r-110-f { + padding-right: 110px !important; } + .pd-sm-b-110-f { + padding-bottom: 110px !important; } + .pd-sm-l-110-f { + padding-left: 110px !important; } + .pd-sm-120 { + padding: 120px; } + .pd-sm-120-f { + padding: 120px !important; } + .pd-sm-y-120 { + padding-top: 120px; + padding-bottom: 120px; } + .pd-sm-y-120-f { + padding-top: 120px !important; + padding-bottom: 120px !important; } + .pd-sm-x-120 { + padding-left: 120px; + padding-right: 120px; } + .pd-sm-x-120-f { + padding-left: 120px !important; + padding-right: 120px !important; } + .pd-sm-t-120 { + padding-top: 120px; } + .pd-sm-r-120 { + padding-right: 120px; } + .pd-sm-b-120 { + padding-bottom: 120px; } + .pd-sm-l-120 { + padding-left: 120px; } + .pd-sm-t-120-f { + padding-top: 120px !important; } + .pd-sm-r-120-f { + padding-right: 120px !important; } + .pd-sm-b-120-f { + padding-bottom: 120px !important; } + .pd-sm-l-120-f { + padding-left: 120px !important; } + .pd-sm-130 { + padding: 130px; } + .pd-sm-130-f { + padding: 130px !important; } + .pd-sm-y-130 { + padding-top: 130px; + padding-bottom: 130px; } + .pd-sm-y-130-f { + padding-top: 130px !important; + padding-bottom: 130px !important; } + .pd-sm-x-130 { + padding-left: 130px; + padding-right: 130px; } + .pd-sm-x-130-f { + padding-left: 130px !important; + padding-right: 130px !important; } + .pd-sm-t-130 { + padding-top: 130px; } + .pd-sm-r-130 { + padding-right: 130px; } + .pd-sm-b-130 { + padding-bottom: 130px; } + .pd-sm-l-130 { + padding-left: 130px; } + .pd-sm-t-130-f { + padding-top: 130px !important; } + .pd-sm-r-130-f { + padding-right: 130px !important; } + .pd-sm-b-130-f { + padding-bottom: 130px !important; } + .pd-sm-l-130-f { + padding-left: 130px !important; } + .pd-sm-140 { + padding: 140px; } + .pd-sm-140-f { + padding: 140px !important; } + .pd-sm-y-140 { + padding-top: 140px; + padding-bottom: 140px; } + .pd-sm-y-140-f { + padding-top: 140px !important; + padding-bottom: 140px !important; } + .pd-sm-x-140 { + padding-left: 140px; + padding-right: 140px; } + .pd-sm-x-140-f { + padding-left: 140px !important; + padding-right: 140px !important; } + .pd-sm-t-140 { + padding-top: 140px; } + .pd-sm-r-140 { + padding-right: 140px; } + .pd-sm-b-140 { + padding-bottom: 140px; } + .pd-sm-l-140 { + padding-left: 140px; } + .pd-sm-t-140-f { + padding-top: 140px !important; } + .pd-sm-r-140-f { + padding-right: 140px !important; } + .pd-sm-b-140-f { + padding-bottom: 140px !important; } + .pd-sm-l-140-f { + padding-left: 140px !important; } + .pd-sm-150 { + padding: 150px; } + .pd-sm-150-f { + padding: 150px !important; } + .pd-sm-y-150 { + padding-top: 150px; + padding-bottom: 150px; } + .pd-sm-y-150-f { + padding-top: 150px !important; + padding-bottom: 150px !important; } + .pd-sm-x-150 { + padding-left: 150px; + padding-right: 150px; } + .pd-sm-x-150-f { + padding-left: 150px !important; + padding-right: 150px !important; } + .pd-sm-t-150 { + padding-top: 150px; } + .pd-sm-r-150 { + padding-right: 150px; } + .pd-sm-b-150 { + padding-bottom: 150px; } + .pd-sm-l-150 { + padding-left: 150px; } + .pd-sm-t-150-f { + padding-top: 150px !important; } + .pd-sm-r-150-f { + padding-right: 150px !important; } + .pd-sm-b-150-f { + padding-bottom: 150px !important; } + .pd-sm-l-150-f { + padding-left: 150px !important; } + .pd-sm-160 { + padding: 160px; } + .pd-sm-160-f { + padding: 160px !important; } + .pd-sm-y-160 { + padding-top: 160px; + padding-bottom: 160px; } + .pd-sm-y-160-f { + padding-top: 160px !important; + padding-bottom: 160px !important; } + .pd-sm-x-160 { + padding-left: 160px; + padding-right: 160px; } + .pd-sm-x-160-f { + padding-left: 160px !important; + padding-right: 160px !important; } + .pd-sm-t-160 { + padding-top: 160px; } + .pd-sm-r-160 { + padding-right: 160px; } + .pd-sm-b-160 { + padding-bottom: 160px; } + .pd-sm-l-160 { + padding-left: 160px; } + .pd-sm-t-160-f { + padding-top: 160px !important; } + .pd-sm-r-160-f { + padding-right: 160px !important; } + .pd-sm-b-160-f { + padding-bottom: 160px !important; } + .pd-sm-l-160-f { + padding-left: 160px !important; } + .pd-sm-170 { + padding: 170px; } + .pd-sm-170-f { + padding: 170px !important; } + .pd-sm-y-170 { + padding-top: 170px; + padding-bottom: 170px; } + .pd-sm-y-170-f { + padding-top: 170px !important; + padding-bottom: 170px !important; } + .pd-sm-x-170 { + padding-left: 170px; + padding-right: 170px; } + .pd-sm-x-170-f { + padding-left: 170px !important; + padding-right: 170px !important; } + .pd-sm-t-170 { + padding-top: 170px; } + .pd-sm-r-170 { + padding-right: 170px; } + .pd-sm-b-170 { + padding-bottom: 170px; } + .pd-sm-l-170 { + padding-left: 170px; } + .pd-sm-t-170-f { + padding-top: 170px !important; } + .pd-sm-r-170-f { + padding-right: 170px !important; } + .pd-sm-b-170-f { + padding-bottom: 170px !important; } + .pd-sm-l-170-f { + padding-left: 170px !important; } + .pd-sm-180 { + padding: 180px; } + .pd-sm-180-f { + padding: 180px !important; } + .pd-sm-y-180 { + padding-top: 180px; + padding-bottom: 180px; } + .pd-sm-y-180-f { + padding-top: 180px !important; + padding-bottom: 180px !important; } + .pd-sm-x-180 { + padding-left: 180px; + padding-right: 180px; } + .pd-sm-x-180-f { + padding-left: 180px !important; + padding-right: 180px !important; } + .pd-sm-t-180 { + padding-top: 180px; } + .pd-sm-r-180 { + padding-right: 180px; } + .pd-sm-b-180 { + padding-bottom: 180px; } + .pd-sm-l-180 { + padding-left: 180px; } + .pd-sm-t-180-f { + padding-top: 180px !important; } + .pd-sm-r-180-f { + padding-right: 180px !important; } + .pd-sm-b-180-f { + padding-bottom: 180px !important; } + .pd-sm-l-180-f { + padding-left: 180px !important; } + .pd-sm-190 { + padding: 190px; } + .pd-sm-190-f { + padding: 190px !important; } + .pd-sm-y-190 { + padding-top: 190px; + padding-bottom: 190px; } + .pd-sm-y-190-f { + padding-top: 190px !important; + padding-bottom: 190px !important; } + .pd-sm-x-190 { + padding-left: 190px; + padding-right: 190px; } + .pd-sm-x-190-f { + padding-left: 190px !important; + padding-right: 190px !important; } + .pd-sm-t-190 { + padding-top: 190px; } + .pd-sm-r-190 { + padding-right: 190px; } + .pd-sm-b-190 { + padding-bottom: 190px; } + .pd-sm-l-190 { + padding-left: 190px; } + .pd-sm-t-190-f { + padding-top: 190px !important; } + .pd-sm-r-190-f { + padding-right: 190px !important; } + .pd-sm-b-190-f { + padding-bottom: 190px !important; } + .pd-sm-l-190-f { + padding-left: 190px !important; } + .pd-sm-200 { + padding: 200px; } + .pd-sm-200-f { + padding: 200px !important; } + .pd-sm-y-200 { + padding-top: 200px; + padding-bottom: 200px; } + .pd-sm-y-200-f { + padding-top: 200px !important; + padding-bottom: 200px !important; } + .pd-sm-x-200 { + padding-left: 200px; + padding-right: 200px; } + .pd-sm-x-200-f { + padding-left: 200px !important; + padding-right: 200px !important; } + .pd-sm-t-200 { + padding-top: 200px; } + .pd-sm-r-200 { + padding-right: 200px; } + .pd-sm-b-200 { + padding-bottom: 200px; } + .pd-sm-l-200 { + padding-left: 200px; } + .pd-sm-t-200-f { + padding-top: 200px !important; } + .pd-sm-r-200-f { + padding-right: 200px !important; } + .pd-sm-b-200-f { + padding-bottom: 200px !important; } + .pd-sm-l-200-f { + padding-left: 200px !important; } } + +@media (min-width: 768px) { + .pd-md-0 { + padding: 0px; } + .pd-md-0-f { + padding: 0px !important; } + .pd-md-y-0 { + padding-top: 0px; + padding-bottom: 0px; } + .pd-md-y-0-f { + padding-top: 0px !important; + padding-bottom: 0px !important; } + .pd-md-x-0 { + padding-left: 0px; + padding-right: 0px; } + .pd-md-x-0-f { + padding-left: 0px !important; + padding-right: 0px !important; } + .pd-md-t-0 { + padding-top: 0px; } + .pd-md-r-0 { + padding-right: 0px; } + .pd-md-b-0 { + padding-bottom: 0px; } + .pd-md-l-0 { + padding-left: 0px; } + .pd-md-t-0-f { + padding-top: 0px !important; } + .pd-md-r-0-f { + padding-right: 0px !important; } + .pd-md-b-0-f { + padding-bottom: 0px !important; } + .pd-md-l-0-f { + padding-left: 0px !important; } + .pd-md-1 { + padding: 1px; } + .pd-md-1-f { + padding: 1px !important; } + .pd-md-y-1 { + padding-top: 1px; + padding-bottom: 1px; } + .pd-md-y-1-f { + padding-top: 1px !important; + padding-bottom: 1px !important; } + .pd-md-x-1 { + padding-left: 1px; + padding-right: 1px; } + .pd-md-x-1-f { + padding-left: 1px !important; + padding-right: 1px !important; } + .pd-md-t-1 { + padding-top: 1px; } + .pd-md-r-1 { + padding-right: 1px; } + .pd-md-b-1 { + padding-bottom: 1px; } + .pd-md-l-1 { + padding-left: 1px; } + .pd-md-t-1-f { + padding-top: 1px !important; } + .pd-md-r-1-f { + padding-right: 1px !important; } + .pd-md-b-1-f { + padding-bottom: 1px !important; } + .pd-md-l-1-f { + padding-left: 1px !important; } + .pd-md-2 { + padding: 2px; } + .pd-md-2-f { + padding: 2px !important; } + .pd-md-y-2 { + padding-top: 2px; + padding-bottom: 2px; } + .pd-md-y-2-f { + padding-top: 2px !important; + padding-bottom: 2px !important; } + .pd-md-x-2 { + padding-left: 2px; + padding-right: 2px; } + .pd-md-x-2-f { + padding-left: 2px !important; + padding-right: 2px !important; } + .pd-md-t-2 { + padding-top: 2px; } + .pd-md-r-2 { + padding-right: 2px; } + .pd-md-b-2 { + padding-bottom: 2px; } + .pd-md-l-2 { + padding-left: 2px; } + .pd-md-t-2-f { + padding-top: 2px !important; } + .pd-md-r-2-f { + padding-right: 2px !important; } + .pd-md-b-2-f { + padding-bottom: 2px !important; } + .pd-md-l-2-f { + padding-left: 2px !important; } + .pd-md-3 { + padding: 3px; } + .pd-md-3-f { + padding: 3px !important; } + .pd-md-y-3 { + padding-top: 3px; + padding-bottom: 3px; } + .pd-md-y-3-f { + padding-top: 3px !important; + padding-bottom: 3px !important; } + .pd-md-x-3 { + padding-left: 3px; + padding-right: 3px; } + .pd-md-x-3-f { + padding-left: 3px !important; + padding-right: 3px !important; } + .pd-md-t-3 { + padding-top: 3px; } + .pd-md-r-3 { + padding-right: 3px; } + .pd-md-b-3 { + padding-bottom: 3px; } + .pd-md-l-3 { + padding-left: 3px; } + .pd-md-t-3-f { + padding-top: 3px !important; } + .pd-md-r-3-f { + padding-right: 3px !important; } + .pd-md-b-3-f { + padding-bottom: 3px !important; } + .pd-md-l-3-f { + padding-left: 3px !important; } + .pd-md-4 { + padding: 4px; } + .pd-md-4-f { + padding: 4px !important; } + .pd-md-y-4 { + padding-top: 4px; + padding-bottom: 4px; } + .pd-md-y-4-f { + padding-top: 4px !important; + padding-bottom: 4px !important; } + .pd-md-x-4 { + padding-left: 4px; + padding-right: 4px; } + .pd-md-x-4-f { + padding-left: 4px !important; + padding-right: 4px !important; } + .pd-md-t-4 { + padding-top: 4px; } + .pd-md-r-4 { + padding-right: 4px; } + .pd-md-b-4 { + padding-bottom: 4px; } + .pd-md-l-4 { + padding-left: 4px; } + .pd-md-t-4-f { + padding-top: 4px !important; } + .pd-md-r-4-f { + padding-right: 4px !important; } + .pd-md-b-4-f { + padding-bottom: 4px !important; } + .pd-md-l-4-f { + padding-left: 4px !important; } + .pd-md-5 { + padding: 5px; } + .pd-md-5-f { + padding: 5px !important; } + .pd-md-y-5 { + padding-top: 5px; + padding-bottom: 5px; } + .pd-md-y-5-f { + padding-top: 5px !important; + padding-bottom: 5px !important; } + .pd-md-x-5 { + padding-left: 5px; + padding-right: 5px; } + .pd-md-x-5-f { + padding-left: 5px !important; + padding-right: 5px !important; } + .pd-md-t-5 { + padding-top: 5px; } + .pd-md-r-5 { + padding-right: 5px; } + .pd-md-b-5 { + padding-bottom: 5px; } + .pd-md-l-5 { + padding-left: 5px; } + .pd-md-t-5-f { + padding-top: 5px !important; } + .pd-md-r-5-f { + padding-right: 5px !important; } + .pd-md-b-5-f { + padding-bottom: 5px !important; } + .pd-md-l-5-f { + padding-left: 5px !important; } + .pd-md-6 { + padding: 6px; } + .pd-md-6-f { + padding: 6px !important; } + .pd-md-y-6 { + padding-top: 6px; + padding-bottom: 6px; } + .pd-md-y-6-f { + padding-top: 6px !important; + padding-bottom: 6px !important; } + .pd-md-x-6 { + padding-left: 6px; + padding-right: 6px; } + .pd-md-x-6-f { + padding-left: 6px !important; + padding-right: 6px !important; } + .pd-md-t-6 { + padding-top: 6px; } + .pd-md-r-6 { + padding-right: 6px; } + .pd-md-b-6 { + padding-bottom: 6px; } + .pd-md-l-6 { + padding-left: 6px; } + .pd-md-t-6-f { + padding-top: 6px !important; } + .pd-md-r-6-f { + padding-right: 6px !important; } + .pd-md-b-6-f { + padding-bottom: 6px !important; } + .pd-md-l-6-f { + padding-left: 6px !important; } + .pd-md-7 { + padding: 7px; } + .pd-md-7-f { + padding: 7px !important; } + .pd-md-y-7 { + padding-top: 7px; + padding-bottom: 7px; } + .pd-md-y-7-f { + padding-top: 7px !important; + padding-bottom: 7px !important; } + .pd-md-x-7 { + padding-left: 7px; + padding-right: 7px; } + .pd-md-x-7-f { + padding-left: 7px !important; + padding-right: 7px !important; } + .pd-md-t-7 { + padding-top: 7px; } + .pd-md-r-7 { + padding-right: 7px; } + .pd-md-b-7 { + padding-bottom: 7px; } + .pd-md-l-7 { + padding-left: 7px; } + .pd-md-t-7-f { + padding-top: 7px !important; } + .pd-md-r-7-f { + padding-right: 7px !important; } + .pd-md-b-7-f { + padding-bottom: 7px !important; } + .pd-md-l-7-f { + padding-left: 7px !important; } + .pd-md-8 { + padding: 8px; } + .pd-md-8-f { + padding: 8px !important; } + .pd-md-y-8 { + padding-top: 8px; + padding-bottom: 8px; } + .pd-md-y-8-f { + padding-top: 8px !important; + padding-bottom: 8px !important; } + .pd-md-x-8 { + padding-left: 8px; + padding-right: 8px; } + .pd-md-x-8-f { + padding-left: 8px !important; + padding-right: 8px !important; } + .pd-md-t-8 { + padding-top: 8px; } + .pd-md-r-8 { + padding-right: 8px; } + .pd-md-b-8 { + padding-bottom: 8px; } + .pd-md-l-8 { + padding-left: 8px; } + .pd-md-t-8-f { + padding-top: 8px !important; } + .pd-md-r-8-f { + padding-right: 8px !important; } + .pd-md-b-8-f { + padding-bottom: 8px !important; } + .pd-md-l-8-f { + padding-left: 8px !important; } + .pd-md-9 { + padding: 9px; } + .pd-md-9-f { + padding: 9px !important; } + .pd-md-y-9 { + padding-top: 9px; + padding-bottom: 9px; } + .pd-md-y-9-f { + padding-top: 9px !important; + padding-bottom: 9px !important; } + .pd-md-x-9 { + padding-left: 9px; + padding-right: 9px; } + .pd-md-x-9-f { + padding-left: 9px !important; + padding-right: 9px !important; } + .pd-md-t-9 { + padding-top: 9px; } + .pd-md-r-9 { + padding-right: 9px; } + .pd-md-b-9 { + padding-bottom: 9px; } + .pd-md-l-9 { + padding-left: 9px; } + .pd-md-t-9-f { + padding-top: 9px !important; } + .pd-md-r-9-f { + padding-right: 9px !important; } + .pd-md-b-9-f { + padding-bottom: 9px !important; } + .pd-md-l-9-f { + padding-left: 9px !important; } + .pd-md-10 { + padding: 10px; } + .pd-md-10-f { + padding: 10px !important; } + .pd-md-y-10 { + padding-top: 10px; + padding-bottom: 10px; } + .pd-md-y-10-f { + padding-top: 10px !important; + padding-bottom: 10px !important; } + .pd-md-x-10 { + padding-left: 10px; + padding-right: 10px; } + .pd-md-x-10-f { + padding-left: 10px !important; + padding-right: 10px !important; } + .pd-md-t-10 { + padding-top: 10px; } + .pd-md-r-10 { + padding-right: 10px; } + .pd-md-b-10 { + padding-bottom: 10px; } + .pd-md-l-10 { + padding-left: 10px; } + .pd-md-t-10-f { + padding-top: 10px !important; } + .pd-md-r-10-f { + padding-right: 10px !important; } + .pd-md-b-10-f { + padding-bottom: 10px !important; } + .pd-md-l-10-f { + padding-left: 10px !important; } + .pd-md-15 { + padding: 15px; } + .pd-md-15-f { + padding: 15px !important; } + .pd-md-y-15 { + padding-top: 15px; + padding-bottom: 15px; } + .pd-md-y-15-f { + padding-top: 15px !important; + padding-bottom: 15px !important; } + .pd-md-x-15 { + padding-left: 15px; + padding-right: 15px; } + .pd-md-x-15-f { + padding-left: 15px !important; + padding-right: 15px !important; } + .pd-md-t-15 { + padding-top: 15px; } + .pd-md-r-15 { + padding-right: 15px; } + .pd-md-b-15 { + padding-bottom: 15px; } + .pd-md-l-15 { + padding-left: 15px; } + .pd-md-t-15-f { + padding-top: 15px !important; } + .pd-md-r-15-f { + padding-right: 15px !important; } + .pd-md-b-15-f { + padding-bottom: 15px !important; } + .pd-md-l-15-f { + padding-left: 15px !important; } + .pd-md-20 { + padding: 20px; } + .pd-md-20-f { + padding: 20px !important; } + .pd-md-y-20 { + padding-top: 20px; + padding-bottom: 20px; } + .pd-md-y-20-f { + padding-top: 20px !important; + padding-bottom: 20px !important; } + .pd-md-x-20 { + padding-left: 20px; + padding-right: 20px; } + .pd-md-x-20-f { + padding-left: 20px !important; + padding-right: 20px !important; } + .pd-md-t-20 { + padding-top: 20px; } + .pd-md-r-20 { + padding-right: 20px; } + .pd-md-b-20 { + padding-bottom: 20px; } + .pd-md-l-20 { + padding-left: 20px; } + .pd-md-t-20-f { + padding-top: 20px !important; } + .pd-md-r-20-f { + padding-right: 20px !important; } + .pd-md-b-20-f { + padding-bottom: 20px !important; } + .pd-md-l-20-f { + padding-left: 20px !important; } + .pd-md-25 { + padding: 25px; } + .pd-md-25-f { + padding: 25px !important; } + .pd-md-y-25 { + padding-top: 25px; + padding-bottom: 25px; } + .pd-md-y-25-f { + padding-top: 25px !important; + padding-bottom: 25px !important; } + .pd-md-x-25 { + padding-left: 25px; + padding-right: 25px; } + .pd-md-x-25-f { + padding-left: 25px !important; + padding-right: 25px !important; } + .pd-md-t-25 { + padding-top: 25px; } + .pd-md-r-25 { + padding-right: 25px; } + .pd-md-b-25 { + padding-bottom: 25px; } + .pd-md-l-25 { + padding-left: 25px; } + .pd-md-t-25-f { + padding-top: 25px !important; } + .pd-md-r-25-f { + padding-right: 25px !important; } + .pd-md-b-25-f { + padding-bottom: 25px !important; } + .pd-md-l-25-f { + padding-left: 25px !important; } + .pd-md-30 { + padding: 30px; } + .pd-md-30-f { + padding: 30px !important; } + .pd-md-y-30 { + padding-top: 30px; + padding-bottom: 30px; } + .pd-md-y-30-f { + padding-top: 30px !important; + padding-bottom: 30px !important; } + .pd-md-x-30 { + padding-left: 30px; + padding-right: 30px; } + .pd-md-x-30-f { + padding-left: 30px !important; + padding-right: 30px !important; } + .pd-md-t-30 { + padding-top: 30px; } + .pd-md-r-30 { + padding-right: 30px; } + .pd-md-b-30 { + padding-bottom: 30px; } + .pd-md-l-30 { + padding-left: 30px; } + .pd-md-t-30-f { + padding-top: 30px !important; } + .pd-md-r-30-f { + padding-right: 30px !important; } + .pd-md-b-30-f { + padding-bottom: 30px !important; } + .pd-md-l-30-f { + padding-left: 30px !important; } + .pd-md-35 { + padding: 35px; } + .pd-md-35-f { + padding: 35px !important; } + .pd-md-y-35 { + padding-top: 35px; + padding-bottom: 35px; } + .pd-md-y-35-f { + padding-top: 35px !important; + padding-bottom: 35px !important; } + .pd-md-x-35 { + padding-left: 35px; + padding-right: 35px; } + .pd-md-x-35-f { + padding-left: 35px !important; + padding-right: 35px !important; } + .pd-md-t-35 { + padding-top: 35px; } + .pd-md-r-35 { + padding-right: 35px; } + .pd-md-b-35 { + padding-bottom: 35px; } + .pd-md-l-35 { + padding-left: 35px; } + .pd-md-t-35-f { + padding-top: 35px !important; } + .pd-md-r-35-f { + padding-right: 35px !important; } + .pd-md-b-35-f { + padding-bottom: 35px !important; } + .pd-md-l-35-f { + padding-left: 35px !important; } + .pd-md-40 { + padding: 40px; } + .pd-md-40-f { + padding: 40px !important; } + .pd-md-y-40 { + padding-top: 40px; + padding-bottom: 40px; } + .pd-md-y-40-f { + padding-top: 40px !important; + padding-bottom: 40px !important; } + .pd-md-x-40 { + padding-left: 40px; + padding-right: 40px; } + .pd-md-x-40-f { + padding-left: 40px !important; + padding-right: 40px !important; } + .pd-md-t-40 { + padding-top: 40px; } + .pd-md-r-40 { + padding-right: 40px; } + .pd-md-b-40 { + padding-bottom: 40px; } + .pd-md-l-40 { + padding-left: 40px; } + .pd-md-t-40-f { + padding-top: 40px !important; } + .pd-md-r-40-f { + padding-right: 40px !important; } + .pd-md-b-40-f { + padding-bottom: 40px !important; } + .pd-md-l-40-f { + padding-left: 40px !important; } + .pd-md-45 { + padding: 45px; } + .pd-md-45-f { + padding: 45px !important; } + .pd-md-y-45 { + padding-top: 45px; + padding-bottom: 45px; } + .pd-md-y-45-f { + padding-top: 45px !important; + padding-bottom: 45px !important; } + .pd-md-x-45 { + padding-left: 45px; + padding-right: 45px; } + .pd-md-x-45-f { + padding-left: 45px !important; + padding-right: 45px !important; } + .pd-md-t-45 { + padding-top: 45px; } + .pd-md-r-45 { + padding-right: 45px; } + .pd-md-b-45 { + padding-bottom: 45px; } + .pd-md-l-45 { + padding-left: 45px; } + .pd-md-t-45-f { + padding-top: 45px !important; } + .pd-md-r-45-f { + padding-right: 45px !important; } + .pd-md-b-45-f { + padding-bottom: 45px !important; } + .pd-md-l-45-f { + padding-left: 45px !important; } + .pd-md-50 { + padding: 50px; } + .pd-md-50-f { + padding: 50px !important; } + .pd-md-y-50 { + padding-top: 50px; + padding-bottom: 50px; } + .pd-md-y-50-f { + padding-top: 50px !important; + padding-bottom: 50px !important; } + .pd-md-x-50 { + padding-left: 50px; + padding-right: 50px; } + .pd-md-x-50-f { + padding-left: 50px !important; + padding-right: 50px !important; } + .pd-md-t-50 { + padding-top: 50px; } + .pd-md-r-50 { + padding-right: 50px; } + .pd-md-b-50 { + padding-bottom: 50px; } + .pd-md-l-50 { + padding-left: 50px; } + .pd-md-t-50-f { + padding-top: 50px !important; } + .pd-md-r-50-f { + padding-right: 50px !important; } + .pd-md-b-50-f { + padding-bottom: 50px !important; } + .pd-md-l-50-f { + padding-left: 50px !important; } + .pd-md-55 { + padding: 55px; } + .pd-md-55-f { + padding: 55px !important; } + .pd-md-y-55 { + padding-top: 55px; + padding-bottom: 55px; } + .pd-md-y-55-f { + padding-top: 55px !important; + padding-bottom: 55px !important; } + .pd-md-x-55 { + padding-left: 55px; + padding-right: 55px; } + .pd-md-x-55-f { + padding-left: 55px !important; + padding-right: 55px !important; } + .pd-md-t-55 { + padding-top: 55px; } + .pd-md-r-55 { + padding-right: 55px; } + .pd-md-b-55 { + padding-bottom: 55px; } + .pd-md-l-55 { + padding-left: 55px; } + .pd-md-t-55-f { + padding-top: 55px !important; } + .pd-md-r-55-f { + padding-right: 55px !important; } + .pd-md-b-55-f { + padding-bottom: 55px !important; } + .pd-md-l-55-f { + padding-left: 55px !important; } + .pd-md-60 { + padding: 60px; } + .pd-md-60-f { + padding: 60px !important; } + .pd-md-y-60 { + padding-top: 60px; + padding-bottom: 60px; } + .pd-md-y-60-f { + padding-top: 60px !important; + padding-bottom: 60px !important; } + .pd-md-x-60 { + padding-left: 60px; + padding-right: 60px; } + .pd-md-x-60-f { + padding-left: 60px !important; + padding-right: 60px !important; } + .pd-md-t-60 { + padding-top: 60px; } + .pd-md-r-60 { + padding-right: 60px; } + .pd-md-b-60 { + padding-bottom: 60px; } + .pd-md-l-60 { + padding-left: 60px; } + .pd-md-t-60-f { + padding-top: 60px !important; } + .pd-md-r-60-f { + padding-right: 60px !important; } + .pd-md-b-60-f { + padding-bottom: 60px !important; } + .pd-md-l-60-f { + padding-left: 60px !important; } + .pd-md-65 { + padding: 65px; } + .pd-md-65-f { + padding: 65px !important; } + .pd-md-y-65 { + padding-top: 65px; + padding-bottom: 65px; } + .pd-md-y-65-f { + padding-top: 65px !important; + padding-bottom: 65px !important; } + .pd-md-x-65 { + padding-left: 65px; + padding-right: 65px; } + .pd-md-x-65-f { + padding-left: 65px !important; + padding-right: 65px !important; } + .pd-md-t-65 { + padding-top: 65px; } + .pd-md-r-65 { + padding-right: 65px; } + .pd-md-b-65 { + padding-bottom: 65px; } + .pd-md-l-65 { + padding-left: 65px; } + .pd-md-t-65-f { + padding-top: 65px !important; } + .pd-md-r-65-f { + padding-right: 65px !important; } + .pd-md-b-65-f { + padding-bottom: 65px !important; } + .pd-md-l-65-f { + padding-left: 65px !important; } + .pd-md-70 { + padding: 70px; } + .pd-md-70-f { + padding: 70px !important; } + .pd-md-y-70 { + padding-top: 70px; + padding-bottom: 70px; } + .pd-md-y-70-f { + padding-top: 70px !important; + padding-bottom: 70px !important; } + .pd-md-x-70 { + padding-left: 70px; + padding-right: 70px; } + .pd-md-x-70-f { + padding-left: 70px !important; + padding-right: 70px !important; } + .pd-md-t-70 { + padding-top: 70px; } + .pd-md-r-70 { + padding-right: 70px; } + .pd-md-b-70 { + padding-bottom: 70px; } + .pd-md-l-70 { + padding-left: 70px; } + .pd-md-t-70-f { + padding-top: 70px !important; } + .pd-md-r-70-f { + padding-right: 70px !important; } + .pd-md-b-70-f { + padding-bottom: 70px !important; } + .pd-md-l-70-f { + padding-left: 70px !important; } + .pd-md-75 { + padding: 75px; } + .pd-md-75-f { + padding: 75px !important; } + .pd-md-y-75 { + padding-top: 75px; + padding-bottom: 75px; } + .pd-md-y-75-f { + padding-top: 75px !important; + padding-bottom: 75px !important; } + .pd-md-x-75 { + padding-left: 75px; + padding-right: 75px; } + .pd-md-x-75-f { + padding-left: 75px !important; + padding-right: 75px !important; } + .pd-md-t-75 { + padding-top: 75px; } + .pd-md-r-75 { + padding-right: 75px; } + .pd-md-b-75 { + padding-bottom: 75px; } + .pd-md-l-75 { + padding-left: 75px; } + .pd-md-t-75-f { + padding-top: 75px !important; } + .pd-md-r-75-f { + padding-right: 75px !important; } + .pd-md-b-75-f { + padding-bottom: 75px !important; } + .pd-md-l-75-f { + padding-left: 75px !important; } + .pd-md-80 { + padding: 80px; } + .pd-md-80-f { + padding: 80px !important; } + .pd-md-y-80 { + padding-top: 80px; + padding-bottom: 80px; } + .pd-md-y-80-f { + padding-top: 80px !important; + padding-bottom: 80px !important; } + .pd-md-x-80 { + padding-left: 80px; + padding-right: 80px; } + .pd-md-x-80-f { + padding-left: 80px !important; + padding-right: 80px !important; } + .pd-md-t-80 { + padding-top: 80px; } + .pd-md-r-80 { + padding-right: 80px; } + .pd-md-b-80 { + padding-bottom: 80px; } + .pd-md-l-80 { + padding-left: 80px; } + .pd-md-t-80-f { + padding-top: 80px !important; } + .pd-md-r-80-f { + padding-right: 80px !important; } + .pd-md-b-80-f { + padding-bottom: 80px !important; } + .pd-md-l-80-f { + padding-left: 80px !important; } + .pd-md-85 { + padding: 85px; } + .pd-md-85-f { + padding: 85px !important; } + .pd-md-y-85 { + padding-top: 85px; + padding-bottom: 85px; } + .pd-md-y-85-f { + padding-top: 85px !important; + padding-bottom: 85px !important; } + .pd-md-x-85 { + padding-left: 85px; + padding-right: 85px; } + .pd-md-x-85-f { + padding-left: 85px !important; + padding-right: 85px !important; } + .pd-md-t-85 { + padding-top: 85px; } + .pd-md-r-85 { + padding-right: 85px; } + .pd-md-b-85 { + padding-bottom: 85px; } + .pd-md-l-85 { + padding-left: 85px; } + .pd-md-t-85-f { + padding-top: 85px !important; } + .pd-md-r-85-f { + padding-right: 85px !important; } + .pd-md-b-85-f { + padding-bottom: 85px !important; } + .pd-md-l-85-f { + padding-left: 85px !important; } + .pd-md-90 { + padding: 90px; } + .pd-md-90-f { + padding: 90px !important; } + .pd-md-y-90 { + padding-top: 90px; + padding-bottom: 90px; } + .pd-md-y-90-f { + padding-top: 90px !important; + padding-bottom: 90px !important; } + .pd-md-x-90 { + padding-left: 90px; + padding-right: 90px; } + .pd-md-x-90-f { + padding-left: 90px !important; + padding-right: 90px !important; } + .pd-md-t-90 { + padding-top: 90px; } + .pd-md-r-90 { + padding-right: 90px; } + .pd-md-b-90 { + padding-bottom: 90px; } + .pd-md-l-90 { + padding-left: 90px; } + .pd-md-t-90-f { + padding-top: 90px !important; } + .pd-md-r-90-f { + padding-right: 90px !important; } + .pd-md-b-90-f { + padding-bottom: 90px !important; } + .pd-md-l-90-f { + padding-left: 90px !important; } + .pd-md-95 { + padding: 95px; } + .pd-md-95-f { + padding: 95px !important; } + .pd-md-y-95 { + padding-top: 95px; + padding-bottom: 95px; } + .pd-md-y-95-f { + padding-top: 95px !important; + padding-bottom: 95px !important; } + .pd-md-x-95 { + padding-left: 95px; + padding-right: 95px; } + .pd-md-x-95-f { + padding-left: 95px !important; + padding-right: 95px !important; } + .pd-md-t-95 { + padding-top: 95px; } + .pd-md-r-95 { + padding-right: 95px; } + .pd-md-b-95 { + padding-bottom: 95px; } + .pd-md-l-95 { + padding-left: 95px; } + .pd-md-t-95-f { + padding-top: 95px !important; } + .pd-md-r-95-f { + padding-right: 95px !important; } + .pd-md-b-95-f { + padding-bottom: 95px !important; } + .pd-md-l-95-f { + padding-left: 95px !important; } + .pd-md-100 { + padding: 100px; } + .pd-md-100-f { + padding: 100px !important; } + .pd-md-y-100 { + padding-top: 100px; + padding-bottom: 100px; } + .pd-md-y-100-f { + padding-top: 100px !important; + padding-bottom: 100px !important; } + .pd-md-x-100 { + padding-left: 100px; + padding-right: 100px; } + .pd-md-x-100-f { + padding-left: 100px !important; + padding-right: 100px !important; } + .pd-md-t-100 { + padding-top: 100px; } + .pd-md-r-100 { + padding-right: 100px; } + .pd-md-b-100 { + padding-bottom: 100px; } + .pd-md-l-100 { + padding-left: 100px; } + .pd-md-t-100-f { + padding-top: 100px !important; } + .pd-md-r-100-f { + padding-right: 100px !important; } + .pd-md-b-100-f { + padding-bottom: 100px !important; } + .pd-md-l-100-f { + padding-left: 100px !important; } + .pd-md-110 { + padding: 110px; } + .pd-md-110-f { + padding: 110px !important; } + .pd-md-y-110 { + padding-top: 110px; + padding-bottom: 110px; } + .pd-md-y-110-f { + padding-top: 110px !important; + padding-bottom: 110px !important; } + .pd-md-x-110 { + padding-left: 110px; + padding-right: 110px; } + .pd-md-x-110-f { + padding-left: 110px !important; + padding-right: 110px !important; } + .pd-md-t-110 { + padding-top: 110px; } + .pd-md-r-110 { + padding-right: 110px; } + .pd-md-b-110 { + padding-bottom: 110px; } + .pd-md-l-110 { + padding-left: 110px; } + .pd-md-t-110-f { + padding-top: 110px !important; } + .pd-md-r-110-f { + padding-right: 110px !important; } + .pd-md-b-110-f { + padding-bottom: 110px !important; } + .pd-md-l-110-f { + padding-left: 110px !important; } + .pd-md-120 { + padding: 120px; } + .pd-md-120-f { + padding: 120px !important; } + .pd-md-y-120 { + padding-top: 120px; + padding-bottom: 120px; } + .pd-md-y-120-f { + padding-top: 120px !important; + padding-bottom: 120px !important; } + .pd-md-x-120 { + padding-left: 120px; + padding-right: 120px; } + .pd-md-x-120-f { + padding-left: 120px !important; + padding-right: 120px !important; } + .pd-md-t-120 { + padding-top: 120px; } + .pd-md-r-120 { + padding-right: 120px; } + .pd-md-b-120 { + padding-bottom: 120px; } + .pd-md-l-120 { + padding-left: 120px; } + .pd-md-t-120-f { + padding-top: 120px !important; } + .pd-md-r-120-f { + padding-right: 120px !important; } + .pd-md-b-120-f { + padding-bottom: 120px !important; } + .pd-md-l-120-f { + padding-left: 120px !important; } + .pd-md-130 { + padding: 130px; } + .pd-md-130-f { + padding: 130px !important; } + .pd-md-y-130 { + padding-top: 130px; + padding-bottom: 130px; } + .pd-md-y-130-f { + padding-top: 130px !important; + padding-bottom: 130px !important; } + .pd-md-x-130 { + padding-left: 130px; + padding-right: 130px; } + .pd-md-x-130-f { + padding-left: 130px !important; + padding-right: 130px !important; } + .pd-md-t-130 { + padding-top: 130px; } + .pd-md-r-130 { + padding-right: 130px; } + .pd-md-b-130 { + padding-bottom: 130px; } + .pd-md-l-130 { + padding-left: 130px; } + .pd-md-t-130-f { + padding-top: 130px !important; } + .pd-md-r-130-f { + padding-right: 130px !important; } + .pd-md-b-130-f { + padding-bottom: 130px !important; } + .pd-md-l-130-f { + padding-left: 130px !important; } + .pd-md-140 { + padding: 140px; } + .pd-md-140-f { + padding: 140px !important; } + .pd-md-y-140 { + padding-top: 140px; + padding-bottom: 140px; } + .pd-md-y-140-f { + padding-top: 140px !important; + padding-bottom: 140px !important; } + .pd-md-x-140 { + padding-left: 140px; + padding-right: 140px; } + .pd-md-x-140-f { + padding-left: 140px !important; + padding-right: 140px !important; } + .pd-md-t-140 { + padding-top: 140px; } + .pd-md-r-140 { + padding-right: 140px; } + .pd-md-b-140 { + padding-bottom: 140px; } + .pd-md-l-140 { + padding-left: 140px; } + .pd-md-t-140-f { + padding-top: 140px !important; } + .pd-md-r-140-f { + padding-right: 140px !important; } + .pd-md-b-140-f { + padding-bottom: 140px !important; } + .pd-md-l-140-f { + padding-left: 140px !important; } + .pd-md-150 { + padding: 150px; } + .pd-md-150-f { + padding: 150px !important; } + .pd-md-y-150 { + padding-top: 150px; + padding-bottom: 150px; } + .pd-md-y-150-f { + padding-top: 150px !important; + padding-bottom: 150px !important; } + .pd-md-x-150 { + padding-left: 150px; + padding-right: 150px; } + .pd-md-x-150-f { + padding-left: 150px !important; + padding-right: 150px !important; } + .pd-md-t-150 { + padding-top: 150px; } + .pd-md-r-150 { + padding-right: 150px; } + .pd-md-b-150 { + padding-bottom: 150px; } + .pd-md-l-150 { + padding-left: 150px; } + .pd-md-t-150-f { + padding-top: 150px !important; } + .pd-md-r-150-f { + padding-right: 150px !important; } + .pd-md-b-150-f { + padding-bottom: 150px !important; } + .pd-md-l-150-f { + padding-left: 150px !important; } + .pd-md-160 { + padding: 160px; } + .pd-md-160-f { + padding: 160px !important; } + .pd-md-y-160 { + padding-top: 160px; + padding-bottom: 160px; } + .pd-md-y-160-f { + padding-top: 160px !important; + padding-bottom: 160px !important; } + .pd-md-x-160 { + padding-left: 160px; + padding-right: 160px; } + .pd-md-x-160-f { + padding-left: 160px !important; + padding-right: 160px !important; } + .pd-md-t-160 { + padding-top: 160px; } + .pd-md-r-160 { + padding-right: 160px; } + .pd-md-b-160 { + padding-bottom: 160px; } + .pd-md-l-160 { + padding-left: 160px; } + .pd-md-t-160-f { + padding-top: 160px !important; } + .pd-md-r-160-f { + padding-right: 160px !important; } + .pd-md-b-160-f { + padding-bottom: 160px !important; } + .pd-md-l-160-f { + padding-left: 160px !important; } + .pd-md-170 { + padding: 170px; } + .pd-md-170-f { + padding: 170px !important; } + .pd-md-y-170 { + padding-top: 170px; + padding-bottom: 170px; } + .pd-md-y-170-f { + padding-top: 170px !important; + padding-bottom: 170px !important; } + .pd-md-x-170 { + padding-left: 170px; + padding-right: 170px; } + .pd-md-x-170-f { + padding-left: 170px !important; + padding-right: 170px !important; } + .pd-md-t-170 { + padding-top: 170px; } + .pd-md-r-170 { + padding-right: 170px; } + .pd-md-b-170 { + padding-bottom: 170px; } + .pd-md-l-170 { + padding-left: 170px; } + .pd-md-t-170-f { + padding-top: 170px !important; } + .pd-md-r-170-f { + padding-right: 170px !important; } + .pd-md-b-170-f { + padding-bottom: 170px !important; } + .pd-md-l-170-f { + padding-left: 170px !important; } + .pd-md-180 { + padding: 180px; } + .pd-md-180-f { + padding: 180px !important; } + .pd-md-y-180 { + padding-top: 180px; + padding-bottom: 180px; } + .pd-md-y-180-f { + padding-top: 180px !important; + padding-bottom: 180px !important; } + .pd-md-x-180 { + padding-left: 180px; + padding-right: 180px; } + .pd-md-x-180-f { + padding-left: 180px !important; + padding-right: 180px !important; } + .pd-md-t-180 { + padding-top: 180px; } + .pd-md-r-180 { + padding-right: 180px; } + .pd-md-b-180 { + padding-bottom: 180px; } + .pd-md-l-180 { + padding-left: 180px; } + .pd-md-t-180-f { + padding-top: 180px !important; } + .pd-md-r-180-f { + padding-right: 180px !important; } + .pd-md-b-180-f { + padding-bottom: 180px !important; } + .pd-md-l-180-f { + padding-left: 180px !important; } + .pd-md-190 { + padding: 190px; } + .pd-md-190-f { + padding: 190px !important; } + .pd-md-y-190 { + padding-top: 190px; + padding-bottom: 190px; } + .pd-md-y-190-f { + padding-top: 190px !important; + padding-bottom: 190px !important; } + .pd-md-x-190 { + padding-left: 190px; + padding-right: 190px; } + .pd-md-x-190-f { + padding-left: 190px !important; + padding-right: 190px !important; } + .pd-md-t-190 { + padding-top: 190px; } + .pd-md-r-190 { + padding-right: 190px; } + .pd-md-b-190 { + padding-bottom: 190px; } + .pd-md-l-190 { + padding-left: 190px; } + .pd-md-t-190-f { + padding-top: 190px !important; } + .pd-md-r-190-f { + padding-right: 190px !important; } + .pd-md-b-190-f { + padding-bottom: 190px !important; } + .pd-md-l-190-f { + padding-left: 190px !important; } + .pd-md-200 { + padding: 200px; } + .pd-md-200-f { + padding: 200px !important; } + .pd-md-y-200 { + padding-top: 200px; + padding-bottom: 200px; } + .pd-md-y-200-f { + padding-top: 200px !important; + padding-bottom: 200px !important; } + .pd-md-x-200 { + padding-left: 200px; + padding-right: 200px; } + .pd-md-x-200-f { + padding-left: 200px !important; + padding-right: 200px !important; } + .pd-md-t-200 { + padding-top: 200px; } + .pd-md-r-200 { + padding-right: 200px; } + .pd-md-b-200 { + padding-bottom: 200px; } + .pd-md-l-200 { + padding-left: 200px; } + .pd-md-t-200-f { + padding-top: 200px !important; } + .pd-md-r-200-f { + padding-right: 200px !important; } + .pd-md-b-200-f { + padding-bottom: 200px !important; } + .pd-md-l-200-f { + padding-left: 200px !important; } } + +@media (min-width: 992px) { + .pd-lg-0 { + padding: 0px; } + .pd-lg-0-f { + padding: 0px !important; } + .pd-lg-y-0 { + padding-top: 0px; + padding-bottom: 0px; } + .pd-lg-y-0-f { + padding-top: 0px !important; + padding-bottom: 0px !important; } + .pd-lg-x-0 { + padding-left: 0px; + padding-right: 0px; } + .pd-lg-x-0-f { + padding-left: 0px !important; + padding-right: 0px !important; } + .pd-lg-t-0 { + padding-top: 0px; } + .pd-lg-r-0 { + padding-right: 0px; } + .pd-lg-b-0 { + padding-bottom: 0px; } + .pd-lg-l-0 { + padding-left: 0px; } + .pd-lg-t-0-f { + padding-top: 0px !important; } + .pd-lg-r-0-f { + padding-right: 0px !important; } + .pd-lg-b-0-f { + padding-bottom: 0px !important; } + .pd-lg-l-0-f { + padding-left: 0px !important; } + .pd-lg-1 { + padding: 1px; } + .pd-lg-1-f { + padding: 1px !important; } + .pd-lg-y-1 { + padding-top: 1px; + padding-bottom: 1px; } + .pd-lg-y-1-f { + padding-top: 1px !important; + padding-bottom: 1px !important; } + .pd-lg-x-1 { + padding-left: 1px; + padding-right: 1px; } + .pd-lg-x-1-f { + padding-left: 1px !important; + padding-right: 1px !important; } + .pd-lg-t-1 { + padding-top: 1px; } + .pd-lg-r-1 { + padding-right: 1px; } + .pd-lg-b-1 { + padding-bottom: 1px; } + .pd-lg-l-1 { + padding-left: 1px; } + .pd-lg-t-1-f { + padding-top: 1px !important; } + .pd-lg-r-1-f { + padding-right: 1px !important; } + .pd-lg-b-1-f { + padding-bottom: 1px !important; } + .pd-lg-l-1-f { + padding-left: 1px !important; } + .pd-lg-2 { + padding: 2px; } + .pd-lg-2-f { + padding: 2px !important; } + .pd-lg-y-2 { + padding-top: 2px; + padding-bottom: 2px; } + .pd-lg-y-2-f { + padding-top: 2px !important; + padding-bottom: 2px !important; } + .pd-lg-x-2 { + padding-left: 2px; + padding-right: 2px; } + .pd-lg-x-2-f { + padding-left: 2px !important; + padding-right: 2px !important; } + .pd-lg-t-2 { + padding-top: 2px; } + .pd-lg-r-2 { + padding-right: 2px; } + .pd-lg-b-2 { + padding-bottom: 2px; } + .pd-lg-l-2 { + padding-left: 2px; } + .pd-lg-t-2-f { + padding-top: 2px !important; } + .pd-lg-r-2-f { + padding-right: 2px !important; } + .pd-lg-b-2-f { + padding-bottom: 2px !important; } + .pd-lg-l-2-f { + padding-left: 2px !important; } + .pd-lg-3 { + padding: 3px; } + .pd-lg-3-f { + padding: 3px !important; } + .pd-lg-y-3 { + padding-top: 3px; + padding-bottom: 3px; } + .pd-lg-y-3-f { + padding-top: 3px !important; + padding-bottom: 3px !important; } + .pd-lg-x-3 { + padding-left: 3px; + padding-right: 3px; } + .pd-lg-x-3-f { + padding-left: 3px !important; + padding-right: 3px !important; } + .pd-lg-t-3 { + padding-top: 3px; } + .pd-lg-r-3 { + padding-right: 3px; } + .pd-lg-b-3 { + padding-bottom: 3px; } + .pd-lg-l-3 { + padding-left: 3px; } + .pd-lg-t-3-f { + padding-top: 3px !important; } + .pd-lg-r-3-f { + padding-right: 3px !important; } + .pd-lg-b-3-f { + padding-bottom: 3px !important; } + .pd-lg-l-3-f { + padding-left: 3px !important; } + .pd-lg-4 { + padding: 4px; } + .pd-lg-4-f { + padding: 4px !important; } + .pd-lg-y-4 { + padding-top: 4px; + padding-bottom: 4px; } + .pd-lg-y-4-f { + padding-top: 4px !important; + padding-bottom: 4px !important; } + .pd-lg-x-4 { + padding-left: 4px; + padding-right: 4px; } + .pd-lg-x-4-f { + padding-left: 4px !important; + padding-right: 4px !important; } + .pd-lg-t-4 { + padding-top: 4px; } + .pd-lg-r-4 { + padding-right: 4px; } + .pd-lg-b-4 { + padding-bottom: 4px; } + .pd-lg-l-4 { + padding-left: 4px; } + .pd-lg-t-4-f { + padding-top: 4px !important; } + .pd-lg-r-4-f { + padding-right: 4px !important; } + .pd-lg-b-4-f { + padding-bottom: 4px !important; } + .pd-lg-l-4-f { + padding-left: 4px !important; } + .pd-lg-5 { + padding: 5px; } + .pd-lg-5-f { + padding: 5px !important; } + .pd-lg-y-5 { + padding-top: 5px; + padding-bottom: 5px; } + .pd-lg-y-5-f { + padding-top: 5px !important; + padding-bottom: 5px !important; } + .pd-lg-x-5 { + padding-left: 5px; + padding-right: 5px; } + .pd-lg-x-5-f { + padding-left: 5px !important; + padding-right: 5px !important; } + .pd-lg-t-5 { + padding-top: 5px; } + .pd-lg-r-5 { + padding-right: 5px; } + .pd-lg-b-5 { + padding-bottom: 5px; } + .pd-lg-l-5 { + padding-left: 5px; } + .pd-lg-t-5-f { + padding-top: 5px !important; } + .pd-lg-r-5-f { + padding-right: 5px !important; } + .pd-lg-b-5-f { + padding-bottom: 5px !important; } + .pd-lg-l-5-f { + padding-left: 5px !important; } + .pd-lg-6 { + padding: 6px; } + .pd-lg-6-f { + padding: 6px !important; } + .pd-lg-y-6 { + padding-top: 6px; + padding-bottom: 6px; } + .pd-lg-y-6-f { + padding-top: 6px !important; + padding-bottom: 6px !important; } + .pd-lg-x-6 { + padding-left: 6px; + padding-right: 6px; } + .pd-lg-x-6-f { + padding-left: 6px !important; + padding-right: 6px !important; } + .pd-lg-t-6 { + padding-top: 6px; } + .pd-lg-r-6 { + padding-right: 6px; } + .pd-lg-b-6 { + padding-bottom: 6px; } + .pd-lg-l-6 { + padding-left: 6px; } + .pd-lg-t-6-f { + padding-top: 6px !important; } + .pd-lg-r-6-f { + padding-right: 6px !important; } + .pd-lg-b-6-f { + padding-bottom: 6px !important; } + .pd-lg-l-6-f { + padding-left: 6px !important; } + .pd-lg-7 { + padding: 7px; } + .pd-lg-7-f { + padding: 7px !important; } + .pd-lg-y-7 { + padding-top: 7px; + padding-bottom: 7px; } + .pd-lg-y-7-f { + padding-top: 7px !important; + padding-bottom: 7px !important; } + .pd-lg-x-7 { + padding-left: 7px; + padding-right: 7px; } + .pd-lg-x-7-f { + padding-left: 7px !important; + padding-right: 7px !important; } + .pd-lg-t-7 { + padding-top: 7px; } + .pd-lg-r-7 { + padding-right: 7px; } + .pd-lg-b-7 { + padding-bottom: 7px; } + .pd-lg-l-7 { + padding-left: 7px; } + .pd-lg-t-7-f { + padding-top: 7px !important; } + .pd-lg-r-7-f { + padding-right: 7px !important; } + .pd-lg-b-7-f { + padding-bottom: 7px !important; } + .pd-lg-l-7-f { + padding-left: 7px !important; } + .pd-lg-8 { + padding: 8px; } + .pd-lg-8-f { + padding: 8px !important; } + .pd-lg-y-8 { + padding-top: 8px; + padding-bottom: 8px; } + .pd-lg-y-8-f { + padding-top: 8px !important; + padding-bottom: 8px !important; } + .pd-lg-x-8 { + padding-left: 8px; + padding-right: 8px; } + .pd-lg-x-8-f { + padding-left: 8px !important; + padding-right: 8px !important; } + .pd-lg-t-8 { + padding-top: 8px; } + .pd-lg-r-8 { + padding-right: 8px; } + .pd-lg-b-8 { + padding-bottom: 8px; } + .pd-lg-l-8 { + padding-left: 8px; } + .pd-lg-t-8-f { + padding-top: 8px !important; } + .pd-lg-r-8-f { + padding-right: 8px !important; } + .pd-lg-b-8-f { + padding-bottom: 8px !important; } + .pd-lg-l-8-f { + padding-left: 8px !important; } + .pd-lg-9 { + padding: 9px; } + .pd-lg-9-f { + padding: 9px !important; } + .pd-lg-y-9 { + padding-top: 9px; + padding-bottom: 9px; } + .pd-lg-y-9-f { + padding-top: 9px !important; + padding-bottom: 9px !important; } + .pd-lg-x-9 { + padding-left: 9px; + padding-right: 9px; } + .pd-lg-x-9-f { + padding-left: 9px !important; + padding-right: 9px !important; } + .pd-lg-t-9 { + padding-top: 9px; } + .pd-lg-r-9 { + padding-right: 9px; } + .pd-lg-b-9 { + padding-bottom: 9px; } + .pd-lg-l-9 { + padding-left: 9px; } + .pd-lg-t-9-f { + padding-top: 9px !important; } + .pd-lg-r-9-f { + padding-right: 9px !important; } + .pd-lg-b-9-f { + padding-bottom: 9px !important; } + .pd-lg-l-9-f { + padding-left: 9px !important; } + .pd-lg-10 { + padding: 10px; } + .pd-lg-10-f { + padding: 10px !important; } + .pd-lg-y-10 { + padding-top: 10px; + padding-bottom: 10px; } + .pd-lg-y-10-f { + padding-top: 10px !important; + padding-bottom: 10px !important; } + .pd-lg-x-10 { + padding-left: 10px; + padding-right: 10px; } + .pd-lg-x-10-f { + padding-left: 10px !important; + padding-right: 10px !important; } + .pd-lg-t-10 { + padding-top: 10px; } + .pd-lg-r-10 { + padding-right: 10px; } + .pd-lg-b-10 { + padding-bottom: 10px; } + .pd-lg-l-10 { + padding-left: 10px; } + .pd-lg-t-10-f { + padding-top: 10px !important; } + .pd-lg-r-10-f { + padding-right: 10px !important; } + .pd-lg-b-10-f { + padding-bottom: 10px !important; } + .pd-lg-l-10-f { + padding-left: 10px !important; } + .pd-lg-15 { + padding: 15px; } + .pd-lg-15-f { + padding: 15px !important; } + .pd-lg-y-15 { + padding-top: 15px; + padding-bottom: 15px; } + .pd-lg-y-15-f { + padding-top: 15px !important; + padding-bottom: 15px !important; } + .pd-lg-x-15 { + padding-left: 15px; + padding-right: 15px; } + .pd-lg-x-15-f { + padding-left: 15px !important; + padding-right: 15px !important; } + .pd-lg-t-15 { + padding-top: 15px; } + .pd-lg-r-15 { + padding-right: 15px; } + .pd-lg-b-15 { + padding-bottom: 15px; } + .pd-lg-l-15 { + padding-left: 15px; } + .pd-lg-t-15-f { + padding-top: 15px !important; } + .pd-lg-r-15-f { + padding-right: 15px !important; } + .pd-lg-b-15-f { + padding-bottom: 15px !important; } + .pd-lg-l-15-f { + padding-left: 15px !important; } + .pd-lg-20 { + padding: 20px; } + .pd-lg-20-f { + padding: 20px !important; } + .pd-lg-y-20 { + padding-top: 20px; + padding-bottom: 20px; } + .pd-lg-y-20-f { + padding-top: 20px !important; + padding-bottom: 20px !important; } + .pd-lg-x-20 { + padding-left: 20px; + padding-right: 20px; } + .pd-lg-x-20-f { + padding-left: 20px !important; + padding-right: 20px !important; } + .pd-lg-t-20 { + padding-top: 20px; } + .pd-lg-r-20 { + padding-right: 20px; } + .pd-lg-b-20 { + padding-bottom: 20px; } + .pd-lg-l-20 { + padding-left: 20px; } + .pd-lg-t-20-f { + padding-top: 20px !important; } + .pd-lg-r-20-f { + padding-right: 20px !important; } + .pd-lg-b-20-f { + padding-bottom: 20px !important; } + .pd-lg-l-20-f { + padding-left: 20px !important; } + .pd-lg-25 { + padding: 25px; } + .pd-lg-25-f { + padding: 25px !important; } + .pd-lg-y-25 { + padding-top: 25px; + padding-bottom: 25px; } + .pd-lg-y-25-f { + padding-top: 25px !important; + padding-bottom: 25px !important; } + .pd-lg-x-25 { + padding-left: 25px; + padding-right: 25px; } + .pd-lg-x-25-f { + padding-left: 25px !important; + padding-right: 25px !important; } + .pd-lg-t-25 { + padding-top: 25px; } + .pd-lg-r-25 { + padding-right: 25px; } + .pd-lg-b-25 { + padding-bottom: 25px; } + .pd-lg-l-25 { + padding-left: 25px; } + .pd-lg-t-25-f { + padding-top: 25px !important; } + .pd-lg-r-25-f { + padding-right: 25px !important; } + .pd-lg-b-25-f { + padding-bottom: 25px !important; } + .pd-lg-l-25-f { + padding-left: 25px !important; } + .pd-lg-30 { + padding: 30px; } + .pd-lg-30-f { + padding: 30px !important; } + .pd-lg-y-30 { + padding-top: 30px; + padding-bottom: 30px; } + .pd-lg-y-30-f { + padding-top: 30px !important; + padding-bottom: 30px !important; } + .pd-lg-x-30 { + padding-left: 30px; + padding-right: 30px; } + .pd-lg-x-30-f { + padding-left: 30px !important; + padding-right: 30px !important; } + .pd-lg-t-30 { + padding-top: 30px; } + .pd-lg-r-30 { + padding-right: 30px; } + .pd-lg-b-30 { + padding-bottom: 30px; } + .pd-lg-l-30 { + padding-left: 30px; } + .pd-lg-t-30-f { + padding-top: 30px !important; } + .pd-lg-r-30-f { + padding-right: 30px !important; } + .pd-lg-b-30-f { + padding-bottom: 30px !important; } + .pd-lg-l-30-f { + padding-left: 30px !important; } + .pd-lg-35 { + padding: 35px; } + .pd-lg-35-f { + padding: 35px !important; } + .pd-lg-y-35 { + padding-top: 35px; + padding-bottom: 35px; } + .pd-lg-y-35-f { + padding-top: 35px !important; + padding-bottom: 35px !important; } + .pd-lg-x-35 { + padding-left: 35px; + padding-right: 35px; } + .pd-lg-x-35-f { + padding-left: 35px !important; + padding-right: 35px !important; } + .pd-lg-t-35 { + padding-top: 35px; } + .pd-lg-r-35 { + padding-right: 35px; } + .pd-lg-b-35 { + padding-bottom: 35px; } + .pd-lg-l-35 { + padding-left: 35px; } + .pd-lg-t-35-f { + padding-top: 35px !important; } + .pd-lg-r-35-f { + padding-right: 35px !important; } + .pd-lg-b-35-f { + padding-bottom: 35px !important; } + .pd-lg-l-35-f { + padding-left: 35px !important; } + .pd-lg-40 { + padding: 40px; } + .pd-lg-40-f { + padding: 40px !important; } + .pd-lg-y-40 { + padding-top: 40px; + padding-bottom: 40px; } + .pd-lg-y-40-f { + padding-top: 40px !important; + padding-bottom: 40px !important; } + .pd-lg-x-40 { + padding-left: 40px; + padding-right: 40px; } + .pd-lg-x-40-f { + padding-left: 40px !important; + padding-right: 40px !important; } + .pd-lg-t-40 { + padding-top: 40px; } + .pd-lg-r-40 { + padding-right: 40px; } + .pd-lg-b-40 { + padding-bottom: 40px; } + .pd-lg-l-40 { + padding-left: 40px; } + .pd-lg-t-40-f { + padding-top: 40px !important; } + .pd-lg-r-40-f { + padding-right: 40px !important; } + .pd-lg-b-40-f { + padding-bottom: 40px !important; } + .pd-lg-l-40-f { + padding-left: 40px !important; } + .pd-lg-45 { + padding: 45px; } + .pd-lg-45-f { + padding: 45px !important; } + .pd-lg-y-45 { + padding-top: 45px; + padding-bottom: 45px; } + .pd-lg-y-45-f { + padding-top: 45px !important; + padding-bottom: 45px !important; } + .pd-lg-x-45 { + padding-left: 45px; + padding-right: 45px; } + .pd-lg-x-45-f { + padding-left: 45px !important; + padding-right: 45px !important; } + .pd-lg-t-45 { + padding-top: 45px; } + .pd-lg-r-45 { + padding-right: 45px; } + .pd-lg-b-45 { + padding-bottom: 45px; } + .pd-lg-l-45 { + padding-left: 45px; } + .pd-lg-t-45-f { + padding-top: 45px !important; } + .pd-lg-r-45-f { + padding-right: 45px !important; } + .pd-lg-b-45-f { + padding-bottom: 45px !important; } + .pd-lg-l-45-f { + padding-left: 45px !important; } + .pd-lg-50 { + padding: 50px; } + .pd-lg-50-f { + padding: 50px !important; } + .pd-lg-y-50 { + padding-top: 50px; + padding-bottom: 50px; } + .pd-lg-y-50-f { + padding-top: 50px !important; + padding-bottom: 50px !important; } + .pd-lg-x-50 { + padding-left: 50px; + padding-right: 50px; } + .pd-lg-x-50-f { + padding-left: 50px !important; + padding-right: 50px !important; } + .pd-lg-t-50 { + padding-top: 50px; } + .pd-lg-r-50 { + padding-right: 50px; } + .pd-lg-b-50 { + padding-bottom: 50px; } + .pd-lg-l-50 { + padding-left: 50px; } + .pd-lg-t-50-f { + padding-top: 50px !important; } + .pd-lg-r-50-f { + padding-right: 50px !important; } + .pd-lg-b-50-f { + padding-bottom: 50px !important; } + .pd-lg-l-50-f { + padding-left: 50px !important; } + .pd-lg-55 { + padding: 55px; } + .pd-lg-55-f { + padding: 55px !important; } + .pd-lg-y-55 { + padding-top: 55px; + padding-bottom: 55px; } + .pd-lg-y-55-f { + padding-top: 55px !important; + padding-bottom: 55px !important; } + .pd-lg-x-55 { + padding-left: 55px; + padding-right: 55px; } + .pd-lg-x-55-f { + padding-left: 55px !important; + padding-right: 55px !important; } + .pd-lg-t-55 { + padding-top: 55px; } + .pd-lg-r-55 { + padding-right: 55px; } + .pd-lg-b-55 { + padding-bottom: 55px; } + .pd-lg-l-55 { + padding-left: 55px; } + .pd-lg-t-55-f { + padding-top: 55px !important; } + .pd-lg-r-55-f { + padding-right: 55px !important; } + .pd-lg-b-55-f { + padding-bottom: 55px !important; } + .pd-lg-l-55-f { + padding-left: 55px !important; } + .pd-lg-60 { + padding: 60px; } + .pd-lg-60-f { + padding: 60px !important; } + .pd-lg-y-60 { + padding-top: 60px; + padding-bottom: 60px; } + .pd-lg-y-60-f { + padding-top: 60px !important; + padding-bottom: 60px !important; } + .pd-lg-x-60 { + padding-left: 60px; + padding-right: 60px; } + .pd-lg-x-60-f { + padding-left: 60px !important; + padding-right: 60px !important; } + .pd-lg-t-60 { + padding-top: 60px; } + .pd-lg-r-60 { + padding-right: 60px; } + .pd-lg-b-60 { + padding-bottom: 60px; } + .pd-lg-l-60 { + padding-left: 60px; } + .pd-lg-t-60-f { + padding-top: 60px !important; } + .pd-lg-r-60-f { + padding-right: 60px !important; } + .pd-lg-b-60-f { + padding-bottom: 60px !important; } + .pd-lg-l-60-f { + padding-left: 60px !important; } + .pd-lg-65 { + padding: 65px; } + .pd-lg-65-f { + padding: 65px !important; } + .pd-lg-y-65 { + padding-top: 65px; + padding-bottom: 65px; } + .pd-lg-y-65-f { + padding-top: 65px !important; + padding-bottom: 65px !important; } + .pd-lg-x-65 { + padding-left: 65px; + padding-right: 65px; } + .pd-lg-x-65-f { + padding-left: 65px !important; + padding-right: 65px !important; } + .pd-lg-t-65 { + padding-top: 65px; } + .pd-lg-r-65 { + padding-right: 65px; } + .pd-lg-b-65 { + padding-bottom: 65px; } + .pd-lg-l-65 { + padding-left: 65px; } + .pd-lg-t-65-f { + padding-top: 65px !important; } + .pd-lg-r-65-f { + padding-right: 65px !important; } + .pd-lg-b-65-f { + padding-bottom: 65px !important; } + .pd-lg-l-65-f { + padding-left: 65px !important; } + .pd-lg-70 { + padding: 70px; } + .pd-lg-70-f { + padding: 70px !important; } + .pd-lg-y-70 { + padding-top: 70px; + padding-bottom: 70px; } + .pd-lg-y-70-f { + padding-top: 70px !important; + padding-bottom: 70px !important; } + .pd-lg-x-70 { + padding-left: 70px; + padding-right: 70px; } + .pd-lg-x-70-f { + padding-left: 70px !important; + padding-right: 70px !important; } + .pd-lg-t-70 { + padding-top: 70px; } + .pd-lg-r-70 { + padding-right: 70px; } + .pd-lg-b-70 { + padding-bottom: 70px; } + .pd-lg-l-70 { + padding-left: 70px; } + .pd-lg-t-70-f { + padding-top: 70px !important; } + .pd-lg-r-70-f { + padding-right: 70px !important; } + .pd-lg-b-70-f { + padding-bottom: 70px !important; } + .pd-lg-l-70-f { + padding-left: 70px !important; } + .pd-lg-75 { + padding: 75px; } + .pd-lg-75-f { + padding: 75px !important; } + .pd-lg-y-75 { + padding-top: 75px; + padding-bottom: 75px; } + .pd-lg-y-75-f { + padding-top: 75px !important; + padding-bottom: 75px !important; } + .pd-lg-x-75 { + padding-left: 75px; + padding-right: 75px; } + .pd-lg-x-75-f { + padding-left: 75px !important; + padding-right: 75px !important; } + .pd-lg-t-75 { + padding-top: 75px; } + .pd-lg-r-75 { + padding-right: 75px; } + .pd-lg-b-75 { + padding-bottom: 75px; } + .pd-lg-l-75 { + padding-left: 75px; } + .pd-lg-t-75-f { + padding-top: 75px !important; } + .pd-lg-r-75-f { + padding-right: 75px !important; } + .pd-lg-b-75-f { + padding-bottom: 75px !important; } + .pd-lg-l-75-f { + padding-left: 75px !important; } + .pd-lg-80 { + padding: 80px; } + .pd-lg-80-f { + padding: 80px !important; } + .pd-lg-y-80 { + padding-top: 80px; + padding-bottom: 80px; } + .pd-lg-y-80-f { + padding-top: 80px !important; + padding-bottom: 80px !important; } + .pd-lg-x-80 { + padding-left: 80px; + padding-right: 80px; } + .pd-lg-x-80-f { + padding-left: 80px !important; + padding-right: 80px !important; } + .pd-lg-t-80 { + padding-top: 80px; } + .pd-lg-r-80 { + padding-right: 80px; } + .pd-lg-b-80 { + padding-bottom: 80px; } + .pd-lg-l-80 { + padding-left: 80px; } + .pd-lg-t-80-f { + padding-top: 80px !important; } + .pd-lg-r-80-f { + padding-right: 80px !important; } + .pd-lg-b-80-f { + padding-bottom: 80px !important; } + .pd-lg-l-80-f { + padding-left: 80px !important; } + .pd-lg-85 { + padding: 85px; } + .pd-lg-85-f { + padding: 85px !important; } + .pd-lg-y-85 { + padding-top: 85px; + padding-bottom: 85px; } + .pd-lg-y-85-f { + padding-top: 85px !important; + padding-bottom: 85px !important; } + .pd-lg-x-85 { + padding-left: 85px; + padding-right: 85px; } + .pd-lg-x-85-f { + padding-left: 85px !important; + padding-right: 85px !important; } + .pd-lg-t-85 { + padding-top: 85px; } + .pd-lg-r-85 { + padding-right: 85px; } + .pd-lg-b-85 { + padding-bottom: 85px; } + .pd-lg-l-85 { + padding-left: 85px; } + .pd-lg-t-85-f { + padding-top: 85px !important; } + .pd-lg-r-85-f { + padding-right: 85px !important; } + .pd-lg-b-85-f { + padding-bottom: 85px !important; } + .pd-lg-l-85-f { + padding-left: 85px !important; } + .pd-lg-90 { + padding: 90px; } + .pd-lg-90-f { + padding: 90px !important; } + .pd-lg-y-90 { + padding-top: 90px; + padding-bottom: 90px; } + .pd-lg-y-90-f { + padding-top: 90px !important; + padding-bottom: 90px !important; } + .pd-lg-x-90 { + padding-left: 90px; + padding-right: 90px; } + .pd-lg-x-90-f { + padding-left: 90px !important; + padding-right: 90px !important; } + .pd-lg-t-90 { + padding-top: 90px; } + .pd-lg-r-90 { + padding-right: 90px; } + .pd-lg-b-90 { + padding-bottom: 90px; } + .pd-lg-l-90 { + padding-left: 90px; } + .pd-lg-t-90-f { + padding-top: 90px !important; } + .pd-lg-r-90-f { + padding-right: 90px !important; } + .pd-lg-b-90-f { + padding-bottom: 90px !important; } + .pd-lg-l-90-f { + padding-left: 90px !important; } + .pd-lg-95 { + padding: 95px; } + .pd-lg-95-f { + padding: 95px !important; } + .pd-lg-y-95 { + padding-top: 95px; + padding-bottom: 95px; } + .pd-lg-y-95-f { + padding-top: 95px !important; + padding-bottom: 95px !important; } + .pd-lg-x-95 { + padding-left: 95px; + padding-right: 95px; } + .pd-lg-x-95-f { + padding-left: 95px !important; + padding-right: 95px !important; } + .pd-lg-t-95 { + padding-top: 95px; } + .pd-lg-r-95 { + padding-right: 95px; } + .pd-lg-b-95 { + padding-bottom: 95px; } + .pd-lg-l-95 { + padding-left: 95px; } + .pd-lg-t-95-f { + padding-top: 95px !important; } + .pd-lg-r-95-f { + padding-right: 95px !important; } + .pd-lg-b-95-f { + padding-bottom: 95px !important; } + .pd-lg-l-95-f { + padding-left: 95px !important; } + .pd-lg-100 { + padding: 100px; } + .pd-lg-100-f { + padding: 100px !important; } + .pd-lg-y-100 { + padding-top: 100px; + padding-bottom: 100px; } + .pd-lg-y-100-f { + padding-top: 100px !important; + padding-bottom: 100px !important; } + .pd-lg-x-100 { + padding-left: 100px; + padding-right: 100px; } + .pd-lg-x-100-f { + padding-left: 100px !important; + padding-right: 100px !important; } + .pd-lg-t-100 { + padding-top: 100px; } + .pd-lg-r-100 { + padding-right: 100px; } + .pd-lg-b-100 { + padding-bottom: 100px; } + .pd-lg-l-100 { + padding-left: 100px; } + .pd-lg-t-100-f { + padding-top: 100px !important; } + .pd-lg-r-100-f { + padding-right: 100px !important; } + .pd-lg-b-100-f { + padding-bottom: 100px !important; } + .pd-lg-l-100-f { + padding-left: 100px !important; } + .pd-lg-110 { + padding: 110px; } + .pd-lg-110-f { + padding: 110px !important; } + .pd-lg-y-110 { + padding-top: 110px; + padding-bottom: 110px; } + .pd-lg-y-110-f { + padding-top: 110px !important; + padding-bottom: 110px !important; } + .pd-lg-x-110 { + padding-left: 110px; + padding-right: 110px; } + .pd-lg-x-110-f { + padding-left: 110px !important; + padding-right: 110px !important; } + .pd-lg-t-110 { + padding-top: 110px; } + .pd-lg-r-110 { + padding-right: 110px; } + .pd-lg-b-110 { + padding-bottom: 110px; } + .pd-lg-l-110 { + padding-left: 110px; } + .pd-lg-t-110-f { + padding-top: 110px !important; } + .pd-lg-r-110-f { + padding-right: 110px !important; } + .pd-lg-b-110-f { + padding-bottom: 110px !important; } + .pd-lg-l-110-f { + padding-left: 110px !important; } + .pd-lg-120 { + padding: 120px; } + .pd-lg-120-f { + padding: 120px !important; } + .pd-lg-y-120 { + padding-top: 120px; + padding-bottom: 120px; } + .pd-lg-y-120-f { + padding-top: 120px !important; + padding-bottom: 120px !important; } + .pd-lg-x-120 { + padding-left: 120px; + padding-right: 120px; } + .pd-lg-x-120-f { + padding-left: 120px !important; + padding-right: 120px !important; } + .pd-lg-t-120 { + padding-top: 120px; } + .pd-lg-r-120 { + padding-right: 120px; } + .pd-lg-b-120 { + padding-bottom: 120px; } + .pd-lg-l-120 { + padding-left: 120px; } + .pd-lg-t-120-f { + padding-top: 120px !important; } + .pd-lg-r-120-f { + padding-right: 120px !important; } + .pd-lg-b-120-f { + padding-bottom: 120px !important; } + .pd-lg-l-120-f { + padding-left: 120px !important; } + .pd-lg-130 { + padding: 130px; } + .pd-lg-130-f { + padding: 130px !important; } + .pd-lg-y-130 { + padding-top: 130px; + padding-bottom: 130px; } + .pd-lg-y-130-f { + padding-top: 130px !important; + padding-bottom: 130px !important; } + .pd-lg-x-130 { + padding-left: 130px; + padding-right: 130px; } + .pd-lg-x-130-f { + padding-left: 130px !important; + padding-right: 130px !important; } + .pd-lg-t-130 { + padding-top: 130px; } + .pd-lg-r-130 { + padding-right: 130px; } + .pd-lg-b-130 { + padding-bottom: 130px; } + .pd-lg-l-130 { + padding-left: 130px; } + .pd-lg-t-130-f { + padding-top: 130px !important; } + .pd-lg-r-130-f { + padding-right: 130px !important; } + .pd-lg-b-130-f { + padding-bottom: 130px !important; } + .pd-lg-l-130-f { + padding-left: 130px !important; } + .pd-lg-140 { + padding: 140px; } + .pd-lg-140-f { + padding: 140px !important; } + .pd-lg-y-140 { + padding-top: 140px; + padding-bottom: 140px; } + .pd-lg-y-140-f { + padding-top: 140px !important; + padding-bottom: 140px !important; } + .pd-lg-x-140 { + padding-left: 140px; + padding-right: 140px; } + .pd-lg-x-140-f { + padding-left: 140px !important; + padding-right: 140px !important; } + .pd-lg-t-140 { + padding-top: 140px; } + .pd-lg-r-140 { + padding-right: 140px; } + .pd-lg-b-140 { + padding-bottom: 140px; } + .pd-lg-l-140 { + padding-left: 140px; } + .pd-lg-t-140-f { + padding-top: 140px !important; } + .pd-lg-r-140-f { + padding-right: 140px !important; } + .pd-lg-b-140-f { + padding-bottom: 140px !important; } + .pd-lg-l-140-f { + padding-left: 140px !important; } + .pd-lg-150 { + padding: 150px; } + .pd-lg-150-f { + padding: 150px !important; } + .pd-lg-y-150 { + padding-top: 150px; + padding-bottom: 150px; } + .pd-lg-y-150-f { + padding-top: 150px !important; + padding-bottom: 150px !important; } + .pd-lg-x-150 { + padding-left: 150px; + padding-right: 150px; } + .pd-lg-x-150-f { + padding-left: 150px !important; + padding-right: 150px !important; } + .pd-lg-t-150 { + padding-top: 150px; } + .pd-lg-r-150 { + padding-right: 150px; } + .pd-lg-b-150 { + padding-bottom: 150px; } + .pd-lg-l-150 { + padding-left: 150px; } + .pd-lg-t-150-f { + padding-top: 150px !important; } + .pd-lg-r-150-f { + padding-right: 150px !important; } + .pd-lg-b-150-f { + padding-bottom: 150px !important; } + .pd-lg-l-150-f { + padding-left: 150px !important; } + .pd-lg-160 { + padding: 160px; } + .pd-lg-160-f { + padding: 160px !important; } + .pd-lg-y-160 { + padding-top: 160px; + padding-bottom: 160px; } + .pd-lg-y-160-f { + padding-top: 160px !important; + padding-bottom: 160px !important; } + .pd-lg-x-160 { + padding-left: 160px; + padding-right: 160px; } + .pd-lg-x-160-f { + padding-left: 160px !important; + padding-right: 160px !important; } + .pd-lg-t-160 { + padding-top: 160px; } + .pd-lg-r-160 { + padding-right: 160px; } + .pd-lg-b-160 { + padding-bottom: 160px; } + .pd-lg-l-160 { + padding-left: 160px; } + .pd-lg-t-160-f { + padding-top: 160px !important; } + .pd-lg-r-160-f { + padding-right: 160px !important; } + .pd-lg-b-160-f { + padding-bottom: 160px !important; } + .pd-lg-l-160-f { + padding-left: 160px !important; } + .pd-lg-170 { + padding: 170px; } + .pd-lg-170-f { + padding: 170px !important; } + .pd-lg-y-170 { + padding-top: 170px; + padding-bottom: 170px; } + .pd-lg-y-170-f { + padding-top: 170px !important; + padding-bottom: 170px !important; } + .pd-lg-x-170 { + padding-left: 170px; + padding-right: 170px; } + .pd-lg-x-170-f { + padding-left: 170px !important; + padding-right: 170px !important; } + .pd-lg-t-170 { + padding-top: 170px; } + .pd-lg-r-170 { + padding-right: 170px; } + .pd-lg-b-170 { + padding-bottom: 170px; } + .pd-lg-l-170 { + padding-left: 170px; } + .pd-lg-t-170-f { + padding-top: 170px !important; } + .pd-lg-r-170-f { + padding-right: 170px !important; } + .pd-lg-b-170-f { + padding-bottom: 170px !important; } + .pd-lg-l-170-f { + padding-left: 170px !important; } + .pd-lg-180 { + padding: 180px; } + .pd-lg-180-f { + padding: 180px !important; } + .pd-lg-y-180 { + padding-top: 180px; + padding-bottom: 180px; } + .pd-lg-y-180-f { + padding-top: 180px !important; + padding-bottom: 180px !important; } + .pd-lg-x-180 { + padding-left: 180px; + padding-right: 180px; } + .pd-lg-x-180-f { + padding-left: 180px !important; + padding-right: 180px !important; } + .pd-lg-t-180 { + padding-top: 180px; } + .pd-lg-r-180 { + padding-right: 180px; } + .pd-lg-b-180 { + padding-bottom: 180px; } + .pd-lg-l-180 { + padding-left: 180px; } + .pd-lg-t-180-f { + padding-top: 180px !important; } + .pd-lg-r-180-f { + padding-right: 180px !important; } + .pd-lg-b-180-f { + padding-bottom: 180px !important; } + .pd-lg-l-180-f { + padding-left: 180px !important; } + .pd-lg-190 { + padding: 190px; } + .pd-lg-190-f { + padding: 190px !important; } + .pd-lg-y-190 { + padding-top: 190px; + padding-bottom: 190px; } + .pd-lg-y-190-f { + padding-top: 190px !important; + padding-bottom: 190px !important; } + .pd-lg-x-190 { + padding-left: 190px; + padding-right: 190px; } + .pd-lg-x-190-f { + padding-left: 190px !important; + padding-right: 190px !important; } + .pd-lg-t-190 { + padding-top: 190px; } + .pd-lg-r-190 { + padding-right: 190px; } + .pd-lg-b-190 { + padding-bottom: 190px; } + .pd-lg-l-190 { + padding-left: 190px; } + .pd-lg-t-190-f { + padding-top: 190px !important; } + .pd-lg-r-190-f { + padding-right: 190px !important; } + .pd-lg-b-190-f { + padding-bottom: 190px !important; } + .pd-lg-l-190-f { + padding-left: 190px !important; } + .pd-lg-200 { + padding: 200px; } + .pd-lg-200-f { + padding: 200px !important; } + .pd-lg-y-200 { + padding-top: 200px; + padding-bottom: 200px; } + .pd-lg-y-200-f { + padding-top: 200px !important; + padding-bottom: 200px !important; } + .pd-lg-x-200 { + padding-left: 200px; + padding-right: 200px; } + .pd-lg-x-200-f { + padding-left: 200px !important; + padding-right: 200px !important; } + .pd-lg-t-200 { + padding-top: 200px; } + .pd-lg-r-200 { + padding-right: 200px; } + .pd-lg-b-200 { + padding-bottom: 200px; } + .pd-lg-l-200 { + padding-left: 200px; } + .pd-lg-t-200-f { + padding-top: 200px !important; } + .pd-lg-r-200-f { + padding-right: 200px !important; } + .pd-lg-b-200-f { + padding-bottom: 200px !important; } + .pd-lg-l-200-f { + padding-left: 200px !important; } } + +@media (min-width: 1200px) { + .pd-xl-0 { + padding: 0px; } + .pd-xl-0-f { + padding: 0px !important; } + .pd-xl-y-0 { + padding-top: 0px; + padding-bottom: 0px; } + .pd-xl-y-0-f { + padding-top: 0px !important; + padding-bottom: 0px !important; } + .pd-xl-x-0 { + padding-left: 0px; + padding-right: 0px; } + .pd-xl-x-0-f { + padding-left: 0px !important; + padding-right: 0px !important; } + .pd-xl-t-0 { + padding-top: 0px; } + .pd-xl-r-0 { + padding-right: 0px; } + .pd-xl-b-0 { + padding-bottom: 0px; } + .pd-xl-l-0 { + padding-left: 0px; } + .pd-xl-t-0-f { + padding-top: 0px !important; } + .pd-xl-r-0-f { + padding-right: 0px !important; } + .pd-xl-b-0-f { + padding-bottom: 0px !important; } + .pd-xl-l-0-f { + padding-left: 0px !important; } + .pd-xl-1 { + padding: 1px; } + .pd-xl-1-f { + padding: 1px !important; } + .pd-xl-y-1 { + padding-top: 1px; + padding-bottom: 1px; } + .pd-xl-y-1-f { + padding-top: 1px !important; + padding-bottom: 1px !important; } + .pd-xl-x-1 { + padding-left: 1px; + padding-right: 1px; } + .pd-xl-x-1-f { + padding-left: 1px !important; + padding-right: 1px !important; } + .pd-xl-t-1 { + padding-top: 1px; } + .pd-xl-r-1 { + padding-right: 1px; } + .pd-xl-b-1 { + padding-bottom: 1px; } + .pd-xl-l-1 { + padding-left: 1px; } + .pd-xl-t-1-f { + padding-top: 1px !important; } + .pd-xl-r-1-f { + padding-right: 1px !important; } + .pd-xl-b-1-f { + padding-bottom: 1px !important; } + .pd-xl-l-1-f { + padding-left: 1px !important; } + .pd-xl-2 { + padding: 2px; } + .pd-xl-2-f { + padding: 2px !important; } + .pd-xl-y-2 { + padding-top: 2px; + padding-bottom: 2px; } + .pd-xl-y-2-f { + padding-top: 2px !important; + padding-bottom: 2px !important; } + .pd-xl-x-2 { + padding-left: 2px; + padding-right: 2px; } + .pd-xl-x-2-f { + padding-left: 2px !important; + padding-right: 2px !important; } + .pd-xl-t-2 { + padding-top: 2px; } + .pd-xl-r-2 { + padding-right: 2px; } + .pd-xl-b-2 { + padding-bottom: 2px; } + .pd-xl-l-2 { + padding-left: 2px; } + .pd-xl-t-2-f { + padding-top: 2px !important; } + .pd-xl-r-2-f { + padding-right: 2px !important; } + .pd-xl-b-2-f { + padding-bottom: 2px !important; } + .pd-xl-l-2-f { + padding-left: 2px !important; } + .pd-xl-3 { + padding: 3px; } + .pd-xl-3-f { + padding: 3px !important; } + .pd-xl-y-3 { + padding-top: 3px; + padding-bottom: 3px; } + .pd-xl-y-3-f { + padding-top: 3px !important; + padding-bottom: 3px !important; } + .pd-xl-x-3 { + padding-left: 3px; + padding-right: 3px; } + .pd-xl-x-3-f { + padding-left: 3px !important; + padding-right: 3px !important; } + .pd-xl-t-3 { + padding-top: 3px; } + .pd-xl-r-3 { + padding-right: 3px; } + .pd-xl-b-3 { + padding-bottom: 3px; } + .pd-xl-l-3 { + padding-left: 3px; } + .pd-xl-t-3-f { + padding-top: 3px !important; } + .pd-xl-r-3-f { + padding-right: 3px !important; } + .pd-xl-b-3-f { + padding-bottom: 3px !important; } + .pd-xl-l-3-f { + padding-left: 3px !important; } + .pd-xl-4 { + padding: 4px; } + .pd-xl-4-f { + padding: 4px !important; } + .pd-xl-y-4 { + padding-top: 4px; + padding-bottom: 4px; } + .pd-xl-y-4-f { + padding-top: 4px !important; + padding-bottom: 4px !important; } + .pd-xl-x-4 { + padding-left: 4px; + padding-right: 4px; } + .pd-xl-x-4-f { + padding-left: 4px !important; + padding-right: 4px !important; } + .pd-xl-t-4 { + padding-top: 4px; } + .pd-xl-r-4 { + padding-right: 4px; } + .pd-xl-b-4 { + padding-bottom: 4px; } + .pd-xl-l-4 { + padding-left: 4px; } + .pd-xl-t-4-f { + padding-top: 4px !important; } + .pd-xl-r-4-f { + padding-right: 4px !important; } + .pd-xl-b-4-f { + padding-bottom: 4px !important; } + .pd-xl-l-4-f { + padding-left: 4px !important; } + .pd-xl-5 { + padding: 5px; } + .pd-xl-5-f { + padding: 5px !important; } + .pd-xl-y-5 { + padding-top: 5px; + padding-bottom: 5px; } + .pd-xl-y-5-f { + padding-top: 5px !important; + padding-bottom: 5px !important; } + .pd-xl-x-5 { + padding-left: 5px; + padding-right: 5px; } + .pd-xl-x-5-f { + padding-left: 5px !important; + padding-right: 5px !important; } + .pd-xl-t-5 { + padding-top: 5px; } + .pd-xl-r-5 { + padding-right: 5px; } + .pd-xl-b-5 { + padding-bottom: 5px; } + .pd-xl-l-5 { + padding-left: 5px; } + .pd-xl-t-5-f { + padding-top: 5px !important; } + .pd-xl-r-5-f { + padding-right: 5px !important; } + .pd-xl-b-5-f { + padding-bottom: 5px !important; } + .pd-xl-l-5-f { + padding-left: 5px !important; } + .pd-xl-6 { + padding: 6px; } + .pd-xl-6-f { + padding: 6px !important; } + .pd-xl-y-6 { + padding-top: 6px; + padding-bottom: 6px; } + .pd-xl-y-6-f { + padding-top: 6px !important; + padding-bottom: 6px !important; } + .pd-xl-x-6 { + padding-left: 6px; + padding-right: 6px; } + .pd-xl-x-6-f { + padding-left: 6px !important; + padding-right: 6px !important; } + .pd-xl-t-6 { + padding-top: 6px; } + .pd-xl-r-6 { + padding-right: 6px; } + .pd-xl-b-6 { + padding-bottom: 6px; } + .pd-xl-l-6 { + padding-left: 6px; } + .pd-xl-t-6-f { + padding-top: 6px !important; } + .pd-xl-r-6-f { + padding-right: 6px !important; } + .pd-xl-b-6-f { + padding-bottom: 6px !important; } + .pd-xl-l-6-f { + padding-left: 6px !important; } + .pd-xl-7 { + padding: 7px; } + .pd-xl-7-f { + padding: 7px !important; } + .pd-xl-y-7 { + padding-top: 7px; + padding-bottom: 7px; } + .pd-xl-y-7-f { + padding-top: 7px !important; + padding-bottom: 7px !important; } + .pd-xl-x-7 { + padding-left: 7px; + padding-right: 7px; } + .pd-xl-x-7-f { + padding-left: 7px !important; + padding-right: 7px !important; } + .pd-xl-t-7 { + padding-top: 7px; } + .pd-xl-r-7 { + padding-right: 7px; } + .pd-xl-b-7 { + padding-bottom: 7px; } + .pd-xl-l-7 { + padding-left: 7px; } + .pd-xl-t-7-f { + padding-top: 7px !important; } + .pd-xl-r-7-f { + padding-right: 7px !important; } + .pd-xl-b-7-f { + padding-bottom: 7px !important; } + .pd-xl-l-7-f { + padding-left: 7px !important; } + .pd-xl-8 { + padding: 8px; } + .pd-xl-8-f { + padding: 8px !important; } + .pd-xl-y-8 { + padding-top: 8px; + padding-bottom: 8px; } + .pd-xl-y-8-f { + padding-top: 8px !important; + padding-bottom: 8px !important; } + .pd-xl-x-8 { + padding-left: 8px; + padding-right: 8px; } + .pd-xl-x-8-f { + padding-left: 8px !important; + padding-right: 8px !important; } + .pd-xl-t-8 { + padding-top: 8px; } + .pd-xl-r-8 { + padding-right: 8px; } + .pd-xl-b-8 { + padding-bottom: 8px; } + .pd-xl-l-8 { + padding-left: 8px; } + .pd-xl-t-8-f { + padding-top: 8px !important; } + .pd-xl-r-8-f { + padding-right: 8px !important; } + .pd-xl-b-8-f { + padding-bottom: 8px !important; } + .pd-xl-l-8-f { + padding-left: 8px !important; } + .pd-xl-9 { + padding: 9px; } + .pd-xl-9-f { + padding: 9px !important; } + .pd-xl-y-9 { + padding-top: 9px; + padding-bottom: 9px; } + .pd-xl-y-9-f { + padding-top: 9px !important; + padding-bottom: 9px !important; } + .pd-xl-x-9 { + padding-left: 9px; + padding-right: 9px; } + .pd-xl-x-9-f { + padding-left: 9px !important; + padding-right: 9px !important; } + .pd-xl-t-9 { + padding-top: 9px; } + .pd-xl-r-9 { + padding-right: 9px; } + .pd-xl-b-9 { + padding-bottom: 9px; } + .pd-xl-l-9 { + padding-left: 9px; } + .pd-xl-t-9-f { + padding-top: 9px !important; } + .pd-xl-r-9-f { + padding-right: 9px !important; } + .pd-xl-b-9-f { + padding-bottom: 9px !important; } + .pd-xl-l-9-f { + padding-left: 9px !important; } + .pd-xl-10 { + padding: 10px; } + .pd-xl-10-f { + padding: 10px !important; } + .pd-xl-y-10 { + padding-top: 10px; + padding-bottom: 10px; } + .pd-xl-y-10-f { + padding-top: 10px !important; + padding-bottom: 10px !important; } + .pd-xl-x-10 { + padding-left: 10px; + padding-right: 10px; } + .pd-xl-x-10-f { + padding-left: 10px !important; + padding-right: 10px !important; } + .pd-xl-t-10 { + padding-top: 10px; } + .pd-xl-r-10 { + padding-right: 10px; } + .pd-xl-b-10 { + padding-bottom: 10px; } + .pd-xl-l-10 { + padding-left: 10px; } + .pd-xl-t-10-f { + padding-top: 10px !important; } + .pd-xl-r-10-f { + padding-right: 10px !important; } + .pd-xl-b-10-f { + padding-bottom: 10px !important; } + .pd-xl-l-10-f { + padding-left: 10px !important; } + .pd-xl-15 { + padding: 15px; } + .pd-xl-15-f { + padding: 15px !important; } + .pd-xl-y-15 { + padding-top: 15px; + padding-bottom: 15px; } + .pd-xl-y-15-f { + padding-top: 15px !important; + padding-bottom: 15px !important; } + .pd-xl-x-15 { + padding-left: 15px; + padding-right: 15px; } + .pd-xl-x-15-f { + padding-left: 15px !important; + padding-right: 15px !important; } + .pd-xl-t-15 { + padding-top: 15px; } + .pd-xl-r-15 { + padding-right: 15px; } + .pd-xl-b-15 { + padding-bottom: 15px; } + .pd-xl-l-15 { + padding-left: 15px; } + .pd-xl-t-15-f { + padding-top: 15px !important; } + .pd-xl-r-15-f { + padding-right: 15px !important; } + .pd-xl-b-15-f { + padding-bottom: 15px !important; } + .pd-xl-l-15-f { + padding-left: 15px !important; } + .pd-xl-20 { + padding: 20px; } + .pd-xl-20-f { + padding: 20px !important; } + .pd-xl-y-20 { + padding-top: 20px; + padding-bottom: 20px; } + .pd-xl-y-20-f { + padding-top: 20px !important; + padding-bottom: 20px !important; } + .pd-xl-x-20 { + padding-left: 20px; + padding-right: 20px; } + .pd-xl-x-20-f { + padding-left: 20px !important; + padding-right: 20px !important; } + .pd-xl-t-20 { + padding-top: 20px; } + .pd-xl-r-20 { + padding-right: 20px; } + .pd-xl-b-20 { + padding-bottom: 20px; } + .pd-xl-l-20 { + padding-left: 20px; } + .pd-xl-t-20-f { + padding-top: 20px !important; } + .pd-xl-r-20-f { + padding-right: 20px !important; } + .pd-xl-b-20-f { + padding-bottom: 20px !important; } + .pd-xl-l-20-f { + padding-left: 20px !important; } + .pd-xl-25 { + padding: 25px; } + .pd-xl-25-f { + padding: 25px !important; } + .pd-xl-y-25 { + padding-top: 25px; + padding-bottom: 25px; } + .pd-xl-y-25-f { + padding-top: 25px !important; + padding-bottom: 25px !important; } + .pd-xl-x-25 { + padding-left: 25px; + padding-right: 25px; } + .pd-xl-x-25-f { + padding-left: 25px !important; + padding-right: 25px !important; } + .pd-xl-t-25 { + padding-top: 25px; } + .pd-xl-r-25 { + padding-right: 25px; } + .pd-xl-b-25 { + padding-bottom: 25px; } + .pd-xl-l-25 { + padding-left: 25px; } + .pd-xl-t-25-f { + padding-top: 25px !important; } + .pd-xl-r-25-f { + padding-right: 25px !important; } + .pd-xl-b-25-f { + padding-bottom: 25px !important; } + .pd-xl-l-25-f { + padding-left: 25px !important; } + .pd-xl-30 { + padding: 30px; } + .pd-xl-30-f { + padding: 30px !important; } + .pd-xl-y-30 { + padding-top: 30px; + padding-bottom: 30px; } + .pd-xl-y-30-f { + padding-top: 30px !important; + padding-bottom: 30px !important; } + .pd-xl-x-30 { + padding-left: 30px; + padding-right: 30px; } + .pd-xl-x-30-f { + padding-left: 30px !important; + padding-right: 30px !important; } + .pd-xl-t-30 { + padding-top: 30px; } + .pd-xl-r-30 { + padding-right: 30px; } + .pd-xl-b-30 { + padding-bottom: 30px; } + .pd-xl-l-30 { + padding-left: 30px; } + .pd-xl-t-30-f { + padding-top: 30px !important; } + .pd-xl-r-30-f { + padding-right: 30px !important; } + .pd-xl-b-30-f { + padding-bottom: 30px !important; } + .pd-xl-l-30-f { + padding-left: 30px !important; } + .pd-xl-35 { + padding: 35px; } + .pd-xl-35-f { + padding: 35px !important; } + .pd-xl-y-35 { + padding-top: 35px; + padding-bottom: 35px; } + .pd-xl-y-35-f { + padding-top: 35px !important; + padding-bottom: 35px !important; } + .pd-xl-x-35 { + padding-left: 35px; + padding-right: 35px; } + .pd-xl-x-35-f { + padding-left: 35px !important; + padding-right: 35px !important; } + .pd-xl-t-35 { + padding-top: 35px; } + .pd-xl-r-35 { + padding-right: 35px; } + .pd-xl-b-35 { + padding-bottom: 35px; } + .pd-xl-l-35 { + padding-left: 35px; } + .pd-xl-t-35-f { + padding-top: 35px !important; } + .pd-xl-r-35-f { + padding-right: 35px !important; } + .pd-xl-b-35-f { + padding-bottom: 35px !important; } + .pd-xl-l-35-f { + padding-left: 35px !important; } + .pd-xl-40 { + padding: 40px; } + .pd-xl-40-f { + padding: 40px !important; } + .pd-xl-y-40 { + padding-top: 40px; + padding-bottom: 40px; } + .pd-xl-y-40-f { + padding-top: 40px !important; + padding-bottom: 40px !important; } + .pd-xl-x-40 { + padding-left: 40px; + padding-right: 40px; } + .pd-xl-x-40-f { + padding-left: 40px !important; + padding-right: 40px !important; } + .pd-xl-t-40 { + padding-top: 40px; } + .pd-xl-r-40 { + padding-right: 40px; } + .pd-xl-b-40 { + padding-bottom: 40px; } + .pd-xl-l-40 { + padding-left: 40px; } + .pd-xl-t-40-f { + padding-top: 40px !important; } + .pd-xl-r-40-f { + padding-right: 40px !important; } + .pd-xl-b-40-f { + padding-bottom: 40px !important; } + .pd-xl-l-40-f { + padding-left: 40px !important; } + .pd-xl-45 { + padding: 45px; } + .pd-xl-45-f { + padding: 45px !important; } + .pd-xl-y-45 { + padding-top: 45px; + padding-bottom: 45px; } + .pd-xl-y-45-f { + padding-top: 45px !important; + padding-bottom: 45px !important; } + .pd-xl-x-45 { + padding-left: 45px; + padding-right: 45px; } + .pd-xl-x-45-f { + padding-left: 45px !important; + padding-right: 45px !important; } + .pd-xl-t-45 { + padding-top: 45px; } + .pd-xl-r-45 { + padding-right: 45px; } + .pd-xl-b-45 { + padding-bottom: 45px; } + .pd-xl-l-45 { + padding-left: 45px; } + .pd-xl-t-45-f { + padding-top: 45px !important; } + .pd-xl-r-45-f { + padding-right: 45px !important; } + .pd-xl-b-45-f { + padding-bottom: 45px !important; } + .pd-xl-l-45-f { + padding-left: 45px !important; } + .pd-xl-50 { + padding: 50px; } + .pd-xl-50-f { + padding: 50px !important; } + .pd-xl-y-50 { + padding-top: 50px; + padding-bottom: 50px; } + .pd-xl-y-50-f { + padding-top: 50px !important; + padding-bottom: 50px !important; } + .pd-xl-x-50 { + padding-left: 50px; + padding-right: 50px; } + .pd-xl-x-50-f { + padding-left: 50px !important; + padding-right: 50px !important; } + .pd-xl-t-50 { + padding-top: 50px; } + .pd-xl-r-50 { + padding-right: 50px; } + .pd-xl-b-50 { + padding-bottom: 50px; } + .pd-xl-l-50 { + padding-left: 50px; } + .pd-xl-t-50-f { + padding-top: 50px !important; } + .pd-xl-r-50-f { + padding-right: 50px !important; } + .pd-xl-b-50-f { + padding-bottom: 50px !important; } + .pd-xl-l-50-f { + padding-left: 50px !important; } + .pd-xl-55 { + padding: 55px; } + .pd-xl-55-f { + padding: 55px !important; } + .pd-xl-y-55 { + padding-top: 55px; + padding-bottom: 55px; } + .pd-xl-y-55-f { + padding-top: 55px !important; + padding-bottom: 55px !important; } + .pd-xl-x-55 { + padding-left: 55px; + padding-right: 55px; } + .pd-xl-x-55-f { + padding-left: 55px !important; + padding-right: 55px !important; } + .pd-xl-t-55 { + padding-top: 55px; } + .pd-xl-r-55 { + padding-right: 55px; } + .pd-xl-b-55 { + padding-bottom: 55px; } + .pd-xl-l-55 { + padding-left: 55px; } + .pd-xl-t-55-f { + padding-top: 55px !important; } + .pd-xl-r-55-f { + padding-right: 55px !important; } + .pd-xl-b-55-f { + padding-bottom: 55px !important; } + .pd-xl-l-55-f { + padding-left: 55px !important; } + .pd-xl-60 { + padding: 60px; } + .pd-xl-60-f { + padding: 60px !important; } + .pd-xl-y-60 { + padding-top: 60px; + padding-bottom: 60px; } + .pd-xl-y-60-f { + padding-top: 60px !important; + padding-bottom: 60px !important; } + .pd-xl-x-60 { + padding-left: 60px; + padding-right: 60px; } + .pd-xl-x-60-f { + padding-left: 60px !important; + padding-right: 60px !important; } + .pd-xl-t-60 { + padding-top: 60px; } + .pd-xl-r-60 { + padding-right: 60px; } + .pd-xl-b-60 { + padding-bottom: 60px; } + .pd-xl-l-60 { + padding-left: 60px; } + .pd-xl-t-60-f { + padding-top: 60px !important; } + .pd-xl-r-60-f { + padding-right: 60px !important; } + .pd-xl-b-60-f { + padding-bottom: 60px !important; } + .pd-xl-l-60-f { + padding-left: 60px !important; } + .pd-xl-65 { + padding: 65px; } + .pd-xl-65-f { + padding: 65px !important; } + .pd-xl-y-65 { + padding-top: 65px; + padding-bottom: 65px; } + .pd-xl-y-65-f { + padding-top: 65px !important; + padding-bottom: 65px !important; } + .pd-xl-x-65 { + padding-left: 65px; + padding-right: 65px; } + .pd-xl-x-65-f { + padding-left: 65px !important; + padding-right: 65px !important; } + .pd-xl-t-65 { + padding-top: 65px; } + .pd-xl-r-65 { + padding-right: 65px; } + .pd-xl-b-65 { + padding-bottom: 65px; } + .pd-xl-l-65 { + padding-left: 65px; } + .pd-xl-t-65-f { + padding-top: 65px !important; } + .pd-xl-r-65-f { + padding-right: 65px !important; } + .pd-xl-b-65-f { + padding-bottom: 65px !important; } + .pd-xl-l-65-f { + padding-left: 65px !important; } + .pd-xl-70 { + padding: 70px; } + .pd-xl-70-f { + padding: 70px !important; } + .pd-xl-y-70 { + padding-top: 70px; + padding-bottom: 70px; } + .pd-xl-y-70-f { + padding-top: 70px !important; + padding-bottom: 70px !important; } + .pd-xl-x-70 { + padding-left: 70px; + padding-right: 70px; } + .pd-xl-x-70-f { + padding-left: 70px !important; + padding-right: 70px !important; } + .pd-xl-t-70 { + padding-top: 70px; } + .pd-xl-r-70 { + padding-right: 70px; } + .pd-xl-b-70 { + padding-bottom: 70px; } + .pd-xl-l-70 { + padding-left: 70px; } + .pd-xl-t-70-f { + padding-top: 70px !important; } + .pd-xl-r-70-f { + padding-right: 70px !important; } + .pd-xl-b-70-f { + padding-bottom: 70px !important; } + .pd-xl-l-70-f { + padding-left: 70px !important; } + .pd-xl-75 { + padding: 75px; } + .pd-xl-75-f { + padding: 75px !important; } + .pd-xl-y-75 { + padding-top: 75px; + padding-bottom: 75px; } + .pd-xl-y-75-f { + padding-top: 75px !important; + padding-bottom: 75px !important; } + .pd-xl-x-75 { + padding-left: 75px; + padding-right: 75px; } + .pd-xl-x-75-f { + padding-left: 75px !important; + padding-right: 75px !important; } + .pd-xl-t-75 { + padding-top: 75px; } + .pd-xl-r-75 { + padding-right: 75px; } + .pd-xl-b-75 { + padding-bottom: 75px; } + .pd-xl-l-75 { + padding-left: 75px; } + .pd-xl-t-75-f { + padding-top: 75px !important; } + .pd-xl-r-75-f { + padding-right: 75px !important; } + .pd-xl-b-75-f { + padding-bottom: 75px !important; } + .pd-xl-l-75-f { + padding-left: 75px !important; } + .pd-xl-80 { + padding: 80px; } + .pd-xl-80-f { + padding: 80px !important; } + .pd-xl-y-80 { + padding-top: 80px; + padding-bottom: 80px; } + .pd-xl-y-80-f { + padding-top: 80px !important; + padding-bottom: 80px !important; } + .pd-xl-x-80 { + padding-left: 80px; + padding-right: 80px; } + .pd-xl-x-80-f { + padding-left: 80px !important; + padding-right: 80px !important; } + .pd-xl-t-80 { + padding-top: 80px; } + .pd-xl-r-80 { + padding-right: 80px; } + .pd-xl-b-80 { + padding-bottom: 80px; } + .pd-xl-l-80 { + padding-left: 80px; } + .pd-xl-t-80-f { + padding-top: 80px !important; } + .pd-xl-r-80-f { + padding-right: 80px !important; } + .pd-xl-b-80-f { + padding-bottom: 80px !important; } + .pd-xl-l-80-f { + padding-left: 80px !important; } + .pd-xl-85 { + padding: 85px; } + .pd-xl-85-f { + padding: 85px !important; } + .pd-xl-y-85 { + padding-top: 85px; + padding-bottom: 85px; } + .pd-xl-y-85-f { + padding-top: 85px !important; + padding-bottom: 85px !important; } + .pd-xl-x-85 { + padding-left: 85px; + padding-right: 85px; } + .pd-xl-x-85-f { + padding-left: 85px !important; + padding-right: 85px !important; } + .pd-xl-t-85 { + padding-top: 85px; } + .pd-xl-r-85 { + padding-right: 85px; } + .pd-xl-b-85 { + padding-bottom: 85px; } + .pd-xl-l-85 { + padding-left: 85px; } + .pd-xl-t-85-f { + padding-top: 85px !important; } + .pd-xl-r-85-f { + padding-right: 85px !important; } + .pd-xl-b-85-f { + padding-bottom: 85px !important; } + .pd-xl-l-85-f { + padding-left: 85px !important; } + .pd-xl-90 { + padding: 90px; } + .pd-xl-90-f { + padding: 90px !important; } + .pd-xl-y-90 { + padding-top: 90px; + padding-bottom: 90px; } + .pd-xl-y-90-f { + padding-top: 90px !important; + padding-bottom: 90px !important; } + .pd-xl-x-90 { + padding-left: 90px; + padding-right: 90px; } + .pd-xl-x-90-f { + padding-left: 90px !important; + padding-right: 90px !important; } + .pd-xl-t-90 { + padding-top: 90px; } + .pd-xl-r-90 { + padding-right: 90px; } + .pd-xl-b-90 { + padding-bottom: 90px; } + .pd-xl-l-90 { + padding-left: 90px; } + .pd-xl-t-90-f { + padding-top: 90px !important; } + .pd-xl-r-90-f { + padding-right: 90px !important; } + .pd-xl-b-90-f { + padding-bottom: 90px !important; } + .pd-xl-l-90-f { + padding-left: 90px !important; } + .pd-xl-95 { + padding: 95px; } + .pd-xl-95-f { + padding: 95px !important; } + .pd-xl-y-95 { + padding-top: 95px; + padding-bottom: 95px; } + .pd-xl-y-95-f { + padding-top: 95px !important; + padding-bottom: 95px !important; } + .pd-xl-x-95 { + padding-left: 95px; + padding-right: 95px; } + .pd-xl-x-95-f { + padding-left: 95px !important; + padding-right: 95px !important; } + .pd-xl-t-95 { + padding-top: 95px; } + .pd-xl-r-95 { + padding-right: 95px; } + .pd-xl-b-95 { + padding-bottom: 95px; } + .pd-xl-l-95 { + padding-left: 95px; } + .pd-xl-t-95-f { + padding-top: 95px !important; } + .pd-xl-r-95-f { + padding-right: 95px !important; } + .pd-xl-b-95-f { + padding-bottom: 95px !important; } + .pd-xl-l-95-f { + padding-left: 95px !important; } + .pd-xl-100 { + padding: 100px; } + .pd-xl-100-f { + padding: 100px !important; } + .pd-xl-y-100 { + padding-top: 100px; + padding-bottom: 100px; } + .pd-xl-y-100-f { + padding-top: 100px !important; + padding-bottom: 100px !important; } + .pd-xl-x-100 { + padding-left: 100px; + padding-right: 100px; } + .pd-xl-x-100-f { + padding-left: 100px !important; + padding-right: 100px !important; } + .pd-xl-t-100 { + padding-top: 100px; } + .pd-xl-r-100 { + padding-right: 100px; } + .pd-xl-b-100 { + padding-bottom: 100px; } + .pd-xl-l-100 { + padding-left: 100px; } + .pd-xl-t-100-f { + padding-top: 100px !important; } + .pd-xl-r-100-f { + padding-right: 100px !important; } + .pd-xl-b-100-f { + padding-bottom: 100px !important; } + .pd-xl-l-100-f { + padding-left: 100px !important; } + .pd-xl-110 { + padding: 110px; } + .pd-xl-110-f { + padding: 110px !important; } + .pd-xl-y-110 { + padding-top: 110px; + padding-bottom: 110px; } + .pd-xl-y-110-f { + padding-top: 110px !important; + padding-bottom: 110px !important; } + .pd-xl-x-110 { + padding-left: 110px; + padding-right: 110px; } + .pd-xl-x-110-f { + padding-left: 110px !important; + padding-right: 110px !important; } + .pd-xl-t-110 { + padding-top: 110px; } + .pd-xl-r-110 { + padding-right: 110px; } + .pd-xl-b-110 { + padding-bottom: 110px; } + .pd-xl-l-110 { + padding-left: 110px; } + .pd-xl-t-110-f { + padding-top: 110px !important; } + .pd-xl-r-110-f { + padding-right: 110px !important; } + .pd-xl-b-110-f { + padding-bottom: 110px !important; } + .pd-xl-l-110-f { + padding-left: 110px !important; } + .pd-xl-120 { + padding: 120px; } + .pd-xl-120-f { + padding: 120px !important; } + .pd-xl-y-120 { + padding-top: 120px; + padding-bottom: 120px; } + .pd-xl-y-120-f { + padding-top: 120px !important; + padding-bottom: 120px !important; } + .pd-xl-x-120 { + padding-left: 120px; + padding-right: 120px; } + .pd-xl-x-120-f { + padding-left: 120px !important; + padding-right: 120px !important; } + .pd-xl-t-120 { + padding-top: 120px; } + .pd-xl-r-120 { + padding-right: 120px; } + .pd-xl-b-120 { + padding-bottom: 120px; } + .pd-xl-l-120 { + padding-left: 120px; } + .pd-xl-t-120-f { + padding-top: 120px !important; } + .pd-xl-r-120-f { + padding-right: 120px !important; } + .pd-xl-b-120-f { + padding-bottom: 120px !important; } + .pd-xl-l-120-f { + padding-left: 120px !important; } + .pd-xl-130 { + padding: 130px; } + .pd-xl-130-f { + padding: 130px !important; } + .pd-xl-y-130 { + padding-top: 130px; + padding-bottom: 130px; } + .pd-xl-y-130-f { + padding-top: 130px !important; + padding-bottom: 130px !important; } + .pd-xl-x-130 { + padding-left: 130px; + padding-right: 130px; } + .pd-xl-x-130-f { + padding-left: 130px !important; + padding-right: 130px !important; } + .pd-xl-t-130 { + padding-top: 130px; } + .pd-xl-r-130 { + padding-right: 130px; } + .pd-xl-b-130 { + padding-bottom: 130px; } + .pd-xl-l-130 { + padding-left: 130px; } + .pd-xl-t-130-f { + padding-top: 130px !important; } + .pd-xl-r-130-f { + padding-right: 130px !important; } + .pd-xl-b-130-f { + padding-bottom: 130px !important; } + .pd-xl-l-130-f { + padding-left: 130px !important; } + .pd-xl-140 { + padding: 140px; } + .pd-xl-140-f { + padding: 140px !important; } + .pd-xl-y-140 { + padding-top: 140px; + padding-bottom: 140px; } + .pd-xl-y-140-f { + padding-top: 140px !important; + padding-bottom: 140px !important; } + .pd-xl-x-140 { + padding-left: 140px; + padding-right: 140px; } + .pd-xl-x-140-f { + padding-left: 140px !important; + padding-right: 140px !important; } + .pd-xl-t-140 { + padding-top: 140px; } + .pd-xl-r-140 { + padding-right: 140px; } + .pd-xl-b-140 { + padding-bottom: 140px; } + .pd-xl-l-140 { + padding-left: 140px; } + .pd-xl-t-140-f { + padding-top: 140px !important; } + .pd-xl-r-140-f { + padding-right: 140px !important; } + .pd-xl-b-140-f { + padding-bottom: 140px !important; } + .pd-xl-l-140-f { + padding-left: 140px !important; } + .pd-xl-150 { + padding: 150px; } + .pd-xl-150-f { + padding: 150px !important; } + .pd-xl-y-150 { + padding-top: 150px; + padding-bottom: 150px; } + .pd-xl-y-150-f { + padding-top: 150px !important; + padding-bottom: 150px !important; } + .pd-xl-x-150 { + padding-left: 150px; + padding-right: 150px; } + .pd-xl-x-150-f { + padding-left: 150px !important; + padding-right: 150px !important; } + .pd-xl-t-150 { + padding-top: 150px; } + .pd-xl-r-150 { + padding-right: 150px; } + .pd-xl-b-150 { + padding-bottom: 150px; } + .pd-xl-l-150 { + padding-left: 150px; } + .pd-xl-t-150-f { + padding-top: 150px !important; } + .pd-xl-r-150-f { + padding-right: 150px !important; } + .pd-xl-b-150-f { + padding-bottom: 150px !important; } + .pd-xl-l-150-f { + padding-left: 150px !important; } + .pd-xl-160 { + padding: 160px; } + .pd-xl-160-f { + padding: 160px !important; } + .pd-xl-y-160 { + padding-top: 160px; + padding-bottom: 160px; } + .pd-xl-y-160-f { + padding-top: 160px !important; + padding-bottom: 160px !important; } + .pd-xl-x-160 { + padding-left: 160px; + padding-right: 160px; } + .pd-xl-x-160-f { + padding-left: 160px !important; + padding-right: 160px !important; } + .pd-xl-t-160 { + padding-top: 160px; } + .pd-xl-r-160 { + padding-right: 160px; } + .pd-xl-b-160 { + padding-bottom: 160px; } + .pd-xl-l-160 { + padding-left: 160px; } + .pd-xl-t-160-f { + padding-top: 160px !important; } + .pd-xl-r-160-f { + padding-right: 160px !important; } + .pd-xl-b-160-f { + padding-bottom: 160px !important; } + .pd-xl-l-160-f { + padding-left: 160px !important; } + .pd-xl-170 { + padding: 170px; } + .pd-xl-170-f { + padding: 170px !important; } + .pd-xl-y-170 { + padding-top: 170px; + padding-bottom: 170px; } + .pd-xl-y-170-f { + padding-top: 170px !important; + padding-bottom: 170px !important; } + .pd-xl-x-170 { + padding-left: 170px; + padding-right: 170px; } + .pd-xl-x-170-f { + padding-left: 170px !important; + padding-right: 170px !important; } + .pd-xl-t-170 { + padding-top: 170px; } + .pd-xl-r-170 { + padding-right: 170px; } + .pd-xl-b-170 { + padding-bottom: 170px; } + .pd-xl-l-170 { + padding-left: 170px; } + .pd-xl-t-170-f { + padding-top: 170px !important; } + .pd-xl-r-170-f { + padding-right: 170px !important; } + .pd-xl-b-170-f { + padding-bottom: 170px !important; } + .pd-xl-l-170-f { + padding-left: 170px !important; } + .pd-xl-180 { + padding: 180px; } + .pd-xl-180-f { + padding: 180px !important; } + .pd-xl-y-180 { + padding-top: 180px; + padding-bottom: 180px; } + .pd-xl-y-180-f { + padding-top: 180px !important; + padding-bottom: 180px !important; } + .pd-xl-x-180 { + padding-left: 180px; + padding-right: 180px; } + .pd-xl-x-180-f { + padding-left: 180px !important; + padding-right: 180px !important; } + .pd-xl-t-180 { + padding-top: 180px; } + .pd-xl-r-180 { + padding-right: 180px; } + .pd-xl-b-180 { + padding-bottom: 180px; } + .pd-xl-l-180 { + padding-left: 180px; } + .pd-xl-t-180-f { + padding-top: 180px !important; } + .pd-xl-r-180-f { + padding-right: 180px !important; } + .pd-xl-b-180-f { + padding-bottom: 180px !important; } + .pd-xl-l-180-f { + padding-left: 180px !important; } + .pd-xl-190 { + padding: 190px; } + .pd-xl-190-f { + padding: 190px !important; } + .pd-xl-y-190 { + padding-top: 190px; + padding-bottom: 190px; } + .pd-xl-y-190-f { + padding-top: 190px !important; + padding-bottom: 190px !important; } + .pd-xl-x-190 { + padding-left: 190px; + padding-right: 190px; } + .pd-xl-x-190-f { + padding-left: 190px !important; + padding-right: 190px !important; } + .pd-xl-t-190 { + padding-top: 190px; } + .pd-xl-r-190 { + padding-right: 190px; } + .pd-xl-b-190 { + padding-bottom: 190px; } + .pd-xl-l-190 { + padding-left: 190px; } + .pd-xl-t-190-f { + padding-top: 190px !important; } + .pd-xl-r-190-f { + padding-right: 190px !important; } + .pd-xl-b-190-f { + padding-bottom: 190px !important; } + .pd-xl-l-190-f { + padding-left: 190px !important; } + .pd-xl-200 { + padding: 200px; } + .pd-xl-200-f { + padding: 200px !important; } + .pd-xl-y-200 { + padding-top: 200px; + padding-bottom: 200px; } + .pd-xl-y-200-f { + padding-top: 200px !important; + padding-bottom: 200px !important; } + .pd-xl-x-200 { + padding-left: 200px; + padding-right: 200px; } + .pd-xl-x-200-f { + padding-left: 200px !important; + padding-right: 200px !important; } + .pd-xl-t-200 { + padding-top: 200px; } + .pd-xl-r-200 { + padding-right: 200px; } + .pd-xl-b-200 { + padding-bottom: 200px; } + .pd-xl-l-200 { + padding-left: 200px; } + .pd-xl-t-200-f { + padding-top: 200px !important; } + .pd-xl-r-200-f { + padding-right: 200px !important; } + .pd-xl-b-200-f { + padding-bottom: 200px !important; } + .pd-xl-l-200-f { + padding-left: 200px !important; } } + +.pd-12 { + padding: 12px; } + +.pd-12-f { + padding: 12px !important; } + +.pd-y-12 { + padding-top: 12px; + padding-bottom: 12px; } + +.pd-y-12-f { + padding-top: 12px !important; + padding-bottom: 12px !important; } + +.pd-x-12 { + padding-left: 12px; + padding-right: 12px; } + +.pd-x-12-f { + padding-left: 12px !important; + padding-right: 12px !important; } + +.pd-t-12 { + padding-top: 12px; } + +.pd-r-12 { + padding-right: 12px; } + +.pd-b-12 { + padding-bottom: 12px; } + +.pd-l-12 { + padding-left: 12px; } + +.pd-t-12-f { + padding-top: 12px !important; } + +.pd-r-12-f { + padding-right: 12px !important; } + +.pd-b-12-f { + padding-bottom: 12px !important; } + +.pd-l-12-f { + padding-left: 12px !important; } + +.pd-13 { + padding: 13px; } + +.pd-13-f { + padding: 13px !important; } + +.pd-y-13 { + padding-top: 13px; + padding-bottom: 13px; } + +.pd-y-13-f { + padding-top: 13px !important; + padding-bottom: 13px !important; } + +.pd-x-13 { + padding-left: 13px; + padding-right: 13px; } + +.pd-x-13-f { + padding-left: 13px !important; + padding-right: 13px !important; } + +.pd-t-13 { + padding-top: 13px; } + +.pd-r-13 { + padding-right: 13px; } + +.pd-b-13 { + padding-bottom: 13px; } + +.pd-l-13 { + padding-left: 13px; } + +.pd-t-13-f { + padding-top: 13px !important; } + +.pd-r-13-f { + padding-right: 13px !important; } + +.pd-b-13-f { + padding-bottom: 13px !important; } + +.pd-l-13-f { + padding-left: 13px !important; } + +/* ###### 9.7 Position ###### */ +.pos-absolute { + position: absolute; } + +.pos-relative { + position: relative; } + +.pos-fixed { + position: fixed; } + +.pos-static { + position: static; } + +.pos-absolute-f { + position: absolute !important; } + +.pos-relative-f { + position: relative !important; } + +.pos-fixed-f { + position: fixed !important; } + +.pos-static-f { + position: static !important; } + +.t-0 { + top: 0px; } + +.r-0 { + right: 0px; } + +.b-0 { + bottom: 0px; } + +.l-0 { + left: 0px; } + +.t--0 { + top: -0px; } + +.r--0 { + right: -0px; } + +.b--0 { + bottom: -0px; } + +.l--0 { + left: -0px; } + +.a-0 { + top: 0px; + right: 0px; + bottom: 0px; + left: 0px; } + +.x-0 { + left: 0px; + right: 0px; } + +.y-0 { + left: 0px; + right: 0px; } + +.t-5 { + top: 5px; } + +.r-5 { + right: 5px; } + +.b-5 { + bottom: 5px; } + +.l-5 { + left: 5px; } + +.t--5 { + top: -5px; } + +.r--5 { + right: -5px; } + +.b--5 { + bottom: -5px; } + +.l--5 { + left: -5px; } + +.a-5 { + top: 5px; + right: 5px; + bottom: 5px; + left: 5px; } + +.x-5 { + left: 5px; + right: 5px; } + +.y-5 { + left: 5px; + right: 5px; } + +.t-10 { + top: 10px; } + +.r-10 { + right: 10px; } + +.b-10 { + bottom: 10px; } + +.l-10 { + left: 10px; } + +.t--10 { + top: -10px; } + +.r--10 { + right: -10px; } + +.b--10 { + bottom: -10px; } + +.l--10 { + left: -10px; } + +.a-10 { + top: 10px; + right: 10px; + bottom: 10px; + left: 10px; } + +.x-10 { + left: 10px; + right: 10px; } + +.y-10 { + left: 10px; + right: 10px; } + +.t-15 { + top: 15px; } + +.r-15 { + right: 15px; } + +.b-15 { + bottom: 15px; } + +.l-15 { + left: 15px; } + +.t--15 { + top: -15px; } + +.r--15 { + right: -15px; } + +.b--15 { + bottom: -15px; } + +.l--15 { + left: -15px; } + +.a-15 { + top: 15px; + right: 15px; + bottom: 15px; + left: 15px; } + +.x-15 { + left: 15px; + right: 15px; } + +.y-15 { + left: 15px; + right: 15px; } + +.t-20 { + top: 20px; } + +.r-20 { + right: 20px; } + +.b-20 { + bottom: 20px; } + +.l-20 { + left: 20px; } + +.t--20 { + top: -20px; } + +.r--20 { + right: -20px; } + +.b--20 { + bottom: -20px; } + +.l--20 { + left: -20px; } + +.a-20 { + top: 20px; + right: 20px; + bottom: 20px; + left: 20px; } + +.x-20 { + left: 20px; + right: 20px; } + +.y-20 { + left: 20px; + right: 20px; } + +.t-25 { + top: 25px; } + +.r-25 { + right: 25px; } + +.b-25 { + bottom: 25px; } + +.l-25 { + left: 25px; } + +.t--25 { + top: -25px; } + +.r--25 { + right: -25px; } + +.b--25 { + bottom: -25px; } + +.l--25 { + left: -25px; } + +.a-25 { + top: 25px; + right: 25px; + bottom: 25px; + left: 25px; } + +.x-25 { + left: 25px; + right: 25px; } + +.y-25 { + left: 25px; + right: 25px; } + +.t-30 { + top: 30px; } + +.r-30 { + right: 30px; } + +.b-30 { + bottom: 30px; } + +.l-30 { + left: 30px; } + +.t--30 { + top: -30px; } + +.r--30 { + right: -30px; } + +.b--30 { + bottom: -30px; } + +.l--30 { + left: -30px; } + +.a-30 { + top: 30px; + right: 30px; + bottom: 30px; + left: 30px; } + +.x-30 { + left: 30px; + right: 30px; } + +.y-30 { + left: 30px; + right: 30px; } + +.t-35 { + top: 35px; } + +.r-35 { + right: 35px; } + +.b-35 { + bottom: 35px; } + +.l-35 { + left: 35px; } + +.t--35 { + top: -35px; } + +.r--35 { + right: -35px; } + +.b--35 { + bottom: -35px; } + +.l--35 { + left: -35px; } + +.a-35 { + top: 35px; + right: 35px; + bottom: 35px; + left: 35px; } + +.x-35 { + left: 35px; + right: 35px; } + +.y-35 { + left: 35px; + right: 35px; } + +.t-40 { + top: 40px; } + +.r-40 { + right: 40px; } + +.b-40 { + bottom: 40px; } + +.l-40 { + left: 40px; } + +.t--40 { + top: -40px; } + +.r--40 { + right: -40px; } + +.b--40 { + bottom: -40px; } + +.l--40 { + left: -40px; } + +.a-40 { + top: 40px; + right: 40px; + bottom: 40px; + left: 40px; } + +.x-40 { + left: 40px; + right: 40px; } + +.y-40 { + left: 40px; + right: 40px; } + +.t-45 { + top: 45px; } + +.r-45 { + right: 45px; } + +.b-45 { + bottom: 45px; } + +.l-45 { + left: 45px; } + +.t--45 { + top: -45px; } + +.r--45 { + right: -45px; } + +.b--45 { + bottom: -45px; } + +.l--45 { + left: -45px; } + +.a-45 { + top: 45px; + right: 45px; + bottom: 45px; + left: 45px; } + +.x-45 { + left: 45px; + right: 45px; } + +.y-45 { + left: 45px; + right: 45px; } + +.t-50 { + top: 50px; } + +.r-50 { + right: 50px; } + +.b-50 { + bottom: 50px; } + +.l-50 { + left: 50px; } + +.t--50 { + top: -50px; } + +.r--50 { + right: -50px; } + +.b--50 { + bottom: -50px; } + +.l--50 { + left: -50px; } + +.a-50 { + top: 50px; + right: 50px; + bottom: 50px; + left: 50px; } + +.x-50 { + left: 50px; + right: 50px; } + +.y-50 { + left: 50px; + right: 50px; } + +.t-55 { + top: 55px; } + +.r-55 { + right: 55px; } + +.b-55 { + bottom: 55px; } + +.l-55 { + left: 55px; } + +.t--55 { + top: -55px; } + +.r--55 { + right: -55px; } + +.b--55 { + bottom: -55px; } + +.l--55 { + left: -55px; } + +.a-55 { + top: 55px; + right: 55px; + bottom: 55px; + left: 55px; } + +.x-55 { + left: 55px; + right: 55px; } + +.y-55 { + left: 55px; + right: 55px; } + +.t-60 { + top: 60px; } + +.r-60 { + right: 60px; } + +.b-60 { + bottom: 60px; } + +.l-60 { + left: 60px; } + +.t--60 { + top: -60px; } + +.r--60 { + right: -60px; } + +.b--60 { + bottom: -60px; } + +.l--60 { + left: -60px; } + +.a-60 { + top: 60px; + right: 60px; + bottom: 60px; + left: 60px; } + +.x-60 { + left: 60px; + right: 60px; } + +.y-60 { + left: 60px; + right: 60px; } + +.t-65 { + top: 65px; } + +.r-65 { + right: 65px; } + +.b-65 { + bottom: 65px; } + +.l-65 { + left: 65px; } + +.t--65 { + top: -65px; } + +.r--65 { + right: -65px; } + +.b--65 { + bottom: -65px; } + +.l--65 { + left: -65px; } + +.a-65 { + top: 65px; + right: 65px; + bottom: 65px; + left: 65px; } + +.x-65 { + left: 65px; + right: 65px; } + +.y-65 { + left: 65px; + right: 65px; } + +.t-70 { + top: 70px; } + +.r-70 { + right: 70px; } + +.b-70 { + bottom: 70px; } + +.l-70 { + left: 70px; } + +.t--70 { + top: -70px; } + +.r--70 { + right: -70px; } + +.b--70 { + bottom: -70px; } + +.l--70 { + left: -70px; } + +.a-70 { + top: 70px; + right: 70px; + bottom: 70px; + left: 70px; } + +.x-70 { + left: 70px; + right: 70px; } + +.y-70 { + left: 70px; + right: 70px; } + +.t-75 { + top: 75px; } + +.r-75 { + right: 75px; } + +.b-75 { + bottom: 75px; } + +.l-75 { + left: 75px; } + +.t--75 { + top: -75px; } + +.r--75 { + right: -75px; } + +.b--75 { + bottom: -75px; } + +.l--75 { + left: -75px; } + +.a-75 { + top: 75px; + right: 75px; + bottom: 75px; + left: 75px; } + +.x-75 { + left: 75px; + right: 75px; } + +.y-75 { + left: 75px; + right: 75px; } + +.t-80 { + top: 80px; } + +.r-80 { + right: 80px; } + +.b-80 { + bottom: 80px; } + +.l-80 { + left: 80px; } + +.t--80 { + top: -80px; } + +.r--80 { + right: -80px; } + +.b--80 { + bottom: -80px; } + +.l--80 { + left: -80px; } + +.a-80 { + top: 80px; + right: 80px; + bottom: 80px; + left: 80px; } + +.x-80 { + left: 80px; + right: 80px; } + +.y-80 { + left: 80px; + right: 80px; } + +.t-85 { + top: 85px; } + +.r-85 { + right: 85px; } + +.b-85 { + bottom: 85px; } + +.l-85 { + left: 85px; } + +.t--85 { + top: -85px; } + +.r--85 { + right: -85px; } + +.b--85 { + bottom: -85px; } + +.l--85 { + left: -85px; } + +.a-85 { + top: 85px; + right: 85px; + bottom: 85px; + left: 85px; } + +.x-85 { + left: 85px; + right: 85px; } + +.y-85 { + left: 85px; + right: 85px; } + +.t-90 { + top: 90px; } + +.r-90 { + right: 90px; } + +.b-90 { + bottom: 90px; } + +.l-90 { + left: 90px; } + +.t--90 { + top: -90px; } + +.r--90 { + right: -90px; } + +.b--90 { + bottom: -90px; } + +.l--90 { + left: -90px; } + +.a-90 { + top: 90px; + right: 90px; + bottom: 90px; + left: 90px; } + +.x-90 { + left: 90px; + right: 90px; } + +.y-90 { + left: 90px; + right: 90px; } + +.t-95 { + top: 95px; } + +.r-95 { + right: 95px; } + +.b-95 { + bottom: 95px; } + +.l-95 { + left: 95px; } + +.t--95 { + top: -95px; } + +.r--95 { + right: -95px; } + +.b--95 { + bottom: -95px; } + +.l--95 { + left: -95px; } + +.a-95 { + top: 95px; + right: 95px; + bottom: 95px; + left: 95px; } + +.x-95 { + left: 95px; + right: 95px; } + +.y-95 { + left: 95px; + right: 95px; } + +.t-100 { + top: 100px; } + +.r-100 { + right: 100px; } + +.b-100 { + bottom: 100px; } + +.l-100 { + left: 100px; } + +.t--100 { + top: -100px; } + +.r--100 { + right: -100px; } + +.b--100 { + bottom: -100px; } + +.l--100 { + left: -100px; } + +.a-100 { + top: 100px; + right: 100px; + bottom: 100px; + left: 100px; } + +.x-100 { + left: 100px; + right: 100px; } + +.y-100 { + left: 100px; + right: 100px; } + +.t-2 { + top: 2px; } + +.r--5 { + right: -5px; } + +.z-index-0 { + z-index: 0; } + +.z-index-10 { + z-index: 10; } + +.z-index-50 { + z-index: 50; } + +.z-index-100 { + z-index: 100; } + +.z-index-150 { + z-index: 150; } + +.z-index-200 { + z-index: 200; } + +@media (min-width: 480px) { + .pos-xs-absolute { + position: absolute; } + .pos-xs-relative { + position: relative; } + .pos-xs-fixed { + position: fixed; } + .pos-xs-static { + position: static; } + .t-xs-auto { + top: auto; } + .r-xs-auto { + right: auto; } + .b-xs-auto { + bottom: auto; } + .l-xs-auto { + left: auto; } } + +@media (min-width: 576px) { + .pos-sm-absolute { + position: absolute; } + .pos-sm-relative { + position: relative; } + .pos-sm-fixed { + position: fixed; } + .pos-sm-static { + position: static; } + .t-sm-auto { + top: auto; } + .r-sm-auto { + right: auto; } + .b-sm-auto { + bottom: auto; } + .l-sm-auto { + left: auto; } } + +@media (min-width: 768px) { + .pos-md-absolute { + position: absolute; } + .pos-md-relative { + position: relative; } + .pos-md-fixed { + position: fixed; } + .pos-md-static { + position: static; } + .t-md-auto { + top: auto; } + .r-md-auto { + right: auto; } + .b-md-auto { + bottom: auto; } + .l-md-auto { + left: auto; } } + +@media (min-width: 992px) { + .pos-lg-absolute { + position: absolute; } + .pos-lg-relative { + position: relative; } + .pos-lg-fixed { + position: fixed; } + .pos-lg-static { + position: static; } + .t-lg-auto { + top: auto; } + .r-lg-auto { + right: auto; } + .b-lg-auto { + bottom: auto; } + .l-lg-auto { + left: auto; } } + +@media (min-width: 1200px) { + .pos-xl-absolute { + position: absolute; } + .pos-xl-relative { + position: relative; } + .pos-xl-fixed { + position: fixed; } + .pos-xl-static { + position: static; } + .t-xl-auto { + top: auto; } + .r-xl-auto { + right: auto; } + .b-xl-auto { + bottom: auto; } + .l-xl-auto { + left: auto; } } + +/* ###### 9.8 Typography ###### */ +.tx-black { + font-weight: 900; } + +.tx-bold { + font-weight: 700; } + +.tx-semibold { + font-weight: 600; } + +.tx-medium { + font-weight: 500; } + +.tx-normal { + font-weight: 400; } + +.tx-light { + font-weight: 300; } + +.tx-thin { + font-weight: 200; } + +.tx-xthin { + font-weight: 100; } + +.tx-sserif { + font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; } + +.tx-roboto { + font-family: 'Roboto', sans-serif; } + +.tx-white { + color: #fff; } + +.tx-black { + color: #000; } + +.tx-primary { + color: #3366ff; } + +.tx-success { + color: #3bb001; } + +.tx-warning { + color: #ffc107; } + +.tx-danger { + color: #dc3545; } + +.tx-info { + color: #17a2b8; } + +.tx-inverse { + color: #1c273c; } + +.tx-teal { + color: #00cccc; } + +.tx-dark { + color: #1c273c; } + +.tx-indigo { + color: #5b47fb; } + +.tx-purple { + color: #6f42c1; } + +.tx-orange { + color: #fd7e14; } + +.tx-pink { + color: #f10075; } + +.tx-gray-100 { + color: #f4f5f8; } + +.tx-gray-200 { + color: #e3e7ed; } + +.tx-gray-300 { + color: #cdd4e0; } + +.tx-gray-400 { + color: #b4bdce; } + +.tx-gray-500 { + color: #97a3b9; } + +.tx-gray-600 { + color: #7987a1; } + +.tx-gray-700 { + color: #596882; } + +.tx-gray-800 { + color: #3b4863; } + +.tx-gray-900 { + color: #1c273c; } + +.tx-white-2 { + color: rgba(255, 255, 255, 0.2); } + +.tx-white-3 { + color: rgba(255, 255, 255, 0.3); } + +.tx-white-4 { + color: rgba(255, 255, 255, 0.4); } + +.tx-white-5 { + color: rgba(255, 255, 255, 0.5); } + +.tx-white-6 { + color: rgba(255, 255, 255, 0.6); } + +.tx-white-7 { + color: rgba(255, 255, 255, 0.7); } + +.tx-white-8 { + color: rgba(255, 255, 255, 0.8); } + +.tx-spacing-1 { + letter-spacing: 0.5px; } + +.tx-spacing-2 { + letter-spacing: 1px; } + +.tx-spacing-3 { + letter-spacing: 1.5px; } + +.tx-spacing-4 { + letter-spacing: 2px; } + +.tx-spacing-5 { + letter-spacing: 2.5px; } + +.tx-spacing-6 { + letter-spacing: 3px; } + +.tx-spacing-7 { + letter-spacign: 3.5px; } + +.tx-spacing-8 { + letter-spacing: 4px; } + +.tx-spacing--1 { + letter-spacing: -0.5px; } + +.tx-spacing--2 { + letter-spacing: -1px; } + +.tx-spacing--3 { + letter-spacing: -1.5px; } + +.tx-spacing--4 { + letter-spacing: -2px; } + +.tx-spacing--5 { + letter-spacing: -2.5px; } + +.tx-spacing--6 { + letter-spacing: -3px; } + +.tx-spacing--7 { + letter-spacing: -3.5px; } + +.tx-spacing--8 { + letter-spacing: -4px; } + +.tx-uppercase { + text-transform: uppercase; } + +.tx-lowercase { + text-transform: lowercase; } + +.tx-transform-none { + text-transform: none; } + +.tx-center { + text-align: center; } + +.tx-right { + text-align: right; } + +.tx-left { + text-align: left; } + +.tx-center-f { + text-align: center !important; } + +.tx-right-f { + text-align: right !important; } + +.tx-left-f { + text-align: left !important; } + +.tx-italic { + font-style: italic; } + +.tx-style-normal { + font-style: normal; } + +.lh-base { + line-height: 1.5; } + +.lh-normal { + line-height: normal; } + +.lh-0 { + line-height: 0; } + +.lh--1 { + line-height: .1; } + +.lh--2 { + line-height: .2; } + +.lh--3 { + line-height: .3; } + +.lh--4 { + line-height: .4; } + +.lh--5 { + line-height: .5; } + +.lh--6 { + line-height: .6; } + +.lh--7 { + line-height: .7; } + +.lh--8 { + line-height: .8; } + +.lh--9 { + line-height: .9; } + +.lh-1 { + line-height: 1.1; } + +.lh-2 { + line-height: 1.2; } + +.lh-3 { + line-height: 1.3; } + +.lh-4 { + line-height: 1.4; } + +.lh-5 { + line-height: 1.5; } + +.lh-6 { + line-height: 1.6; } + +.lh-7 { + line-height: 1.7; } + +.lh-8 { + line-height: 1.8; } + +.lh-9 { + line-height: 1.9; } + +.lh-10 { + line-height: 2.0; } + +.lh-11 { + line-height: 2.1; } + +.lh-12 { + line-height: 2.2; } + +.lh-13 { + line-height: 2.3; } + +.lh-14 { + line-height: 2.4; } + +.lh-15 { + line-height: 2.5; } + +.valign-top { + vertical-align: top; } + +.valign-middle { + vertical-align: middle; } + +.valign-bottom { + vertical-align: baseline; } + +.valign-top-f { + vertical-align: top !important; } + +.valign-middle-f { + vertical-align: middle !important; } + +.valign-bottom-f { + vertical-align: baseline !important; } + +.tx-base { + font-size: 0.875rem; } + +.tx-8 { + font-size: 8px; } + +.tx-8-f { + font-size: 8px !important; } + +.tx-9 { + font-size: 9px; } + +.tx-9-f { + font-size: 9px !important; } + +.tx-10 { + font-size: 10px; } + +.tx-10-f { + font-size: 10px !important; } + +.tx-11 { + font-size: 11px; } + +.tx-11-f { + font-size: 11px !important; } + +.tx-12 { + font-size: 12px; } + +.tx-12-f { + font-size: 12px !important; } + +.tx-13 { + font-size: 13px; } + +.tx-13-f { + font-size: 13px !important; } + +.tx-14 { + font-size: 14px; } + +.tx-14-f { + font-size: 14px !important; } + +.tx-15 { + font-size: 15px; } + +.tx-15-f { + font-size: 15px !important; } + +.tx-16 { + font-size: 16px; } + +.tx-16-f { + font-size: 16px !important; } + +.tx-18 { + font-size: 18px; } + +.tx-18-f { + font-size: 18px !important; } + +.tx-20 { + font-size: 20px; } + +.tx-20-f { + font-size: 20px !important; } + +.tx-22 { + font-size: 22px; } + +.tx-22-f { + font-size: 22px !important; } + +.tx-24 { + font-size: 24px; } + +.tx-24-f { + font-size: 24px !important; } + +.tx-26 { + font-size: 26px; } + +.tx-26-f { + font-size: 26px !important; } + +.tx-28 { + font-size: 28px; } + +.tx-28-f { + font-size: 28px !important; } + +.tx-30 { + font-size: 30px; } + +.tx-30-f { + font-size: 30px !important; } + +.tx-32 { + font-size: 32px; } + +.tx-32-f { + font-size: 32px !important; } + +.tx-34 { + font-size: 34px; } + +.tx-34-f { + font-size: 34px !important; } + +.tx-36 { + font-size: 36px; } + +.tx-36-f { + font-size: 36px !important; } + +.tx-38 { + font-size: 38px; } + +.tx-38-f { + font-size: 38px !important; } + +.tx-40 { + font-size: 40px; } + +.tx-40-f { + font-size: 40px !important; } + +.tx-42 { + font-size: 42px; } + +.tx-42-f { + font-size: 42px !important; } + +.tx-44 { + font-size: 44px; } + +.tx-44-f { + font-size: 44px !important; } + +.tx-46 { + font-size: 46px; } + +.tx-46-f { + font-size: 46px !important; } + +.tx-48 { + font-size: 48px; } + +.tx-48-f { + font-size: 48px !important; } + +.tx-50 { + font-size: 50px; } + +.tx-50-f { + font-size: 50px !important; } + +.tx-52 { + font-size: 52px; } + +.tx-52-f { + font-size: 52px !important; } + +.tx-54 { + font-size: 54px; } + +.tx-54-f { + font-size: 54px !important; } + +.tx-56 { + font-size: 56px; } + +.tx-56-f { + font-size: 56px !important; } + +.tx-58 { + font-size: 58px; } + +.tx-58-f { + font-size: 58px !important; } + +.tx-60 { + font-size: 60px; } + +.tx-60-f { + font-size: 60px !important; } + +.tx-62 { + font-size: 62px; } + +.tx-62-f { + font-size: 62px !important; } + +.tx-64 { + font-size: 64px; } + +.tx-64-f { + font-size: 64px !important; } + +.tx-66 { + font-size: 66px; } + +.tx-66-f { + font-size: 66px !important; } + +.tx-68 { + font-size: 68px; } + +.tx-68-f { + font-size: 68px !important; } + +.tx-70 { + font-size: 70px; } + +.tx-70-f { + font-size: 70px !important; } + +.tx-72 { + font-size: 72px; } + +.tx-72-f { + font-size: 72px !important; } + +.tx-74 { + font-size: 74px; } + +.tx-74-f { + font-size: 74px !important; } + +.tx-76 { + font-size: 76px; } + +.tx-76-f { + font-size: 76px !important; } + +.tx-78 { + font-size: 78px; } + +.tx-78-f { + font-size: 78px !important; } + +.tx-80 { + font-size: 80px; } + +.tx-80-f { + font-size: 80px !important; } + +.tx-82 { + font-size: 82px; } + +.tx-82-f { + font-size: 82px !important; } + +.tx-84 { + font-size: 84px; } + +.tx-84-f { + font-size: 84px !important; } + +.tx-86 { + font-size: 86px; } + +.tx-86-f { + font-size: 86px !important; } + +.tx-88 { + font-size: 88px; } + +.tx-88-f { + font-size: 88px !important; } + +.tx-90 { + font-size: 90px; } + +.tx-90-f { + font-size: 90px !important; } + +.tx-92 { + font-size: 92px; } + +.tx-92-f { + font-size: 92px !important; } + +.tx-94 { + font-size: 94px; } + +.tx-94-f { + font-size: 94px !important; } + +.tx-96 { + font-size: 96px; } + +.tx-96-f { + font-size: 96px !important; } + +.tx-98 { + font-size: 98px; } + +.tx-98-f { + font-size: 98px !important; } + +.tx-100 { + font-size: 100px; } + +.tx-100-f { + font-size: 100px !important; } + +.tx-102 { + font-size: 102px; } + +.tx-102-f { + font-size: 102px !important; } + +.tx-104 { + font-size: 104px; } + +.tx-104-f { + font-size: 104px !important; } + +.tx-106 { + font-size: 106px; } + +.tx-106-f { + font-size: 106px !important; } + +.tx-108 { + font-size: 108px; } + +.tx-108-f { + font-size: 108px !important; } + +.tx-110 { + font-size: 110px; } + +.tx-110-f { + font-size: 110px !important; } + +.tx-112 { + font-size: 112px; } + +.tx-112-f { + font-size: 112px !important; } + +.tx-114 { + font-size: 114px; } + +.tx-114-f { + font-size: 114px !important; } + +.tx-116 { + font-size: 116px; } + +.tx-116-f { + font-size: 116px !important; } + +.tx-118 { + font-size: 118px; } + +.tx-118-f { + font-size: 118px !important; } + +.tx-120 { + font-size: 120px; } + +.tx-120-f { + font-size: 120px !important; } + +.tx-122 { + font-size: 122px; } + +.tx-122-f { + font-size: 122px !important; } + +.tx-124 { + font-size: 124px; } + +.tx-124-f { + font-size: 124px !important; } + +.tx-126 { + font-size: 126px; } + +.tx-126-f { + font-size: 126px !important; } + +.tx-128 { + font-size: 128px; } + +.tx-128-f { + font-size: 128px !important; } + +.tx-130 { + font-size: 130px; } + +.tx-130-f { + font-size: 130px !important; } + +.tx-132 { + font-size: 132px; } + +.tx-132-f { + font-size: 132px !important; } + +.tx-134 { + font-size: 134px; } + +.tx-134-f { + font-size: 134px !important; } + +.tx-136 { + font-size: 136px; } + +.tx-136-f { + font-size: 136px !important; } + +.tx-138 { + font-size: 138px; } + +.tx-138-f { + font-size: 138px !important; } + +.tx-140 { + font-size: 140px; } + +.tx-140-f { + font-size: 140px !important; } + +@media (min-width: 480px) { + .tx-xs-8 { + font-size: 8px; } + .tx-xs-8-f { + font-size: 8px !important; } + .tx-xs-9 { + font-size: 9px; } + .tx-xs-9-f { + font-size: 9px !important; } + .tx-xs-10 { + font-size: 10px; } + .tx-xs-10-f { + font-size: 10px !important; } + .tx-xs-11 { + font-size: 11px; } + .tx-xs-11-f { + font-size: 11px !important; } + .tx-xs-12 { + font-size: 12px; } + .tx-xs-12-f { + font-size: 12px !important; } + .tx-xs-13 { + font-size: 13px; } + .tx-xs-13-f { + font-size: 13px !important; } + .tx-xs-14 { + font-size: 14px; } + .tx-xs-14-f { + font-size: 14px !important; } + .tx-xs-15 { + font-size: 15px; } + .tx-xs-15-f { + font-size: 15px !important; } + .tx-xs-16 { + font-size: 16px; } + .tx-xs-16-f { + font-size: 16px !important; } + .tx-xs-18 { + font-size: 18px; } + .tx-xs-18-f { + font-size: 18px !important; } + .tx-xs-20 { + font-size: 20px; } + .tx-xs-20-f { + font-size: 20px !important; } + .tx-xs-22 { + font-size: 22px; } + .tx-xs-22-f { + font-size: 22px !important; } + .tx-xs-24 { + font-size: 24px; } + .tx-xs-24-f { + font-size: 24px !important; } + .tx-xs-26 { + font-size: 26px; } + .tx-xs-26-f { + font-size: 26px !important; } + .tx-xs-28 { + font-size: 28px; } + .tx-xs-28-f { + font-size: 28px !important; } + .tx-xs-30 { + font-size: 30px; } + .tx-xs-30-f { + font-size: 30px !important; } + .tx-xs-32 { + font-size: 32px; } + .tx-xs-32-f { + font-size: 32px !important; } + .tx-xs-34 { + font-size: 34px; } + .tx-xs-34-f { + font-size: 34px !important; } + .tx-xs-36 { + font-size: 36px; } + .tx-xs-36-f { + font-size: 36px !important; } + .tx-xs-38 { + font-size: 38px; } + .tx-xs-38-f { + font-size: 38px !important; } + .tx-xs-40 { + font-size: 40px; } + .tx-xs-40-f { + font-size: 40px !important; } + .tx-xs-42 { + font-size: 42px; } + .tx-xs-42-f { + font-size: 42px !important; } + .tx-xs-44 { + font-size: 44px; } + .tx-xs-44-f { + font-size: 44px !important; } + .tx-xs-46 { + font-size: 46px; } + .tx-xs-46-f { + font-size: 46px !important; } + .tx-xs-48 { + font-size: 48px; } + .tx-xs-48-f { + font-size: 48px !important; } + .tx-xs-50 { + font-size: 50px; } + .tx-xs-50-f { + font-size: 50px !important; } + .tx-xs-52 { + font-size: 52px; } + .tx-xs-52-f { + font-size: 52px !important; } + .tx-xs-54 { + font-size: 54px; } + .tx-xs-54-f { + font-size: 54px !important; } + .tx-xs-56 { + font-size: 56px; } + .tx-xs-56-f { + font-size: 56px !important; } + .tx-xs-58 { + font-size: 58px; } + .tx-xs-58-f { + font-size: 58px !important; } + .tx-xs-60 { + font-size: 60px; } + .tx-xs-60-f { + font-size: 60px !important; } + .tx-xs-62 { + font-size: 62px; } + .tx-xs-62-f { + font-size: 62px !important; } + .tx-xs-64 { + font-size: 64px; } + .tx-xs-64-f { + font-size: 64px !important; } + .tx-xs-66 { + font-size: 66px; } + .tx-xs-66-f { + font-size: 66px !important; } + .tx-xs-68 { + font-size: 68px; } + .tx-xs-68-f { + font-size: 68px !important; } + .tx-xs-70 { + font-size: 70px; } + .tx-xs-70-f { + font-size: 70px !important; } + .tx-xs-72 { + font-size: 72px; } + .tx-xs-72-f { + font-size: 72px !important; } + .tx-xs-74 { + font-size: 74px; } + .tx-xs-74-f { + font-size: 74px !important; } + .tx-xs-76 { + font-size: 76px; } + .tx-xs-76-f { + font-size: 76px !important; } + .tx-xs-78 { + font-size: 78px; } + .tx-xs-78-f { + font-size: 78px !important; } + .tx-xs-80 { + font-size: 80px; } + .tx-xs-80-f { + font-size: 80px !important; } + .tx-xs-82 { + font-size: 82px; } + .tx-xs-82-f { + font-size: 82px !important; } + .tx-xs-84 { + font-size: 84px; } + .tx-xs-84-f { + font-size: 84px !important; } + .tx-xs-86 { + font-size: 86px; } + .tx-xs-86-f { + font-size: 86px !important; } + .tx-xs-88 { + font-size: 88px; } + .tx-xs-88-f { + font-size: 88px !important; } + .tx-xs-90 { + font-size: 90px; } + .tx-xs-90-f { + font-size: 90px !important; } + .tx-xs-92 { + font-size: 92px; } + .tx-xs-92-f { + font-size: 92px !important; } + .tx-xs-94 { + font-size: 94px; } + .tx-xs-94-f { + font-size: 94px !important; } + .tx-xs-96 { + font-size: 96px; } + .tx-xs-96-f { + font-size: 96px !important; } + .tx-xs-98 { + font-size: 98px; } + .tx-xs-98-f { + font-size: 98px !important; } + .tx-xs-100 { + font-size: 100px; } + .tx-xs-100-f { + font-size: 100px !important; } + .tx-xs-102 { + font-size: 102px; } + .tx-xs-102-f { + font-size: 102px !important; } + .tx-xs-104 { + font-size: 104px; } + .tx-xs-104-f { + font-size: 104px !important; } + .tx-xs-106 { + font-size: 106px; } + .tx-xs-106-f { + font-size: 106px !important; } + .tx-xs-108 { + font-size: 108px; } + .tx-xs-108-f { + font-size: 108px !important; } + .tx-xs-110 { + font-size: 110px; } + .tx-xs-110-f { + font-size: 110px !important; } + .tx-xs-112 { + font-size: 112px; } + .tx-xs-112-f { + font-size: 112px !important; } + .tx-xs-114 { + font-size: 114px; } + .tx-xs-114-f { + font-size: 114px !important; } + .tx-xs-116 { + font-size: 116px; } + .tx-xs-116-f { + font-size: 116px !important; } + .tx-xs-118 { + font-size: 118px; } + .tx-xs-118-f { + font-size: 118px !important; } + .tx-xs-120 { + font-size: 120px; } + .tx-xs-120-f { + font-size: 120px !important; } + .tx-xs-122 { + font-size: 122px; } + .tx-xs-122-f { + font-size: 122px !important; } + .tx-xs-124 { + font-size: 124px; } + .tx-xs-124-f { + font-size: 124px !important; } + .tx-xs-126 { + font-size: 126px; } + .tx-xs-126-f { + font-size: 126px !important; } + .tx-xs-128 { + font-size: 128px; } + .tx-xs-128-f { + font-size: 128px !important; } + .tx-xs-130 { + font-size: 130px; } + .tx-xs-130-f { + font-size: 130px !important; } + .tx-xs-132 { + font-size: 132px; } + .tx-xs-132-f { + font-size: 132px !important; } + .tx-xs-134 { + font-size: 134px; } + .tx-xs-134-f { + font-size: 134px !important; } + .tx-xs-136 { + font-size: 136px; } + .tx-xs-136-f { + font-size: 136px !important; } + .tx-xs-138 { + font-size: 138px; } + .tx-xs-138-f { + font-size: 138px !important; } + .tx-xs-140 { + font-size: 140px; } + .tx-xs-140-f { + font-size: 140px !important; } + .tx-xs-base { + font-size: 0.875rem; } + .tx-xs-bold { + font-weight: 700; } + .tx-xs-semibold { + font-weight: 600; } + .tx-xs-medium { + font-weight: 500; } + .tx-xs-normal { + font-weight: 400; } + .tx-xs-light { + font-weight: 300; } + .tx-xs-thin { + font-weight: 200; } + .tx-xs-xthin { + font-weight: 100; } + .lh-xs-0 { + line-height: 0; } + .lh-xs-1 { + line-height: 1.1; } + .lh-xs-2 { + line-height: 1.2; } + .lh-xs-3 { + line-height: 1.3; } + .lh-xs-4 { + line-height: 1.4; } + .lh-xs-5 { + line-height: 1.5; } + .lh-xs-6 { + line-height: 1.6; } + .lh-xs-7 { + line-height: 1.7; } + .lh-xs-8 { + line-height: 1.8; } + .lh-xs-9 { + line-height: 1.9; } + .lh-xs-10 { + line-height: 2.0; } + .lh-xs-11 { + line-height: 2.1; } + .lh-xs-12 { + line-height: 2.2; } + .lh-xs-13 { + line-height: 2.3; } + .lh-xs-14 { + line-height: 2.4; } + .lh-xs-15 { + line-height: 2.5; } + .tx-xs-center { + text-align: center; } + .tx-xs-right { + text-align: right; } + .tx-xs-left { + text-align: left; } + .tx-xs-center-f { + text-align: center !important; } + .tx-xs-right-f { + text-align: right !important; } + .tx-xs-left-f { + text-align: left !important; } } + +@media (min-width: 576px) { + .tx-sm-8 { + font-size: 8px; } + .tx-sm-8-f { + font-size: 8px !important; } + .tx-sm-9 { + font-size: 9px; } + .tx-sm-9-f { + font-size: 9px !important; } + .tx-sm-10 { + font-size: 10px; } + .tx-sm-10-f { + font-size: 10px !important; } + .tx-sm-11 { + font-size: 11px; } + .tx-sm-11-f { + font-size: 11px !important; } + .tx-sm-12 { + font-size: 12px; } + .tx-sm-12-f { + font-size: 12px !important; } + .tx-sm-13 { + font-size: 13px; } + .tx-sm-13-f { + font-size: 13px !important; } + .tx-sm-14 { + font-size: 14px; } + .tx-sm-14-f { + font-size: 14px !important; } + .tx-sm-15 { + font-size: 15px; } + .tx-sm-15-f { + font-size: 15px !important; } + .tx-sm-16 { + font-size: 16px; } + .tx-sm-16-f { + font-size: 16px !important; } + .tx-sm-18 { + font-size: 18px; } + .tx-sm-18-f { + font-size: 18px !important; } + .tx-sm-20 { + font-size: 20px; } + .tx-sm-20-f { + font-size: 20px !important; } + .tx-sm-22 { + font-size: 22px; } + .tx-sm-22-f { + font-size: 22px !important; } + .tx-sm-24 { + font-size: 24px; } + .tx-sm-24-f { + font-size: 24px !important; } + .tx-sm-26 { + font-size: 26px; } + .tx-sm-26-f { + font-size: 26px !important; } + .tx-sm-28 { + font-size: 28px; } + .tx-sm-28-f { + font-size: 28px !important; } + .tx-sm-30 { + font-size: 30px; } + .tx-sm-30-f { + font-size: 30px !important; } + .tx-sm-32 { + font-size: 32px; } + .tx-sm-32-f { + font-size: 32px !important; } + .tx-sm-34 { + font-size: 34px; } + .tx-sm-34-f { + font-size: 34px !important; } + .tx-sm-36 { + font-size: 36px; } + .tx-sm-36-f { + font-size: 36px !important; } + .tx-sm-38 { + font-size: 38px; } + .tx-sm-38-f { + font-size: 38px !important; } + .tx-sm-40 { + font-size: 40px; } + .tx-sm-40-f { + font-size: 40px !important; } + .tx-sm-42 { + font-size: 42px; } + .tx-sm-42-f { + font-size: 42px !important; } + .tx-sm-44 { + font-size: 44px; } + .tx-sm-44-f { + font-size: 44px !important; } + .tx-sm-46 { + font-size: 46px; } + .tx-sm-46-f { + font-size: 46px !important; } + .tx-sm-48 { + font-size: 48px; } + .tx-sm-48-f { + font-size: 48px !important; } + .tx-sm-50 { + font-size: 50px; } + .tx-sm-50-f { + font-size: 50px !important; } + .tx-sm-52 { + font-size: 52px; } + .tx-sm-52-f { + font-size: 52px !important; } + .tx-sm-54 { + font-size: 54px; } + .tx-sm-54-f { + font-size: 54px !important; } + .tx-sm-56 { + font-size: 56px; } + .tx-sm-56-f { + font-size: 56px !important; } + .tx-sm-58 { + font-size: 58px; } + .tx-sm-58-f { + font-size: 58px !important; } + .tx-sm-60 { + font-size: 60px; } + .tx-sm-60-f { + font-size: 60px !important; } + .tx-sm-62 { + font-size: 62px; } + .tx-sm-62-f { + font-size: 62px !important; } + .tx-sm-64 { + font-size: 64px; } + .tx-sm-64-f { + font-size: 64px !important; } + .tx-sm-66 { + font-size: 66px; } + .tx-sm-66-f { + font-size: 66px !important; } + .tx-sm-68 { + font-size: 68px; } + .tx-sm-68-f { + font-size: 68px !important; } + .tx-sm-70 { + font-size: 70px; } + .tx-sm-70-f { + font-size: 70px !important; } + .tx-sm-72 { + font-size: 72px; } + .tx-sm-72-f { + font-size: 72px !important; } + .tx-sm-74 { + font-size: 74px; } + .tx-sm-74-f { + font-size: 74px !important; } + .tx-sm-76 { + font-size: 76px; } + .tx-sm-76-f { + font-size: 76px !important; } + .tx-sm-78 { + font-size: 78px; } + .tx-sm-78-f { + font-size: 78px !important; } + .tx-sm-80 { + font-size: 80px; } + .tx-sm-80-f { + font-size: 80px !important; } + .tx-sm-82 { + font-size: 82px; } + .tx-sm-82-f { + font-size: 82px !important; } + .tx-sm-84 { + font-size: 84px; } + .tx-sm-84-f { + font-size: 84px !important; } + .tx-sm-86 { + font-size: 86px; } + .tx-sm-86-f { + font-size: 86px !important; } + .tx-sm-88 { + font-size: 88px; } + .tx-sm-88-f { + font-size: 88px !important; } + .tx-sm-90 { + font-size: 90px; } + .tx-sm-90-f { + font-size: 90px !important; } + .tx-sm-92 { + font-size: 92px; } + .tx-sm-92-f { + font-size: 92px !important; } + .tx-sm-94 { + font-size: 94px; } + .tx-sm-94-f { + font-size: 94px !important; } + .tx-sm-96 { + font-size: 96px; } + .tx-sm-96-f { + font-size: 96px !important; } + .tx-sm-98 { + font-size: 98px; } + .tx-sm-98-f { + font-size: 98px !important; } + .tx-sm-100 { + font-size: 100px; } + .tx-sm-100-f { + font-size: 100px !important; } + .tx-sm-102 { + font-size: 102px; } + .tx-sm-102-f { + font-size: 102px !important; } + .tx-sm-104 { + font-size: 104px; } + .tx-sm-104-f { + font-size: 104px !important; } + .tx-sm-106 { + font-size: 106px; } + .tx-sm-106-f { + font-size: 106px !important; } + .tx-sm-108 { + font-size: 108px; } + .tx-sm-108-f { + font-size: 108px !important; } + .tx-sm-110 { + font-size: 110px; } + .tx-sm-110-f { + font-size: 110px !important; } + .tx-sm-112 { + font-size: 112px; } + .tx-sm-112-f { + font-size: 112px !important; } + .tx-sm-114 { + font-size: 114px; } + .tx-sm-114-f { + font-size: 114px !important; } + .tx-sm-116 { + font-size: 116px; } + .tx-sm-116-f { + font-size: 116px !important; } + .tx-sm-118 { + font-size: 118px; } + .tx-sm-118-f { + font-size: 118px !important; } + .tx-sm-120 { + font-size: 120px; } + .tx-sm-120-f { + font-size: 120px !important; } + .tx-sm-122 { + font-size: 122px; } + .tx-sm-122-f { + font-size: 122px !important; } + .tx-sm-124 { + font-size: 124px; } + .tx-sm-124-f { + font-size: 124px !important; } + .tx-sm-126 { + font-size: 126px; } + .tx-sm-126-f { + font-size: 126px !important; } + .tx-sm-128 { + font-size: 128px; } + .tx-sm-128-f { + font-size: 128px !important; } + .tx-sm-130 { + font-size: 130px; } + .tx-sm-130-f { + font-size: 130px !important; } + .tx-sm-132 { + font-size: 132px; } + .tx-sm-132-f { + font-size: 132px !important; } + .tx-sm-134 { + font-size: 134px; } + .tx-sm-134-f { + font-size: 134px !important; } + .tx-sm-136 { + font-size: 136px; } + .tx-sm-136-f { + font-size: 136px !important; } + .tx-sm-138 { + font-size: 138px; } + .tx-sm-138-f { + font-size: 138px !important; } + .tx-sm-140 { + font-size: 140px; } + .tx-sm-140-f { + font-size: 140px !important; } + .tx-sm-base { + font-size: 0.875rem; } + .tx-sm-bold { + font-weight: 700; } + .tx-sm-semibold { + font-weight: 600; } + .tx-sm-medium { + font-weight: 500; } + .tx-sm-normal { + font-weight: 400; } + .tx-sm-light { + font-weight: 300; } + .tx-sm-thin { + font-weight: 200; } + .tx-sm-xthin { + font-weight: 100; } + .lh-sm-0 { + line-height: 0; } + .lh-sm-1 { + line-height: 1.1; } + .lh-sm-2 { + line-height: 1.2; } + .lh-sm-3 { + line-height: 1.3; } + .lh-sm-4 { + line-height: 1.4; } + .lh-sm-5 { + line-height: 1.5; } + .lh-sm-6 { + line-height: 1.6; } + .lh-sm-7 { + line-height: 1.7; } + .lh-sm-8 { + line-height: 1.8; } + .lh-sm-9 { + line-height: 1.9; } + .lh-sm-10 { + line-height: 2.0; } + .lh-sm-11 { + line-height: 2.1; } + .lh-sm-12 { + line-height: 2.2; } + .lh-sm-13 { + line-height: 2.3; } + .lh-sm-14 { + line-height: 2.4; } + .lh-sm-15 { + line-height: 2.5; } + .tx-sm-center { + text-align: center; } + .tx-sm-right { + text-align: right; } + .tx-sm-left { + text-align: left; } + .tx-sm-center-f { + text-align: center !important; } + .tx-sm-right-f { + text-align: right !important; } + .tx-sm-left-f { + text-align: left !important; } } + +@media (min-width: 768px) { + .tx-md-8 { + font-size: 8px; } + .tx-md-8-f { + font-size: 8px !important; } + .tx-md-9 { + font-size: 9px; } + .tx-md-9-f { + font-size: 9px !important; } + .tx-md-10 { + font-size: 10px; } + .tx-md-10-f { + font-size: 10px !important; } + .tx-md-11 { + font-size: 11px; } + .tx-md-11-f { + font-size: 11px !important; } + .tx-md-12 { + font-size: 12px; } + .tx-md-12-f { + font-size: 12px !important; } + .tx-md-13 { + font-size: 13px; } + .tx-md-13-f { + font-size: 13px !important; } + .tx-md-14 { + font-size: 14px; } + .tx-md-14-f { + font-size: 14px !important; } + .tx-md-15 { + font-size: 15px; } + .tx-md-15-f { + font-size: 15px !important; } + .tx-md-16 { + font-size: 16px; } + .tx-md-16-f { + font-size: 16px !important; } + .tx-md-18 { + font-size: 18px; } + .tx-md-18-f { + font-size: 18px !important; } + .tx-md-20 { + font-size: 20px; } + .tx-md-20-f { + font-size: 20px !important; } + .tx-md-22 { + font-size: 22px; } + .tx-md-22-f { + font-size: 22px !important; } + .tx-md-24 { + font-size: 24px; } + .tx-md-24-f { + font-size: 24px !important; } + .tx-md-26 { + font-size: 26px; } + .tx-md-26-f { + font-size: 26px !important; } + .tx-md-28 { + font-size: 28px; } + .tx-md-28-f { + font-size: 28px !important; } + .tx-md-30 { + font-size: 30px; } + .tx-md-30-f { + font-size: 30px !important; } + .tx-md-32 { + font-size: 32px; } + .tx-md-32-f { + font-size: 32px !important; } + .tx-md-34 { + font-size: 34px; } + .tx-md-34-f { + font-size: 34px !important; } + .tx-md-36 { + font-size: 36px; } + .tx-md-36-f { + font-size: 36px !important; } + .tx-md-38 { + font-size: 38px; } + .tx-md-38-f { + font-size: 38px !important; } + .tx-md-40 { + font-size: 40px; } + .tx-md-40-f { + font-size: 40px !important; } + .tx-md-42 { + font-size: 42px; } + .tx-md-42-f { + font-size: 42px !important; } + .tx-md-44 { + font-size: 44px; } + .tx-md-44-f { + font-size: 44px !important; } + .tx-md-46 { + font-size: 46px; } + .tx-md-46-f { + font-size: 46px !important; } + .tx-md-48 { + font-size: 48px; } + .tx-md-48-f { + font-size: 48px !important; } + .tx-md-50 { + font-size: 50px; } + .tx-md-50-f { + font-size: 50px !important; } + .tx-md-52 { + font-size: 52px; } + .tx-md-52-f { + font-size: 52px !important; } + .tx-md-54 { + font-size: 54px; } + .tx-md-54-f { + font-size: 54px !important; } + .tx-md-56 { + font-size: 56px; } + .tx-md-56-f { + font-size: 56px !important; } + .tx-md-58 { + font-size: 58px; } + .tx-md-58-f { + font-size: 58px !important; } + .tx-md-60 { + font-size: 60px; } + .tx-md-60-f { + font-size: 60px !important; } + .tx-md-62 { + font-size: 62px; } + .tx-md-62-f { + font-size: 62px !important; } + .tx-md-64 { + font-size: 64px; } + .tx-md-64-f { + font-size: 64px !important; } + .tx-md-66 { + font-size: 66px; } + .tx-md-66-f { + font-size: 66px !important; } + .tx-md-68 { + font-size: 68px; } + .tx-md-68-f { + font-size: 68px !important; } + .tx-md-70 { + font-size: 70px; } + .tx-md-70-f { + font-size: 70px !important; } + .tx-md-72 { + font-size: 72px; } + .tx-md-72-f { + font-size: 72px !important; } + .tx-md-74 { + font-size: 74px; } + .tx-md-74-f { + font-size: 74px !important; } + .tx-md-76 { + font-size: 76px; } + .tx-md-76-f { + font-size: 76px !important; } + .tx-md-78 { + font-size: 78px; } + .tx-md-78-f { + font-size: 78px !important; } + .tx-md-80 { + font-size: 80px; } + .tx-md-80-f { + font-size: 80px !important; } + .tx-md-82 { + font-size: 82px; } + .tx-md-82-f { + font-size: 82px !important; } + .tx-md-84 { + font-size: 84px; } + .tx-md-84-f { + font-size: 84px !important; } + .tx-md-86 { + font-size: 86px; } + .tx-md-86-f { + font-size: 86px !important; } + .tx-md-88 { + font-size: 88px; } + .tx-md-88-f { + font-size: 88px !important; } + .tx-md-90 { + font-size: 90px; } + .tx-md-90-f { + font-size: 90px !important; } + .tx-md-92 { + font-size: 92px; } + .tx-md-92-f { + font-size: 92px !important; } + .tx-md-94 { + font-size: 94px; } + .tx-md-94-f { + font-size: 94px !important; } + .tx-md-96 { + font-size: 96px; } + .tx-md-96-f { + font-size: 96px !important; } + .tx-md-98 { + font-size: 98px; } + .tx-md-98-f { + font-size: 98px !important; } + .tx-md-100 { + font-size: 100px; } + .tx-md-100-f { + font-size: 100px !important; } + .tx-md-102 { + font-size: 102px; } + .tx-md-102-f { + font-size: 102px !important; } + .tx-md-104 { + font-size: 104px; } + .tx-md-104-f { + font-size: 104px !important; } + .tx-md-106 { + font-size: 106px; } + .tx-md-106-f { + font-size: 106px !important; } + .tx-md-108 { + font-size: 108px; } + .tx-md-108-f { + font-size: 108px !important; } + .tx-md-110 { + font-size: 110px; } + .tx-md-110-f { + font-size: 110px !important; } + .tx-md-112 { + font-size: 112px; } + .tx-md-112-f { + font-size: 112px !important; } + .tx-md-114 { + font-size: 114px; } + .tx-md-114-f { + font-size: 114px !important; } + .tx-md-116 { + font-size: 116px; } + .tx-md-116-f { + font-size: 116px !important; } + .tx-md-118 { + font-size: 118px; } + .tx-md-118-f { + font-size: 118px !important; } + .tx-md-120 { + font-size: 120px; } + .tx-md-120-f { + font-size: 120px !important; } + .tx-md-122 { + font-size: 122px; } + .tx-md-122-f { + font-size: 122px !important; } + .tx-md-124 { + font-size: 124px; } + .tx-md-124-f { + font-size: 124px !important; } + .tx-md-126 { + font-size: 126px; } + .tx-md-126-f { + font-size: 126px !important; } + .tx-md-128 { + font-size: 128px; } + .tx-md-128-f { + font-size: 128px !important; } + .tx-md-130 { + font-size: 130px; } + .tx-md-130-f { + font-size: 130px !important; } + .tx-md-132 { + font-size: 132px; } + .tx-md-132-f { + font-size: 132px !important; } + .tx-md-134 { + font-size: 134px; } + .tx-md-134-f { + font-size: 134px !important; } + .tx-md-136 { + font-size: 136px; } + .tx-md-136-f { + font-size: 136px !important; } + .tx-md-138 { + font-size: 138px; } + .tx-md-138-f { + font-size: 138px !important; } + .tx-md-140 { + font-size: 140px; } + .tx-md-140-f { + font-size: 140px !important; } + .tx-md-base { + font-size: 0.875rem; } + .tx-md-bold { + font-weight: 700; } + .tx-md-semibold { + font-weight: 600; } + .tx-md-medium { + font-weight: 500; } + .tx-md-normal { + font-weight: 400; } + .tx-md-light { + font-weight: 300; } + .tx-md-thin { + font-weight: 200; } + .tx-md-xthin { + font-weight: 100; } + .lh-md-0 { + line-height: 0; } + .lh-md-1 { + line-height: 1.1; } + .lh-md-2 { + line-height: 1.2; } + .lh-md-3 { + line-height: 1.3; } + .lh-md-4 { + line-height: 1.4; } + .lh-md-5 { + line-height: 1.5; } + .lh-md-6 { + line-height: 1.6; } + .lh-md-7 { + line-height: 1.7; } + .lh-md-8 { + line-height: 1.8; } + .lh-md-9 { + line-height: 1.9; } + .lh-md-10 { + line-height: 2.0; } + .lh-md-11 { + line-height: 2.1; } + .lh-md-12 { + line-height: 2.2; } + .lh-md-13 { + line-height: 2.3; } + .lh-md-14 { + line-height: 2.4; } + .lh-md-15 { + line-height: 2.5; } + .tx-md-center { + text-align: center; } + .tx-md-right { + text-align: right; } + .tx-md-left { + text-align: left; } + .tx-md-center-f { + text-align: center !important; } + .tx-md-right-f { + text-align: right !important; } + .tx-md-left-f { + text-align: left !important; } } + +@media (min-width: 992px) { + .tx-lg-8 { + font-size: 8px; } + .tx-lg-8-f { + font-size: 8px !important; } + .tx-lg-9 { + font-size: 9px; } + .tx-lg-9-f { + font-size: 9px !important; } + .tx-lg-10 { + font-size: 10px; } + .tx-lg-10-f { + font-size: 10px !important; } + .tx-lg-11 { + font-size: 11px; } + .tx-lg-11-f { + font-size: 11px !important; } + .tx-lg-12 { + font-size: 12px; } + .tx-lg-12-f { + font-size: 12px !important; } + .tx-lg-13 { + font-size: 13px; } + .tx-lg-13-f { + font-size: 13px !important; } + .tx-lg-14 { + font-size: 14px; } + .tx-lg-14-f { + font-size: 14px !important; } + .tx-lg-15 { + font-size: 15px; } + .tx-lg-15-f { + font-size: 15px !important; } + .tx-lg-16 { + font-size: 16px; } + .tx-lg-16-f { + font-size: 16px !important; } + .tx-lg-18 { + font-size: 18px; } + .tx-lg-18-f { + font-size: 18px !important; } + .tx-lg-20 { + font-size: 20px; } + .tx-lg-20-f { + font-size: 20px !important; } + .tx-lg-22 { + font-size: 22px; } + .tx-lg-22-f { + font-size: 22px !important; } + .tx-lg-24 { + font-size: 24px; } + .tx-lg-24-f { + font-size: 24px !important; } + .tx-lg-26 { + font-size: 26px; } + .tx-lg-26-f { + font-size: 26px !important; } + .tx-lg-28 { + font-size: 28px; } + .tx-lg-28-f { + font-size: 28px !important; } + .tx-lg-30 { + font-size: 30px; } + .tx-lg-30-f { + font-size: 30px !important; } + .tx-lg-32 { + font-size: 32px; } + .tx-lg-32-f { + font-size: 32px !important; } + .tx-lg-34 { + font-size: 34px; } + .tx-lg-34-f { + font-size: 34px !important; } + .tx-lg-36 { + font-size: 36px; } + .tx-lg-36-f { + font-size: 36px !important; } + .tx-lg-38 { + font-size: 38px; } + .tx-lg-38-f { + font-size: 38px !important; } + .tx-lg-40 { + font-size: 40px; } + .tx-lg-40-f { + font-size: 40px !important; } + .tx-lg-42 { + font-size: 42px; } + .tx-lg-42-f { + font-size: 42px !important; } + .tx-lg-44 { + font-size: 44px; } + .tx-lg-44-f { + font-size: 44px !important; } + .tx-lg-46 { + font-size: 46px; } + .tx-lg-46-f { + font-size: 46px !important; } + .tx-lg-48 { + font-size: 48px; } + .tx-lg-48-f { + font-size: 48px !important; } + .tx-lg-50 { + font-size: 50px; } + .tx-lg-50-f { + font-size: 50px !important; } + .tx-lg-52 { + font-size: 52px; } + .tx-lg-52-f { + font-size: 52px !important; } + .tx-lg-54 { + font-size: 54px; } + .tx-lg-54-f { + font-size: 54px !important; } + .tx-lg-56 { + font-size: 56px; } + .tx-lg-56-f { + font-size: 56px !important; } + .tx-lg-58 { + font-size: 58px; } + .tx-lg-58-f { + font-size: 58px !important; } + .tx-lg-60 { + font-size: 60px; } + .tx-lg-60-f { + font-size: 60px !important; } + .tx-lg-62 { + font-size: 62px; } + .tx-lg-62-f { + font-size: 62px !important; } + .tx-lg-64 { + font-size: 64px; } + .tx-lg-64-f { + font-size: 64px !important; } + .tx-lg-66 { + font-size: 66px; } + .tx-lg-66-f { + font-size: 66px !important; } + .tx-lg-68 { + font-size: 68px; } + .tx-lg-68-f { + font-size: 68px !important; } + .tx-lg-70 { + font-size: 70px; } + .tx-lg-70-f { + font-size: 70px !important; } + .tx-lg-72 { + font-size: 72px; } + .tx-lg-72-f { + font-size: 72px !important; } + .tx-lg-74 { + font-size: 74px; } + .tx-lg-74-f { + font-size: 74px !important; } + .tx-lg-76 { + font-size: 76px; } + .tx-lg-76-f { + font-size: 76px !important; } + .tx-lg-78 { + font-size: 78px; } + .tx-lg-78-f { + font-size: 78px !important; } + .tx-lg-80 { + font-size: 80px; } + .tx-lg-80-f { + font-size: 80px !important; } + .tx-lg-82 { + font-size: 82px; } + .tx-lg-82-f { + font-size: 82px !important; } + .tx-lg-84 { + font-size: 84px; } + .tx-lg-84-f { + font-size: 84px !important; } + .tx-lg-86 { + font-size: 86px; } + .tx-lg-86-f { + font-size: 86px !important; } + .tx-lg-88 { + font-size: 88px; } + .tx-lg-88-f { + font-size: 88px !important; } + .tx-lg-90 { + font-size: 90px; } + .tx-lg-90-f { + font-size: 90px !important; } + .tx-lg-92 { + font-size: 92px; } + .tx-lg-92-f { + font-size: 92px !important; } + .tx-lg-94 { + font-size: 94px; } + .tx-lg-94-f { + font-size: 94px !important; } + .tx-lg-96 { + font-size: 96px; } + .tx-lg-96-f { + font-size: 96px !important; } + .tx-lg-98 { + font-size: 98px; } + .tx-lg-98-f { + font-size: 98px !important; } + .tx-lg-100 { + font-size: 100px; } + .tx-lg-100-f { + font-size: 100px !important; } + .tx-lg-102 { + font-size: 102px; } + .tx-lg-102-f { + font-size: 102px !important; } + .tx-lg-104 { + font-size: 104px; } + .tx-lg-104-f { + font-size: 104px !important; } + .tx-lg-106 { + font-size: 106px; } + .tx-lg-106-f { + font-size: 106px !important; } + .tx-lg-108 { + font-size: 108px; } + .tx-lg-108-f { + font-size: 108px !important; } + .tx-lg-110 { + font-size: 110px; } + .tx-lg-110-f { + font-size: 110px !important; } + .tx-lg-112 { + font-size: 112px; } + .tx-lg-112-f { + font-size: 112px !important; } + .tx-lg-114 { + font-size: 114px; } + .tx-lg-114-f { + font-size: 114px !important; } + .tx-lg-116 { + font-size: 116px; } + .tx-lg-116-f { + font-size: 116px !important; } + .tx-lg-118 { + font-size: 118px; } + .tx-lg-118-f { + font-size: 118px !important; } + .tx-lg-120 { + font-size: 120px; } + .tx-lg-120-f { + font-size: 120px !important; } + .tx-lg-122 { + font-size: 122px; } + .tx-lg-122-f { + font-size: 122px !important; } + .tx-lg-124 { + font-size: 124px; } + .tx-lg-124-f { + font-size: 124px !important; } + .tx-lg-126 { + font-size: 126px; } + .tx-lg-126-f { + font-size: 126px !important; } + .tx-lg-128 { + font-size: 128px; } + .tx-lg-128-f { + font-size: 128px !important; } + .tx-lg-130 { + font-size: 130px; } + .tx-lg-130-f { + font-size: 130px !important; } + .tx-lg-132 { + font-size: 132px; } + .tx-lg-132-f { + font-size: 132px !important; } + .tx-lg-134 { + font-size: 134px; } + .tx-lg-134-f { + font-size: 134px !important; } + .tx-lg-136 { + font-size: 136px; } + .tx-lg-136-f { + font-size: 136px !important; } + .tx-lg-138 { + font-size: 138px; } + .tx-lg-138-f { + font-size: 138px !important; } + .tx-lg-140 { + font-size: 140px; } + .tx-lg-140-f { + font-size: 140px !important; } + .tx-lg-base { + font-size: 0.875rem; } + .tx-lg-bold { + font-weight: 700; } + .tx-lg-semibold { + font-weight: 600; } + .tx-lg-medium { + font-weight: 500; } + .tx-lg-normal { + font-weight: 400; } + .tx-lg-light { + font-weight: 300; } + .tx-lg-thin { + font-weight: 200; } + .tx-lg-xthin { + font-weight: 100; } + .lh-lg-0 { + line-height: 0; } + .lh-lg-1 { + line-height: 1.1; } + .lh-lg-2 { + line-height: 1.2; } + .lh-lg-3 { + line-height: 1.3; } + .lh-lg-4 { + line-height: 1.4; } + .lh-lg-5 { + line-height: 1.5; } + .lh-lg-6 { + line-height: 1.6; } + .lh-lg-7 { + line-height: 1.7; } + .lh-lg-8 { + line-height: 1.8; } + .lh-lg-9 { + line-height: 1.9; } + .lh-lg-10 { + line-height: 2.0; } + .lh-lg-11 { + line-height: 2.1; } + .lh-lg-12 { + line-height: 2.2; } + .lh-lg-13 { + line-height: 2.3; } + .lh-lg-14 { + line-height: 2.4; } + .lh-lg-15 { + line-height: 2.5; } + .tx-lg-center { + text-align: center; } + .tx-lg-right { + text-align: right; } + .tx-lg-left { + text-align: left; } + .tx-lg-center-f { + text-align: center !important; } + .tx-lg-right-f { + text-align: right !important; } + .tx-lg-left-f { + text-align: left !important; } } + +@media (min-width: 1200px) { + .tx-xl-8 { + font-size: 8px; } + .tx-xl-8-f { + font-size: 8px !important; } + .tx-xl-9 { + font-size: 9px; } + .tx-xl-9-f { + font-size: 9px !important; } + .tx-xl-10 { + font-size: 10px; } + .tx-xl-10-f { + font-size: 10px !important; } + .tx-xl-11 { + font-size: 11px; } + .tx-xl-11-f { + font-size: 11px !important; } + .tx-xl-12 { + font-size: 12px; } + .tx-xl-12-f { + font-size: 12px !important; } + .tx-xl-13 { + font-size: 13px; } + .tx-xl-13-f { + font-size: 13px !important; } + .tx-xl-14 { + font-size: 14px; } + .tx-xl-14-f { + font-size: 14px !important; } + .tx-xl-15 { + font-size: 15px; } + .tx-xl-15-f { + font-size: 15px !important; } + .tx-xl-16 { + font-size: 16px; } + .tx-xl-16-f { + font-size: 16px !important; } + .tx-xl-18 { + font-size: 18px; } + .tx-xl-18-f { + font-size: 18px !important; } + .tx-xl-20 { + font-size: 20px; } + .tx-xl-20-f { + font-size: 20px !important; } + .tx-xl-22 { + font-size: 22px; } + .tx-xl-22-f { + font-size: 22px !important; } + .tx-xl-24 { + font-size: 24px; } + .tx-xl-24-f { + font-size: 24px !important; } + .tx-xl-26 { + font-size: 26px; } + .tx-xl-26-f { + font-size: 26px !important; } + .tx-xl-28 { + font-size: 28px; } + .tx-xl-28-f { + font-size: 28px !important; } + .tx-xl-30 { + font-size: 30px; } + .tx-xl-30-f { + font-size: 30px !important; } + .tx-xl-32 { + font-size: 32px; } + .tx-xl-32-f { + font-size: 32px !important; } + .tx-xl-34 { + font-size: 34px; } + .tx-xl-34-f { + font-size: 34px !important; } + .tx-xl-36 { + font-size: 36px; } + .tx-xl-36-f { + font-size: 36px !important; } + .tx-xl-38 { + font-size: 38px; } + .tx-xl-38-f { + font-size: 38px !important; } + .tx-xl-40 { + font-size: 40px; } + .tx-xl-40-f { + font-size: 40px !important; } + .tx-xl-42 { + font-size: 42px; } + .tx-xl-42-f { + font-size: 42px !important; } + .tx-xl-44 { + font-size: 44px; } + .tx-xl-44-f { + font-size: 44px !important; } + .tx-xl-46 { + font-size: 46px; } + .tx-xl-46-f { + font-size: 46px !important; } + .tx-xl-48 { + font-size: 48px; } + .tx-xl-48-f { + font-size: 48px !important; } + .tx-xl-50 { + font-size: 50px; } + .tx-xl-50-f { + font-size: 50px !important; } + .tx-xl-52 { + font-size: 52px; } + .tx-xl-52-f { + font-size: 52px !important; } + .tx-xl-54 { + font-size: 54px; } + .tx-xl-54-f { + font-size: 54px !important; } + .tx-xl-56 { + font-size: 56px; } + .tx-xl-56-f { + font-size: 56px !important; } + .tx-xl-58 { + font-size: 58px; } + .tx-xl-58-f { + font-size: 58px !important; } + .tx-xl-60 { + font-size: 60px; } + .tx-xl-60-f { + font-size: 60px !important; } + .tx-xl-62 { + font-size: 62px; } + .tx-xl-62-f { + font-size: 62px !important; } + .tx-xl-64 { + font-size: 64px; } + .tx-xl-64-f { + font-size: 64px !important; } + .tx-xl-66 { + font-size: 66px; } + .tx-xl-66-f { + font-size: 66px !important; } + .tx-xl-68 { + font-size: 68px; } + .tx-xl-68-f { + font-size: 68px !important; } + .tx-xl-70 { + font-size: 70px; } + .tx-xl-70-f { + font-size: 70px !important; } + .tx-xl-72 { + font-size: 72px; } + .tx-xl-72-f { + font-size: 72px !important; } + .tx-xl-74 { + font-size: 74px; } + .tx-xl-74-f { + font-size: 74px !important; } + .tx-xl-76 { + font-size: 76px; } + .tx-xl-76-f { + font-size: 76px !important; } + .tx-xl-78 { + font-size: 78px; } + .tx-xl-78-f { + font-size: 78px !important; } + .tx-xl-80 { + font-size: 80px; } + .tx-xl-80-f { + font-size: 80px !important; } + .tx-xl-82 { + font-size: 82px; } + .tx-xl-82-f { + font-size: 82px !important; } + .tx-xl-84 { + font-size: 84px; } + .tx-xl-84-f { + font-size: 84px !important; } + .tx-xl-86 { + font-size: 86px; } + .tx-xl-86-f { + font-size: 86px !important; } + .tx-xl-88 { + font-size: 88px; } + .tx-xl-88-f { + font-size: 88px !important; } + .tx-xl-90 { + font-size: 90px; } + .tx-xl-90-f { + font-size: 90px !important; } + .tx-xl-92 { + font-size: 92px; } + .tx-xl-92-f { + font-size: 92px !important; } + .tx-xl-94 { + font-size: 94px; } + .tx-xl-94-f { + font-size: 94px !important; } + .tx-xl-96 { + font-size: 96px; } + .tx-xl-96-f { + font-size: 96px !important; } + .tx-xl-98 { + font-size: 98px; } + .tx-xl-98-f { + font-size: 98px !important; } + .tx-xl-100 { + font-size: 100px; } + .tx-xl-100-f { + font-size: 100px !important; } + .tx-xl-102 { + font-size: 102px; } + .tx-xl-102-f { + font-size: 102px !important; } + .tx-xl-104 { + font-size: 104px; } + .tx-xl-104-f { + font-size: 104px !important; } + .tx-xl-106 { + font-size: 106px; } + .tx-xl-106-f { + font-size: 106px !important; } + .tx-xl-108 { + font-size: 108px; } + .tx-xl-108-f { + font-size: 108px !important; } + .tx-xl-110 { + font-size: 110px; } + .tx-xl-110-f { + font-size: 110px !important; } + .tx-xl-112 { + font-size: 112px; } + .tx-xl-112-f { + font-size: 112px !important; } + .tx-xl-114 { + font-size: 114px; } + .tx-xl-114-f { + font-size: 114px !important; } + .tx-xl-116 { + font-size: 116px; } + .tx-xl-116-f { + font-size: 116px !important; } + .tx-xl-118 { + font-size: 118px; } + .tx-xl-118-f { + font-size: 118px !important; } + .tx-xl-120 { + font-size: 120px; } + .tx-xl-120-f { + font-size: 120px !important; } + .tx-xl-122 { + font-size: 122px; } + .tx-xl-122-f { + font-size: 122px !important; } + .tx-xl-124 { + font-size: 124px; } + .tx-xl-124-f { + font-size: 124px !important; } + .tx-xl-126 { + font-size: 126px; } + .tx-xl-126-f { + font-size: 126px !important; } + .tx-xl-128 { + font-size: 128px; } + .tx-xl-128-f { + font-size: 128px !important; } + .tx-xl-130 { + font-size: 130px; } + .tx-xl-130-f { + font-size: 130px !important; } + .tx-xl-132 { + font-size: 132px; } + .tx-xl-132-f { + font-size: 132px !important; } + .tx-xl-134 { + font-size: 134px; } + .tx-xl-134-f { + font-size: 134px !important; } + .tx-xl-136 { + font-size: 136px; } + .tx-xl-136-f { + font-size: 136px !important; } + .tx-xl-138 { + font-size: 138px; } + .tx-xl-138-f { + font-size: 138px !important; } + .tx-xl-140 { + font-size: 140px; } + .tx-xl-140-f { + font-size: 140px !important; } + .tx-xl-base { + font-size: 0.875rem; } + .tx-xl-bold { + font-weight: 700; } + .tx-xl-semibold { + font-weight: 600; } + .tx-xl-medium { + font-weight: 500; } + .tx-xl-normal { + font-weight: 400; } + .tx-xl-light { + font-weight: 300; } + .tx-xl-thin { + font-weight: 200; } + .tx-xl-xthin { + font-weight: 100; } + .lh-xl-0 { + line-height: 0; } + .lh-xl-1 { + line-height: 1.1; } + .lh-xl-2 { + line-height: 1.2; } + .lh-xl-3 { + line-height: 1.3; } + .lh-xl-4 { + line-height: 1.4; } + .lh-xl-5 { + line-height: 1.5; } + .lh-xl-6 { + line-height: 1.6; } + .lh-xl-7 { + line-height: 1.7; } + .lh-xl-8 { + line-height: 1.8; } + .lh-xl-9 { + line-height: 1.9; } + .lh-xl-10 { + line-height: 2.0; } + .lh-xl-11 { + line-height: 2.1; } + .lh-xl-12 { + line-height: 2.2; } + .lh-xl-13 { + line-height: 2.3; } + .lh-xl-14 { + line-height: 2.4; } + .lh-xl-15 { + line-height: 2.5; } + .tx-xl-center { + text-align: center; } + .tx-xl-right { + text-align: right; } + .tx-xl-left { + text-align: left; } + .tx-xl-center-f { + text-align: center !important; } + .tx-xl-right-f { + text-align: right !important; } + .tx-xl-left-f { + text-align: left !important; } } + +/* ###### 9.9 Width ###### */ +.wd-1 { + width: 1px; } + +.wd-2 { + width: 2px; } + +.wd-3 { + width: 3px; } + +.wd-4 { + width: 4px; } + +.wd-6 { + width: 6px; } + +.wd-7 { + width: 7px; } + +.wd-8 { + width: 8px; } + +.wd-9 { + width: 9px; } + +.wd-280 { + width: 280px; } + +.wd-5 { + width: 5px; } + +.wd-5p { + width: 5%; } + +.mx-wd-5p { + max-width: 5%; } + +.mn-wd-5p { + min-width: 5%; } + +.wd-5-f { + width: 5px !important; } + +.wd-5p-f { + width: 5% !important; } + +.mx-wd-5p-f { + max-width: 5% !important; } + +.mn-wd-5p-f { + min-width: 5% !important; } + +.wd-10 { + width: 10px; } + +.wd-10p { + width: 10%; } + +.mx-wd-10p { + max-width: 10%; } + +.mn-wd-10p { + min-width: 10%; } + +.wd-10-f { + width: 10px !important; } + +.wd-10p-f { + width: 10% !important; } + +.mx-wd-10p-f { + max-width: 10% !important; } + +.mn-wd-10p-f { + min-width: 10% !important; } + +.wd-15 { + width: 15px; } + +.wd-15p { + width: 15%; } + +.mx-wd-15p { + max-width: 15%; } + +.mn-wd-15p { + min-width: 15%; } + +.wd-15-f { + width: 15px !important; } + +.wd-15p-f { + width: 15% !important; } + +.mx-wd-15p-f { + max-width: 15% !important; } + +.mn-wd-15p-f { + min-width: 15% !important; } + +.wd-20 { + width: 20px; } + +.wd-20p { + width: 20%; } + +.mx-wd-20p { + max-width: 20%; } + +.mn-wd-20p { + min-width: 20%; } + +.wd-20-f { + width: 20px !important; } + +.wd-20p-f { + width: 20% !important; } + +.mx-wd-20p-f { + max-width: 20% !important; } + +.mn-wd-20p-f { + min-width: 20% !important; } + +.wd-25 { + width: 25px; } + +.wd-25p { + width: 25%; } + +.mx-wd-25p { + max-width: 25%; } + +.mn-wd-25p { + min-width: 25%; } + +.wd-25-f { + width: 25px !important; } + +.wd-25p-f { + width: 25% !important; } + +.mx-wd-25p-f { + max-width: 25% !important; } + +.mn-wd-25p-f { + min-width: 25% !important; } + +.wd-30 { + width: 30px; } + +.wd-30p { + width: 30%; } + +.mx-wd-30p { + max-width: 30%; } + +.mn-wd-30p { + min-width: 30%; } + +.wd-30-f { + width: 30px !important; } + +.wd-30p-f { + width: 30% !important; } + +.mx-wd-30p-f { + max-width: 30% !important; } + +.mn-wd-30p-f { + min-width: 30% !important; } + +.wd-35 { + width: 35px; } + +.wd-35p { + width: 35%; } + +.mx-wd-35p { + max-width: 35%; } + +.mn-wd-35p { + min-width: 35%; } + +.wd-35-f { + width: 35px !important; } + +.wd-35p-f { + width: 35% !important; } + +.mx-wd-35p-f { + max-width: 35% !important; } + +.mn-wd-35p-f { + min-width: 35% !important; } + +.wd-40 { + width: 40px; } + +.wd-40p { + width: 40%; } + +.mx-wd-40p { + max-width: 40%; } + +.mn-wd-40p { + min-width: 40%; } + +.wd-40-f { + width: 40px !important; } + +.wd-40p-f { + width: 40% !important; } + +.mx-wd-40p-f { + max-width: 40% !important; } + +.mn-wd-40p-f { + min-width: 40% !important; } + +.wd-45 { + width: 45px; } + +.wd-45p { + width: 45%; } + +.mx-wd-45p { + max-width: 45%; } + +.mn-wd-45p { + min-width: 45%; } + +.wd-45-f { + width: 45px !important; } + +.wd-45p-f { + width: 45% !important; } + +.mx-wd-45p-f { + max-width: 45% !important; } + +.mn-wd-45p-f { + min-width: 45% !important; } + +.wd-50 { + width: 50px; } + +.wd-50p { + width: 50%; } + +.mx-wd-50p { + max-width: 50%; } + +.mn-wd-50p { + min-width: 50%; } + +.wd-50-f { + width: 50px !important; } + +.wd-50p-f { + width: 50% !important; } + +.mx-wd-50p-f { + max-width: 50% !important; } + +.mn-wd-50p-f { + min-width: 50% !important; } + +.wd-55 { + width: 55px; } + +.wd-55p { + width: 55%; } + +.mx-wd-55p { + max-width: 55%; } + +.mn-wd-55p { + min-width: 55%; } + +.wd-55-f { + width: 55px !important; } + +.wd-55p-f { + width: 55% !important; } + +.mx-wd-55p-f { + max-width: 55% !important; } + +.mn-wd-55p-f { + min-width: 55% !important; } + +.wd-60 { + width: 60px; } + +.wd-60p { + width: 60%; } + +.mx-wd-60p { + max-width: 60%; } + +.mn-wd-60p { + min-width: 60%; } + +.wd-60-f { + width: 60px !important; } + +.wd-60p-f { + width: 60% !important; } + +.mx-wd-60p-f { + max-width: 60% !important; } + +.mn-wd-60p-f { + min-width: 60% !important; } + +.wd-65 { + width: 65px; } + +.wd-65p { + width: 65%; } + +.mx-wd-65p { + max-width: 65%; } + +.mn-wd-65p { + min-width: 65%; } + +.wd-65-f { + width: 65px !important; } + +.wd-65p-f { + width: 65% !important; } + +.mx-wd-65p-f { + max-width: 65% !important; } + +.mn-wd-65p-f { + min-width: 65% !important; } + +.wd-70 { + width: 70px; } + +.wd-70p { + width: 70%; } + +.mx-wd-70p { + max-width: 70%; } + +.mn-wd-70p { + min-width: 70%; } + +.wd-70-f { + width: 70px !important; } + +.wd-70p-f { + width: 70% !important; } + +.mx-wd-70p-f { + max-width: 70% !important; } + +.mn-wd-70p-f { + min-width: 70% !important; } + +.wd-75 { + width: 75px; } + +.wd-75p { + width: 75%; } + +.mx-wd-75p { + max-width: 75%; } + +.mn-wd-75p { + min-width: 75%; } + +.wd-75-f { + width: 75px !important; } + +.wd-75p-f { + width: 75% !important; } + +.mx-wd-75p-f { + max-width: 75% !important; } + +.mn-wd-75p-f { + min-width: 75% !important; } + +.wd-80 { + width: 80px; } + +.wd-80p { + width: 80%; } + +.mx-wd-80p { + max-width: 80%; } + +.mn-wd-80p { + min-width: 80%; } + +.wd-80-f { + width: 80px !important; } + +.wd-80p-f { + width: 80% !important; } + +.mx-wd-80p-f { + max-width: 80% !important; } + +.mn-wd-80p-f { + min-width: 80% !important; } + +.wd-85 { + width: 85px; } + +.wd-85p { + width: 85%; } + +.mx-wd-85p { + max-width: 85%; } + +.mn-wd-85p { + min-width: 85%; } + +.wd-85-f { + width: 85px !important; } + +.wd-85p-f { + width: 85% !important; } + +.mx-wd-85p-f { + max-width: 85% !important; } + +.mn-wd-85p-f { + min-width: 85% !important; } + +.wd-90 { + width: 90px; } + +.wd-90p { + width: 90%; } + +.mx-wd-90p { + max-width: 90%; } + +.mn-wd-90p { + min-width: 90%; } + +.wd-90-f { + width: 90px !important; } + +.wd-90p-f { + width: 90% !important; } + +.mx-wd-90p-f { + max-width: 90% !important; } + +.mn-wd-90p-f { + min-width: 90% !important; } + +.wd-95 { + width: 95px; } + +.wd-95p { + width: 95%; } + +.mx-wd-95p { + max-width: 95%; } + +.mn-wd-95p { + min-width: 95%; } + +.wd-95-f { + width: 95px !important; } + +.wd-95p-f { + width: 95% !important; } + +.mx-wd-95p-f { + max-width: 95% !important; } + +.mn-wd-95p-f { + min-width: 95% !important; } + +.wd-100 { + width: 100px; } + +.wd-100p { + width: 100%; } + +.mx-wd-100p { + max-width: 100%; } + +.mn-wd-100p { + min-width: 100%; } + +.wd-100-f { + width: 100px !important; } + +.wd-100p-f { + width: 100% !important; } + +.mx-wd-100p-f { + max-width: 100% !important; } + +.mn-wd-100p-f { + min-width: 100% !important; } + +.wd-150 { + width: 150px; } + +.wd-150-f { + width: 150px !important; } + +.wd-200 { + width: 200px; } + +.wd-200-f { + width: 200px !important; } + +.wd-250 { + width: 250px; } + +.wd-250-f { + width: 250px !important; } + +.wd-300 { + width: 300px; } + +.wd-300-f { + width: 300px !important; } + +.wd-350 { + width: 350px; } + +.wd-350-f { + width: 350px !important; } + +.wd-400 { + width: 400px; } + +.wd-400-f { + width: 400px !important; } + +.wd-450 { + width: 450px; } + +.wd-450-f { + width: 450px !important; } + +.wd-500 { + width: 500px; } + +.wd-500-f { + width: 500px !important; } + +.wd-550 { + width: 550px; } + +.wd-550-f { + width: 550px !important; } + +.wd-600 { + width: 600px; } + +.wd-600-f { + width: 600px !important; } + +.wd-650 { + width: 650px; } + +.wd-650-f { + width: 650px !important; } + +.wd-700 { + width: 700px; } + +.wd-700-f { + width: 700px !important; } + +.wd-750 { + width: 750px; } + +.wd-750-f { + width: 750px !important; } + +.wd-800 { + width: 800px; } + +.wd-800-f { + width: 800px !important; } + +.wd-850 { + width: 850px; } + +.wd-850-f { + width: 850px !important; } + +.wd-900 { + width: 900px; } + +.wd-900-f { + width: 900px !important; } + +.wd-950 { + width: 950px; } + +.wd-950-f { + width: 950px !important; } + +.wd-1000 { + width: 1000px; } + +.wd-1000-f { + width: 1000px !important; } + +@media (min-width: 480px) { + .wd-xs-5 { + width: 5px; } + .wd-xs-5p { + width: 5%; } + .mx-wd-xs-5p { + max-width: 5%; } + .mn-wd-xs-5p { + min-width: 5%; } + .wd-xs-5-f { + width: 5px !important; } + .wd-xs-5p-f { + width: 5% !important; } + .mx-wd-xs-5p-f { + max-width: 5% !important; } + .mn-wd-xs-5p-f { + min-width: 5% !important; } + .wd-xs-10 { + width: 10px; } + .wd-xs-10p { + width: 10%; } + .mx-wd-xs-10p { + max-width: 10%; } + .mn-wd-xs-10p { + min-width: 10%; } + .wd-xs-10-f { + width: 10px !important; } + .wd-xs-10p-f { + width: 10% !important; } + .mx-wd-xs-10p-f { + max-width: 10% !important; } + .mn-wd-xs-10p-f { + min-width: 10% !important; } + .wd-xs-15 { + width: 15px; } + .wd-xs-15p { + width: 15%; } + .mx-wd-xs-15p { + max-width: 15%; } + .mn-wd-xs-15p { + min-width: 15%; } + .wd-xs-15-f { + width: 15px !important; } + .wd-xs-15p-f { + width: 15% !important; } + .mx-wd-xs-15p-f { + max-width: 15% !important; } + .mn-wd-xs-15p-f { + min-width: 15% !important; } + .wd-xs-20 { + width: 20px; } + .wd-xs-20p { + width: 20%; } + .mx-wd-xs-20p { + max-width: 20%; } + .mn-wd-xs-20p { + min-width: 20%; } + .wd-xs-20-f { + width: 20px !important; } + .wd-xs-20p-f { + width: 20% !important; } + .mx-wd-xs-20p-f { + max-width: 20% !important; } + .mn-wd-xs-20p-f { + min-width: 20% !important; } + .wd-xs-25 { + width: 25px; } + .wd-xs-25p { + width: 25%; } + .mx-wd-xs-25p { + max-width: 25%; } + .mn-wd-xs-25p { + min-width: 25%; } + .wd-xs-25-f { + width: 25px !important; } + .wd-xs-25p-f { + width: 25% !important; } + .mx-wd-xs-25p-f { + max-width: 25% !important; } + .mn-wd-xs-25p-f { + min-width: 25% !important; } + .wd-xs-30 { + width: 30px; } + .wd-xs-30p { + width: 30%; } + .mx-wd-xs-30p { + max-width: 30%; } + .mn-wd-xs-30p { + min-width: 30%; } + .wd-xs-30-f { + width: 30px !important; } + .wd-xs-30p-f { + width: 30% !important; } + .mx-wd-xs-30p-f { + max-width: 30% !important; } + .mn-wd-xs-30p-f { + min-width: 30% !important; } + .wd-xs-35 { + width: 35px; } + .wd-xs-35p { + width: 35%; } + .mx-wd-xs-35p { + max-width: 35%; } + .mn-wd-xs-35p { + min-width: 35%; } + .wd-xs-35-f { + width: 35px !important; } + .wd-xs-35p-f { + width: 35% !important; } + .mx-wd-xs-35p-f { + max-width: 35% !important; } + .mn-wd-xs-35p-f { + min-width: 35% !important; } + .wd-xs-40 { + width: 40px; } + .wd-xs-40p { + width: 40%; } + .mx-wd-xs-40p { + max-width: 40%; } + .mn-wd-xs-40p { + min-width: 40%; } + .wd-xs-40-f { + width: 40px !important; } + .wd-xs-40p-f { + width: 40% !important; } + .mx-wd-xs-40p-f { + max-width: 40% !important; } + .mn-wd-xs-40p-f { + min-width: 40% !important; } + .wd-xs-45 { + width: 45px; } + .wd-xs-45p { + width: 45%; } + .mx-wd-xs-45p { + max-width: 45%; } + .mn-wd-xs-45p { + min-width: 45%; } + .wd-xs-45-f { + width: 45px !important; } + .wd-xs-45p-f { + width: 45% !important; } + .mx-wd-xs-45p-f { + max-width: 45% !important; } + .mn-wd-xs-45p-f { + min-width: 45% !important; } + .wd-xs-50 { + width: 50px; } + .wd-xs-50p { + width: 50%; } + .mx-wd-xs-50p { + max-width: 50%; } + .mn-wd-xs-50p { + min-width: 50%; } + .wd-xs-50-f { + width: 50px !important; } + .wd-xs-50p-f { + width: 50% !important; } + .mx-wd-xs-50p-f { + max-width: 50% !important; } + .mn-wd-xs-50p-f { + min-width: 50% !important; } + .wd-xs-55 { + width: 55px; } + .wd-xs-55p { + width: 55%; } + .mx-wd-xs-55p { + max-width: 55%; } + .mn-wd-xs-55p { + min-width: 55%; } + .wd-xs-55-f { + width: 55px !important; } + .wd-xs-55p-f { + width: 55% !important; } + .mx-wd-xs-55p-f { + max-width: 55% !important; } + .mn-wd-xs-55p-f { + min-width: 55% !important; } + .wd-xs-60 { + width: 60px; } + .wd-xs-60p { + width: 60%; } + .mx-wd-xs-60p { + max-width: 60%; } + .mn-wd-xs-60p { + min-width: 60%; } + .wd-xs-60-f { + width: 60px !important; } + .wd-xs-60p-f { + width: 60% !important; } + .mx-wd-xs-60p-f { + max-width: 60% !important; } + .mn-wd-xs-60p-f { + min-width: 60% !important; } + .wd-xs-65 { + width: 65px; } + .wd-xs-65p { + width: 65%; } + .mx-wd-xs-65p { + max-width: 65%; } + .mn-wd-xs-65p { + min-width: 65%; } + .wd-xs-65-f { + width: 65px !important; } + .wd-xs-65p-f { + width: 65% !important; } + .mx-wd-xs-65p-f { + max-width: 65% !important; } + .mn-wd-xs-65p-f { + min-width: 65% !important; } + .wd-xs-70 { + width: 70px; } + .wd-xs-70p { + width: 70%; } + .mx-wd-xs-70p { + max-width: 70%; } + .mn-wd-xs-70p { + min-width: 70%; } + .wd-xs-70-f { + width: 70px !important; } + .wd-xs-70p-f { + width: 70% !important; } + .mx-wd-xs-70p-f { + max-width: 70% !important; } + .mn-wd-xs-70p-f { + min-width: 70% !important; } + .wd-xs-75 { + width: 75px; } + .wd-xs-75p { + width: 75%; } + .mx-wd-xs-75p { + max-width: 75%; } + .mn-wd-xs-75p { + min-width: 75%; } + .wd-xs-75-f { + width: 75px !important; } + .wd-xs-75p-f { + width: 75% !important; } + .mx-wd-xs-75p-f { + max-width: 75% !important; } + .mn-wd-xs-75p-f { + min-width: 75% !important; } + .wd-xs-80 { + width: 80px; } + .wd-xs-80p { + width: 80%; } + .mx-wd-xs-80p { + max-width: 80%; } + .mn-wd-xs-80p { + min-width: 80%; } + .wd-xs-80-f { + width: 80px !important; } + .wd-xs-80p-f { + width: 80% !important; } + .mx-wd-xs-80p-f { + max-width: 80% !important; } + .mn-wd-xs-80p-f { + min-width: 80% !important; } + .wd-xs-85 { + width: 85px; } + .wd-xs-85p { + width: 85%; } + .mx-wd-xs-85p { + max-width: 85%; } + .mn-wd-xs-85p { + min-width: 85%; } + .wd-xs-85-f { + width: 85px !important; } + .wd-xs-85p-f { + width: 85% !important; } + .mx-wd-xs-85p-f { + max-width: 85% !important; } + .mn-wd-xs-85p-f { + min-width: 85% !important; } + .wd-xs-90 { + width: 90px; } + .wd-xs-90p { + width: 90%; } + .mx-wd-xs-90p { + max-width: 90%; } + .mn-wd-xs-90p { + min-width: 90%; } + .wd-xs-90-f { + width: 90px !important; } + .wd-xs-90p-f { + width: 90% !important; } + .mx-wd-xs-90p-f { + max-width: 90% !important; } + .mn-wd-xs-90p-f { + min-width: 90% !important; } + .wd-xs-95 { + width: 95px; } + .wd-xs-95p { + width: 95%; } + .mx-wd-xs-95p { + max-width: 95%; } + .mn-wd-xs-95p { + min-width: 95%; } + .wd-xs-95-f { + width: 95px !important; } + .wd-xs-95p-f { + width: 95% !important; } + .mx-wd-xs-95p-f { + max-width: 95% !important; } + .mn-wd-xs-95p-f { + min-width: 95% !important; } + .wd-xs-100 { + width: 100px; } + .wd-xs-100p { + width: 100%; } + .mx-wd-xs-100p { + max-width: 100%; } + .mn-wd-xs-100p { + min-width: 100%; } + .wd-xs-100-f { + width: 100px !important; } + .wd-xs-100p-f { + width: 100% !important; } + .mx-wd-xs-100p-f { + max-width: 100% !important; } + .mn-wd-xs-100p-f { + min-width: 100% !important; } + .wd-xs-150 { + width: 150px; } + .wd-xs-150p { + width: 150%; } + .mx-wd-xs-150p { + max-width: 150%; } + .mn-wd-xs-150p { + min-width: 150%; } + .wd-xs-150-f { + width: 150px !important; } + .wd-xs-150p-f { + width: 150% !important; } + .mx-wd-xs-150p-f { + max-width: 150% !important; } + .mn-wd-xs-150p-f { + min-width: 150% !important; } + .wd-xs-200 { + width: 200px; } + .wd-xs-200p { + width: 200%; } + .mx-wd-xs-200p { + max-width: 200%; } + .mn-wd-xs-200p { + min-width: 200%; } + .wd-xs-200-f { + width: 200px !important; } + .wd-xs-200p-f { + width: 200% !important; } + .mx-wd-xs-200p-f { + max-width: 200% !important; } + .mn-wd-xs-200p-f { + min-width: 200% !important; } + .wd-xs-250 { + width: 250px; } + .wd-xs-250p { + width: 250%; } + .mx-wd-xs-250p { + max-width: 250%; } + .mn-wd-xs-250p { + min-width: 250%; } + .wd-xs-250-f { + width: 250px !important; } + .wd-xs-250p-f { + width: 250% !important; } + .mx-wd-xs-250p-f { + max-width: 250% !important; } + .mn-wd-xs-250p-f { + min-width: 250% !important; } + .wd-xs-300 { + width: 300px; } + .wd-xs-300p { + width: 300%; } + .mx-wd-xs-300p { + max-width: 300%; } + .mn-wd-xs-300p { + min-width: 300%; } + .wd-xs-300-f { + width: 300px !important; } + .wd-xs-300p-f { + width: 300% !important; } + .mx-wd-xs-300p-f { + max-width: 300% !important; } + .mn-wd-xs-300p-f { + min-width: 300% !important; } + .wd-xs-350 { + width: 350px; } + .wd-xs-350p { + width: 350%; } + .mx-wd-xs-350p { + max-width: 350%; } + .mn-wd-xs-350p { + min-width: 350%; } + .wd-xs-350-f { + width: 350px !important; } + .wd-xs-350p-f { + width: 350% !important; } + .mx-wd-xs-350p-f { + max-width: 350% !important; } + .mn-wd-xs-350p-f { + min-width: 350% !important; } + .wd-xs-400 { + width: 400px; } + .wd-xs-400p { + width: 400%; } + .mx-wd-xs-400p { + max-width: 400%; } + .mn-wd-xs-400p { + min-width: 400%; } + .wd-xs-400-f { + width: 400px !important; } + .wd-xs-400p-f { + width: 400% !important; } + .mx-wd-xs-400p-f { + max-width: 400% !important; } + .mn-wd-xs-400p-f { + min-width: 400% !important; } + .wd-xs-450 { + width: 450px; } + .wd-xs-450p { + width: 450%; } + .mx-wd-xs-450p { + max-width: 450%; } + .mn-wd-xs-450p { + min-width: 450%; } + .wd-xs-450-f { + width: 450px !important; } + .wd-xs-450p-f { + width: 450% !important; } + .mx-wd-xs-450p-f { + max-width: 450% !important; } + .mn-wd-xs-450p-f { + min-width: 450% !important; } + .wd-xs-500 { + width: 500px; } + .wd-xs-500p { + width: 500%; } + .mx-wd-xs-500p { + max-width: 500%; } + .mn-wd-xs-500p { + min-width: 500%; } + .wd-xs-500-f { + width: 500px !important; } + .wd-xs-500p-f { + width: 500% !important; } + .mx-wd-xs-500p-f { + max-width: 500% !important; } + .mn-wd-xs-500p-f { + min-width: 500% !important; } + .wd-xs-550 { + width: 550px; } + .wd-xs-550p { + width: 550%; } + .mx-wd-xs-550p { + max-width: 550%; } + .mn-wd-xs-550p { + min-width: 550%; } + .wd-xs-550-f { + width: 550px !important; } + .wd-xs-550p-f { + width: 550% !important; } + .mx-wd-xs-550p-f { + max-width: 550% !important; } + .mn-wd-xs-550p-f { + min-width: 550% !important; } + .wd-xs-600 { + width: 600px; } + .wd-xs-600p { + width: 600%; } + .mx-wd-xs-600p { + max-width: 600%; } + .mn-wd-xs-600p { + min-width: 600%; } + .wd-xs-600-f { + width: 600px !important; } + .wd-xs-600p-f { + width: 600% !important; } + .mx-wd-xs-600p-f { + max-width: 600% !important; } + .mn-wd-xs-600p-f { + min-width: 600% !important; } + .wd-xs-650 { + width: 650px; } + .wd-xs-650p { + width: 650%; } + .mx-wd-xs-650p { + max-width: 650%; } + .mn-wd-xs-650p { + min-width: 650%; } + .wd-xs-650-f { + width: 650px !important; } + .wd-xs-650p-f { + width: 650% !important; } + .mx-wd-xs-650p-f { + max-width: 650% !important; } + .mn-wd-xs-650p-f { + min-width: 650% !important; } + .wd-xs-700 { + width: 700px; } + .wd-xs-700p { + width: 700%; } + .mx-wd-xs-700p { + max-width: 700%; } + .mn-wd-xs-700p { + min-width: 700%; } + .wd-xs-700-f { + width: 700px !important; } + .wd-xs-700p-f { + width: 700% !important; } + .mx-wd-xs-700p-f { + max-width: 700% !important; } + .mn-wd-xs-700p-f { + min-width: 700% !important; } + .wd-xs-750 { + width: 750px; } + .wd-xs-750p { + width: 750%; } + .mx-wd-xs-750p { + max-width: 750%; } + .mn-wd-xs-750p { + min-width: 750%; } + .wd-xs-750-f { + width: 750px !important; } + .wd-xs-750p-f { + width: 750% !important; } + .mx-wd-xs-750p-f { + max-width: 750% !important; } + .mn-wd-xs-750p-f { + min-width: 750% !important; } + .wd-xs-800 { + width: 800px; } + .wd-xs-800p { + width: 800%; } + .mx-wd-xs-800p { + max-width: 800%; } + .mn-wd-xs-800p { + min-width: 800%; } + .wd-xs-800-f { + width: 800px !important; } + .wd-xs-800p-f { + width: 800% !important; } + .mx-wd-xs-800p-f { + max-width: 800% !important; } + .mn-wd-xs-800p-f { + min-width: 800% !important; } + .wd-xs-850 { + width: 850px; } + .wd-xs-850p { + width: 850%; } + .mx-wd-xs-850p { + max-width: 850%; } + .mn-wd-xs-850p { + min-width: 850%; } + .wd-xs-850-f { + width: 850px !important; } + .wd-xs-850p-f { + width: 850% !important; } + .mx-wd-xs-850p-f { + max-width: 850% !important; } + .mn-wd-xs-850p-f { + min-width: 850% !important; } + .wd-xs-900 { + width: 900px; } + .wd-xs-900p { + width: 900%; } + .mx-wd-xs-900p { + max-width: 900%; } + .mn-wd-xs-900p { + min-width: 900%; } + .wd-xs-900-f { + width: 900px !important; } + .wd-xs-900p-f { + width: 900% !important; } + .mx-wd-xs-900p-f { + max-width: 900% !important; } + .mn-wd-xs-900p-f { + min-width: 900% !important; } + .wd-xs-950 { + width: 950px; } + .wd-xs-950p { + width: 950%; } + .mx-wd-xs-950p { + max-width: 950%; } + .mn-wd-xs-950p { + min-width: 950%; } + .wd-xs-950-f { + width: 950px !important; } + .wd-xs-950p-f { + width: 950% !important; } + .mx-wd-xs-950p-f { + max-width: 950% !important; } + .mn-wd-xs-950p-f { + min-width: 950% !important; } + .wd-xs-1000 { + width: 1000px; } + .wd-xs-1000p { + width: 1000%; } + .mx-wd-xs-1000p { + max-width: 1000%; } + .mn-wd-xs-1000p { + min-width: 1000%; } + .wd-xs-1000-f { + width: 1000px !important; } + .wd-xs-1000p-f { + width: 1000% !important; } + .mx-wd-xs-1000p-f { + max-width: 1000% !important; } + .mn-wd-xs-1000p-f { + min-width: 1000% !important; } + .wd-xs-auto { + width: auto; } + .wd-xs-auto-f { + width: auto !important; } } + +@media (min-width: 576px) { + .wd-sm-5 { + width: 5px; } + .wd-sm-5p { + width: 5%; } + .mx-wd-sm-5p { + max-width: 5%; } + .mn-wd-sm-5p { + min-width: 5%; } + .wd-sm-5-f { + width: 5px !important; } + .wd-sm-5p-f { + width: 5% !important; } + .mx-wd-sm-5p-f { + max-width: 5% !important; } + .mn-wd-sm-5p-f { + min-width: 5% !important; } + .wd-sm-10 { + width: 10px; } + .wd-sm-10p { + width: 10%; } + .mx-wd-sm-10p { + max-width: 10%; } + .mn-wd-sm-10p { + min-width: 10%; } + .wd-sm-10-f { + width: 10px !important; } + .wd-sm-10p-f { + width: 10% !important; } + .mx-wd-sm-10p-f { + max-width: 10% !important; } + .mn-wd-sm-10p-f { + min-width: 10% !important; } + .wd-sm-15 { + width: 15px; } + .wd-sm-15p { + width: 15%; } + .mx-wd-sm-15p { + max-width: 15%; } + .mn-wd-sm-15p { + min-width: 15%; } + .wd-sm-15-f { + width: 15px !important; } + .wd-sm-15p-f { + width: 15% !important; } + .mx-wd-sm-15p-f { + max-width: 15% !important; } + .mn-wd-sm-15p-f { + min-width: 15% !important; } + .wd-sm-20 { + width: 20px; } + .wd-sm-20p { + width: 20%; } + .mx-wd-sm-20p { + max-width: 20%; } + .mn-wd-sm-20p { + min-width: 20%; } + .wd-sm-20-f { + width: 20px !important; } + .wd-sm-20p-f { + width: 20% !important; } + .mx-wd-sm-20p-f { + max-width: 20% !important; } + .mn-wd-sm-20p-f { + min-width: 20% !important; } + .wd-sm-25 { + width: 25px; } + .wd-sm-25p { + width: 25%; } + .mx-wd-sm-25p { + max-width: 25%; } + .mn-wd-sm-25p { + min-width: 25%; } + .wd-sm-25-f { + width: 25px !important; } + .wd-sm-25p-f { + width: 25% !important; } + .mx-wd-sm-25p-f { + max-width: 25% !important; } + .mn-wd-sm-25p-f { + min-width: 25% !important; } + .wd-sm-30 { + width: 30px; } + .wd-sm-30p { + width: 30%; } + .mx-wd-sm-30p { + max-width: 30%; } + .mn-wd-sm-30p { + min-width: 30%; } + .wd-sm-30-f { + width: 30px !important; } + .wd-sm-30p-f { + width: 30% !important; } + .mx-wd-sm-30p-f { + max-width: 30% !important; } + .mn-wd-sm-30p-f { + min-width: 30% !important; } + .wd-sm-35 { + width: 35px; } + .wd-sm-35p { + width: 35%; } + .mx-wd-sm-35p { + max-width: 35%; } + .mn-wd-sm-35p { + min-width: 35%; } + .wd-sm-35-f { + width: 35px !important; } + .wd-sm-35p-f { + width: 35% !important; } + .mx-wd-sm-35p-f { + max-width: 35% !important; } + .mn-wd-sm-35p-f { + min-width: 35% !important; } + .wd-sm-40 { + width: 40px; } + .wd-sm-40p { + width: 40%; } + .mx-wd-sm-40p { + max-width: 40%; } + .mn-wd-sm-40p { + min-width: 40%; } + .wd-sm-40-f { + width: 40px !important; } + .wd-sm-40p-f { + width: 40% !important; } + .mx-wd-sm-40p-f { + max-width: 40% !important; } + .mn-wd-sm-40p-f { + min-width: 40% !important; } + .wd-sm-45 { + width: 45px; } + .wd-sm-45p { + width: 45%; } + .mx-wd-sm-45p { + max-width: 45%; } + .mn-wd-sm-45p { + min-width: 45%; } + .wd-sm-45-f { + width: 45px !important; } + .wd-sm-45p-f { + width: 45% !important; } + .mx-wd-sm-45p-f { + max-width: 45% !important; } + .mn-wd-sm-45p-f { + min-width: 45% !important; } + .wd-sm-50 { + width: 50px; } + .wd-sm-50p { + width: 50%; } + .mx-wd-sm-50p { + max-width: 50%; } + .mn-wd-sm-50p { + min-width: 50%; } + .wd-sm-50-f { + width: 50px !important; } + .wd-sm-50p-f { + width: 50% !important; } + .mx-wd-sm-50p-f { + max-width: 50% !important; } + .mn-wd-sm-50p-f { + min-width: 50% !important; } + .wd-sm-55 { + width: 55px; } + .wd-sm-55p { + width: 55%; } + .mx-wd-sm-55p { + max-width: 55%; } + .mn-wd-sm-55p { + min-width: 55%; } + .wd-sm-55-f { + width: 55px !important; } + .wd-sm-55p-f { + width: 55% !important; } + .mx-wd-sm-55p-f { + max-width: 55% !important; } + .mn-wd-sm-55p-f { + min-width: 55% !important; } + .wd-sm-60 { + width: 60px; } + .wd-sm-60p { + width: 60%; } + .mx-wd-sm-60p { + max-width: 60%; } + .mn-wd-sm-60p { + min-width: 60%; } + .wd-sm-60-f { + width: 60px !important; } + .wd-sm-60p-f { + width: 60% !important; } + .mx-wd-sm-60p-f { + max-width: 60% !important; } + .mn-wd-sm-60p-f { + min-width: 60% !important; } + .wd-sm-65 { + width: 65px; } + .wd-sm-65p { + width: 65%; } + .mx-wd-sm-65p { + max-width: 65%; } + .mn-wd-sm-65p { + min-width: 65%; } + .wd-sm-65-f { + width: 65px !important; } + .wd-sm-65p-f { + width: 65% !important; } + .mx-wd-sm-65p-f { + max-width: 65% !important; } + .mn-wd-sm-65p-f { + min-width: 65% !important; } + .wd-sm-70 { + width: 70px; } + .wd-sm-70p { + width: 70%; } + .mx-wd-sm-70p { + max-width: 70%; } + .mn-wd-sm-70p { + min-width: 70%; } + .wd-sm-70-f { + width: 70px !important; } + .wd-sm-70p-f { + width: 70% !important; } + .mx-wd-sm-70p-f { + max-width: 70% !important; } + .mn-wd-sm-70p-f { + min-width: 70% !important; } + .wd-sm-75 { + width: 75px; } + .wd-sm-75p { + width: 75%; } + .mx-wd-sm-75p { + max-width: 75%; } + .mn-wd-sm-75p { + min-width: 75%; } + .wd-sm-75-f { + width: 75px !important; } + .wd-sm-75p-f { + width: 75% !important; } + .mx-wd-sm-75p-f { + max-width: 75% !important; } + .mn-wd-sm-75p-f { + min-width: 75% !important; } + .wd-sm-80 { + width: 80px; } + .wd-sm-80p { + width: 80%; } + .mx-wd-sm-80p { + max-width: 80%; } + .mn-wd-sm-80p { + min-width: 80%; } + .wd-sm-80-f { + width: 80px !important; } + .wd-sm-80p-f { + width: 80% !important; } + .mx-wd-sm-80p-f { + max-width: 80% !important; } + .mn-wd-sm-80p-f { + min-width: 80% !important; } + .wd-sm-85 { + width: 85px; } + .wd-sm-85p { + width: 85%; } + .mx-wd-sm-85p { + max-width: 85%; } + .mn-wd-sm-85p { + min-width: 85%; } + .wd-sm-85-f { + width: 85px !important; } + .wd-sm-85p-f { + width: 85% !important; } + .mx-wd-sm-85p-f { + max-width: 85% !important; } + .mn-wd-sm-85p-f { + min-width: 85% !important; } + .wd-sm-90 { + width: 90px; } + .wd-sm-90p { + width: 90%; } + .mx-wd-sm-90p { + max-width: 90%; } + .mn-wd-sm-90p { + min-width: 90%; } + .wd-sm-90-f { + width: 90px !important; } + .wd-sm-90p-f { + width: 90% !important; } + .mx-wd-sm-90p-f { + max-width: 90% !important; } + .mn-wd-sm-90p-f { + min-width: 90% !important; } + .wd-sm-95 { + width: 95px; } + .wd-sm-95p { + width: 95%; } + .mx-wd-sm-95p { + max-width: 95%; } + .mn-wd-sm-95p { + min-width: 95%; } + .wd-sm-95-f { + width: 95px !important; } + .wd-sm-95p-f { + width: 95% !important; } + .mx-wd-sm-95p-f { + max-width: 95% !important; } + .mn-wd-sm-95p-f { + min-width: 95% !important; } + .wd-sm-100 { + width: 100px; } + .wd-sm-100p { + width: 100%; } + .mx-wd-sm-100p { + max-width: 100%; } + .mn-wd-sm-100p { + min-width: 100%; } + .wd-sm-100-f { + width: 100px !important; } + .wd-sm-100p-f { + width: 100% !important; } + .mx-wd-sm-100p-f { + max-width: 100% !important; } + .mn-wd-sm-100p-f { + min-width: 100% !important; } + .wd-sm-150 { + width: 150px; } + .wd-sm-150p { + width: 150%; } + .mx-wd-sm-150p { + max-width: 150%; } + .mn-wd-sm-150p { + min-width: 150%; } + .wd-sm-150-f { + width: 150px !important; } + .wd-sm-150p-f { + width: 150% !important; } + .mx-wd-sm-150p-f { + max-width: 150% !important; } + .mn-wd-sm-150p-f { + min-width: 150% !important; } + .wd-sm-200 { + width: 200px; } + .wd-sm-200p { + width: 200%; } + .mx-wd-sm-200p { + max-width: 200%; } + .mn-wd-sm-200p { + min-width: 200%; } + .wd-sm-200-f { + width: 200px !important; } + .wd-sm-200p-f { + width: 200% !important; } + .mx-wd-sm-200p-f { + max-width: 200% !important; } + .mn-wd-sm-200p-f { + min-width: 200% !important; } + .wd-sm-250 { + width: 250px; } + .wd-sm-250p { + width: 250%; } + .mx-wd-sm-250p { + max-width: 250%; } + .mn-wd-sm-250p { + min-width: 250%; } + .wd-sm-250-f { + width: 250px !important; } + .wd-sm-250p-f { + width: 250% !important; } + .mx-wd-sm-250p-f { + max-width: 250% !important; } + .mn-wd-sm-250p-f { + min-width: 250% !important; } + .wd-sm-300 { + width: 300px; } + .wd-sm-300p { + width: 300%; } + .mx-wd-sm-300p { + max-width: 300%; } + .mn-wd-sm-300p { + min-width: 300%; } + .wd-sm-300-f { + width: 300px !important; } + .wd-sm-300p-f { + width: 300% !important; } + .mx-wd-sm-300p-f { + max-width: 300% !important; } + .mn-wd-sm-300p-f { + min-width: 300% !important; } + .wd-sm-350 { + width: 350px; } + .wd-sm-350p { + width: 350%; } + .mx-wd-sm-350p { + max-width: 350%; } + .mn-wd-sm-350p { + min-width: 350%; } + .wd-sm-350-f { + width: 350px !important; } + .wd-sm-350p-f { + width: 350% !important; } + .mx-wd-sm-350p-f { + max-width: 350% !important; } + .mn-wd-sm-350p-f { + min-width: 350% !important; } + .wd-sm-400 { + width: 400px; } + .wd-sm-400p { + width: 400%; } + .mx-wd-sm-400p { + max-width: 400%; } + .mn-wd-sm-400p { + min-width: 400%; } + .wd-sm-400-f { + width: 400px !important; } + .wd-sm-400p-f { + width: 400% !important; } + .mx-wd-sm-400p-f { + max-width: 400% !important; } + .mn-wd-sm-400p-f { + min-width: 400% !important; } + .wd-sm-450 { + width: 450px; } + .wd-sm-450p { + width: 450%; } + .mx-wd-sm-450p { + max-width: 450%; } + .mn-wd-sm-450p { + min-width: 450%; } + .wd-sm-450-f { + width: 450px !important; } + .wd-sm-450p-f { + width: 450% !important; } + .mx-wd-sm-450p-f { + max-width: 450% !important; } + .mn-wd-sm-450p-f { + min-width: 450% !important; } + .wd-sm-500 { + width: 500px; } + .wd-sm-500p { + width: 500%; } + .mx-wd-sm-500p { + max-width: 500%; } + .mn-wd-sm-500p { + min-width: 500%; } + .wd-sm-500-f { + width: 500px !important; } + .wd-sm-500p-f { + width: 500% !important; } + .mx-wd-sm-500p-f { + max-width: 500% !important; } + .mn-wd-sm-500p-f { + min-width: 500% !important; } + .wd-sm-550 { + width: 550px; } + .wd-sm-550p { + width: 550%; } + .mx-wd-sm-550p { + max-width: 550%; } + .mn-wd-sm-550p { + min-width: 550%; } + .wd-sm-550-f { + width: 550px !important; } + .wd-sm-550p-f { + width: 550% !important; } + .mx-wd-sm-550p-f { + max-width: 550% !important; } + .mn-wd-sm-550p-f { + min-width: 550% !important; } + .wd-sm-600 { + width: 600px; } + .wd-sm-600p { + width: 600%; } + .mx-wd-sm-600p { + max-width: 600%; } + .mn-wd-sm-600p { + min-width: 600%; } + .wd-sm-600-f { + width: 600px !important; } + .wd-sm-600p-f { + width: 600% !important; } + .mx-wd-sm-600p-f { + max-width: 600% !important; } + .mn-wd-sm-600p-f { + min-width: 600% !important; } + .wd-sm-650 { + width: 650px; } + .wd-sm-650p { + width: 650%; } + .mx-wd-sm-650p { + max-width: 650%; } + .mn-wd-sm-650p { + min-width: 650%; } + .wd-sm-650-f { + width: 650px !important; } + .wd-sm-650p-f { + width: 650% !important; } + .mx-wd-sm-650p-f { + max-width: 650% !important; } + .mn-wd-sm-650p-f { + min-width: 650% !important; } + .wd-sm-700 { + width: 700px; } + .wd-sm-700p { + width: 700%; } + .mx-wd-sm-700p { + max-width: 700%; } + .mn-wd-sm-700p { + min-width: 700%; } + .wd-sm-700-f { + width: 700px !important; } + .wd-sm-700p-f { + width: 700% !important; } + .mx-wd-sm-700p-f { + max-width: 700% !important; } + .mn-wd-sm-700p-f { + min-width: 700% !important; } + .wd-sm-750 { + width: 750px; } + .wd-sm-750p { + width: 750%; } + .mx-wd-sm-750p { + max-width: 750%; } + .mn-wd-sm-750p { + min-width: 750%; } + .wd-sm-750-f { + width: 750px !important; } + .wd-sm-750p-f { + width: 750% !important; } + .mx-wd-sm-750p-f { + max-width: 750% !important; } + .mn-wd-sm-750p-f { + min-width: 750% !important; } + .wd-sm-800 { + width: 800px; } + .wd-sm-800p { + width: 800%; } + .mx-wd-sm-800p { + max-width: 800%; } + .mn-wd-sm-800p { + min-width: 800%; } + .wd-sm-800-f { + width: 800px !important; } + .wd-sm-800p-f { + width: 800% !important; } + .mx-wd-sm-800p-f { + max-width: 800% !important; } + .mn-wd-sm-800p-f { + min-width: 800% !important; } + .wd-sm-850 { + width: 850px; } + .wd-sm-850p { + width: 850%; } + .mx-wd-sm-850p { + max-width: 850%; } + .mn-wd-sm-850p { + min-width: 850%; } + .wd-sm-850-f { + width: 850px !important; } + .wd-sm-850p-f { + width: 850% !important; } + .mx-wd-sm-850p-f { + max-width: 850% !important; } + .mn-wd-sm-850p-f { + min-width: 850% !important; } + .wd-sm-900 { + width: 900px; } + .wd-sm-900p { + width: 900%; } + .mx-wd-sm-900p { + max-width: 900%; } + .mn-wd-sm-900p { + min-width: 900%; } + .wd-sm-900-f { + width: 900px !important; } + .wd-sm-900p-f { + width: 900% !important; } + .mx-wd-sm-900p-f { + max-width: 900% !important; } + .mn-wd-sm-900p-f { + min-width: 900% !important; } + .wd-sm-950 { + width: 950px; } + .wd-sm-950p { + width: 950%; } + .mx-wd-sm-950p { + max-width: 950%; } + .mn-wd-sm-950p { + min-width: 950%; } + .wd-sm-950-f { + width: 950px !important; } + .wd-sm-950p-f { + width: 950% !important; } + .mx-wd-sm-950p-f { + max-width: 950% !important; } + .mn-wd-sm-950p-f { + min-width: 950% !important; } + .wd-sm-1000 { + width: 1000px; } + .wd-sm-1000p { + width: 1000%; } + .mx-wd-sm-1000p { + max-width: 1000%; } + .mn-wd-sm-1000p { + min-width: 1000%; } + .wd-sm-1000-f { + width: 1000px !important; } + .wd-sm-1000p-f { + width: 1000% !important; } + .mx-wd-sm-1000p-f { + max-width: 1000% !important; } + .mn-wd-sm-1000p-f { + min-width: 1000% !important; } + .wd-sm-auto { + width: auto; } + .wd-sm-auto-f { + width: auto !important; } } + +@media (min-width: 768px) { + .wd-md-5 { + width: 5px; } + .wd-md-5p { + width: 5%; } + .mx-wd-md-5p { + max-width: 5%; } + .mn-wd-md-5p { + min-width: 5%; } + .wd-md-5-f { + width: 5px !important; } + .wd-md-5p-f { + width: 5% !important; } + .mx-wd-md-5p-f { + max-width: 5% !important; } + .mn-wd-md-5p-f { + min-width: 5% !important; } + .wd-md-10 { + width: 10px; } + .wd-md-10p { + width: 10%; } + .mx-wd-md-10p { + max-width: 10%; } + .mn-wd-md-10p { + min-width: 10%; } + .wd-md-10-f { + width: 10px !important; } + .wd-md-10p-f { + width: 10% !important; } + .mx-wd-md-10p-f { + max-width: 10% !important; } + .mn-wd-md-10p-f { + min-width: 10% !important; } + .wd-md-15 { + width: 15px; } + .wd-md-15p { + width: 15%; } + .mx-wd-md-15p { + max-width: 15%; } + .mn-wd-md-15p { + min-width: 15%; } + .wd-md-15-f { + width: 15px !important; } + .wd-md-15p-f { + width: 15% !important; } + .mx-wd-md-15p-f { + max-width: 15% !important; } + .mn-wd-md-15p-f { + min-width: 15% !important; } + .wd-md-20 { + width: 20px; } + .wd-md-20p { + width: 20%; } + .mx-wd-md-20p { + max-width: 20%; } + .mn-wd-md-20p { + min-width: 20%; } + .wd-md-20-f { + width: 20px !important; } + .wd-md-20p-f { + width: 20% !important; } + .mx-wd-md-20p-f { + max-width: 20% !important; } + .mn-wd-md-20p-f { + min-width: 20% !important; } + .wd-md-25 { + width: 25px; } + .wd-md-25p { + width: 25%; } + .mx-wd-md-25p { + max-width: 25%; } + .mn-wd-md-25p { + min-width: 25%; } + .wd-md-25-f { + width: 25px !important; } + .wd-md-25p-f { + width: 25% !important; } + .mx-wd-md-25p-f { + max-width: 25% !important; } + .mn-wd-md-25p-f { + min-width: 25% !important; } + .wd-md-30 { + width: 30px; } + .wd-md-30p { + width: 30%; } + .mx-wd-md-30p { + max-width: 30%; } + .mn-wd-md-30p { + min-width: 30%; } + .wd-md-30-f { + width: 30px !important; } + .wd-md-30p-f { + width: 30% !important; } + .mx-wd-md-30p-f { + max-width: 30% !important; } + .mn-wd-md-30p-f { + min-width: 30% !important; } + .wd-md-35 { + width: 35px; } + .wd-md-35p { + width: 35%; } + .mx-wd-md-35p { + max-width: 35%; } + .mn-wd-md-35p { + min-width: 35%; } + .wd-md-35-f { + width: 35px !important; } + .wd-md-35p-f { + width: 35% !important; } + .mx-wd-md-35p-f { + max-width: 35% !important; } + .mn-wd-md-35p-f { + min-width: 35% !important; } + .wd-md-40 { + width: 40px; } + .wd-md-40p { + width: 40%; } + .mx-wd-md-40p { + max-width: 40%; } + .mn-wd-md-40p { + min-width: 40%; } + .wd-md-40-f { + width: 40px !important; } + .wd-md-40p-f { + width: 40% !important; } + .mx-wd-md-40p-f { + max-width: 40% !important; } + .mn-wd-md-40p-f { + min-width: 40% !important; } + .wd-md-45 { + width: 45px; } + .wd-md-45p { + width: 45%; } + .mx-wd-md-45p { + max-width: 45%; } + .mn-wd-md-45p { + min-width: 45%; } + .wd-md-45-f { + width: 45px !important; } + .wd-md-45p-f { + width: 45% !important; } + .mx-wd-md-45p-f { + max-width: 45% !important; } + .mn-wd-md-45p-f { + min-width: 45% !important; } + .wd-md-50 { + width: 50px; } + .wd-md-50p { + width: 50%; } + .mx-wd-md-50p { + max-width: 50%; } + .mn-wd-md-50p { + min-width: 50%; } + .wd-md-50-f { + width: 50px !important; } + .wd-md-50p-f { + width: 50% !important; } + .mx-wd-md-50p-f { + max-width: 50% !important; } + .mn-wd-md-50p-f { + min-width: 50% !important; } + .wd-md-55 { + width: 55px; } + .wd-md-55p { + width: 55%; } + .mx-wd-md-55p { + max-width: 55%; } + .mn-wd-md-55p { + min-width: 55%; } + .wd-md-55-f { + width: 55px !important; } + .wd-md-55p-f { + width: 55% !important; } + .mx-wd-md-55p-f { + max-width: 55% !important; } + .mn-wd-md-55p-f { + min-width: 55% !important; } + .wd-md-60 { + width: 60px; } + .wd-md-60p { + width: 60%; } + .mx-wd-md-60p { + max-width: 60%; } + .mn-wd-md-60p { + min-width: 60%; } + .wd-md-60-f { + width: 60px !important; } + .wd-md-60p-f { + width: 60% !important; } + .mx-wd-md-60p-f { + max-width: 60% !important; } + .mn-wd-md-60p-f { + min-width: 60% !important; } + .wd-md-65 { + width: 65px; } + .wd-md-65p { + width: 65%; } + .mx-wd-md-65p { + max-width: 65%; } + .mn-wd-md-65p { + min-width: 65%; } + .wd-md-65-f { + width: 65px !important; } + .wd-md-65p-f { + width: 65% !important; } + .mx-wd-md-65p-f { + max-width: 65% !important; } + .mn-wd-md-65p-f { + min-width: 65% !important; } + .wd-md-70 { + width: 70px; } + .wd-md-70p { + width: 70%; } + .mx-wd-md-70p { + max-width: 70%; } + .mn-wd-md-70p { + min-width: 70%; } + .wd-md-70-f { + width: 70px !important; } + .wd-md-70p-f { + width: 70% !important; } + .mx-wd-md-70p-f { + max-width: 70% !important; } + .mn-wd-md-70p-f { + min-width: 70% !important; } + .wd-md-75 { + width: 75px; } + .wd-md-75p { + width: 75%; } + .mx-wd-md-75p { + max-width: 75%; } + .mn-wd-md-75p { + min-width: 75%; } + .wd-md-75-f { + width: 75px !important; } + .wd-md-75p-f { + width: 75% !important; } + .mx-wd-md-75p-f { + max-width: 75% !important; } + .mn-wd-md-75p-f { + min-width: 75% !important; } + .wd-md-80 { + width: 80px; } + .wd-md-80p { + width: 80%; } + .mx-wd-md-80p { + max-width: 80%; } + .mn-wd-md-80p { + min-width: 80%; } + .wd-md-80-f { + width: 80px !important; } + .wd-md-80p-f { + width: 80% !important; } + .mx-wd-md-80p-f { + max-width: 80% !important; } + .mn-wd-md-80p-f { + min-width: 80% !important; } + .wd-md-85 { + width: 85px; } + .wd-md-85p { + width: 85%; } + .mx-wd-md-85p { + max-width: 85%; } + .mn-wd-md-85p { + min-width: 85%; } + .wd-md-85-f { + width: 85px !important; } + .wd-md-85p-f { + width: 85% !important; } + .mx-wd-md-85p-f { + max-width: 85% !important; } + .mn-wd-md-85p-f { + min-width: 85% !important; } + .wd-md-90 { + width: 90px; } + .wd-md-90p { + width: 90%; } + .mx-wd-md-90p { + max-width: 90%; } + .mn-wd-md-90p { + min-width: 90%; } + .wd-md-90-f { + width: 90px !important; } + .wd-md-90p-f { + width: 90% !important; } + .mx-wd-md-90p-f { + max-width: 90% !important; } + .mn-wd-md-90p-f { + min-width: 90% !important; } + .wd-md-95 { + width: 95px; } + .wd-md-95p { + width: 95%; } + .mx-wd-md-95p { + max-width: 95%; } + .mn-wd-md-95p { + min-width: 95%; } + .wd-md-95-f { + width: 95px !important; } + .wd-md-95p-f { + width: 95% !important; } + .mx-wd-md-95p-f { + max-width: 95% !important; } + .mn-wd-md-95p-f { + min-width: 95% !important; } + .wd-md-100 { + width: 100px; } + .wd-md-100p { + width: 100%; } + .mx-wd-md-100p { + max-width: 100%; } + .mn-wd-md-100p { + min-width: 100%; } + .wd-md-100-f { + width: 100px !important; } + .wd-md-100p-f { + width: 100% !important; } + .mx-wd-md-100p-f { + max-width: 100% !important; } + .mn-wd-md-100p-f { + min-width: 100% !important; } + .wd-md-150 { + width: 150px; } + .wd-md-150p { + width: 150%; } + .mx-wd-md-150p { + max-width: 150%; } + .mn-wd-md-150p { + min-width: 150%; } + .wd-md-150-f { + width: 150px !important; } + .wd-md-150p-f { + width: 150% !important; } + .mx-wd-md-150p-f { + max-width: 150% !important; } + .mn-wd-md-150p-f { + min-width: 150% !important; } + .wd-md-200 { + width: 200px; } + .wd-md-200p { + width: 200%; } + .mx-wd-md-200p { + max-width: 200%; } + .mn-wd-md-200p { + min-width: 200%; } + .wd-md-200-f { + width: 200px !important; } + .wd-md-200p-f { + width: 200% !important; } + .mx-wd-md-200p-f { + max-width: 200% !important; } + .mn-wd-md-200p-f { + min-width: 200% !important; } + .wd-md-250 { + width: 250px; } + .wd-md-250p { + width: 250%; } + .mx-wd-md-250p { + max-width: 250%; } + .mn-wd-md-250p { + min-width: 250%; } + .wd-md-250-f { + width: 250px !important; } + .wd-md-250p-f { + width: 250% !important; } + .mx-wd-md-250p-f { + max-width: 250% !important; } + .mn-wd-md-250p-f { + min-width: 250% !important; } + .wd-md-300 { + width: 300px; } + .wd-md-300p { + width: 300%; } + .mx-wd-md-300p { + max-width: 300%; } + .mn-wd-md-300p { + min-width: 300%; } + .wd-md-300-f { + width: 300px !important; } + .wd-md-300p-f { + width: 300% !important; } + .mx-wd-md-300p-f { + max-width: 300% !important; } + .mn-wd-md-300p-f { + min-width: 300% !important; } + .wd-md-350 { + width: 350px; } + .wd-md-350p { + width: 350%; } + .mx-wd-md-350p { + max-width: 350%; } + .mn-wd-md-350p { + min-width: 350%; } + .wd-md-350-f { + width: 350px !important; } + .wd-md-350p-f { + width: 350% !important; } + .mx-wd-md-350p-f { + max-width: 350% !important; } + .mn-wd-md-350p-f { + min-width: 350% !important; } + .wd-md-400 { + width: 400px; } + .wd-md-400p { + width: 400%; } + .mx-wd-md-400p { + max-width: 400%; } + .mn-wd-md-400p { + min-width: 400%; } + .wd-md-400-f { + width: 400px !important; } + .wd-md-400p-f { + width: 400% !important; } + .mx-wd-md-400p-f { + max-width: 400% !important; } + .mn-wd-md-400p-f { + min-width: 400% !important; } + .wd-md-450 { + width: 450px; } + .wd-md-450p { + width: 450%; } + .mx-wd-md-450p { + max-width: 450%; } + .mn-wd-md-450p { + min-width: 450%; } + .wd-md-450-f { + width: 450px !important; } + .wd-md-450p-f { + width: 450% !important; } + .mx-wd-md-450p-f { + max-width: 450% !important; } + .mn-wd-md-450p-f { + min-width: 450% !important; } + .wd-md-500 { + width: 500px; } + .wd-md-500p { + width: 500%; } + .mx-wd-md-500p { + max-width: 500%; } + .mn-wd-md-500p { + min-width: 500%; } + .wd-md-500-f { + width: 500px !important; } + .wd-md-500p-f { + width: 500% !important; } + .mx-wd-md-500p-f { + max-width: 500% !important; } + .mn-wd-md-500p-f { + min-width: 500% !important; } + .wd-md-550 { + width: 550px; } + .wd-md-550p { + width: 550%; } + .mx-wd-md-550p { + max-width: 550%; } + .mn-wd-md-550p { + min-width: 550%; } + .wd-md-550-f { + width: 550px !important; } + .wd-md-550p-f { + width: 550% !important; } + .mx-wd-md-550p-f { + max-width: 550% !important; } + .mn-wd-md-550p-f { + min-width: 550% !important; } + .wd-md-600 { + width: 600px; } + .wd-md-600p { + width: 600%; } + .mx-wd-md-600p { + max-width: 600%; } + .mn-wd-md-600p { + min-width: 600%; } + .wd-md-600-f { + width: 600px !important; } + .wd-md-600p-f { + width: 600% !important; } + .mx-wd-md-600p-f { + max-width: 600% !important; } + .mn-wd-md-600p-f { + min-width: 600% !important; } + .wd-md-650 { + width: 650px; } + .wd-md-650p { + width: 650%; } + .mx-wd-md-650p { + max-width: 650%; } + .mn-wd-md-650p { + min-width: 650%; } + .wd-md-650-f { + width: 650px !important; } + .wd-md-650p-f { + width: 650% !important; } + .mx-wd-md-650p-f { + max-width: 650% !important; } + .mn-wd-md-650p-f { + min-width: 650% !important; } + .wd-md-700 { + width: 700px; } + .wd-md-700p { + width: 700%; } + .mx-wd-md-700p { + max-width: 700%; } + .mn-wd-md-700p { + min-width: 700%; } + .wd-md-700-f { + width: 700px !important; } + .wd-md-700p-f { + width: 700% !important; } + .mx-wd-md-700p-f { + max-width: 700% !important; } + .mn-wd-md-700p-f { + min-width: 700% !important; } + .wd-md-750 { + width: 750px; } + .wd-md-750p { + width: 750%; } + .mx-wd-md-750p { + max-width: 750%; } + .mn-wd-md-750p { + min-width: 750%; } + .wd-md-750-f { + width: 750px !important; } + .wd-md-750p-f { + width: 750% !important; } + .mx-wd-md-750p-f { + max-width: 750% !important; } + .mn-wd-md-750p-f { + min-width: 750% !important; } + .wd-md-800 { + width: 800px; } + .wd-md-800p { + width: 800%; } + .mx-wd-md-800p { + max-width: 800%; } + .mn-wd-md-800p { + min-width: 800%; } + .wd-md-800-f { + width: 800px !important; } + .wd-md-800p-f { + width: 800% !important; } + .mx-wd-md-800p-f { + max-width: 800% !important; } + .mn-wd-md-800p-f { + min-width: 800% !important; } + .wd-md-850 { + width: 850px; } + .wd-md-850p { + width: 850%; } + .mx-wd-md-850p { + max-width: 850%; } + .mn-wd-md-850p { + min-width: 850%; } + .wd-md-850-f { + width: 850px !important; } + .wd-md-850p-f { + width: 850% !important; } + .mx-wd-md-850p-f { + max-width: 850% !important; } + .mn-wd-md-850p-f { + min-width: 850% !important; } + .wd-md-900 { + width: 900px; } + .wd-md-900p { + width: 900%; } + .mx-wd-md-900p { + max-width: 900%; } + .mn-wd-md-900p { + min-width: 900%; } + .wd-md-900-f { + width: 900px !important; } + .wd-md-900p-f { + width: 900% !important; } + .mx-wd-md-900p-f { + max-width: 900% !important; } + .mn-wd-md-900p-f { + min-width: 900% !important; } + .wd-md-950 { + width: 950px; } + .wd-md-950p { + width: 950%; } + .mx-wd-md-950p { + max-width: 950%; } + .mn-wd-md-950p { + min-width: 950%; } + .wd-md-950-f { + width: 950px !important; } + .wd-md-950p-f { + width: 950% !important; } + .mx-wd-md-950p-f { + max-width: 950% !important; } + .mn-wd-md-950p-f { + min-width: 950% !important; } + .wd-md-1000 { + width: 1000px; } + .wd-md-1000p { + width: 1000%; } + .mx-wd-md-1000p { + max-width: 1000%; } + .mn-wd-md-1000p { + min-width: 1000%; } + .wd-md-1000-f { + width: 1000px !important; } + .wd-md-1000p-f { + width: 1000% !important; } + .mx-wd-md-1000p-f { + max-width: 1000% !important; } + .mn-wd-md-1000p-f { + min-width: 1000% !important; } + .wd-md-auto { + width: auto; } + .wd-md-auto-f { + width: auto !important; } + .wd-md-120 { + width: 120px; } } + +@media (min-width: 992px) { + .wd-lg-5 { + width: 5px; } + .wd-lg-5p { + width: 5%; } + .mx-wd-lg-5p { + max-width: 5%; } + .mn-wd-lg-5p { + min-width: 5%; } + .wd-lg-5-f { + width: 5px !important; } + .wd-lg-5p-f { + width: 5% !important; } + .mx-wd-lg-5p-f { + max-width: 5% !important; } + .mn-wd-lg-5p-f { + min-width: 5% !important; } + .wd-lg-10 { + width: 10px; } + .wd-lg-10p { + width: 10%; } + .mx-wd-lg-10p { + max-width: 10%; } + .mn-wd-lg-10p { + min-width: 10%; } + .wd-lg-10-f { + width: 10px !important; } + .wd-lg-10p-f { + width: 10% !important; } + .mx-wd-lg-10p-f { + max-width: 10% !important; } + .mn-wd-lg-10p-f { + min-width: 10% !important; } + .wd-lg-15 { + width: 15px; } + .wd-lg-15p { + width: 15%; } + .mx-wd-lg-15p { + max-width: 15%; } + .mn-wd-lg-15p { + min-width: 15%; } + .wd-lg-15-f { + width: 15px !important; } + .wd-lg-15p-f { + width: 15% !important; } + .mx-wd-lg-15p-f { + max-width: 15% !important; } + .mn-wd-lg-15p-f { + min-width: 15% !important; } + .wd-lg-20 { + width: 20px; } + .wd-lg-20p { + width: 20%; } + .mx-wd-lg-20p { + max-width: 20%; } + .mn-wd-lg-20p { + min-width: 20%; } + .wd-lg-20-f { + width: 20px !important; } + .wd-lg-20p-f { + width: 20% !important; } + .mx-wd-lg-20p-f { + max-width: 20% !important; } + .mn-wd-lg-20p-f { + min-width: 20% !important; } + .wd-lg-25 { + width: 25px; } + .wd-lg-25p { + width: 25%; } + .mx-wd-lg-25p { + max-width: 25%; } + .mn-wd-lg-25p { + min-width: 25%; } + .wd-lg-25-f { + width: 25px !important; } + .wd-lg-25p-f { + width: 25% !important; } + .mx-wd-lg-25p-f { + max-width: 25% !important; } + .mn-wd-lg-25p-f { + min-width: 25% !important; } + .wd-lg-30 { + width: 30px; } + .wd-lg-30p { + width: 30%; } + .mx-wd-lg-30p { + max-width: 30%; } + .mn-wd-lg-30p { + min-width: 30%; } + .wd-lg-30-f { + width: 30px !important; } + .wd-lg-30p-f { + width: 30% !important; } + .mx-wd-lg-30p-f { + max-width: 30% !important; } + .mn-wd-lg-30p-f { + min-width: 30% !important; } + .wd-lg-35 { + width: 35px; } + .wd-lg-35p { + width: 35%; } + .mx-wd-lg-35p { + max-width: 35%; } + .mn-wd-lg-35p { + min-width: 35%; } + .wd-lg-35-f { + width: 35px !important; } + .wd-lg-35p-f { + width: 35% !important; } + .mx-wd-lg-35p-f { + max-width: 35% !important; } + .mn-wd-lg-35p-f { + min-width: 35% !important; } + .wd-lg-40 { + width: 40px; } + .wd-lg-40p { + width: 40%; } + .mx-wd-lg-40p { + max-width: 40%; } + .mn-wd-lg-40p { + min-width: 40%; } + .wd-lg-40-f { + width: 40px !important; } + .wd-lg-40p-f { + width: 40% !important; } + .mx-wd-lg-40p-f { + max-width: 40% !important; } + .mn-wd-lg-40p-f { + min-width: 40% !important; } + .wd-lg-45 { + width: 45px; } + .wd-lg-45p { + width: 45%; } + .mx-wd-lg-45p { + max-width: 45%; } + .mn-wd-lg-45p { + min-width: 45%; } + .wd-lg-45-f { + width: 45px !important; } + .wd-lg-45p-f { + width: 45% !important; } + .mx-wd-lg-45p-f { + max-width: 45% !important; } + .mn-wd-lg-45p-f { + min-width: 45% !important; } + .wd-lg-50 { + width: 50px; } + .wd-lg-50p { + width: 50%; } + .mx-wd-lg-50p { + max-width: 50%; } + .mn-wd-lg-50p { + min-width: 50%; } + .wd-lg-50-f { + width: 50px !important; } + .wd-lg-50p-f { + width: 50% !important; } + .mx-wd-lg-50p-f { + max-width: 50% !important; } + .mn-wd-lg-50p-f { + min-width: 50% !important; } + .wd-lg-55 { + width: 55px; } + .wd-lg-55p { + width: 55%; } + .mx-wd-lg-55p { + max-width: 55%; } + .mn-wd-lg-55p { + min-width: 55%; } + .wd-lg-55-f { + width: 55px !important; } + .wd-lg-55p-f { + width: 55% !important; } + .mx-wd-lg-55p-f { + max-width: 55% !important; } + .mn-wd-lg-55p-f { + min-width: 55% !important; } + .wd-lg-60 { + width: 60px; } + .wd-lg-60p { + width: 60%; } + .mx-wd-lg-60p { + max-width: 60%; } + .mn-wd-lg-60p { + min-width: 60%; } + .wd-lg-60-f { + width: 60px !important; } + .wd-lg-60p-f { + width: 60% !important; } + .mx-wd-lg-60p-f { + max-width: 60% !important; } + .mn-wd-lg-60p-f { + min-width: 60% !important; } + .wd-lg-65 { + width: 65px; } + .wd-lg-65p { + width: 65%; } + .mx-wd-lg-65p { + max-width: 65%; } + .mn-wd-lg-65p { + min-width: 65%; } + .wd-lg-65-f { + width: 65px !important; } + .wd-lg-65p-f { + width: 65% !important; } + .mx-wd-lg-65p-f { + max-width: 65% !important; } + .mn-wd-lg-65p-f { + min-width: 65% !important; } + .wd-lg-70 { + width: 70px; } + .wd-lg-70p { + width: 70%; } + .mx-wd-lg-70p { + max-width: 70%; } + .mn-wd-lg-70p { + min-width: 70%; } + .wd-lg-70-f { + width: 70px !important; } + .wd-lg-70p-f { + width: 70% !important; } + .mx-wd-lg-70p-f { + max-width: 70% !important; } + .mn-wd-lg-70p-f { + min-width: 70% !important; } + .wd-lg-75 { + width: 75px; } + .wd-lg-75p { + width: 75%; } + .mx-wd-lg-75p { + max-width: 75%; } + .mn-wd-lg-75p { + min-width: 75%; } + .wd-lg-75-f { + width: 75px !important; } + .wd-lg-75p-f { + width: 75% !important; } + .mx-wd-lg-75p-f { + max-width: 75% !important; } + .mn-wd-lg-75p-f { + min-width: 75% !important; } + .wd-lg-80 { + width: 80px; } + .wd-lg-80p { + width: 80%; } + .mx-wd-lg-80p { + max-width: 80%; } + .mn-wd-lg-80p { + min-width: 80%; } + .wd-lg-80-f { + width: 80px !important; } + .wd-lg-80p-f { + width: 80% !important; } + .mx-wd-lg-80p-f { + max-width: 80% !important; } + .mn-wd-lg-80p-f { + min-width: 80% !important; } + .wd-lg-85 { + width: 85px; } + .wd-lg-85p { + width: 85%; } + .mx-wd-lg-85p { + max-width: 85%; } + .mn-wd-lg-85p { + min-width: 85%; } + .wd-lg-85-f { + width: 85px !important; } + .wd-lg-85p-f { + width: 85% !important; } + .mx-wd-lg-85p-f { + max-width: 85% !important; } + .mn-wd-lg-85p-f { + min-width: 85% !important; } + .wd-lg-90 { + width: 90px; } + .wd-lg-90p { + width: 90%; } + .mx-wd-lg-90p { + max-width: 90%; } + .mn-wd-lg-90p { + min-width: 90%; } + .wd-lg-90-f { + width: 90px !important; } + .wd-lg-90p-f { + width: 90% !important; } + .mx-wd-lg-90p-f { + max-width: 90% !important; } + .mn-wd-lg-90p-f { + min-width: 90% !important; } + .wd-lg-95 { + width: 95px; } + .wd-lg-95p { + width: 95%; } + .mx-wd-lg-95p { + max-width: 95%; } + .mn-wd-lg-95p { + min-width: 95%; } + .wd-lg-95-f { + width: 95px !important; } + .wd-lg-95p-f { + width: 95% !important; } + .mx-wd-lg-95p-f { + max-width: 95% !important; } + .mn-wd-lg-95p-f { + min-width: 95% !important; } + .wd-lg-100 { + width: 100px; } + .wd-lg-100p { + width: 100%; } + .mx-wd-lg-100p { + max-width: 100%; } + .mn-wd-lg-100p { + min-width: 100%; } + .wd-lg-100-f { + width: 100px !important; } + .wd-lg-100p-f { + width: 100% !important; } + .mx-wd-lg-100p-f { + max-width: 100% !important; } + .mn-wd-lg-100p-f { + min-width: 100% !important; } + .wd-lg-150 { + width: 150px; } + .wd-lg-150p { + width: 150%; } + .mx-wd-lg-150p { + max-width: 150%; } + .mn-wd-lg-150p { + min-width: 150%; } + .wd-lg-150-f { + width: 150px !important; } + .wd-lg-150p-f { + width: 150% !important; } + .mx-wd-lg-150p-f { + max-width: 150% !important; } + .mn-wd-lg-150p-f { + min-width: 150% !important; } + .wd-lg-200 { + width: 200px; } + .wd-lg-200p { + width: 200%; } + .mx-wd-lg-200p { + max-width: 200%; } + .mn-wd-lg-200p { + min-width: 200%; } + .wd-lg-200-f { + width: 200px !important; } + .wd-lg-200p-f { + width: 200% !important; } + .mx-wd-lg-200p-f { + max-width: 200% !important; } + .mn-wd-lg-200p-f { + min-width: 200% !important; } + .wd-lg-250 { + width: 250px; } + .wd-lg-250p { + width: 250%; } + .mx-wd-lg-250p { + max-width: 250%; } + .mn-wd-lg-250p { + min-width: 250%; } + .wd-lg-250-f { + width: 250px !important; } + .wd-lg-250p-f { + width: 250% !important; } + .mx-wd-lg-250p-f { + max-width: 250% !important; } + .mn-wd-lg-250p-f { + min-width: 250% !important; } + .wd-lg-300 { + width: 300px; } + .wd-lg-300p { + width: 300%; } + .mx-wd-lg-300p { + max-width: 300%; } + .mn-wd-lg-300p { + min-width: 300%; } + .wd-lg-300-f { + width: 300px !important; } + .wd-lg-300p-f { + width: 300% !important; } + .mx-wd-lg-300p-f { + max-width: 300% !important; } + .mn-wd-lg-300p-f { + min-width: 300% !important; } + .wd-lg-350 { + width: 350px; } + .wd-lg-350p { + width: 350%; } + .mx-wd-lg-350p { + max-width: 350%; } + .mn-wd-lg-350p { + min-width: 350%; } + .wd-lg-350-f { + width: 350px !important; } + .wd-lg-350p-f { + width: 350% !important; } + .mx-wd-lg-350p-f { + max-width: 350% !important; } + .mn-wd-lg-350p-f { + min-width: 350% !important; } + .wd-lg-400 { + width: 400px; } + .wd-lg-400p { + width: 400%; } + .mx-wd-lg-400p { + max-width: 400%; } + .mn-wd-lg-400p { + min-width: 400%; } + .wd-lg-400-f { + width: 400px !important; } + .wd-lg-400p-f { + width: 400% !important; } + .mx-wd-lg-400p-f { + max-width: 400% !important; } + .mn-wd-lg-400p-f { + min-width: 400% !important; } + .wd-lg-450 { + width: 450px; } + .wd-lg-450p { + width: 450%; } + .mx-wd-lg-450p { + max-width: 450%; } + .mn-wd-lg-450p { + min-width: 450%; } + .wd-lg-450-f { + width: 450px !important; } + .wd-lg-450p-f { + width: 450% !important; } + .mx-wd-lg-450p-f { + max-width: 450% !important; } + .mn-wd-lg-450p-f { + min-width: 450% !important; } + .wd-lg-500 { + width: 500px; } + .wd-lg-500p { + width: 500%; } + .mx-wd-lg-500p { + max-width: 500%; } + .mn-wd-lg-500p { + min-width: 500%; } + .wd-lg-500-f { + width: 500px !important; } + .wd-lg-500p-f { + width: 500% !important; } + .mx-wd-lg-500p-f { + max-width: 500% !important; } + .mn-wd-lg-500p-f { + min-width: 500% !important; } + .wd-lg-550 { + width: 550px; } + .wd-lg-550p { + width: 550%; } + .mx-wd-lg-550p { + max-width: 550%; } + .mn-wd-lg-550p { + min-width: 550%; } + .wd-lg-550-f { + width: 550px !important; } + .wd-lg-550p-f { + width: 550% !important; } + .mx-wd-lg-550p-f { + max-width: 550% !important; } + .mn-wd-lg-550p-f { + min-width: 550% !important; } + .wd-lg-600 { + width: 600px; } + .wd-lg-600p { + width: 600%; } + .mx-wd-lg-600p { + max-width: 600%; } + .mn-wd-lg-600p { + min-width: 600%; } + .wd-lg-600-f { + width: 600px !important; } + .wd-lg-600p-f { + width: 600% !important; } + .mx-wd-lg-600p-f { + max-width: 600% !important; } + .mn-wd-lg-600p-f { + min-width: 600% !important; } + .wd-lg-650 { + width: 650px; } + .wd-lg-650p { + width: 650%; } + .mx-wd-lg-650p { + max-width: 650%; } + .mn-wd-lg-650p { + min-width: 650%; } + .wd-lg-650-f { + width: 650px !important; } + .wd-lg-650p-f { + width: 650% !important; } + .mx-wd-lg-650p-f { + max-width: 650% !important; } + .mn-wd-lg-650p-f { + min-width: 650% !important; } + .wd-lg-700 { + width: 700px; } + .wd-lg-700p { + width: 700%; } + .mx-wd-lg-700p { + max-width: 700%; } + .mn-wd-lg-700p { + min-width: 700%; } + .wd-lg-700-f { + width: 700px !important; } + .wd-lg-700p-f { + width: 700% !important; } + .mx-wd-lg-700p-f { + max-width: 700% !important; } + .mn-wd-lg-700p-f { + min-width: 700% !important; } + .wd-lg-750 { + width: 750px; } + .wd-lg-750p { + width: 750%; } + .mx-wd-lg-750p { + max-width: 750%; } + .mn-wd-lg-750p { + min-width: 750%; } + .wd-lg-750-f { + width: 750px !important; } + .wd-lg-750p-f { + width: 750% !important; } + .mx-wd-lg-750p-f { + max-width: 750% !important; } + .mn-wd-lg-750p-f { + min-width: 750% !important; } + .wd-lg-800 { + width: 800px; } + .wd-lg-800p { + width: 800%; } + .mx-wd-lg-800p { + max-width: 800%; } + .mn-wd-lg-800p { + min-width: 800%; } + .wd-lg-800-f { + width: 800px !important; } + .wd-lg-800p-f { + width: 800% !important; } + .mx-wd-lg-800p-f { + max-width: 800% !important; } + .mn-wd-lg-800p-f { + min-width: 800% !important; } + .wd-lg-850 { + width: 850px; } + .wd-lg-850p { + width: 850%; } + .mx-wd-lg-850p { + max-width: 850%; } + .mn-wd-lg-850p { + min-width: 850%; } + .wd-lg-850-f { + width: 850px !important; } + .wd-lg-850p-f { + width: 850% !important; } + .mx-wd-lg-850p-f { + max-width: 850% !important; } + .mn-wd-lg-850p-f { + min-width: 850% !important; } + .wd-lg-900 { + width: 900px; } + .wd-lg-900p { + width: 900%; } + .mx-wd-lg-900p { + max-width: 900%; } + .mn-wd-lg-900p { + min-width: 900%; } + .wd-lg-900-f { + width: 900px !important; } + .wd-lg-900p-f { + width: 900% !important; } + .mx-wd-lg-900p-f { + max-width: 900% !important; } + .mn-wd-lg-900p-f { + min-width: 900% !important; } + .wd-lg-950 { + width: 950px; } + .wd-lg-950p { + width: 950%; } + .mx-wd-lg-950p { + max-width: 950%; } + .mn-wd-lg-950p { + min-width: 950%; } + .wd-lg-950-f { + width: 950px !important; } + .wd-lg-950p-f { + width: 950% !important; } + .mx-wd-lg-950p-f { + max-width: 950% !important; } + .mn-wd-lg-950p-f { + min-width: 950% !important; } + .wd-lg-1000 { + width: 1000px; } + .wd-lg-1000p { + width: 1000%; } + .mx-wd-lg-1000p { + max-width: 1000%; } + .mn-wd-lg-1000p { + min-width: 1000%; } + .wd-lg-1000-f { + width: 1000px !important; } + .wd-lg-1000p-f { + width: 1000% !important; } + .mx-wd-lg-1000p-f { + max-width: 1000% !important; } + .mn-wd-lg-1000p-f { + min-width: 1000% !important; } + .wd-lg-auto { + width: auto; } + .wd-lg-auto-f { + width: auto !important; } } + +@media (min-width: 1200px) { + .wd-xl-5 { + width: 5px; } + .wd-xl-5p { + width: 5%; } + .mx-wd-xl-5p { + max-width: 5%; } + .mn-wd-xl-5p { + min-width: 5%; } + .wd-xl-5-f { + width: 5px !important; } + .wd-xl-5p-f { + width: 5% !important; } + .mx-wd-xl-5p-f { + max-width: 5% !important; } + .mn-wd-xl-5p-f { + min-width: 5% !important; } + .wd-xl-10 { + width: 10px; } + .wd-xl-10p { + width: 10%; } + .mx-wd-xl-10p { + max-width: 10%; } + .mn-wd-xl-10p { + min-width: 10%; } + .wd-xl-10-f { + width: 10px !important; } + .wd-xl-10p-f { + width: 10% !important; } + .mx-wd-xl-10p-f { + max-width: 10% !important; } + .mn-wd-xl-10p-f { + min-width: 10% !important; } + .wd-xl-15 { + width: 15px; } + .wd-xl-15p { + width: 15%; } + .mx-wd-xl-15p { + max-width: 15%; } + .mn-wd-xl-15p { + min-width: 15%; } + .wd-xl-15-f { + width: 15px !important; } + .wd-xl-15p-f { + width: 15% !important; } + .mx-wd-xl-15p-f { + max-width: 15% !important; } + .mn-wd-xl-15p-f { + min-width: 15% !important; } + .wd-xl-20 { + width: 20px; } + .wd-xl-20p { + width: 20%; } + .mx-wd-xl-20p { + max-width: 20%; } + .mn-wd-xl-20p { + min-width: 20%; } + .wd-xl-20-f { + width: 20px !important; } + .wd-xl-20p-f { + width: 20% !important; } + .mx-wd-xl-20p-f { + max-width: 20% !important; } + .mn-wd-xl-20p-f { + min-width: 20% !important; } + .wd-xl-25 { + width: 25px; } + .wd-xl-25p { + width: 25%; } + .mx-wd-xl-25p { + max-width: 25%; } + .mn-wd-xl-25p { + min-width: 25%; } + .wd-xl-25-f { + width: 25px !important; } + .wd-xl-25p-f { + width: 25% !important; } + .mx-wd-xl-25p-f { + max-width: 25% !important; } + .mn-wd-xl-25p-f { + min-width: 25% !important; } + .wd-xl-30 { + width: 30px; } + .wd-xl-30p { + width: 30%; } + .mx-wd-xl-30p { + max-width: 30%; } + .mn-wd-xl-30p { + min-width: 30%; } + .wd-xl-30-f { + width: 30px !important; } + .wd-xl-30p-f { + width: 30% !important; } + .mx-wd-xl-30p-f { + max-width: 30% !important; } + .mn-wd-xl-30p-f { + min-width: 30% !important; } + .wd-xl-35 { + width: 35px; } + .wd-xl-35p { + width: 35%; } + .mx-wd-xl-35p { + max-width: 35%; } + .mn-wd-xl-35p { + min-width: 35%; } + .wd-xl-35-f { + width: 35px !important; } + .wd-xl-35p-f { + width: 35% !important; } + .mx-wd-xl-35p-f { + max-width: 35% !important; } + .mn-wd-xl-35p-f { + min-width: 35% !important; } + .wd-xl-40 { + width: 40px; } + .wd-xl-40p { + width: 40%; } + .mx-wd-xl-40p { + max-width: 40%; } + .mn-wd-xl-40p { + min-width: 40%; } + .wd-xl-40-f { + width: 40px !important; } + .wd-xl-40p-f { + width: 40% !important; } + .mx-wd-xl-40p-f { + max-width: 40% !important; } + .mn-wd-xl-40p-f { + min-width: 40% !important; } + .wd-xl-45 { + width: 45px; } + .wd-xl-45p { + width: 45%; } + .mx-wd-xl-45p { + max-width: 45%; } + .mn-wd-xl-45p { + min-width: 45%; } + .wd-xl-45-f { + width: 45px !important; } + .wd-xl-45p-f { + width: 45% !important; } + .mx-wd-xl-45p-f { + max-width: 45% !important; } + .mn-wd-xl-45p-f { + min-width: 45% !important; } + .wd-xl-50 { + width: 50px; } + .wd-xl-50p { + width: 50%; } + .mx-wd-xl-50p { + max-width: 50%; } + .mn-wd-xl-50p { + min-width: 50%; } + .wd-xl-50-f { + width: 50px !important; } + .wd-xl-50p-f { + width: 50% !important; } + .mx-wd-xl-50p-f { + max-width: 50% !important; } + .mn-wd-xl-50p-f { + min-width: 50% !important; } + .wd-xl-55 { + width: 55px; } + .wd-xl-55p { + width: 55%; } + .mx-wd-xl-55p { + max-width: 55%; } + .mn-wd-xl-55p { + min-width: 55%; } + .wd-xl-55-f { + width: 55px !important; } + .wd-xl-55p-f { + width: 55% !important; } + .mx-wd-xl-55p-f { + max-width: 55% !important; } + .mn-wd-xl-55p-f { + min-width: 55% !important; } + .wd-xl-60 { + width: 60px; } + .wd-xl-60p { + width: 60%; } + .mx-wd-xl-60p { + max-width: 60%; } + .mn-wd-xl-60p { + min-width: 60%; } + .wd-xl-60-f { + width: 60px !important; } + .wd-xl-60p-f { + width: 60% !important; } + .mx-wd-xl-60p-f { + max-width: 60% !important; } + .mn-wd-xl-60p-f { + min-width: 60% !important; } + .wd-xl-65 { + width: 65px; } + .wd-xl-65p { + width: 65%; } + .mx-wd-xl-65p { + max-width: 65%; } + .mn-wd-xl-65p { + min-width: 65%; } + .wd-xl-65-f { + width: 65px !important; } + .wd-xl-65p-f { + width: 65% !important; } + .mx-wd-xl-65p-f { + max-width: 65% !important; } + .mn-wd-xl-65p-f { + min-width: 65% !important; } + .wd-xl-70 { + width: 70px; } + .wd-xl-70p { + width: 70%; } + .mx-wd-xl-70p { + max-width: 70%; } + .mn-wd-xl-70p { + min-width: 70%; } + .wd-xl-70-f { + width: 70px !important; } + .wd-xl-70p-f { + width: 70% !important; } + .mx-wd-xl-70p-f { + max-width: 70% !important; } + .mn-wd-xl-70p-f { + min-width: 70% !important; } + .wd-xl-75 { + width: 75px; } + .wd-xl-75p { + width: 75%; } + .mx-wd-xl-75p { + max-width: 75%; } + .mn-wd-xl-75p { + min-width: 75%; } + .wd-xl-75-f { + width: 75px !important; } + .wd-xl-75p-f { + width: 75% !important; } + .mx-wd-xl-75p-f { + max-width: 75% !important; } + .mn-wd-xl-75p-f { + min-width: 75% !important; } + .wd-xl-80 { + width: 80px; } + .wd-xl-80p { + width: 80%; } + .mx-wd-xl-80p { + max-width: 80%; } + .mn-wd-xl-80p { + min-width: 80%; } + .wd-xl-80-f { + width: 80px !important; } + .wd-xl-80p-f { + width: 80% !important; } + .mx-wd-xl-80p-f { + max-width: 80% !important; } + .mn-wd-xl-80p-f { + min-width: 80% !important; } + .wd-xl-85 { + width: 85px; } + .wd-xl-85p { + width: 85%; } + .mx-wd-xl-85p { + max-width: 85%; } + .mn-wd-xl-85p { + min-width: 85%; } + .wd-xl-85-f { + width: 85px !important; } + .wd-xl-85p-f { + width: 85% !important; } + .mx-wd-xl-85p-f { + max-width: 85% !important; } + .mn-wd-xl-85p-f { + min-width: 85% !important; } + .wd-xl-90 { + width: 90px; } + .wd-xl-90p { + width: 90%; } + .mx-wd-xl-90p { + max-width: 90%; } + .mn-wd-xl-90p { + min-width: 90%; } + .wd-xl-90-f { + width: 90px !important; } + .wd-xl-90p-f { + width: 90% !important; } + .mx-wd-xl-90p-f { + max-width: 90% !important; } + .mn-wd-xl-90p-f { + min-width: 90% !important; } + .wd-xl-95 { + width: 95px; } + .wd-xl-95p { + width: 95%; } + .mx-wd-xl-95p { + max-width: 95%; } + .mn-wd-xl-95p { + min-width: 95%; } + .wd-xl-95-f { + width: 95px !important; } + .wd-xl-95p-f { + width: 95% !important; } + .mx-wd-xl-95p-f { + max-width: 95% !important; } + .mn-wd-xl-95p-f { + min-width: 95% !important; } + .wd-xl-100 { + width: 100px; } + .wd-xl-100p { + width: 100%; } + .mx-wd-xl-100p { + max-width: 100%; } + .mn-wd-xl-100p { + min-width: 100%; } + .wd-xl-100-f { + width: 100px !important; } + .wd-xl-100p-f { + width: 100% !important; } + .mx-wd-xl-100p-f { + max-width: 100% !important; } + .mn-wd-xl-100p-f { + min-width: 100% !important; } + .wd-xl-150 { + width: 150px; } + .wd-xl-150p { + width: 150%; } + .mx-wd-xl-150p { + max-width: 150%; } + .mn-wd-xl-150p { + min-width: 150%; } + .wd-xl-150-f { + width: 150px !important; } + .wd-xl-150p-f { + width: 150% !important; } + .mx-wd-xl-150p-f { + max-width: 150% !important; } + .mn-wd-xl-150p-f { + min-width: 150% !important; } + .wd-xl-200 { + width: 200px; } + .wd-xl-200p { + width: 200%; } + .mx-wd-xl-200p { + max-width: 200%; } + .mn-wd-xl-200p { + min-width: 200%; } + .wd-xl-200-f { + width: 200px !important; } + .wd-xl-200p-f { + width: 200% !important; } + .mx-wd-xl-200p-f { + max-width: 200% !important; } + .mn-wd-xl-200p-f { + min-width: 200% !important; } + .wd-xl-250 { + width: 250px; } + .wd-xl-250p { + width: 250%; } + .mx-wd-xl-250p { + max-width: 250%; } + .mn-wd-xl-250p { + min-width: 250%; } + .wd-xl-250-f { + width: 250px !important; } + .wd-xl-250p-f { + width: 250% !important; } + .mx-wd-xl-250p-f { + max-width: 250% !important; } + .mn-wd-xl-250p-f { + min-width: 250% !important; } + .wd-xl-300 { + width: 300px; } + .wd-xl-300p { + width: 300%; } + .mx-wd-xl-300p { + max-width: 300%; } + .mn-wd-xl-300p { + min-width: 300%; } + .wd-xl-300-f { + width: 300px !important; } + .wd-xl-300p-f { + width: 300% !important; } + .mx-wd-xl-300p-f { + max-width: 300% !important; } + .mn-wd-xl-300p-f { + min-width: 300% !important; } + .wd-xl-350 { + width: 350px; } + .wd-xl-350p { + width: 350%; } + .mx-wd-xl-350p { + max-width: 350%; } + .mn-wd-xl-350p { + min-width: 350%; } + .wd-xl-350-f { + width: 350px !important; } + .wd-xl-350p-f { + width: 350% !important; } + .mx-wd-xl-350p-f { + max-width: 350% !important; } + .mn-wd-xl-350p-f { + min-width: 350% !important; } + .wd-xl-400 { + width: 400px; } + .wd-xl-400p { + width: 400%; } + .mx-wd-xl-400p { + max-width: 400%; } + .mn-wd-xl-400p { + min-width: 400%; } + .wd-xl-400-f { + width: 400px !important; } + .wd-xl-400p-f { + width: 400% !important; } + .mx-wd-xl-400p-f { + max-width: 400% !important; } + .mn-wd-xl-400p-f { + min-width: 400% !important; } + .wd-xl-450 { + width: 450px; } + .wd-xl-450p { + width: 450%; } + .mx-wd-xl-450p { + max-width: 450%; } + .mn-wd-xl-450p { + min-width: 450%; } + .wd-xl-450-f { + width: 450px !important; } + .wd-xl-450p-f { + width: 450% !important; } + .mx-wd-xl-450p-f { + max-width: 450% !important; } + .mn-wd-xl-450p-f { + min-width: 450% !important; } + .wd-xl-500 { + width: 500px; } + .wd-xl-500p { + width: 500%; } + .mx-wd-xl-500p { + max-width: 500%; } + .mn-wd-xl-500p { + min-width: 500%; } + .wd-xl-500-f { + width: 500px !important; } + .wd-xl-500p-f { + width: 500% !important; } + .mx-wd-xl-500p-f { + max-width: 500% !important; } + .mn-wd-xl-500p-f { + min-width: 500% !important; } + .wd-xl-550 { + width: 550px; } + .wd-xl-550p { + width: 550%; } + .mx-wd-xl-550p { + max-width: 550%; } + .mn-wd-xl-550p { + min-width: 550%; } + .wd-xl-550-f { + width: 550px !important; } + .wd-xl-550p-f { + width: 550% !important; } + .mx-wd-xl-550p-f { + max-width: 550% !important; } + .mn-wd-xl-550p-f { + min-width: 550% !important; } + .wd-xl-600 { + width: 600px; } + .wd-xl-600p { + width: 600%; } + .mx-wd-xl-600p { + max-width: 600%; } + .mn-wd-xl-600p { + min-width: 600%; } + .wd-xl-600-f { + width: 600px !important; } + .wd-xl-600p-f { + width: 600% !important; } + .mx-wd-xl-600p-f { + max-width: 600% !important; } + .mn-wd-xl-600p-f { + min-width: 600% !important; } + .wd-xl-650 { + width: 650px; } + .wd-xl-650p { + width: 650%; } + .mx-wd-xl-650p { + max-width: 650%; } + .mn-wd-xl-650p { + min-width: 650%; } + .wd-xl-650-f { + width: 650px !important; } + .wd-xl-650p-f { + width: 650% !important; } + .mx-wd-xl-650p-f { + max-width: 650% !important; } + .mn-wd-xl-650p-f { + min-width: 650% !important; } + .wd-xl-700 { + width: 700px; } + .wd-xl-700p { + width: 700%; } + .mx-wd-xl-700p { + max-width: 700%; } + .mn-wd-xl-700p { + min-width: 700%; } + .wd-xl-700-f { + width: 700px !important; } + .wd-xl-700p-f { + width: 700% !important; } + .mx-wd-xl-700p-f { + max-width: 700% !important; } + .mn-wd-xl-700p-f { + min-width: 700% !important; } + .wd-xl-750 { + width: 750px; } + .wd-xl-750p { + width: 750%; } + .mx-wd-xl-750p { + max-width: 750%; } + .mn-wd-xl-750p { + min-width: 750%; } + .wd-xl-750-f { + width: 750px !important; } + .wd-xl-750p-f { + width: 750% !important; } + .mx-wd-xl-750p-f { + max-width: 750% !important; } + .mn-wd-xl-750p-f { + min-width: 750% !important; } + .wd-xl-800 { + width: 800px; } + .wd-xl-800p { + width: 800%; } + .mx-wd-xl-800p { + max-width: 800%; } + .mn-wd-xl-800p { + min-width: 800%; } + .wd-xl-800-f { + width: 800px !important; } + .wd-xl-800p-f { + width: 800% !important; } + .mx-wd-xl-800p-f { + max-width: 800% !important; } + .mn-wd-xl-800p-f { + min-width: 800% !important; } + .wd-xl-850 { + width: 850px; } + .wd-xl-850p { + width: 850%; } + .mx-wd-xl-850p { + max-width: 850%; } + .mn-wd-xl-850p { + min-width: 850%; } + .wd-xl-850-f { + width: 850px !important; } + .wd-xl-850p-f { + width: 850% !important; } + .mx-wd-xl-850p-f { + max-width: 850% !important; } + .mn-wd-xl-850p-f { + min-width: 850% !important; } + .wd-xl-900 { + width: 900px; } + .wd-xl-900p { + width: 900%; } + .mx-wd-xl-900p { + max-width: 900%; } + .mn-wd-xl-900p { + min-width: 900%; } + .wd-xl-900-f { + width: 900px !important; } + .wd-xl-900p-f { + width: 900% !important; } + .mx-wd-xl-900p-f { + max-width: 900% !important; } + .mn-wd-xl-900p-f { + min-width: 900% !important; } + .wd-xl-950 { + width: 950px; } + .wd-xl-950p { + width: 950%; } + .mx-wd-xl-950p { + max-width: 950%; } + .mn-wd-xl-950p { + min-width: 950%; } + .wd-xl-950-f { + width: 950px !important; } + .wd-xl-950p-f { + width: 950% !important; } + .mx-wd-xl-950p-f { + max-width: 950% !important; } + .mn-wd-xl-950p-f { + min-width: 950% !important; } + .wd-xl-1000 { + width: 1000px; } + .wd-xl-1000p { + width: 1000%; } + .mx-wd-xl-1000p { + max-width: 1000%; } + .mn-wd-xl-1000p { + min-width: 1000%; } + .wd-xl-1000-f { + width: 1000px !important; } + .wd-xl-1000p-f { + width: 1000% !important; } + .mx-wd-xl-1000p-f { + max-width: 1000% !important; } + .mn-wd-xl-1000p-f { + min-width: 1000% !important; } + .wd-xl-auto { + width: auto; } + .wd-xl-auto { + width: auto !important; } } + +.wd-100v { + width: 100vw; } + + + +/*--------------------------------------------------------------------- +Tabs Vertical +-----------------------------------------------------------------------*/ +.tab-vertical .nav.nav-tabs {float: left; display: block; margin-right: 0px; border-bottom: 0;} +.tab-vertical .nav.nav-tabs .nav-item {margin-bottom: 6px;} +.tab-vertical .nav-tabs .nav-link { border: 1px solid transparent; border-top-left-radius: .25rem; border-top-right-radius: .25rem; background: #fff; padding: 17px 49px; color: #71748d; background-color: #dddde8; -webkit-border-radius: 4px 0px 0px 4px; -moz-border-radius: 4px 0px 0px 4px;border-radius: 4px 0px 0px 4px; } +.tab-vertical .nav-tabs .nav-link.active { box-shadow: -3px 1px 4px rgba(0, 0, 0, 0.1); color: #5969ff; background-color: #fff !important; border-color: transparent !important; } +.tab-vertical .nav-tabs .nav-link { border: 1px solid transparent; border-top-left-radius: 4px !important; border-top-right-radius: 0px !important; } +.tab-vertical .tab-content { box-shadow: 3px 0px 3px rgba(0, 0, 0, 0.1); overflow: auto; -webkit-border-radius: 0px 4px 4px 4px; -moz-border-radius: 0px 4px 4px 4px; border-radius: 0px 4px 4px 4px; background: #fff; padding: 30px; } + + +/*--------------------------------------------------------------------- +cards +-----------------------------------------------------------------------*/ +.card { border-radius: 5px; overflow: hidden; box-shadow: 0 -3px 15px rgba(0, 0, 0, 0.1); transition: transform 0.2s; margin-bottom: 20px; border: none; position: relative; } +.card.border-top { border-top-width: 5px !important; border-top-style: solid !important; } +.card.border-bottom { border-bottom-width: 5px !important; border-bottom-style: solid !important; } +.card.border-left { border-left-width: 5px !important; border-left-style: solid !important; } +.card.border-right { border-right-width: 5px !important; border-right-style: solid !important; } +.card:hover { transform: translateY(-1px); } +.card-img-top { height: 200px; object-fit: cover; } +.card-title { font-weight: bold; margin-bottom: 5px; font-size: 16px; } +.card-text { color: #717171; font-size: 14px; margin-bottom: 5px; } + + +/*--------------------------------------------------------------------- +progress-steps +-----------------------------------------------------------------------*/ +.progress-steps-container { background-color: white; border-radius: 10px; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08); padding: 30px; margin-bottom: 30px; } +.step-progress-bar { position: relative; display: flex; justify-content: space-between; margin-bottom: 40px; } +.step-progress-bar::before { content: ''; position: absolute; top: 25px; left: 0; width: 100%; height: 5px; background-color: #e9ecef; z-index: 1;} +.progress-bar-fill { position: absolute; top: 25px; left: 0; height: 5px; background-color: #007bff; z-index: 2; transition: width 0.5s ease-in-out;} +.step { position: relative; z-index: 3; text-align: center; width: 100px; } +.step-circle {width: 50px;height: 50px;background-color: white;border: 3px solid #e9ecef;border-radius: 50%;display: flex;align-items: center;justify-content: center;margin: 0 auto 10px;font-weight: bold;color: #6c757d;transition: all 0.3s ease;} +.step.completed .step-circle {background-color: #28a745;border-color: #28a745;color: white;} +.step.active .step-circle {background-color: white;border-color: #007bff;color: #007bff;transform: scale(1.1);box-shadow: 0 0 0 5px rgba(0, 123, 255, 0.2);} +.step-label {font-size: 14px;color: #6c757d;font-weight: 500;} +.step.active .step-label {color: #007bff;font-weight: 600;} +.step.completed .step-label {color: #28a745;} +.step-content {display: none;padding: 25px;background-color: #f8f9fa;border-radius: 8px;margin-bottom: 30px;border-left: 4px solid #007bff;} +.step-content.active {display: block;animation: fadeIn 0.5s;} +@keyframes fadeIn {from { opacity: 0; transform: translateY(10px); }to { opacity: 1; transform: translateY(0); }} +.step-title {color: #007bff;margin-bottom: 15px;font-weight: 600;} +.navigation-buttons {display: flex;justify-content: space-between;} +.status-message {text-align: center;padding: 20px;margin-top: 30px;border-radius: 8px;display: none;} +@media (max-width: 768px) {.step-progress-bar::before { top: 20px;}.progress-bar-fill { top: 20px;}.step-circle { width: 40px; height: 40px; font-size: 14px;}.step { width: 70px;}.step-label { font-size: 12px;}.step-content { padding: 15px;}} +@media (max-width: 576px) {.progress-steps-container { padding: 20px 15px;}.step { width: 60px;}.step-circle { width: 35px; height: 35px; font-size: 12px;}} \ No newline at end of file diff --git a/public/assets/css/azia.min.css b/public/assets/css/azia.min.css new file mode 100755 index 0000000..2869a15 --- /dev/null +++ b/public/assets/css/azia.min.css @@ -0,0 +1,6 @@ +@import url("https://fonts.googleapis.com/css?family=Roboto:300,400,500,700,900");@import url("https://fonts.googleapis.com/css?family=Montserrat:300,400,500,600,700,800");@import url("https://fonts.googleapis.com/css?family=Raleway:400,500,600,700,800");/*! + * Bootstrap v4.3.1 (https://getbootstrap.com/) + * Copyright 2011-2019 The Bootstrap Authors + * Copyright 2011-2019 Twitter, Inc. + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) + */:root{--blue: #36f;--indigo: #5b47fb;--purple: #6f42c1;--pink: #f10075;--red: #dc3545;--orange: #fd7e14;--yellow: #ffc107;--green: #3bb001;--teal: #0cc;--cyan: #17a2b8;--white: #fff;--gray: #7987a1;--gray-dark: #3b4863;--primary: #36f;--secondary: #7987a1;--success: #3bb001;--info: #17a2b8;--warning: #ffc107;--danger: #dc3545;--light: #f4f5f8;--dark: #3b4863;--breakpoint-xs: 0;--breakpoint-sm: 576px;--breakpoint-md: 768px;--breakpoint-lg: 992px;--breakpoint-xl: 1200px;--font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";--font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace}*,*::before,*::after{box-sizing:border-box}html{font-family:sans-serif;line-height:1.15;-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:rgba(0,0,0,0)}article,aside,figcaption,figure,footer,header,hgroup,main,nav,section{display:block}body{margin:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-size:.875rem;font-weight:400;line-height:1.5;color:#031b4e;text-align:left;background-color:#fff}[tabindex="-1"]:focus{outline:0 !important}hr{box-sizing:content-box;height:0;overflow:visible}h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:.5rem}p{margin-top:0;margin-bottom:1rem}abbr[title],abbr[data-original-title]{text-decoration:underline;text-decoration:underline dotted;cursor:help;border-bottom:0;text-decoration-skip-ink:none}address{margin-bottom:1rem;font-style:normal;line-height:inherit}ol,ul,dl{margin-top:0;margin-bottom:1rem}ol ol,ul ul,ol ul,ul ol{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem}b,strong{font-weight:bolder}small{font-size:80%}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{color:#36f;text-decoration:none;background-color:transparent}a:hover{color:#0039e6;text-decoration:none}a:not([href]):not([tabindex]){color:inherit;text-decoration:none}a:not([href]):not([tabindex]):hover,a:not([href]):not([tabindex]):focus{color:inherit;text-decoration:none}a:not([href]):not([tabindex]):focus{outline:0}pre,code,kbd,samp{font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;font-size:1em}pre{margin-top:0;margin-bottom:1rem;overflow:auto}figure{margin:0 0 1rem}img{vertical-align:middle;border-style:none}svg{overflow:hidden;vertical-align:middle}table{border-collapse:collapse}caption{padding-top:.75rem;padding-bottom:.75rem;color:#7987a1;text-align:left;caption-side:bottom}th{text-align:inherit}label{display:inline-block;margin-bottom:.5rem}button{border-radius:0}button:focus{outline:1px dotted;outline:5px auto -webkit-focus-ring-color}input,button,select,optgroup,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,input{overflow:visible}button,select{text-transform:none}select{word-wrap:normal}button,[type="button"],[type="reset"],[type="submit"]{-webkit-appearance:button}button:not(:disabled),[type="button"]:not(:disabled),[type="reset"]:not(:disabled),[type="submit"]:not(:disabled){cursor:pointer}button::-moz-focus-inner,[type="button"]::-moz-focus-inner,[type="reset"]::-moz-focus-inner,[type="submit"]::-moz-focus-inner{padding:0;border-style:none}input[type="radio"],input[type="checkbox"]{box-sizing:border-box;padding:0}input[type="date"],input[type="time"],input[type="datetime-local"],input[type="month"]{-webkit-appearance:listbox}textarea{overflow:auto;resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{display:block;width:100%;max-width:100%;padding:0;margin-bottom:.5rem;font-size:1.5rem;line-height:inherit;color:inherit;white-space:normal}progress{vertical-align:baseline}[type="number"]::-webkit-inner-spin-button,[type="number"]::-webkit-outer-spin-button{height:auto}[type="search"]{outline-offset:-2px;-webkit-appearance:none}[type="search"]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}output{display:inline-block}summary{display:list-item;cursor:pointer}template{display:none}[hidden]{display:none !important}h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6{margin-bottom:.5rem;font-weight:500;line-height:1.2}h1,.h1{font-size:2.1875rem}h2,.h2{font-size:1.75rem}h3,.h3{font-size:1.53125rem}h4,.h4{font-size:1.3125rem}h5,.h5{font-size:1.09375rem}h6,.h6{font-size:.875rem}.lead{font-size:1.09375rem;font-weight:300}.display-1{font-size:6rem;font-weight:300;line-height:1.2}.display-2{font-size:5.5rem;font-weight:300;line-height:1.2}.display-3{font-size:4.5rem;font-weight:300;line-height:1.2}.display-4{font-size:3.5rem;font-weight:300;line-height:1.2}hr{margin-top:1rem;margin-bottom:1rem;border:0;border-top:1px solid rgba(0,0,0,0.1)}small,.small{font-size:80%;font-weight:400}mark,.mark{padding:.2em;background-color:#fcf8e3}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;list-style:none}.list-inline-item{display:inline-block}.list-inline-item:not(:last-child){margin-right:.5rem}.initialism{font-size:90%;text-transform:uppercase}.blockquote{margin-bottom:1rem;font-size:1.09375rem}.blockquote-footer{display:block;font-size:80%;color:#7987a1}.blockquote-footer::before{content:"\2014\00A0"}.img-fluid{max-width:100%;height:auto}.img-thumbnail{padding:.25rem;background-color:#fff;border:1px solid #cdd4e0;border-radius:3px;max-width:100%;height:auto}.figure{display:inline-block}.figure-img{margin-bottom:.5rem;line-height:1}.figure-caption{font-size:90%;color:#7987a1}code{font-size:87.5%;color:#f10075;word-break:break-word}a>code{color:inherit}kbd{padding:.2rem .4rem;font-size:87.5%;color:#fff;background-color:#1c273c;border-radius:.2rem}kbd kbd{padding:0;font-size:100%;font-weight:700}pre{display:block;font-size:87.5%;color:#1c273c}pre code{font-size:inherit;color:inherit;word-break:normal}.pre-scrollable{max-height:340px;overflow-y:scroll}.container{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width: 576px){.container{max-width:540px}}@media (min-width: 768px){.container{max-width:720px}}@media (min-width: 992px){.container{max-width:960px}}@media (min-width: 1200px){.container{max-width:1140px}}.container-fluid{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}.row{display:flex;flex-wrap:wrap;margin-right:-15px;margin-left:-15px}.no-gutters{margin-right:0;margin-left:0}.no-gutters>.col,.no-gutters>[class*="col-"]{padding-right:0;padding-left:0}.col-1,.col-2,.col-3,.col-4,.col-5,.col-6,.col-7,.col-8,.col-9,.col-10,.col-11,.col-12,.col,.col-auto,.col-sm-1,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm,.col-sm-auto,.col-md-1,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-10,.col-md-11,.col-md-12,.col-md,.col-md-auto,.col-lg-1,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg,.col-lg-auto,.col-xl-1,.col-xl-2,.col-xl-3,.col-xl-4,.col-xl-5,.col-xl-6,.col-xl-7,.col-xl-8,.col-xl-9,.col-xl-10,.col-xl-11,.col-xl-12,.col-xl,.col-xl-auto{position:relative;width:100%;padding-right:15px;padding-left:15px}.col{flex-basis:0;flex-grow:1;max-width:100%}.col-auto{flex:0 0 auto;width:auto;max-width:100%}.col-1{flex:0 0 8.33333%;max-width:8.33333%}.col-2{flex:0 0 16.66667%;max-width:16.66667%}.col-3{flex:0 0 25%;max-width:25%}.col-4{flex:0 0 33.33333%;max-width:33.33333%}.col-5{flex:0 0 41.66667%;max-width:41.66667%}.col-6{flex:0 0 50%;max-width:50%}.col-7{flex:0 0 58.33333%;max-width:58.33333%}.col-8{flex:0 0 66.66667%;max-width:66.66667%}.col-9{flex:0 0 75%;max-width:75%}.col-10{flex:0 0 83.33333%;max-width:83.33333%}.col-11{flex:0 0 91.66667%;max-width:91.66667%}.col-12{flex:0 0 100%;max-width:100%}.order-first{order:-1}.order-last{order:13}.order-0{order:0}.order-1{order:1}.order-2{order:2}.order-3{order:3}.order-4{order:4}.order-5{order:5}.order-6{order:6}.order-7{order:7}.order-8{order:8}.order-9{order:9}.order-10{order:10}.order-11{order:11}.order-12{order:12}.offset-1{margin-left:8.33333%}.offset-2{margin-left:16.66667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.33333%}.offset-5{margin-left:41.66667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.33333%}.offset-8{margin-left:66.66667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.33333%}.offset-11{margin-left:91.66667%}@media (min-width: 576px){.col-sm{flex-basis:0;flex-grow:1;max-width:100%}.col-sm-auto{flex:0 0 auto;width:auto;max-width:100%}.col-sm-1{flex:0 0 8.33333%;max-width:8.33333%}.col-sm-2{flex:0 0 16.66667%;max-width:16.66667%}.col-sm-3{flex:0 0 25%;max-width:25%}.col-sm-4{flex:0 0 33.33333%;max-width:33.33333%}.col-sm-5{flex:0 0 41.66667%;max-width:41.66667%}.col-sm-6{flex:0 0 50%;max-width:50%}.col-sm-7{flex:0 0 58.33333%;max-width:58.33333%}.col-sm-8{flex:0 0 66.66667%;max-width:66.66667%}.col-sm-9{flex:0 0 75%;max-width:75%}.col-sm-10{flex:0 0 83.33333%;max-width:83.33333%}.col-sm-11{flex:0 0 91.66667%;max-width:91.66667%}.col-sm-12{flex:0 0 100%;max-width:100%}.order-sm-first{order:-1}.order-sm-last{order:13}.order-sm-0{order:0}.order-sm-1{order:1}.order-sm-2{order:2}.order-sm-3{order:3}.order-sm-4{order:4}.order-sm-5{order:5}.order-sm-6{order:6}.order-sm-7{order:7}.order-sm-8{order:8}.order-sm-9{order:9}.order-sm-10{order:10}.order-sm-11{order:11}.order-sm-12{order:12}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.33333%}.offset-sm-2{margin-left:16.66667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.33333%}.offset-sm-5{margin-left:41.66667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.33333%}.offset-sm-8{margin-left:66.66667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.33333%}.offset-sm-11{margin-left:91.66667%}}@media (min-width: 768px){.col-md{flex-basis:0;flex-grow:1;max-width:100%}.col-md-auto{flex:0 0 auto;width:auto;max-width:100%}.col-md-1{flex:0 0 8.33333%;max-width:8.33333%}.col-md-2{flex:0 0 16.66667%;max-width:16.66667%}.col-md-3{flex:0 0 25%;max-width:25%}.col-md-4{flex:0 0 33.33333%;max-width:33.33333%}.col-md-5{flex:0 0 41.66667%;max-width:41.66667%}.col-md-6{flex:0 0 50%;max-width:50%}.col-md-7{flex:0 0 58.33333%;max-width:58.33333%}.col-md-8{flex:0 0 66.66667%;max-width:66.66667%}.col-md-9{flex:0 0 75%;max-width:75%}.col-md-10{flex:0 0 83.33333%;max-width:83.33333%}.col-md-11{flex:0 0 91.66667%;max-width:91.66667%}.col-md-12{flex:0 0 100%;max-width:100%}.order-md-first{order:-1}.order-md-last{order:13}.order-md-0{order:0}.order-md-1{order:1}.order-md-2{order:2}.order-md-3{order:3}.order-md-4{order:4}.order-md-5{order:5}.order-md-6{order:6}.order-md-7{order:7}.order-md-8{order:8}.order-md-9{order:9}.order-md-10{order:10}.order-md-11{order:11}.order-md-12{order:12}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.33333%}.offset-md-2{margin-left:16.66667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.33333%}.offset-md-5{margin-left:41.66667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.33333%}.offset-md-8{margin-left:66.66667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.33333%}.offset-md-11{margin-left:91.66667%}}@media (min-width: 992px){.col-lg{flex-basis:0;flex-grow:1;max-width:100%}.col-lg-auto{flex:0 0 auto;width:auto;max-width:100%}.col-lg-1{flex:0 0 8.33333%;max-width:8.33333%}.col-lg-2{flex:0 0 16.66667%;max-width:16.66667%}.col-lg-3{flex:0 0 25%;max-width:25%}.col-lg-4{flex:0 0 33.33333%;max-width:33.33333%}.col-lg-5{flex:0 0 41.66667%;max-width:41.66667%}.col-lg-6{flex:0 0 50%;max-width:50%}.col-lg-7{flex:0 0 58.33333%;max-width:58.33333%}.col-lg-8{flex:0 0 66.66667%;max-width:66.66667%}.col-lg-9{flex:0 0 75%;max-width:75%}.col-lg-10{flex:0 0 83.33333%;max-width:83.33333%}.col-lg-11{flex:0 0 91.66667%;max-width:91.66667%}.col-lg-12{flex:0 0 100%;max-width:100%}.order-lg-first{order:-1}.order-lg-last{order:13}.order-lg-0{order:0}.order-lg-1{order:1}.order-lg-2{order:2}.order-lg-3{order:3}.order-lg-4{order:4}.order-lg-5{order:5}.order-lg-6{order:6}.order-lg-7{order:7}.order-lg-8{order:8}.order-lg-9{order:9}.order-lg-10{order:10}.order-lg-11{order:11}.order-lg-12{order:12}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.33333%}.offset-lg-2{margin-left:16.66667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.33333%}.offset-lg-5{margin-left:41.66667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.33333%}.offset-lg-8{margin-left:66.66667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.33333%}.offset-lg-11{margin-left:91.66667%}}@media (min-width: 1200px){.col-xl{flex-basis:0;flex-grow:1;max-width:100%}.col-xl-auto{flex:0 0 auto;width:auto;max-width:100%}.col-xl-1{flex:0 0 8.33333%;max-width:8.33333%}.col-xl-2{flex:0 0 16.66667%;max-width:16.66667%}.col-xl-3{flex:0 0 25%;max-width:25%}.col-xl-4{flex:0 0 33.33333%;max-width:33.33333%}.col-xl-5{flex:0 0 41.66667%;max-width:41.66667%}.col-xl-6{flex:0 0 50%;max-width:50%}.col-xl-7{flex:0 0 58.33333%;max-width:58.33333%}.col-xl-8{flex:0 0 66.66667%;max-width:66.66667%}.col-xl-9{flex:0 0 75%;max-width:75%}.col-xl-10{flex:0 0 83.33333%;max-width:83.33333%}.col-xl-11{flex:0 0 91.66667%;max-width:91.66667%}.col-xl-12{flex:0 0 100%;max-width:100%}.order-xl-first{order:-1}.order-xl-last{order:13}.order-xl-0{order:0}.order-xl-1{order:1}.order-xl-2{order:2}.order-xl-3{order:3}.order-xl-4{order:4}.order-xl-5{order:5}.order-xl-6{order:6}.order-xl-7{order:7}.order-xl-8{order:8}.order-xl-9{order:9}.order-xl-10{order:10}.order-xl-11{order:11}.order-xl-12{order:12}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.33333%}.offset-xl-2{margin-left:16.66667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.33333%}.offset-xl-5{margin-left:41.66667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.33333%}.offset-xl-8{margin-left:66.66667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.33333%}.offset-xl-11{margin-left:91.66667%}}.table{width:100%;margin-bottom:1rem;color:#031b4e}.table th,.table td{padding:.75rem;vertical-align:top;border-top:1px solid #cdd4e0}.table thead th{vertical-align:bottom;border-bottom:2px solid #cdd4e0}.table tbody+tbody{border-top:2px solid #cdd4e0}.table-sm th,.table-sm td{padding:.3rem}.table-bordered{border:1px solid #cdd4e0}.table-bordered th,.table-bordered td{border:1px solid #cdd4e0}.table-bordered thead th,.table-bordered thead td{border-bottom-width:2px}.table-borderless th,.table-borderless td,.table-borderless thead th,.table-borderless tbody+tbody{border:0}.table-striped tbody tr:nth-of-type(odd){background-color:rgba(0,0,0,0.05)}.table-hover tbody tr:hover{color:#031b4e;background-color:rgba(0,0,0,0.075)}.table-primary,.table-primary>th,.table-primary>td{background-color:#c6d4ff}.table-primary th,.table-primary td,.table-primary thead th,.table-primary tbody+tbody{border-color:#95afff}.table-hover .table-primary:hover{background-color:#adc1ff}.table-hover .table-primary:hover>td,.table-hover .table-primary:hover>th{background-color:#adc1ff}.table-secondary,.table-secondary>th,.table-secondary>td{background-color:#d9dde5}.table-secondary th,.table-secondary td,.table-secondary thead th,.table-secondary tbody+tbody{border-color:#b9c1ce}.table-hover .table-secondary:hover{background-color:#cacfdb}.table-hover .table-secondary:hover>td,.table-hover .table-secondary:hover>th{background-color:#cacfdb}.table-success,.table-success>th,.table-success>td{background-color:#c8e9b8}.table-success th,.table-success td,.table-success thead th,.table-success tbody+tbody{border-color:#99d67b}.table-hover .table-success:hover{background-color:#b9e3a5}.table-hover .table-success:hover>td,.table-hover .table-success:hover>th{background-color:#b9e3a5}.table-info,.table-info>th,.table-info>td{background-color:#bee5eb}.table-info th,.table-info td,.table-info thead th,.table-info tbody+tbody{border-color:#86cfda}.table-hover .table-info:hover{background-color:#abdde5}.table-hover .table-info:hover>td,.table-hover .table-info:hover>th{background-color:#abdde5}.table-warning,.table-warning>th,.table-warning>td{background-color:#ffeeba}.table-warning th,.table-warning td,.table-warning thead th,.table-warning tbody+tbody{border-color:#ffdf7e}.table-hover .table-warning:hover{background-color:#ffe8a1}.table-hover .table-warning:hover>td,.table-hover .table-warning:hover>th{background-color:#ffe8a1}.table-danger,.table-danger>th,.table-danger>td{background-color:#f5c6cb}.table-danger th,.table-danger td,.table-danger thead th,.table-danger tbody+tbody{border-color:#ed969e}.table-hover .table-danger:hover{background-color:#f1b0b7}.table-hover .table-danger:hover>td,.table-hover .table-danger:hover>th{background-color:#f1b0b7}.table-light,.table-light>th,.table-light>td{background-color:#fcfcfd}.table-light th,.table-light td,.table-light thead th,.table-light tbody+tbody{border-color:#f9fafb}.table-hover .table-light:hover{background-color:#ededf3}.table-hover .table-light:hover>td,.table-hover .table-light:hover>th{background-color:#ededf3}.table-dark,.table-dark>th,.table-dark>td{background-color:#c8ccd3}.table-dark th,.table-dark td,.table-dark thead th,.table-dark tbody+tbody{border-color:#99a0ae}.table-hover .table-dark:hover{background-color:#babfc8}.table-hover .table-dark:hover>td,.table-hover .table-dark:hover>th{background-color:#babfc8}.table-active,.table-active>th,.table-active>td{background-color:rgba(0,0,0,0.075)}.table-hover .table-active:hover{background-color:rgba(0,0,0,0.075)}.table-hover .table-active:hover>td,.table-hover .table-active:hover>th{background-color:rgba(0,0,0,0.075)}.table .thead-dark th{color:#fff;background-color:#3b4863;border-color:#49597b}.table .thead-light th{color:#596882;background-color:#e3e7ed;border-color:#cdd4e0}.table-dark{color:#fff;background-color:#3b4863}.table-dark th,.table-dark td,.table-dark thead th{border-color:#49597b}.table-dark.table-bordered{border:0}.table-dark.table-striped tbody tr:nth-of-type(odd){background-color:rgba(255,255,255,0.05)}.table-dark.table-hover tbody tr:hover{color:#fff;background-color:rgba(255,255,255,0.075)}@media (max-width: 575.98px){.table-responsive-sm{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-sm>.table-bordered{border:0}}@media (max-width: 767.98px){.table-responsive-md{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-md>.table-bordered{border:0}}@media (max-width: 991.98px){.table-responsive-lg{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-lg>.table-bordered{border:0}}@media (max-width: 1199.98px){.table-responsive-xl{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-xl>.table-bordered{border:0}}.table-responsive{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive>.table-bordered{border:0}.form-control{display:block;width:100%;height:calc(1.5em + .75rem + 2px);padding:.375rem .75rem;font-size:.875rem;font-weight:400;line-height:1.5;color:#596882;background-color:#fff;background-clip:padding-box;border:1px solid #cdd4e0;border-radius:3px;transition:border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out}@media (prefers-reduced-motion: reduce){.form-control{transition:none}}.form-control::-ms-expand{background-color:transparent;border:0}.form-control:focus{color:#596882;background-color:#fff;border-color:#b3c6ff;outline:0;box-shadow:0 0 0 .2rem rgba(51,102,255,0.25)}.form-control::placeholder{color:#7987a1;opacity:1}.form-control:disabled,.form-control[readonly]{background-color:#e3e7ed;opacity:1}select.form-control:focus::-ms-value{color:#596882;background-color:#fff}.form-control-file,.form-control-range{display:block;width:100%}.col-form-label{padding-top:calc(.375rem + 1px);padding-bottom:calc(.375rem + 1px);margin-bottom:0;font-size:inherit;line-height:1.5}.col-form-label-lg{padding-top:calc(.5rem + 1px);padding-bottom:calc(.5rem + 1px);font-size:1.09375rem;line-height:1.5}.col-form-label-sm{padding-top:calc(.25rem + 1px);padding-bottom:calc(.25rem + 1px);font-size:.76562rem;line-height:1.5}.form-control-plaintext{display:block;width:100%;padding-top:.375rem;padding-bottom:.375rem;margin-bottom:0;line-height:1.5;color:#031b4e;background-color:transparent;border:solid transparent;border-width:1px 0}.form-control-plaintext.form-control-sm,.form-control-plaintext.form-control-lg{padding-right:0;padding-left:0}.form-control-sm{height:calc(1.5em + .5rem + 2px);padding:.25rem .5rem;font-size:.76562rem;line-height:1.5;border-radius:.2rem}.form-control-lg{height:calc(1.5em + 1rem + 2px);padding:.5rem 1rem;font-size:1.09375rem;line-height:1.5;border-radius:.3rem}select.form-control[size],select.form-control[multiple]{height:auto}textarea.form-control{height:auto}.form-group{margin-bottom:1rem}.form-text{display:block;margin-top:.25rem}.form-row{display:flex;flex-wrap:wrap;margin-right:-5px;margin-left:-5px}.form-row>.col,.form-row>[class*="col-"]{padding-right:5px;padding-left:5px}.form-check{position:relative;display:block;padding-left:1.25rem}.form-check-input{position:absolute;margin-top:.3rem;margin-left:-1.25rem}.form-check-input:disabled ~ .form-check-label{color:#7987a1}.form-check-label{margin-bottom:0}.form-check-inline{display:inline-flex;align-items:center;padding-left:0;margin-right:.75rem}.form-check-inline .form-check-input{position:static;margin-top:0;margin-right:.3125rem;margin-left:0}.valid-feedback{display:none;width:100%;margin-top:.25rem;font-size:80%;color:#3bb001}.valid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.76562rem;line-height:1.5;color:#fff;background-color:rgba(59,176,1,0.9);border-radius:3px}.was-validated .form-control:valid,.form-control.is-valid,input.form-control.parsley-success,textarea.form-control.parsley-success{border-color:#3bb001;padding-right:calc(1.5em + .75rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%233bb001' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:center right calc(.375em + .1875rem);background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.was-validated .form-control:valid:focus,.form-control.is-valid:focus,input.form-control.parsley-success:focus,textarea.form-control.parsley-success:focus{border-color:#3bb001;box-shadow:0 0 0 .2rem rgba(59,176,1,0.25)}.was-validated .form-control:valid ~ .valid-feedback,.was-validated .form-control:valid ~ .valid-tooltip,.form-control.is-valid ~ .valid-feedback,input.form-control.parsley-success ~ .valid-feedback,textarea.form-control.parsley-success ~ .valid-feedback,.form-control.is-valid ~ .valid-tooltip,input.form-control.parsley-success ~ .valid-tooltip,textarea.form-control.parsley-success ~ .valid-tooltip{display:block}.was-validated textarea.form-control:valid,textarea.form-control.is-valid,textarea.form-control.parsley-success{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.was-validated .custom-select:valid,.custom-select.is-valid,input.custom-select.parsley-success,textarea.custom-select.parsley-success{border-color:#3bb001;padding-right:calc((1em + .75rem) * 3 / 4 + 1.75rem);background:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%233b4863' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right .75rem center/8px 10px,url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%233bb001' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") #fff no-repeat center right 1.75rem/calc(.75em + .375rem) calc(.75em + .375rem)}.was-validated .custom-select:valid:focus,.custom-select.is-valid:focus,input.custom-select.parsley-success:focus,textarea.custom-select.parsley-success:focus{border-color:#3bb001;box-shadow:0 0 0 .2rem rgba(59,176,1,0.25)}.was-validated .custom-select:valid ~ .valid-feedback,.was-validated .custom-select:valid ~ .valid-tooltip,.custom-select.is-valid ~ .valid-feedback,input.custom-select.parsley-success ~ .valid-feedback,textarea.custom-select.parsley-success ~ .valid-feedback,.custom-select.is-valid ~ .valid-tooltip,input.custom-select.parsley-success ~ .valid-tooltip,textarea.custom-select.parsley-success ~ .valid-tooltip{display:block}.was-validated .form-control-file:valid ~ .valid-feedback,.was-validated .form-control-file:valid ~ .valid-tooltip,.form-control-file.is-valid ~ .valid-feedback,input.form-control-file.parsley-success ~ .valid-feedback,textarea.form-control-file.parsley-success ~ .valid-feedback,.form-control-file.is-valid ~ .valid-tooltip,input.form-control-file.parsley-success ~ .valid-tooltip,textarea.form-control-file.parsley-success ~ .valid-tooltip{display:block}.was-validated .form-check-input:valid ~ .form-check-label,.form-check-input.is-valid ~ .form-check-label,input.form-check-input.parsley-success ~ .form-check-label,textarea.form-check-input.parsley-success ~ .form-check-label{color:#3bb001}.was-validated .form-check-input:valid ~ .valid-feedback,.was-validated .form-check-input:valid ~ .valid-tooltip,.form-check-input.is-valid ~ .valid-feedback,input.form-check-input.parsley-success ~ .valid-feedback,textarea.form-check-input.parsley-success ~ .valid-feedback,.form-check-input.is-valid ~ .valid-tooltip,input.form-check-input.parsley-success ~ .valid-tooltip,textarea.form-check-input.parsley-success ~ .valid-tooltip{display:block}.was-validated .custom-control-input:valid ~ .custom-control-label,.custom-control-input.is-valid ~ .custom-control-label,input.custom-control-input.parsley-success ~ .custom-control-label,textarea.custom-control-input.parsley-success ~ .custom-control-label{color:#3bb001}.was-validated .custom-control-input:valid ~ .custom-control-label::before,.custom-control-input.is-valid ~ .custom-control-label::before,input.custom-control-input.parsley-success ~ .custom-control-label::before,textarea.custom-control-input.parsley-success ~ .custom-control-label::before{border-color:#3bb001}.was-validated .custom-control-input:valid ~ .valid-feedback,.was-validated .custom-control-input:valid ~ .valid-tooltip,.custom-control-input.is-valid ~ .valid-feedback,input.custom-control-input.parsley-success ~ .valid-feedback,textarea.custom-control-input.parsley-success ~ .valid-feedback,.custom-control-input.is-valid ~ .valid-tooltip,input.custom-control-input.parsley-success ~ .valid-tooltip,textarea.custom-control-input.parsley-success ~ .valid-tooltip{display:block}.was-validated .custom-control-input:valid:checked ~ .custom-control-label::before,.custom-control-input.is-valid:checked ~ .custom-control-label::before,input.custom-control-input.parsley-success:checked ~ .custom-control-label::before,textarea.custom-control-input.parsley-success:checked ~ .custom-control-label::before{border-color:#4ce301;background-color:#4ce301}.was-validated .custom-control-input:valid:focus ~ .custom-control-label::before,.custom-control-input.is-valid:focus ~ .custom-control-label::before,input.custom-control-input.parsley-success:focus ~ .custom-control-label::before,textarea.custom-control-input.parsley-success:focus ~ .custom-control-label::before{box-shadow:0 0 0 .2rem rgba(59,176,1,0.25)}.was-validated .custom-control-input:valid:focus:not(:checked) ~ .custom-control-label::before,.custom-control-input.is-valid:focus:not(:checked) ~ .custom-control-label::before,input.custom-control-input.parsley-success:focus:not(:checked) ~ .custom-control-label::before,textarea.custom-control-input.parsley-success:focus:not(:checked) ~ .custom-control-label::before{border-color:#3bb001}.was-validated .custom-file-input:valid ~ .custom-file-label,.custom-file-input.is-valid ~ .custom-file-label,input.custom-file-input.parsley-success ~ .custom-file-label,textarea.custom-file-input.parsley-success ~ .custom-file-label{border-color:#3bb001}.was-validated .custom-file-input:valid ~ .valid-feedback,.was-validated .custom-file-input:valid ~ .valid-tooltip,.custom-file-input.is-valid ~ .valid-feedback,input.custom-file-input.parsley-success ~ .valid-feedback,textarea.custom-file-input.parsley-success ~ .valid-feedback,.custom-file-input.is-valid ~ .valid-tooltip,input.custom-file-input.parsley-success ~ .valid-tooltip,textarea.custom-file-input.parsley-success ~ .valid-tooltip{display:block}.was-validated .custom-file-input:valid:focus ~ .custom-file-label,.custom-file-input.is-valid:focus ~ .custom-file-label,input.custom-file-input.parsley-success:focus ~ .custom-file-label,textarea.custom-file-input.parsley-success:focus ~ .custom-file-label{border-color:#3bb001;box-shadow:0 0 0 .2rem rgba(59,176,1,0.25)}.invalid-feedback{display:none;width:100%;margin-top:.25rem;font-size:80%;color:#dc3545}.invalid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.76562rem;line-height:1.5;color:#fff;background-color:rgba(220,53,69,0.9);border-radius:3px}.was-validated .form-control:invalid,.form-control.is-invalid,input.form-control.parsley-error,textarea.form-control.parsley-error{border-color:#dc3545;padding-right:calc(1.5em + .75rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23dc3545' viewBox='-2 -2 7 7'%3e%3cpath stroke='%23dc3545' d='M0 0l3 3m0-3L0 3'/%3e%3ccircle r='.5'/%3e%3ccircle cx='3' r='.5'/%3e%3ccircle cy='3' r='.5'/%3e%3ccircle cx='3' cy='3' r='.5'/%3e%3c/svg%3E");background-repeat:no-repeat;background-position:center right calc(.375em + .1875rem);background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.was-validated .form-control:invalid:focus,.form-control.is-invalid:focus,input.form-control.parsley-error:focus,textarea.form-control.parsley-error:focus{border-color:#dc3545;box-shadow:0 0 0 .2rem rgba(220,53,69,0.25)}.was-validated .form-control:invalid ~ .invalid-feedback,.was-validated .form-control:invalid ~ .invalid-tooltip,.form-control.is-invalid ~ .invalid-feedback,input.form-control.parsley-error ~ .invalid-feedback,textarea.form-control.parsley-error ~ .invalid-feedback,.form-control.is-invalid ~ .invalid-tooltip,input.form-control.parsley-error ~ .invalid-tooltip,textarea.form-control.parsley-error ~ .invalid-tooltip{display:block}.was-validated textarea.form-control:invalid,textarea.form-control.is-invalid,textarea.form-control.parsley-error{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.was-validated .custom-select:invalid,.custom-select.is-invalid,input.custom-select.parsley-error,textarea.custom-select.parsley-error{border-color:#dc3545;padding-right:calc((1em + .75rem) * 3 / 4 + 1.75rem);background:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%233b4863' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right .75rem center/8px 10px,url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23dc3545' viewBox='-2 -2 7 7'%3e%3cpath stroke='%23dc3545' d='M0 0l3 3m0-3L0 3'/%3e%3ccircle r='.5'/%3e%3ccircle cx='3' r='.5'/%3e%3ccircle cy='3' r='.5'/%3e%3ccircle cx='3' cy='3' r='.5'/%3e%3c/svg%3E") #fff no-repeat center right 1.75rem/calc(.75em + .375rem) calc(.75em + .375rem)}.was-validated .custom-select:invalid:focus,.custom-select.is-invalid:focus,input.custom-select.parsley-error:focus,textarea.custom-select.parsley-error:focus{border-color:#dc3545;box-shadow:0 0 0 .2rem rgba(220,53,69,0.25)}.was-validated .custom-select:invalid ~ .invalid-feedback,.was-validated .custom-select:invalid ~ .invalid-tooltip,.custom-select.is-invalid ~ .invalid-feedback,input.custom-select.parsley-error ~ .invalid-feedback,textarea.custom-select.parsley-error ~ .invalid-feedback,.custom-select.is-invalid ~ .invalid-tooltip,input.custom-select.parsley-error ~ .invalid-tooltip,textarea.custom-select.parsley-error ~ .invalid-tooltip{display:block}.was-validated .form-control-file:invalid ~ .invalid-feedback,.was-validated .form-control-file:invalid ~ .invalid-tooltip,.form-control-file.is-invalid ~ .invalid-feedback,input.form-control-file.parsley-error ~ .invalid-feedback,textarea.form-control-file.parsley-error ~ .invalid-feedback,.form-control-file.is-invalid ~ .invalid-tooltip,input.form-control-file.parsley-error ~ .invalid-tooltip,textarea.form-control-file.parsley-error ~ .invalid-tooltip{display:block}.was-validated .form-check-input:invalid ~ .form-check-label,.form-check-input.is-invalid ~ .form-check-label,input.form-check-input.parsley-error ~ .form-check-label,textarea.form-check-input.parsley-error ~ .form-check-label{color:#dc3545}.was-validated .form-check-input:invalid ~ .invalid-feedback,.was-validated .form-check-input:invalid ~ .invalid-tooltip,.form-check-input.is-invalid ~ .invalid-feedback,input.form-check-input.parsley-error ~ .invalid-feedback,textarea.form-check-input.parsley-error ~ .invalid-feedback,.form-check-input.is-invalid ~ .invalid-tooltip,input.form-check-input.parsley-error ~ .invalid-tooltip,textarea.form-check-input.parsley-error ~ .invalid-tooltip{display:block}.was-validated .custom-control-input:invalid ~ .custom-control-label,.custom-control-input.is-invalid ~ .custom-control-label,input.custom-control-input.parsley-error ~ .custom-control-label,textarea.custom-control-input.parsley-error ~ .custom-control-label{color:#dc3545}.was-validated .custom-control-input:invalid ~ .custom-control-label::before,.custom-control-input.is-invalid ~ .custom-control-label::before,input.custom-control-input.parsley-error ~ .custom-control-label::before,textarea.custom-control-input.parsley-error ~ .custom-control-label::before{border-color:#dc3545}.was-validated .custom-control-input:invalid ~ .invalid-feedback,.was-validated .custom-control-input:invalid ~ .invalid-tooltip,.custom-control-input.is-invalid ~ .invalid-feedback,input.custom-control-input.parsley-error ~ .invalid-feedback,textarea.custom-control-input.parsley-error ~ .invalid-feedback,.custom-control-input.is-invalid ~ .invalid-tooltip,input.custom-control-input.parsley-error ~ .invalid-tooltip,textarea.custom-control-input.parsley-error ~ .invalid-tooltip{display:block}.was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before,.custom-control-input.is-invalid:checked ~ .custom-control-label::before,input.custom-control-input.parsley-error:checked ~ .custom-control-label::before,textarea.custom-control-input.parsley-error:checked ~ .custom-control-label::before{border-color:#e4606d;background-color:#e4606d}.was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before,.custom-control-input.is-invalid:focus ~ .custom-control-label::before,input.custom-control-input.parsley-error:focus ~ .custom-control-label::before,textarea.custom-control-input.parsley-error:focus ~ .custom-control-label::before{box-shadow:0 0 0 .2rem rgba(220,53,69,0.25)}.was-validated .custom-control-input:invalid:focus:not(:checked) ~ .custom-control-label::before,.custom-control-input.is-invalid:focus:not(:checked) ~ .custom-control-label::before,input.custom-control-input.parsley-error:focus:not(:checked) ~ .custom-control-label::before,textarea.custom-control-input.parsley-error:focus:not(:checked) ~ .custom-control-label::before{border-color:#dc3545}.was-validated .custom-file-input:invalid ~ .custom-file-label,.custom-file-input.is-invalid ~ .custom-file-label,input.custom-file-input.parsley-error ~ .custom-file-label,textarea.custom-file-input.parsley-error ~ .custom-file-label{border-color:#dc3545}.was-validated .custom-file-input:invalid ~ .invalid-feedback,.was-validated .custom-file-input:invalid ~ .invalid-tooltip,.custom-file-input.is-invalid ~ .invalid-feedback,input.custom-file-input.parsley-error ~ .invalid-feedback,textarea.custom-file-input.parsley-error ~ .invalid-feedback,.custom-file-input.is-invalid ~ .invalid-tooltip,input.custom-file-input.parsley-error ~ .invalid-tooltip,textarea.custom-file-input.parsley-error ~ .invalid-tooltip{display:block}.was-validated .custom-file-input:invalid:focus ~ .custom-file-label,.custom-file-input.is-invalid:focus ~ .custom-file-label,input.custom-file-input.parsley-error:focus ~ .custom-file-label,textarea.custom-file-input.parsley-error:focus ~ .custom-file-label{border-color:#dc3545;box-shadow:0 0 0 .2rem rgba(220,53,69,0.25)}.form-inline{display:flex;flex-flow:row wrap;align-items:center}.form-inline .form-check{width:100%}@media (min-width: 576px){.form-inline label{display:flex;align-items:center;justify-content:center;margin-bottom:0}.form-inline .form-group{display:flex;flex:0 0 auto;flex-flow:row wrap;align-items:center;margin-bottom:0}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-control-plaintext{display:inline-block}.form-inline .input-group,.form-inline .custom-select{width:auto}.form-inline .form-check{display:flex;align-items:center;justify-content:center;width:auto;padding-left:0}.form-inline .form-check-input{position:relative;flex-shrink:0;margin-top:0;margin-right:.25rem;margin-left:0}.form-inline .custom-control{align-items:center;justify-content:center}.form-inline .custom-control-label{margin-bottom:0}}.btn,.sp-container button{display:inline-block;font-weight:400;color:#031b4e;text-align:center;vertical-align:middle;user-select:none;background-color:transparent;border:1px solid transparent;padding:.375rem .75rem;font-size:.875rem;line-height:1.5;border-radius:3px;transition:color 0.15s ease-in-out,background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out}@media (prefers-reduced-motion: reduce){.btn,.sp-container button{transition:none}}.btn:hover,.sp-container button:hover{color:#031b4e;text-decoration:none}.btn:focus,.sp-container button:focus,.btn.focus,.sp-container button.focus{outline:0;box-shadow:none}.btn.disabled,.sp-container button.disabled,.btn:disabled,.sp-container button:disabled{opacity:.65}a.btn.disabled,fieldset:disabled a.btn{pointer-events:none}.btn-primary{color:#fff;background-color:#36f;border-color:#36f}.btn-primary:hover{color:#fff;background-color:#0d49ff;border-color:#0040ff}.btn-primary:focus,.btn-primary.focus{box-shadow:0 0 0 .2rem rgba(82,125,255,0.5)}.btn-primary.disabled,.btn-primary:disabled{color:#fff;background-color:#36f;border-color:#36f}.btn-primary:not(:disabled):not(.disabled):active,.btn-primary:not(:disabled):not(.disabled).active,.show>.btn-primary.dropdown-toggle{color:#fff;background-color:#0040ff;border-color:#003df2}.btn-primary:not(:disabled):not(.disabled):active:focus,.btn-primary:not(:disabled):not(.disabled).active:focus,.show>.btn-primary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(82,125,255,0.5)}.btn-secondary{color:#fff;background-color:#7987a1;border-color:#7987a1}.btn-secondary:hover{color:#fff;background-color:#64738f;border-color:#5f6d88}.btn-secondary:focus,.btn-secondary.focus{box-shadow:0 0 0 .2rem rgba(141,153,175,0.5)}.btn-secondary.disabled,.btn-secondary:disabled{color:#fff;background-color:#7987a1;border-color:#7987a1}.btn-secondary:not(:disabled):not(.disabled):active,.btn-secondary:not(:disabled):not(.disabled).active,.show>.btn-secondary.dropdown-toggle{color:#fff;background-color:#5f6d88;border-color:#5a6780}.btn-secondary:not(:disabled):not(.disabled):active:focus,.btn-secondary:not(:disabled):not(.disabled).active:focus,.show>.btn-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(141,153,175,0.5)}.btn-success{color:#fff;background-color:#3bb001;border-color:#3bb001}.btn-success:hover{color:#fff;background-color:#2e8a01;border-color:#2a7d01}.btn-success:focus,.btn-success.focus{box-shadow:0 0 0 .2rem rgba(88,188,39,0.5)}.btn-success.disabled,.btn-success:disabled{color:#fff;background-color:#3bb001;border-color:#3bb001}.btn-success:not(:disabled):not(.disabled):active,.btn-success:not(:disabled):not(.disabled).active,.show>.btn-success.dropdown-toggle{color:#fff;background-color:#2a7d01;border-color:#267101}.btn-success:not(:disabled):not(.disabled):active:focus,.btn-success:not(:disabled):not(.disabled).active:focus,.show>.btn-success.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(88,188,39,0.5)}.btn-info{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-info:hover{color:#fff;background-color:#138496;border-color:#117a8b}.btn-info:focus,.btn-info.focus{box-shadow:0 0 0 .2rem rgba(58,176,195,0.5)}.btn-info.disabled,.btn-info:disabled{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-info:not(:disabled):not(.disabled):active,.btn-info:not(:disabled):not(.disabled).active,.show>.btn-info.dropdown-toggle{color:#fff;background-color:#117a8b;border-color:#10707f}.btn-info:not(:disabled):not(.disabled):active:focus,.btn-info:not(:disabled):not(.disabled).active:focus,.show>.btn-info.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(58,176,195,0.5)}.btn-warning{color:#1c273c;background-color:#ffc107;border-color:#ffc107}.btn-warning:hover{color:#1c273c;background-color:#e0a800;border-color:#d39e00}.btn-warning:focus,.btn-warning.focus{box-shadow:0 0 0 .2rem rgba(221,170,15,0.5)}.btn-warning.disabled,.btn-warning:disabled{color:#1c273c;background-color:#ffc107;border-color:#ffc107}.btn-warning:not(:disabled):not(.disabled):active,.btn-warning:not(:disabled):not(.disabled).active,.show>.btn-warning.dropdown-toggle{color:#1c273c;background-color:#d39e00;border-color:#c69500}.btn-warning:not(:disabled):not(.disabled):active:focus,.btn-warning:not(:disabled):not(.disabled).active:focus,.show>.btn-warning.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(221,170,15,0.5)}.btn-danger{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-danger:hover{color:#fff;background-color:#c82333;border-color:#bd2130}.btn-danger:focus,.btn-danger.focus{box-shadow:0 0 0 .2rem rgba(225,83,97,0.5)}.btn-danger.disabled,.btn-danger:disabled{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-danger:not(:disabled):not(.disabled):active,.btn-danger:not(:disabled):not(.disabled).active,.show>.btn-danger.dropdown-toggle{color:#fff;background-color:#bd2130;border-color:#b21f2d}.btn-danger:not(:disabled):not(.disabled):active:focus,.btn-danger:not(:disabled):not(.disabled).active:focus,.show>.btn-danger.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(225,83,97,0.5)}.btn-light{color:#1c273c;background-color:#f4f5f8;border-color:#f4f5f8}.btn-light:hover{color:#1c273c;background-color:#dde0e9;border-color:#d5d9e4}.btn-light:focus,.btn-light.focus{box-shadow:0 0 0 .2rem rgba(212,214,220,0.5)}.btn-light.disabled,.btn-light:disabled{color:#1c273c;background-color:#f4f5f8;border-color:#f4f5f8}.btn-light:not(:disabled):not(.disabled):active,.btn-light:not(:disabled):not(.disabled).active,.show>.btn-light.dropdown-toggle{color:#1c273c;background-color:#d5d9e4;border-color:#cdd2df}.btn-light:not(:disabled):not(.disabled):active:focus,.btn-light:not(:disabled):not(.disabled).active:focus,.show>.btn-light.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(212,214,220,0.5)}.btn-dark{color:#fff;background-color:#3b4863;border-color:#3b4863}.btn-dark:hover{color:#fff;background-color:#2d374b;border-color:#283143}.btn-dark:focus,.btn-dark.focus{box-shadow:0 0 0 .2rem rgba(88,99,122,0.5)}.btn-dark.disabled,.btn-dark:disabled{color:#fff;background-color:#3b4863;border-color:#3b4863}.btn-dark:not(:disabled):not(.disabled):active,.btn-dark:not(:disabled):not(.disabled).active,.show>.btn-dark.dropdown-toggle{color:#fff;background-color:#283143;border-color:#232b3b}.btn-dark:not(:disabled):not(.disabled):active:focus,.btn-dark:not(:disabled):not(.disabled).active:focus,.show>.btn-dark.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(88,99,122,0.5)}.btn-outline-primary{color:#36f;border-color:#36f}.btn-outline-primary:hover{color:#fff;background-color:#36f;border-color:#36f}.btn-outline-primary:focus,.btn-outline-primary.focus{box-shadow:0 0 0 .2rem rgba(51,102,255,0.5)}.btn-outline-primary.disabled,.btn-outline-primary:disabled{color:#36f;background-color:transparent}.btn-outline-primary:not(:disabled):not(.disabled):active,.btn-outline-primary:not(:disabled):not(.disabled).active,.show>.btn-outline-primary.dropdown-toggle{color:#fff;background-color:#36f;border-color:#36f}.btn-outline-primary:not(:disabled):not(.disabled):active:focus,.btn-outline-primary:not(:disabled):not(.disabled).active:focus,.show>.btn-outline-primary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(51,102,255,0.5)}.btn-outline-secondary{color:#7987a1;border-color:#7987a1}.btn-outline-secondary:hover{color:#fff;background-color:#7987a1;border-color:#7987a1}.btn-outline-secondary:focus,.btn-outline-secondary.focus{box-shadow:0 0 0 .2rem rgba(121,135,161,0.5)}.btn-outline-secondary.disabled,.btn-outline-secondary:disabled{color:#7987a1;background-color:transparent}.btn-outline-secondary:not(:disabled):not(.disabled):active,.btn-outline-secondary:not(:disabled):not(.disabled).active,.show>.btn-outline-secondary.dropdown-toggle{color:#fff;background-color:#7987a1;border-color:#7987a1}.btn-outline-secondary:not(:disabled):not(.disabled):active:focus,.btn-outline-secondary:not(:disabled):not(.disabled).active:focus,.show>.btn-outline-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(121,135,161,0.5)}.btn-outline-success{color:#3bb001;border-color:#3bb001}.btn-outline-success:hover{color:#fff;background-color:#3bb001;border-color:#3bb001}.btn-outline-success:focus,.btn-outline-success.focus{box-shadow:0 0 0 .2rem rgba(59,176,1,0.5)}.btn-outline-success.disabled,.btn-outline-success:disabled{color:#3bb001;background-color:transparent}.btn-outline-success:not(:disabled):not(.disabled):active,.btn-outline-success:not(:disabled):not(.disabled).active,.show>.btn-outline-success.dropdown-toggle{color:#fff;background-color:#3bb001;border-color:#3bb001}.btn-outline-success:not(:disabled):not(.disabled):active:focus,.btn-outline-success:not(:disabled):not(.disabled).active:focus,.show>.btn-outline-success.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(59,176,1,0.5)}.btn-outline-info{color:#17a2b8;border-color:#17a2b8}.btn-outline-info:hover{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-outline-info:focus,.btn-outline-info.focus{box-shadow:0 0 0 .2rem rgba(23,162,184,0.5)}.btn-outline-info.disabled,.btn-outline-info:disabled{color:#17a2b8;background-color:transparent}.btn-outline-info:not(:disabled):not(.disabled):active,.btn-outline-info:not(:disabled):not(.disabled).active,.show>.btn-outline-info.dropdown-toggle{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-outline-info:not(:disabled):not(.disabled):active:focus,.btn-outline-info:not(:disabled):not(.disabled).active:focus,.show>.btn-outline-info.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(23,162,184,0.5)}.btn-outline-warning{color:#ffc107;border-color:#ffc107}.btn-outline-warning:hover{color:#1c273c;background-color:#ffc107;border-color:#ffc107}.btn-outline-warning:focus,.btn-outline-warning.focus{box-shadow:0 0 0 .2rem rgba(255,193,7,0.5)}.btn-outline-warning.disabled,.btn-outline-warning:disabled{color:#ffc107;background-color:transparent}.btn-outline-warning:not(:disabled):not(.disabled):active,.btn-outline-warning:not(:disabled):not(.disabled).active,.show>.btn-outline-warning.dropdown-toggle{color:#1c273c;background-color:#ffc107;border-color:#ffc107}.btn-outline-warning:not(:disabled):not(.disabled):active:focus,.btn-outline-warning:not(:disabled):not(.disabled).active:focus,.show>.btn-outline-warning.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,193,7,0.5)}.btn-outline-danger{color:#dc3545;border-color:#dc3545}.btn-outline-danger:hover{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-outline-danger:focus,.btn-outline-danger.focus{box-shadow:0 0 0 .2rem rgba(220,53,69,0.5)}.btn-outline-danger.disabled,.btn-outline-danger:disabled{color:#dc3545;background-color:transparent}.btn-outline-danger:not(:disabled):not(.disabled):active,.btn-outline-danger:not(:disabled):not(.disabled).active,.show>.btn-outline-danger.dropdown-toggle{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-outline-danger:not(:disabled):not(.disabled):active:focus,.btn-outline-danger:not(:disabled):not(.disabled).active:focus,.show>.btn-outline-danger.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(220,53,69,0.5)}.btn-outline-light{color:#f4f5f8;border-color:#f4f5f8}.btn-outline-light:hover{color:#1c273c;background-color:#f4f5f8;border-color:#f4f5f8}.btn-outline-light:focus,.btn-outline-light.focus{box-shadow:0 0 0 .2rem rgba(244,245,248,0.5)}.btn-outline-light.disabled,.btn-outline-light:disabled{color:#f4f5f8;background-color:transparent}.btn-outline-light:not(:disabled):not(.disabled):active,.btn-outline-light:not(:disabled):not(.disabled).active,.show>.btn-outline-light.dropdown-toggle{color:#1c273c;background-color:#f4f5f8;border-color:#f4f5f8}.btn-outline-light:not(:disabled):not(.disabled):active:focus,.btn-outline-light:not(:disabled):not(.disabled).active:focus,.show>.btn-outline-light.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(244,245,248,0.5)}.btn-outline-dark{color:#3b4863;border-color:#3b4863}.btn-outline-dark:hover{color:#fff;background-color:#3b4863;border-color:#3b4863}.btn-outline-dark:focus,.btn-outline-dark.focus{box-shadow:0 0 0 .2rem rgba(59,72,99,0.5)}.btn-outline-dark.disabled,.btn-outline-dark:disabled{color:#3b4863;background-color:transparent}.btn-outline-dark:not(:disabled):not(.disabled):active,.btn-outline-dark:not(:disabled):not(.disabled).active,.show>.btn-outline-dark.dropdown-toggle{color:#fff;background-color:#3b4863;border-color:#3b4863}.btn-outline-dark:not(:disabled):not(.disabled):active:focus,.btn-outline-dark:not(:disabled):not(.disabled).active:focus,.show>.btn-outline-dark.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(59,72,99,0.5)}.btn-link{font-weight:400;color:#36f;text-decoration:none}.btn-link:hover{color:#0039e6;text-decoration:none}.btn-link:focus,.btn-link.focus{text-decoration:none;box-shadow:none}.btn-link:disabled,.btn-link.disabled{color:#7987a1;pointer-events:none}.btn-lg,.btn-group-lg>.btn,.sp-container .btn-group-lg>button{padding:.5rem 1rem;font-size:1.09375rem;line-height:1.5;border-radius:.3rem}.btn-sm,.btn-group-sm>.btn,.sp-container .btn-group-sm>button{padding:.25rem .5rem;font-size:.76562rem;line-height:1.5;border-radius:.2rem}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:.5rem}input[type="submit"].btn-block,input[type="reset"].btn-block,input[type="button"].btn-block{width:100%}.fade{transition:opacity 0.15s linear}@media (prefers-reduced-motion: reduce){.fade{transition:none}}.fade:not(.show){opacity:0}.collapse:not(.show){display:none}.collapsing{position:relative;height:0;overflow:hidden;transition:height 0.35s ease}@media (prefers-reduced-motion: reduce){.collapsing{transition:none}}.dropup,.dropright,.dropdown,.dropleft{position:relative}.dropdown-toggle{white-space:nowrap}.dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid;border-right:.3em solid transparent;border-bottom:0;border-left:.3em solid transparent}.dropdown-toggle:empty::after{margin-left:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:10rem;padding:.5rem 0;margin:.125rem 0 0;font-size:.875rem;color:#031b4e;text-align:left;list-style:none;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,0.15);border-radius:3px}.dropdown-menu-left{right:auto;left:0}.dropdown-menu-right{right:0;left:auto}@media (min-width: 576px){.dropdown-menu-sm-left{right:auto;left:0}.dropdown-menu-sm-right{right:0;left:auto}}@media (min-width: 768px){.dropdown-menu-md-left{right:auto;left:0}.dropdown-menu-md-right{right:0;left:auto}}@media (min-width: 992px){.dropdown-menu-lg-left{right:auto;left:0}.dropdown-menu-lg-right{right:0;left:auto}}@media (min-width: 1200px){.dropdown-menu-xl-left{right:auto;left:0}.dropdown-menu-xl-right{right:0;left:auto}}.dropup .dropdown-menu{top:auto;bottom:100%;margin-top:0;margin-bottom:.125rem}.dropup .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:0;border-right:.3em solid transparent;border-bottom:.3em solid;border-left:.3em solid transparent}.dropup .dropdown-toggle:empty::after{margin-left:0}.dropright .dropdown-menu{top:0;right:auto;left:100%;margin-top:0;margin-left:.125rem}.dropright .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:0;border-bottom:.3em solid transparent;border-left:.3em solid}.dropright .dropdown-toggle:empty::after{margin-left:0}.dropright .dropdown-toggle::after{vertical-align:0}.dropleft .dropdown-menu{top:0;right:100%;left:auto;margin-top:0;margin-right:.125rem}.dropleft .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:""}.dropleft .dropdown-toggle::after{display:none}.dropleft .dropdown-toggle::before{display:inline-block;margin-right:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:.3em solid;border-bottom:.3em solid transparent}.dropleft .dropdown-toggle:empty::after{margin-left:0}.dropleft .dropdown-toggle::before{vertical-align:0}.dropdown-menu[x-placement^="top"],.dropdown-menu[x-placement^="right"],.dropdown-menu[x-placement^="bottom"],.dropdown-menu[x-placement^="left"]{right:auto;bottom:auto}.dropdown-divider{height:0;margin:.5rem 0;overflow:hidden;border-top:1px solid #e3e7ed}.dropdown-item{display:block;width:100%;padding:.25rem 1.5rem;clear:both;font-weight:400;color:#1c273c;text-align:inherit;white-space:nowrap;background-color:transparent;border:0}.dropdown-item:hover,.dropdown-item:focus{color:#141c2b;text-decoration:none;background-color:#f4f5f8}.dropdown-item.active,.dropdown-item:active{color:#fff;text-decoration:none;background-color:#36f}.dropdown-item.disabled,.dropdown-item:disabled{color:#7987a1;pointer-events:none;background-color:transparent}.dropdown-menu.show{display:block}.dropdown-header{display:block;padding:.5rem 1.5rem;margin-bottom:0;font-size:.76562rem;color:#7987a1;white-space:nowrap}.dropdown-item-text{display:block;padding:.25rem 1.5rem;color:#1c273c}.btn-group,.btn-group-vertical{position:relative;display:inline-flex;vertical-align:middle}.btn-group>.btn,.sp-container .btn-group>button,.btn-group-vertical>.btn,.sp-container .btn-group-vertical>button{position:relative;flex:1 1 auto}.btn-group>.btn:hover,.sp-container .btn-group>button:hover,.btn-group-vertical>.btn:hover,.sp-container .btn-group-vertical>button:hover{z-index:1}.btn-group>.btn:focus,.sp-container .btn-group>button:focus,.btn-group>.btn:active,.sp-container .btn-group>button:active,.btn-group>.btn.active,.sp-container .btn-group>button.active,.btn-group-vertical>.btn:focus,.sp-container .btn-group-vertical>button:focus,.btn-group-vertical>.btn:active,.sp-container .btn-group-vertical>button:active,.btn-group-vertical>.btn.active,.sp-container .btn-group-vertical>button.active{z-index:1}.btn-toolbar{display:flex;flex-wrap:wrap;justify-content:flex-start}.btn-toolbar .input-group{width:auto}.btn-group>.btn:not(:first-child),.sp-container .btn-group>button:not(:first-child),.btn-group>.btn-group:not(:first-child){margin-left:-1px}.btn-group>.btn:not(:last-child):not(.dropdown-toggle),.sp-container .btn-group>button:not(:last-child):not(.dropdown-toggle),.btn-group>.btn-group:not(:last-child)>.btn,.sp-container .btn-group>.btn-group:not(:last-child)>button{border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn:not(:first-child),.sp-container .btn-group>button:not(:first-child),.btn-group>.btn-group:not(:first-child)>.btn,.sp-container .btn-group>.btn-group:not(:first-child)>button{border-top-left-radius:0;border-bottom-left-radius:0}.dropdown-toggle-split{padding-right:.5625rem;padding-left:.5625rem}.dropdown-toggle-split::after,.dropup .dropdown-toggle-split::after,.dropright .dropdown-toggle-split::after{margin-left:0}.dropleft .dropdown-toggle-split::before{margin-right:0}.btn-sm+.dropdown-toggle-split,.btn-group-sm>.btn+.dropdown-toggle-split,.sp-container .btn-group-sm>button+.dropdown-toggle-split{padding-right:.375rem;padding-left:.375rem}.btn-lg+.dropdown-toggle-split,.btn-group-lg>.btn+.dropdown-toggle-split,.sp-container .btn-group-lg>button+.dropdown-toggle-split{padding-right:.75rem;padding-left:.75rem}.btn-group-vertical{flex-direction:column;align-items:flex-start;justify-content:center}.btn-group-vertical>.btn,.sp-container .btn-group-vertical>button,.btn-group-vertical>.btn-group{width:100%}.btn-group-vertical>.btn:not(:first-child),.sp-container .btn-group-vertical>button:not(:first-child),.btn-group-vertical>.btn-group:not(:first-child){margin-top:-1px}.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle),.sp-container .btn-group-vertical>button:not(:last-child):not(.dropdown-toggle),.btn-group-vertical>.btn-group:not(:last-child)>.btn,.sp-container .btn-group-vertical>.btn-group:not(:last-child)>button{border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn:not(:first-child),.sp-container .btn-group-vertical>button:not(:first-child),.btn-group-vertical>.btn-group:not(:first-child)>.btn,.sp-container .btn-group-vertical>.btn-group:not(:first-child)>button{border-top-left-radius:0;border-top-right-radius:0}.btn-group-toggle>.btn,.sp-container .btn-group-toggle>button,.btn-group-toggle>.btn-group>.btn,.sp-container .btn-group-toggle>.btn-group>button{margin-bottom:0}.btn-group-toggle>.btn input[type="radio"],.sp-container .btn-group-toggle>button input[type="radio"],.btn-group-toggle>.btn input[type="checkbox"],.sp-container .btn-group-toggle>button input[type="checkbox"],.btn-group-toggle>.btn-group>.btn input[type="radio"],.sp-container .btn-group-toggle>.btn-group>button input[type="radio"],.btn-group-toggle>.btn-group>.btn input[type="checkbox"],.sp-container .btn-group-toggle>.btn-group>button input[type="checkbox"]{position:absolute;clip:rect(0, 0, 0, 0);pointer-events:none}.input-group{position:relative;display:flex;flex-wrap:wrap;align-items:stretch;width:100%}.input-group>.form-control,.input-group>.form-control-plaintext,.input-group>.custom-select,.input-group>.custom-file{position:relative;flex:1 1 auto;width:1%;margin-bottom:0}.input-group>.form-control+.form-control,.input-group>.form-control+.custom-select,.input-group>.form-control+.custom-file,.input-group>.form-control-plaintext+.form-control,.input-group>.form-control-plaintext+.custom-select,.input-group>.form-control-plaintext+.custom-file,.input-group>.custom-select+.form-control,.input-group>.custom-select+.custom-select,.input-group>.custom-select+.custom-file,.input-group>.custom-file+.form-control,.input-group>.custom-file+.custom-select,.input-group>.custom-file+.custom-file{margin-left:-1px}.input-group>.form-control:focus,.input-group>.custom-select:focus,.input-group>.custom-file .custom-file-input:focus ~ .custom-file-label{z-index:3}.input-group>.custom-file .custom-file-input:focus{z-index:4}.input-group>.form-control:not(:last-child),.input-group>.custom-select:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.form-control:not(:first-child),.input-group>.custom-select:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.input-group>.custom-file{display:flex;align-items:center}.input-group>.custom-file:not(:last-child) .custom-file-label,.input-group>.custom-file:not(:last-child) .custom-file-label::after{border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.custom-file:not(:first-child) .custom-file-label{border-top-left-radius:0;border-bottom-left-radius:0}.input-group-prepend,.input-group-append{display:flex}.input-group-prepend .btn,.input-group-prepend .sp-container button,.sp-container .input-group-prepend button,.input-group-append .btn,.input-group-append .sp-container button,.sp-container .input-group-append button{position:relative;z-index:2}.input-group-prepend .btn:focus,.input-group-prepend .sp-container button:focus,.sp-container .input-group-prepend button:focus,.input-group-append .btn:focus,.input-group-append .sp-container button:focus,.sp-container .input-group-append button:focus{z-index:3}.input-group-prepend .btn+.btn,.input-group-prepend .sp-container button+.btn,.sp-container .input-group-prepend button+.btn,.input-group-prepend .sp-container .btn+button,.sp-container .input-group-prepend .btn+button,.input-group-prepend .sp-container button+button,.sp-container .input-group-prepend button+button,.input-group-prepend .btn+.input-group-text,.input-group-prepend .sp-container button+.input-group-text,.sp-container .input-group-prepend button+.input-group-text,.input-group-prepend .input-group-text+.input-group-text,.input-group-prepend .input-group-text+.btn,.input-group-prepend .sp-container .input-group-text+button,.sp-container .input-group-prepend .input-group-text+button,.input-group-append .btn+.btn,.input-group-append .sp-container button+.btn,.sp-container .input-group-append button+.btn,.input-group-append .sp-container .btn+button,.sp-container .input-group-append .btn+button,.input-group-append .sp-container button+button,.sp-container .input-group-append button+button,.input-group-append .btn+.input-group-text,.input-group-append .sp-container button+.input-group-text,.sp-container .input-group-append button+.input-group-text,.input-group-append .input-group-text+.input-group-text,.input-group-append .input-group-text+.btn,.input-group-append .sp-container .input-group-text+button,.sp-container .input-group-append .input-group-text+button{margin-left:-1px}.input-group-prepend{margin-right:-1px}.input-group-append{margin-left:-1px}.input-group-text{display:flex;align-items:center;padding:.375rem .75rem;margin-bottom:0;font-size:.875rem;font-weight:400;line-height:1.5;color:#596882;text-align:center;white-space:nowrap;background-color:#e3e7ed;border:1px solid #cdd4e0;border-radius:3px}.input-group-text input[type="radio"],.input-group-text input[type="checkbox"]{margin-top:0}.input-group-lg>.form-control:not(textarea),.input-group-lg>.custom-select{height:calc(1.5em + 1rem + 2px)}.input-group-lg>.form-control,.input-group-lg>.custom-select,.input-group-lg>.input-group-prepend>.input-group-text,.input-group-lg>.input-group-append>.input-group-text,.input-group-lg>.input-group-prepend>.btn,.sp-container .input-group-lg>.input-group-prepend>button,.input-group-lg>.input-group-append>.btn,.sp-container .input-group-lg>.input-group-append>button{padding:.5rem 1rem;font-size:1.09375rem;line-height:1.5;border-radius:.3rem}.input-group-sm>.form-control:not(textarea),.input-group-sm>.custom-select{height:calc(1.5em + .5rem + 2px)}.input-group-sm>.form-control,.input-group-sm>.custom-select,.input-group-sm>.input-group-prepend>.input-group-text,.input-group-sm>.input-group-append>.input-group-text,.input-group-sm>.input-group-prepend>.btn,.sp-container .input-group-sm>.input-group-prepend>button,.input-group-sm>.input-group-append>.btn,.sp-container .input-group-sm>.input-group-append>button{padding:.25rem .5rem;font-size:.76562rem;line-height:1.5;border-radius:.2rem}.input-group-lg>.custom-select,.input-group-sm>.custom-select{padding-right:1.75rem}.input-group>.input-group-prepend>.btn,.sp-container .input-group>.input-group-prepend>button,.input-group>.input-group-prepend>.input-group-text,.input-group>.input-group-append:not(:last-child)>.btn,.sp-container .input-group>.input-group-append:not(:last-child)>button,.input-group>.input-group-append:not(:last-child)>.input-group-text,.input-group>.input-group-append:last-child>.btn:not(:last-child):not(.dropdown-toggle),.sp-container .input-group>.input-group-append:last-child>button:not(:last-child):not(.dropdown-toggle),.input-group>.input-group-append:last-child>.input-group-text:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.input-group-append>.btn,.sp-container .input-group>.input-group-append>button,.input-group>.input-group-append>.input-group-text,.input-group>.input-group-prepend:not(:first-child)>.btn,.sp-container .input-group>.input-group-prepend:not(:first-child)>button,.input-group>.input-group-prepend:not(:first-child)>.input-group-text,.input-group>.input-group-prepend:first-child>.btn:not(:first-child),.sp-container .input-group>.input-group-prepend:first-child>button:not(:first-child),.input-group>.input-group-prepend:first-child>.input-group-text:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.custom-control{position:relative;display:block;min-height:1.3125rem;padding-left:1.5rem}.custom-control-inline{display:inline-flex;margin-right:1rem}.custom-control-input{position:absolute;z-index:-1;opacity:0}.custom-control-input:checked ~ .custom-control-label::before{color:#fff;border-color:#36f;background-color:#36f}.custom-control-input:focus ~ .custom-control-label::before{box-shadow:0 0 0 .2rem rgba(51,102,255,0.25)}.custom-control-input:focus:not(:checked) ~ .custom-control-label::before{border-color:#b3c6ff}.custom-control-input:not(:disabled):active ~ .custom-control-label::before{color:#fff;background-color:#e6ecff;border-color:#e6ecff}.custom-control-input:disabled ~ .custom-control-label{color:#7987a1}.custom-control-input:disabled ~ .custom-control-label::before{background-color:#e3e7ed}.custom-control-label{position:relative;margin-bottom:0;vertical-align:top}.custom-control-label::before{position:absolute;top:.15625rem;left:-1.5rem;display:block;width:1rem;height:1rem;pointer-events:none;content:"";background-color:#fff;border:#97a3b9 solid 1px}.custom-control-label::after{position:absolute;top:.15625rem;left:-1.5rem;display:block;width:1rem;height:1rem;content:"";background:no-repeat 50% / 50% 50%}.custom-checkbox .custom-control-label::before{border-radius:3px}.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e")}.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before{border-color:#36f;background-color:#36f}.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3e%3cpath stroke='%23fff' d='M0 2h4'/%3e%3c/svg%3e")}.custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before{background-color:rgba(51,102,255,0.5)}.custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before{background-color:rgba(51,102,255,0.5)}.custom-radio .custom-control-label::before{border-radius:50%}.custom-radio .custom-control-input:checked ~ .custom-control-label::after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e")}.custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before{background-color:rgba(51,102,255,0.5)}.custom-switch{padding-left:2.25rem}.custom-switch .custom-control-label::before{left:-2.25rem;width:1.75rem;pointer-events:all;border-radius:.5rem}.custom-switch .custom-control-label::after{top:calc(.15625rem + 2px);left:calc(-2.25rem + 2px);width:calc(1rem - 4px);height:calc(1rem - 4px);background-color:#97a3b9;border-radius:.5rem;transition:transform 0.15s ease-in-out,background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out}@media (prefers-reduced-motion: reduce){.custom-switch .custom-control-label::after{transition:none}}.custom-switch .custom-control-input:checked ~ .custom-control-label::after{background-color:#fff;transform:translateX(.75rem)}.custom-switch .custom-control-input:disabled:checked ~ .custom-control-label::before{background-color:rgba(51,102,255,0.5)}.custom-select{display:inline-block;width:100%;height:calc(1.5em + .75rem + 2px);padding:.375rem 1.75rem .375rem .75rem;font-size:.875rem;font-weight:400;line-height:1.5;color:#596882;vertical-align:middle;background:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%233b4863' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right .75rem center/8px 10px;background-color:#fff;border:1px solid #cdd4e0;border-radius:3px;appearance:none}.custom-select:focus{border-color:#b3c6ff;outline:0;box-shadow:0 0 0 .2rem rgba(51,102,255,0.25)}.custom-select:focus::-ms-value{color:#596882;background-color:#fff}.custom-select[multiple],.custom-select[size]:not([size="1"]){height:auto;padding-right:.75rem;background-image:none}.custom-select:disabled{color:#7987a1;background-color:#e3e7ed}.custom-select::-ms-expand{display:none}.custom-select-sm{height:calc(1.5em + .5rem + 2px);padding-top:.25rem;padding-bottom:.25rem;padding-left:.5rem;font-size:.76562rem}.custom-select-lg{height:calc(1.5em + 1rem + 2px);padding-top:.5rem;padding-bottom:.5rem;padding-left:1rem;font-size:1.09375rem}.custom-file{position:relative;display:inline-block;width:100%;height:calc(1.5em + .75rem + 2px);margin-bottom:0}.custom-file-input{position:relative;z-index:2;width:100%;height:calc(1.5em + .75rem + 2px);margin:0;opacity:0}.custom-file-input:focus ~ .custom-file-label{border-color:#b3c6ff;box-shadow:0 0 0 .2rem rgba(51,102,255,0.25)}.custom-file-input:disabled ~ .custom-file-label{background-color:#e3e7ed}.custom-file-input:lang(en) ~ .custom-file-label::after{content:"Browse"}.custom-file-input ~ .custom-file-label[data-browse]::after{content:attr(data-browse)}.custom-file-label{position:absolute;top:0;right:0;left:0;z-index:1;height:calc(1.5em + .75rem + 2px);padding:.375rem .75rem;font-weight:400;line-height:1.5;color:#596882;background-color:#fff;border:1px solid #cdd4e0;border-radius:3px}.custom-file-label::after{position:absolute;top:0;right:0;bottom:0;z-index:3;display:block;height:calc(1.5em + .75rem);padding:.375rem .75rem;line-height:1.5;color:#596882;content:"Browse";background-color:#e3e7ed;border-left:inherit;border-radius:0 3px 3px 0}.custom-range{width:100%;height:calc(1rem + .4rem);padding:0;background-color:transparent;appearance:none}.custom-range:focus{outline:none}.custom-range:focus::-webkit-slider-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(51,102,255,0.25)}.custom-range:focus::-moz-range-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(51,102,255,0.25)}.custom-range:focus::-ms-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(51,102,255,0.25)}.custom-range::-moz-focus-outer{border:0}.custom-range::-webkit-slider-thumb{width:1rem;height:1rem;margin-top:-.25rem;background-color:#36f;border:0;border-radius:1rem;transition:background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out;appearance:none}@media (prefers-reduced-motion: reduce){.custom-range::-webkit-slider-thumb{transition:none}}.custom-range::-webkit-slider-thumb:active{background-color:#e6ecff}.custom-range::-webkit-slider-runnable-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#cdd4e0;border-color:transparent;border-radius:1rem}.custom-range::-moz-range-thumb{width:1rem;height:1rem;background-color:#36f;border:0;border-radius:1rem;transition:background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out;appearance:none}@media (prefers-reduced-motion: reduce){.custom-range::-moz-range-thumb{transition:none}}.custom-range::-moz-range-thumb:active{background-color:#e6ecff}.custom-range::-moz-range-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#cdd4e0;border-color:transparent;border-radius:1rem}.custom-range::-ms-thumb{width:1rem;height:1rem;margin-top:0;margin-right:.2rem;margin-left:.2rem;background-color:#36f;border:0;border-radius:1rem;transition:background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out;appearance:none}@media (prefers-reduced-motion: reduce){.custom-range::-ms-thumb{transition:none}}.custom-range::-ms-thumb:active{background-color:#e6ecff}.custom-range::-ms-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:transparent;border-color:transparent;border-width:.5rem}.custom-range::-ms-fill-lower{background-color:#cdd4e0;border-radius:1rem}.custom-range::-ms-fill-upper{margin-right:15px;background-color:#cdd4e0;border-radius:1rem}.custom-range:disabled::-webkit-slider-thumb{background-color:#97a3b9}.custom-range:disabled::-webkit-slider-runnable-track{cursor:default}.custom-range:disabled::-moz-range-thumb{background-color:#97a3b9}.custom-range:disabled::-moz-range-track{cursor:default}.custom-range:disabled::-ms-thumb{background-color:#97a3b9}.custom-control-label::before,.custom-file-label,.custom-select{transition:background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out}@media (prefers-reduced-motion: reduce){.custom-control-label::before,.custom-file-label,.custom-select{transition:none}}.nav{display:flex;flex-wrap:wrap;padding-left:0;margin-bottom:0;list-style:none}.nav-link{display:block;padding:.5rem 1rem}.nav-link:hover,.nav-link:focus{text-decoration:none}.nav-link.disabled{color:#7987a1;pointer-events:none;cursor:default}.nav-tabs{border-bottom:1px solid #cdd4e0}.nav-tabs .nav-item{margin-bottom:-1px}.nav-tabs .nav-link{border:1px solid transparent;border-top-left-radius:3px;border-top-right-radius:3px}.nav-tabs .nav-link:hover,.nav-tabs .nav-link:focus{border-color:#e3e7ed #e3e7ed #cdd4e0}.nav-tabs .nav-link.disabled{color:#7987a1;background-color:transparent;border-color:transparent}.nav-tabs .nav-link.active,.nav-tabs .nav-item.show .nav-link{color:#596882;background-color:#fff;border-color:#cdd4e0 #cdd4e0 #fff}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.nav-pills .nav-link{border-radius:3px}.nav-pills .nav-link.active,.nav-pills .show>.nav-link{color:#fff;background-color:#36f}.nav-fill .nav-item{flex:1 1 auto;text-align:center}.nav-justified .nav-item{flex-basis:0;flex-grow:1;text-align:center}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.navbar{position:relative;display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;padding:.5rem 1rem}.navbar>.container,.navbar>.container-fluid{display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between}.navbar-brand{display:inline-block;padding-top:.33594rem;padding-bottom:.33594rem;margin-right:1rem;font-size:1.09375rem;line-height:inherit;white-space:nowrap}.navbar-brand:hover,.navbar-brand:focus{text-decoration:none}.navbar-nav{display:flex;flex-direction:column;padding-left:0;margin-bottom:0;list-style:none}.navbar-nav .nav-link{padding-right:0;padding-left:0}.navbar-nav .dropdown-menu{position:static;float:none}.navbar-text{display:inline-block;padding-top:.5rem;padding-bottom:.5rem}.navbar-collapse{flex-basis:100%;flex-grow:1;align-items:center}.navbar-toggler{padding:.25rem .75rem;font-size:1.09375rem;line-height:1;background-color:transparent;border:1px solid transparent;border-radius:3px}.navbar-toggler:hover,.navbar-toggler:focus{text-decoration:none}.navbar-toggler-icon{display:inline-block;width:1.5em;height:1.5em;vertical-align:middle;content:"";background:no-repeat center center;background-size:100% 100%}@media (max-width: 575.98px){.navbar-expand-sm>.container,.navbar-expand-sm>.container-fluid{padding-right:0;padding-left:0}}@media (min-width: 576px){.navbar-expand-sm{flex-flow:row nowrap;justify-content:flex-start}.navbar-expand-sm .navbar-nav{flex-direction:row}.navbar-expand-sm .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-sm .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-sm>.container,.navbar-expand-sm>.container-fluid{flex-wrap:nowrap}.navbar-expand-sm .navbar-collapse{display:flex !important;flex-basis:auto}.navbar-expand-sm .navbar-toggler{display:none}}@media (max-width: 767.98px){.navbar-expand-md>.container,.navbar-expand-md>.container-fluid{padding-right:0;padding-left:0}}@media (min-width: 768px){.navbar-expand-md{flex-flow:row nowrap;justify-content:flex-start}.navbar-expand-md .navbar-nav{flex-direction:row}.navbar-expand-md .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-md .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-md>.container,.navbar-expand-md>.container-fluid{flex-wrap:nowrap}.navbar-expand-md .navbar-collapse{display:flex !important;flex-basis:auto}.navbar-expand-md .navbar-toggler{display:none}}@media (max-width: 991.98px){.navbar-expand-lg>.container,.navbar-expand-lg>.container-fluid{padding-right:0;padding-left:0}}@media (min-width: 992px){.navbar-expand-lg{flex-flow:row nowrap;justify-content:flex-start}.navbar-expand-lg .navbar-nav{flex-direction:row}.navbar-expand-lg .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-lg .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-lg>.container,.navbar-expand-lg>.container-fluid{flex-wrap:nowrap}.navbar-expand-lg .navbar-collapse{display:flex !important;flex-basis:auto}.navbar-expand-lg .navbar-toggler{display:none}}@media (max-width: 1199.98px){.navbar-expand-xl>.container,.navbar-expand-xl>.container-fluid{padding-right:0;padding-left:0}}@media (min-width: 1200px){.navbar-expand-xl{flex-flow:row nowrap;justify-content:flex-start}.navbar-expand-xl .navbar-nav{flex-direction:row}.navbar-expand-xl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xl .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-xl>.container,.navbar-expand-xl>.container-fluid{flex-wrap:nowrap}.navbar-expand-xl .navbar-collapse{display:flex !important;flex-basis:auto}.navbar-expand-xl .navbar-toggler{display:none}}.navbar-expand{flex-flow:row nowrap;justify-content:flex-start}.navbar-expand>.container,.navbar-expand>.container-fluid{padding-right:0;padding-left:0}.navbar-expand .navbar-nav{flex-direction:row}.navbar-expand .navbar-nav .dropdown-menu{position:absolute}.navbar-expand .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand>.container,.navbar-expand>.container-fluid{flex-wrap:nowrap}.navbar-expand .navbar-collapse{display:flex !important;flex-basis:auto}.navbar-expand .navbar-toggler{display:none}.navbar-light .navbar-brand{color:rgba(0,0,0,0.9)}.navbar-light .navbar-brand:hover,.navbar-light .navbar-brand:focus{color:rgba(0,0,0,0.9)}.navbar-light .navbar-nav .nav-link{color:rgba(0,0,0,0.5)}.navbar-light .navbar-nav .nav-link:hover,.navbar-light .navbar-nav .nav-link:focus{color:rgba(0,0,0,0.7)}.navbar-light .navbar-nav .nav-link.disabled{color:rgba(0,0,0,0.3)}.navbar-light .navbar-nav .show>.nav-link,.navbar-light .navbar-nav .active>.nav-link,.navbar-light .navbar-nav .nav-link.show,.navbar-light .navbar-nav .nav-link.active{color:rgba(0,0,0,0.9)}.navbar-light .navbar-toggler{color:rgba(0,0,0,0.5);border-color:rgba(0,0,0,0.1)}.navbar-light .navbar-toggler-icon{background-image:url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(0,0,0,0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}.navbar-light .navbar-text{color:rgba(0,0,0,0.5)}.navbar-light .navbar-text a{color:rgba(0,0,0,0.9)}.navbar-light .navbar-text a:hover,.navbar-light .navbar-text a:focus{color:rgba(0,0,0,0.9)}.navbar-dark .navbar-brand{color:#fff}.navbar-dark .navbar-brand:hover,.navbar-dark .navbar-brand:focus{color:#fff}.navbar-dark .navbar-nav .nav-link{color:rgba(255,255,255,0.5)}.navbar-dark .navbar-nav .nav-link:hover,.navbar-dark .navbar-nav .nav-link:focus{color:rgba(255,255,255,0.75)}.navbar-dark .navbar-nav .nav-link.disabled{color:rgba(255,255,255,0.25)}.navbar-dark .navbar-nav .show>.nav-link,.navbar-dark .navbar-nav .active>.nav-link,.navbar-dark .navbar-nav .nav-link.show,.navbar-dark .navbar-nav .nav-link.active{color:#fff}.navbar-dark .navbar-toggler{color:rgba(255,255,255,0.5);border-color:rgba(255,255,255,0.1)}.navbar-dark .navbar-toggler-icon{background-image:url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(255,255,255,0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}.navbar-dark .navbar-text{color:rgba(255,255,255,0.5)}.navbar-dark .navbar-text a{color:#fff}.navbar-dark .navbar-text a:hover,.navbar-dark .navbar-text a:focus{color:#fff}.card{position:relative;display:flex;flex-direction:column;min-width:0;word-wrap:break-word;background-color:#fff;background-clip:border-box;border:1px solid rgba(0,0,0,0.125);border-radius:3px}.card>hr{margin-right:0;margin-left:0}.card>.list-group:first-child .list-group-item:first-child{border-top-left-radius:3px;border-top-right-radius:3px}.card>.list-group:last-child .list-group-item:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.card-body{flex:1 1 auto;padding:1.25rem}.card-title{margin-bottom:.75rem}.card-subtitle{margin-top:-.375rem;margin-bottom:0}.card-text:last-child{margin-bottom:0}.card-link:hover{text-decoration:none}.card-link+.card-link{margin-left:1.25rem}.card-header{padding:.75rem 1.25rem;margin-bottom:0;background-color:rgba(0,0,0,0.03);border-bottom:1px solid rgba(0,0,0,0.125)}.card-header:first-child{border-radius:calc(3px - 1px) calc(3px - 1px) 0 0}.card-header+.list-group .list-group-item:first-child{border-top:0}.card-footer{padding:.75rem 1.25rem;background-color:rgba(0,0,0,0.03);border-top:1px solid rgba(0,0,0,0.125)}.card-footer:last-child{border-radius:0 0 calc(3px - 1px) calc(3px - 1px)}.card-header-tabs{margin-right:-.625rem;margin-bottom:-.75rem;margin-left:-.625rem;border-bottom:0}.card-header-pills{margin-right:-.625rem;margin-left:-.625rem}.card-img-overlay{position:absolute;top:0;right:0;bottom:0;left:0;padding:1.25rem}.card-img{width:100%;border-radius:calc(3px - 1px)}.card-img-top{width:100%;border-top-left-radius:calc(3px - 1px);border-top-right-radius:calc(3px - 1px)}.card-img-bottom{width:100%;border-bottom-right-radius:calc(3px - 1px);border-bottom-left-radius:calc(3px - 1px)}.card-deck{display:flex;flex-direction:column}.card-deck .card{margin-bottom:15px}@media (min-width: 576px){.card-deck{flex-flow:row wrap;margin-right:-15px;margin-left:-15px}.card-deck .card{display:flex;flex:1 0 0%;flex-direction:column;margin-right:15px;margin-bottom:0;margin-left:15px}}.card-group{display:flex;flex-direction:column}.card-group>.card{margin-bottom:15px}@media (min-width: 576px){.card-group{flex-flow:row wrap}.card-group>.card{flex:1 0 0%;margin-bottom:0}.card-group>.card+.card{margin-left:0;border-left:0}.card-group>.card:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.card-group>.card:not(:last-child) .card-img-top,.card-group>.card:not(:last-child) .card-header{border-top-right-radius:0}.card-group>.card:not(:last-child) .card-img-bottom,.card-group>.card:not(:last-child) .card-footer{border-bottom-right-radius:0}.card-group>.card:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.card-group>.card:not(:first-child) .card-img-top,.card-group>.card:not(:first-child) .card-header{border-top-left-radius:0}.card-group>.card:not(:first-child) .card-img-bottom,.card-group>.card:not(:first-child) .card-footer{border-bottom-left-radius:0}}.card-columns .card{margin-bottom:.75rem}@media (min-width: 576px){.card-columns{column-count:3;column-gap:1.25rem;orphans:1;widows:1}.card-columns .card{display:inline-block;width:100%}}.accordion>.card{overflow:hidden}.accordion>.card:not(:first-of-type) .card-header:first-child{border-radius:0}.accordion>.card:not(:first-of-type):not(:last-of-type){border-bottom:0;border-radius:0}.accordion>.card:first-of-type{border-bottom:0;border-bottom-right-radius:0;border-bottom-left-radius:0}.accordion>.card:last-of-type{border-top-left-radius:0;border-top-right-radius:0}.accordion>.card .card-header{margin-bottom:-1px}.breadcrumb{display:flex;flex-wrap:wrap;padding:.75rem 1rem;margin-bottom:1rem;list-style:none;background-color:#e3e7ed;border-radius:3px}.breadcrumb-item+.breadcrumb-item{padding-left:.5rem}.breadcrumb-item+.breadcrumb-item::before{display:inline-block;padding-right:.5rem;color:#7987a1;content:"/"}.breadcrumb-item+.breadcrumb-item:hover::before{text-decoration:underline}.breadcrumb-item+.breadcrumb-item:hover::before{text-decoration:none}.breadcrumb-item.active{color:#7987a1}.pagination{display:flex;padding-left:0;list-style:none;border-radius:3px}.page-link{position:relative;display:block;padding:.5rem .75rem;margin-left:-1px;line-height:1.25;color:#36f;background-color:#fff;border:1px solid #cdd4e0}.page-link:hover{z-index:2;color:#0039e6;text-decoration:none;background-color:#e3e7ed;border-color:#cdd4e0}.page-link:focus{z-index:2;outline:0;box-shadow:0 0 0 .2rem rgba(51,102,255,0.25)}.page-item:first-child .page-link{margin-left:0;border-top-left-radius:3px;border-bottom-left-radius:3px}.page-item:last-child .page-link{border-top-right-radius:3px;border-bottom-right-radius:3px}.page-item.active .page-link{z-index:1;color:#fff;background-color:#36f;border-color:#36f}.page-item.disabled .page-link{color:#7987a1;pointer-events:none;cursor:auto;background-color:#fff;border-color:#cdd4e0}.pagination-lg .page-link{padding:.75rem 1.5rem;font-size:1.09375rem;line-height:1.5}.pagination-lg .page-item:first-child .page-link{border-top-left-radius:.3rem;border-bottom-left-radius:.3rem}.pagination-lg .page-item:last-child .page-link{border-top-right-radius:.3rem;border-bottom-right-radius:.3rem}.pagination-sm .page-link{padding:.25rem .5rem;font-size:.76562rem;line-height:1.5}.pagination-sm .page-item:first-child .page-link{border-top-left-radius:.2rem;border-bottom-left-radius:.2rem}.pagination-sm .page-item:last-child .page-link{border-top-right-radius:.2rem;border-bottom-right-radius:.2rem}.badge{display:inline-block;padding:.25em .4em;font-size:75%;font-weight:700;line-height:1;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:3px;transition:color 0.15s ease-in-out,background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out}@media (prefers-reduced-motion: reduce){.badge{transition:none}}a.badge:hover,a.badge:focus{text-decoration:none}.badge:empty{display:none}.btn .badge,.sp-container button .badge{position:relative;top:-1px}.badge-pill{padding-right:.6em;padding-left:.6em;border-radius:10rem}.badge-primary{color:#fff;background-color:#36f}a.badge-primary:hover,a.badge-primary:focus{color:#fff;background-color:#0040ff}a.badge-primary:focus,a.badge-primary.focus{outline:0;box-shadow:0 0 0 .2rem rgba(51,102,255,0.5)}.badge-secondary{color:#fff;background-color:#7987a1}a.badge-secondary:hover,a.badge-secondary:focus{color:#fff;background-color:#5f6d88}a.badge-secondary:focus,a.badge-secondary.focus{outline:0;box-shadow:0 0 0 .2rem rgba(121,135,161,0.5)}.badge-success{color:#fff;background-color:#3bb001}a.badge-success:hover,a.badge-success:focus{color:#fff;background-color:#2a7d01}a.badge-success:focus,a.badge-success.focus{outline:0;box-shadow:0 0 0 .2rem rgba(59,176,1,0.5)}.badge-info{color:#fff;background-color:#17a2b8}a.badge-info:hover,a.badge-info:focus{color:#fff;background-color:#117a8b}a.badge-info:focus,a.badge-info.focus{outline:0;box-shadow:0 0 0 .2rem rgba(23,162,184,0.5)}.badge-warning{color:#1c273c;background-color:#ffc107}a.badge-warning:hover,a.badge-warning:focus{color:#1c273c;background-color:#d39e00}a.badge-warning:focus,a.badge-warning.focus{outline:0;box-shadow:0 0 0 .2rem rgba(255,193,7,0.5)}.badge-danger{color:#fff;background-color:#dc3545}a.badge-danger:hover,a.badge-danger:focus{color:#fff;background-color:#bd2130}a.badge-danger:focus,a.badge-danger.focus{outline:0;box-shadow:0 0 0 .2rem rgba(220,53,69,0.5)}.badge-light{color:#1c273c;background-color:#f4f5f8}a.badge-light:hover,a.badge-light:focus{color:#1c273c;background-color:#d5d9e4}a.badge-light:focus,a.badge-light.focus{outline:0;box-shadow:0 0 0 .2rem rgba(244,245,248,0.5)}.badge-dark{color:#fff;background-color:#3b4863}a.badge-dark:hover,a.badge-dark:focus{color:#fff;background-color:#283143}a.badge-dark:focus,a.badge-dark.focus{outline:0;box-shadow:0 0 0 .2rem rgba(59,72,99,0.5)}.jumbotron{padding:2rem 1rem;margin-bottom:2rem;background-color:#e3e7ed;border-radius:.3rem}@media (min-width: 576px){.jumbotron{padding:4rem 2rem}}.jumbotron-fluid{padding-right:0;padding-left:0;border-radius:0}.alert{position:relative;padding:.75rem 1.25rem;margin-bottom:1rem;border:1px solid transparent;border-radius:3px}.alert-heading{color:inherit}.alert-link{font-weight:700}.alert-dismissible{padding-right:3.8125rem}.alert-dismissible .close{position:absolute;top:0;right:0;padding:.75rem 1.25rem;color:inherit}.alert-primary{color:#1b3585;background-color:#d6e0ff;border-color:#c6d4ff}.alert-primary hr{border-top-color:#adc1ff}.alert-primary .alert-link{color:#12245b}.alert-secondary{color:#3f4654;background-color:#e4e7ec;border-color:#d9dde5}.alert-secondary hr{border-top-color:#cacfdb}.alert-secondary .alert-link{color:#292e37}.alert-success{color:#1f5c01;background-color:#d8efcc;border-color:#c8e9b8}.alert-success hr{border-top-color:#b9e3a5}.alert-success .alert-link{color:#0e2a00}.alert-info{color:#0c5460;background-color:#d1ecf1;border-color:#bee5eb}.alert-info hr{border-top-color:#abdde5}.alert-info .alert-link{color:#062c33}.alert-warning{color:#856404;background-color:#fff3cd;border-color:#ffeeba}.alert-warning hr{border-top-color:#ffe8a1}.alert-warning .alert-link{color:#533f03}.alert-danger{color:#721c24;background-color:#f8d7da;border-color:#f5c6cb}.alert-danger hr{border-top-color:#f1b0b7}.alert-danger .alert-link{color:#491217}.alert-light{color:#7f7f81;background-color:#fdfdfe;border-color:#fcfcfd}.alert-light hr{border-top-color:#ededf3}.alert-light .alert-link{color:#666667}.alert-dark{color:#1f2533;background-color:#d8dae0;border-color:#c8ccd3}.alert-dark hr{border-top-color:#babfc8}.alert-dark .alert-link{color:#0c0e13}@keyframes progress-bar-stripes{from{background-position:1rem 0}to{background-position:0 0}}.progress{display:flex;height:1rem;overflow:hidden;font-size:.65625rem;background-color:#e3e7ed;border-radius:3px}.progress-bar{display:flex;flex-direction:column;justify-content:center;color:#fff;text-align:center;white-space:nowrap;background-color:#36f;transition:width 0.6s ease}@media (prefers-reduced-motion: reduce){.progress-bar{transition:none}}.progress-bar-striped{background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-size:1rem 1rem}.progress-bar-animated{animation:progress-bar-stripes 1s linear infinite}@media (prefers-reduced-motion: reduce){.progress-bar-animated{animation:none}}.media{display:flex;align-items:flex-start}.media-body{flex:1}.list-group{display:flex;flex-direction:column;padding-left:0;margin-bottom:0}.list-group-item-action{width:100%;color:#596882;text-align:inherit}.list-group-item-action:hover,.list-group-item-action:focus{z-index:1;color:#596882;text-decoration:none;background-color:#f4f5f8}.list-group-item-action:active{color:#031b4e;background-color:#e3e7ed}.list-group-item{position:relative;display:block;padding:.75rem 1.25rem;margin-bottom:-1px;background-color:#fff;border:1px solid rgba(0,0,0,0.125)}.list-group-item:first-child{border-top-left-radius:3px;border-top-right-radius:3px}.list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.list-group-item.disabled,.list-group-item:disabled{color:#7987a1;pointer-events:none;background-color:#fff}.list-group-item.active{z-index:2;color:#fff;background-color:#36f;border-color:#36f}.list-group-horizontal{flex-direction:row}.list-group-horizontal .list-group-item{margin-right:-1px;margin-bottom:0}.list-group-horizontal .list-group-item:first-child{border-top-left-radius:3px;border-bottom-left-radius:3px;border-top-right-radius:0}.list-group-horizontal .list-group-item:last-child{margin-right:0;border-top-right-radius:3px;border-bottom-right-radius:3px;border-bottom-left-radius:0}@media (min-width: 576px){.list-group-horizontal-sm{flex-direction:row}.list-group-horizontal-sm .list-group-item{margin-right:-1px;margin-bottom:0}.list-group-horizontal-sm .list-group-item:first-child{border-top-left-radius:3px;border-bottom-left-radius:3px;border-top-right-radius:0}.list-group-horizontal-sm .list-group-item:last-child{margin-right:0;border-top-right-radius:3px;border-bottom-right-radius:3px;border-bottom-left-radius:0}}@media (min-width: 768px){.list-group-horizontal-md{flex-direction:row}.list-group-horizontal-md .list-group-item{margin-right:-1px;margin-bottom:0}.list-group-horizontal-md .list-group-item:first-child{border-top-left-radius:3px;border-bottom-left-radius:3px;border-top-right-radius:0}.list-group-horizontal-md .list-group-item:last-child{margin-right:0;border-top-right-radius:3px;border-bottom-right-radius:3px;border-bottom-left-radius:0}}@media (min-width: 992px){.list-group-horizontal-lg{flex-direction:row}.list-group-horizontal-lg .list-group-item{margin-right:-1px;margin-bottom:0}.list-group-horizontal-lg .list-group-item:first-child{border-top-left-radius:3px;border-bottom-left-radius:3px;border-top-right-radius:0}.list-group-horizontal-lg .list-group-item:last-child{margin-right:0;border-top-right-radius:3px;border-bottom-right-radius:3px;border-bottom-left-radius:0}}@media (min-width: 1200px){.list-group-horizontal-xl{flex-direction:row}.list-group-horizontal-xl .list-group-item{margin-right:-1px;margin-bottom:0}.list-group-horizontal-xl .list-group-item:first-child{border-top-left-radius:3px;border-bottom-left-radius:3px;border-top-right-radius:0}.list-group-horizontal-xl .list-group-item:last-child{margin-right:0;border-top-right-radius:3px;border-bottom-right-radius:3px;border-bottom-left-radius:0}}.list-group-flush .list-group-item{border-right:0;border-left:0;border-radius:0}.list-group-flush .list-group-item:last-child{margin-bottom:-1px}.list-group-flush:first-child .list-group-item:first-child{border-top:0}.list-group-flush:last-child .list-group-item:last-child{margin-bottom:0;border-bottom:0}.list-group-item-primary{color:#1b3585;background-color:#c6d4ff}.list-group-item-primary.list-group-item-action:hover,.list-group-item-primary.list-group-item-action:focus{color:#1b3585;background-color:#adc1ff}.list-group-item-primary.list-group-item-action.active{color:#fff;background-color:#1b3585;border-color:#1b3585}.list-group-item-secondary{color:#3f4654;background-color:#d9dde5}.list-group-item-secondary.list-group-item-action:hover,.list-group-item-secondary.list-group-item-action:focus{color:#3f4654;background-color:#cacfdb}.list-group-item-secondary.list-group-item-action.active{color:#fff;background-color:#3f4654;border-color:#3f4654}.list-group-item-success{color:#1f5c01;background-color:#c8e9b8}.list-group-item-success.list-group-item-action:hover,.list-group-item-success.list-group-item-action:focus{color:#1f5c01;background-color:#b9e3a5}.list-group-item-success.list-group-item-action.active{color:#fff;background-color:#1f5c01;border-color:#1f5c01}.list-group-item-info{color:#0c5460;background-color:#bee5eb}.list-group-item-info.list-group-item-action:hover,.list-group-item-info.list-group-item-action:focus{color:#0c5460;background-color:#abdde5}.list-group-item-info.list-group-item-action.active{color:#fff;background-color:#0c5460;border-color:#0c5460}.list-group-item-warning{color:#856404;background-color:#ffeeba}.list-group-item-warning.list-group-item-action:hover,.list-group-item-warning.list-group-item-action:focus{color:#856404;background-color:#ffe8a1}.list-group-item-warning.list-group-item-action.active{color:#fff;background-color:#856404;border-color:#856404}.list-group-item-danger{color:#721c24;background-color:#f5c6cb}.list-group-item-danger.list-group-item-action:hover,.list-group-item-danger.list-group-item-action:focus{color:#721c24;background-color:#f1b0b7}.list-group-item-danger.list-group-item-action.active{color:#fff;background-color:#721c24;border-color:#721c24}.list-group-item-light{color:#7f7f81;background-color:#fcfcfd}.list-group-item-light.list-group-item-action:hover,.list-group-item-light.list-group-item-action:focus{color:#7f7f81;background-color:#ededf3}.list-group-item-light.list-group-item-action.active{color:#fff;background-color:#7f7f81;border-color:#7f7f81}.list-group-item-dark{color:#1f2533;background-color:#c8ccd3}.list-group-item-dark.list-group-item-action:hover,.list-group-item-dark.list-group-item-action:focus{color:#1f2533;background-color:#babfc8}.list-group-item-dark.list-group-item-action.active{color:#fff;background-color:#1f2533;border-color:#1f2533}.close{float:right;font-size:1.3125rem;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.5}.close:hover{color:#000;text-decoration:none}.close:not(:disabled):not(.disabled):hover,.close:not(:disabled):not(.disabled):focus{opacity:.75}button.close{padding:0;background-color:transparent;border:0;appearance:none}a.close.disabled{pointer-events:none}.toast{max-width:350px;overflow:hidden;font-size:.875rem;background-color:rgba(255,255,255,0.85);background-clip:padding-box;border:1px solid rgba(0,0,0,0.1);box-shadow:0 0.25rem 0.75rem rgba(0,0,0,0.1);backdrop-filter:blur(10px);opacity:0;border-radius:.25rem}.toast:not(:last-child){margin-bottom:.75rem}.toast.showing{opacity:1}.toast.show{display:block;opacity:1}.toast.hide{display:none}.toast-header{display:flex;align-items:center;padding:.25rem .75rem;color:#7987a1;background-color:rgba(255,255,255,0.85);background-clip:padding-box;border-bottom:1px solid rgba(0,0,0,0.05)}.toast-body{padding:.75rem}.modal-open{overflow:hidden}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal{position:fixed;top:0;left:0;z-index:1050;display:none;width:100%;height:100%;overflow:hidden;outline:0}.modal-dialog{position:relative;width:auto;margin:.5rem;pointer-events:none}.modal.fade .modal-dialog{transition:transform 0.3s ease-out;transform:translate(0, -50px)}@media (prefers-reduced-motion: reduce){.modal.fade .modal-dialog{transition:none}}.modal.show .modal-dialog{transform:none}.modal-dialog-scrollable{display:flex;max-height:calc(100% - 1rem)}.modal-dialog-scrollable .modal-content{max-height:calc(100vh - 1rem);overflow:hidden}.modal-dialog-scrollable .modal-header,.modal-dialog-scrollable .modal-footer{flex-shrink:0}.modal-dialog-scrollable .modal-body{overflow-y:auto}.modal-dialog-centered{display:flex;align-items:center;min-height:calc(100% - 1rem)}.modal-dialog-centered::before{display:block;height:calc(100vh - 1rem);content:""}.modal-dialog-centered.modal-dialog-scrollable{flex-direction:column;justify-content:center;height:100%}.modal-dialog-centered.modal-dialog-scrollable .modal-content{max-height:none}.modal-dialog-centered.modal-dialog-scrollable::before{content:none}.modal-content{position:relative;display:flex;flex-direction:column;width:100%;pointer-events:auto;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,0.2);border-radius:.3rem;outline:0}.modal-backdrop{position:fixed;top:0;left:0;z-index:1040;width:100vw;height:100vh;background-color:#000}.modal-backdrop.fade{opacity:0}.modal-backdrop.show{opacity:.5}.modal-header{display:flex;align-items:flex-start;justify-content:space-between;padding:1rem 1rem;border-bottom:1px solid #cdd4e0;border-top-left-radius:.3rem;border-top-right-radius:.3rem}.modal-header .close{padding:1rem 1rem;margin:-1rem -1rem -1rem auto}.modal-title{margin-bottom:0;line-height:1.5}.modal-body{position:relative;flex:1 1 auto;padding:1rem}.modal-footer{display:flex;align-items:center;justify-content:flex-end;padding:1rem;border-top:1px solid #cdd4e0;border-bottom-right-radius:.3rem;border-bottom-left-radius:.3rem}.modal-footer>:not(:first-child){margin-left:.25rem}.modal-footer>:not(:last-child){margin-right:.25rem}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width: 576px){.modal-dialog{max-width:500px;margin:1.75rem auto}.modal-dialog-scrollable{max-height:calc(100% - 3.5rem)}.modal-dialog-scrollable .modal-content{max-height:calc(100vh - 3.5rem)}.modal-dialog-centered{min-height:calc(100% - 3.5rem)}.modal-dialog-centered::before{height:calc(100vh - 3.5rem)}.modal-sm{max-width:300px}}@media (min-width: 992px){.modal-lg,.modal-xl{max-width:800px}}@media (min-width: 1200px){.modal-xl{max-width:1140px}}.tooltip{position:absolute;z-index:1070;display:block;margin:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.76562rem;word-wrap:break-word;opacity:0}.tooltip.show{opacity:.9}.tooltip .arrow{position:absolute;display:block;width:.8rem;height:.4rem}.tooltip .arrow::before{position:absolute;content:"";border-color:transparent;border-style:solid}.bs-tooltip-top,.bs-tooltip-auto[x-placement^="top"]{padding:.4rem 0}.bs-tooltip-top .arrow,.bs-tooltip-auto[x-placement^="top"] .arrow{bottom:0}.bs-tooltip-top .arrow::before,.bs-tooltip-auto[x-placement^="top"] .arrow::before{top:0;border-width:.4rem .4rem 0;border-top-color:#000}.bs-tooltip-right,.bs-tooltip-auto[x-placement^="right"]{padding:0 .4rem}.bs-tooltip-right .arrow,.bs-tooltip-auto[x-placement^="right"] .arrow{left:0;width:.4rem;height:.8rem}.bs-tooltip-right .arrow::before,.bs-tooltip-auto[x-placement^="right"] .arrow::before{right:0;border-width:.4rem .4rem .4rem 0;border-right-color:#000}.bs-tooltip-bottom,.bs-tooltip-auto[x-placement^="bottom"]{padding:.4rem 0}.bs-tooltip-bottom .arrow,.bs-tooltip-auto[x-placement^="bottom"] .arrow{top:0}.bs-tooltip-bottom .arrow::before,.bs-tooltip-auto[x-placement^="bottom"] .arrow::before{bottom:0;border-width:0 .4rem .4rem;border-bottom-color:#000}.bs-tooltip-left,.bs-tooltip-auto[x-placement^="left"]{padding:0 .4rem}.bs-tooltip-left .arrow,.bs-tooltip-auto[x-placement^="left"] .arrow{right:0;width:.4rem;height:.8rem}.bs-tooltip-left .arrow::before,.bs-tooltip-auto[x-placement^="left"] .arrow::before{left:0;border-width:.4rem 0 .4rem .4rem;border-left-color:#000}.tooltip-inner{max-width:200px;padding:.25rem .5rem;color:#fff;text-align:center;background-color:#000;border-radius:3px}.popover{position:absolute;top:0;left:0;z-index:1060;display:block;max-width:276px;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.76562rem;word-wrap:break-word;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,0.2);border-radius:.3rem}.popover .arrow{position:absolute;display:block;width:1rem;height:.5rem;margin:0 .3rem}.popover .arrow::before,.popover .arrow::after{position:absolute;display:block;content:"";border-color:transparent;border-style:solid}.bs-popover-top,.bs-popover-auto[x-placement^="top"]{margin-bottom:.5rem}.bs-popover-top>.arrow,.bs-popover-auto[x-placement^="top"]>.arrow{bottom:calc((.5rem + 1px) * -1)}.bs-popover-top>.arrow::before,.bs-popover-auto[x-placement^="top"]>.arrow::before{bottom:0;border-width:.5rem .5rem 0;border-top-color:rgba(0,0,0,0.25)}.bs-popover-top>.arrow::after,.bs-popover-auto[x-placement^="top"]>.arrow::after{bottom:1px;border-width:.5rem .5rem 0;border-top-color:#fff}.bs-popover-right,.bs-popover-auto[x-placement^="right"]{margin-left:.5rem}.bs-popover-right>.arrow,.bs-popover-auto[x-placement^="right"]>.arrow{left:calc((.5rem + 1px) * -1);width:.5rem;height:1rem;margin:.3rem 0}.bs-popover-right>.arrow::before,.bs-popover-auto[x-placement^="right"]>.arrow::before{left:0;border-width:.5rem .5rem .5rem 0;border-right-color:rgba(0,0,0,0.25)}.bs-popover-right>.arrow::after,.bs-popover-auto[x-placement^="right"]>.arrow::after{left:1px;border-width:.5rem .5rem .5rem 0;border-right-color:#fff}.bs-popover-bottom,.bs-popover-auto[x-placement^="bottom"]{margin-top:.5rem}.bs-popover-bottom>.arrow,.bs-popover-auto[x-placement^="bottom"]>.arrow{top:calc((.5rem + 1px) * -1)}.bs-popover-bottom>.arrow::before,.bs-popover-auto[x-placement^="bottom"]>.arrow::before{top:0;border-width:0 .5rem .5rem .5rem;border-bottom-color:rgba(0,0,0,0.25)}.bs-popover-bottom>.arrow::after,.bs-popover-auto[x-placement^="bottom"]>.arrow::after{top:1px;border-width:0 .5rem .5rem .5rem;border-bottom-color:#fff}.bs-popover-bottom .popover-header::before,.bs-popover-auto[x-placement^="bottom"] .popover-header::before{position:absolute;top:0;left:50%;display:block;width:1rem;margin-left:-.5rem;content:"";border-bottom:1px solid #f7f7f7}.bs-popover-left,.bs-popover-auto[x-placement^="left"]{margin-right:.5rem}.bs-popover-left>.arrow,.bs-popover-auto[x-placement^="left"]>.arrow{right:calc((.5rem + 1px) * -1);width:.5rem;height:1rem;margin:.3rem 0}.bs-popover-left>.arrow::before,.bs-popover-auto[x-placement^="left"]>.arrow::before{right:0;border-width:.5rem 0 .5rem .5rem;border-left-color:rgba(0,0,0,0.25)}.bs-popover-left>.arrow::after,.bs-popover-auto[x-placement^="left"]>.arrow::after{right:1px;border-width:.5rem 0 .5rem .5rem;border-left-color:#fff}.popover-header{padding:.5rem .75rem;margin-bottom:0;font-size:.875rem;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-top-left-radius:calc(.3rem - 1px);border-top-right-radius:calc(.3rem - 1px)}.popover-header:empty{display:none}.popover-body{padding:.5rem .75rem;color:#031b4e}.carousel{position:relative}.carousel.pointer-event{touch-action:pan-y}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner::after{display:block;clear:both;content:""}.carousel-item{position:relative;display:none;float:left;width:100%;margin-right:-100%;backface-visibility:hidden;transition:transform .6s ease-in-out}@media (prefers-reduced-motion: reduce){.carousel-item{transition:none}}.carousel-item.active,.carousel-item-next,.carousel-item-prev{display:block}.carousel-item-next:not(.carousel-item-left),.active.carousel-item-right{transform:translateX(100%)}.carousel-item-prev:not(.carousel-item-right),.active.carousel-item-left{transform:translateX(-100%)}.carousel-fade .carousel-item{opacity:0;transition-property:opacity;transform:none}.carousel-fade .carousel-item.active,.carousel-fade .carousel-item-next.carousel-item-left,.carousel-fade .carousel-item-prev.carousel-item-right{z-index:1;opacity:1}.carousel-fade .active.carousel-item-left,.carousel-fade .active.carousel-item-right{z-index:0;opacity:0;transition:0s .6s opacity}@media (prefers-reduced-motion: reduce){.carousel-fade .active.carousel-item-left,.carousel-fade .active.carousel-item-right{transition:none}}.carousel-control-prev,.carousel-control-next{position:absolute;top:0;bottom:0;z-index:1;display:flex;align-items:center;justify-content:center;width:15%;color:#fff;text-align:center;opacity:.5;transition:opacity 0.15s ease}@media (prefers-reduced-motion: reduce){.carousel-control-prev,.carousel-control-next{transition:none}}.carousel-control-prev:hover,.carousel-control-prev:focus,.carousel-control-next:hover,.carousel-control-next:focus{color:#fff;text-decoration:none;outline:0;opacity:.9}.carousel-control-prev{left:0}.carousel-control-next{right:0}.carousel-control-prev-icon,.carousel-control-next-icon{display:inline-block;width:20px;height:20px;background:no-repeat 50% / 100% 100%}.carousel-control-prev-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3e%3c/svg%3e")}.carousel-control-next-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3e%3c/svg%3e")}.carousel-indicators{position:absolute;right:0;bottom:0;left:0;z-index:15;display:flex;justify-content:center;padding-left:0;margin-right:15%;margin-left:15%;list-style:none}.carousel-indicators li{box-sizing:content-box;flex:0 1 auto;width:30px;height:3px;margin-right:3px;margin-left:3px;text-indent:-999px;cursor:pointer;background-color:#fff;background-clip:padding-box;border-top:10px solid transparent;border-bottom:10px solid transparent;opacity:.5;transition:opacity 0.6s ease}@media (prefers-reduced-motion: reduce){.carousel-indicators li{transition:none}}.carousel-indicators .active{opacity:1}.carousel-caption{position:absolute;right:15%;bottom:20px;left:15%;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center}@keyframes spinner-border{to{transform:rotate(360deg)}}.spinner-border{display:inline-block;width:2rem;height:2rem;vertical-align:text-bottom;border:.25em solid currentColor;border-right-color:transparent;border-radius:50%;animation:spinner-border .75s linear infinite}.spinner-border-sm{width:1rem;height:1rem;border-width:.2em}@keyframes spinner-grow{0%{transform:scale(0)}50%{opacity:1}}.spinner-grow{display:inline-block;width:2rem;height:2rem;vertical-align:text-bottom;background-color:currentColor;border-radius:50%;opacity:0;animation:spinner-grow .75s linear infinite}.spinner-grow-sm{width:1rem;height:1rem}.align-baseline{vertical-align:baseline !important}.align-top{vertical-align:top !important}.align-middle{vertical-align:middle !important}.align-bottom{vertical-align:bottom !important}.align-text-bottom{vertical-align:text-bottom !important}.align-text-top{vertical-align:text-top !important}.bg-primary{background-color:#36f !important}a.bg-primary:hover,a.bg-primary:focus,button.bg-primary:hover,button.bg-primary:focus{background-color:#0040ff !important}.bg-secondary{background-color:#7987a1 !important}a.bg-secondary:hover,a.bg-secondary:focus,button.bg-secondary:hover,button.bg-secondary:focus{background-color:#5f6d88 !important}.bg-success{background-color:#3bb001 !important}a.bg-success:hover,a.bg-success:focus,button.bg-success:hover,button.bg-success:focus{background-color:#2a7d01 !important}.bg-info{background-color:#17a2b8 !important}a.bg-info:hover,a.bg-info:focus,button.bg-info:hover,button.bg-info:focus{background-color:#117a8b !important}.bg-warning{background-color:#ffc107 !important}a.bg-warning:hover,a.bg-warning:focus,button.bg-warning:hover,button.bg-warning:focus{background-color:#d39e00 !important}.bg-danger{background-color:#dc3545 !important}a.bg-danger:hover,a.bg-danger:focus,button.bg-danger:hover,button.bg-danger:focus{background-color:#bd2130 !important}.bg-light{background-color:#f4f5f8 !important}a.bg-light:hover,a.bg-light:focus,button.bg-light:hover,button.bg-light:focus{background-color:#d5d9e4 !important}.bg-dark{background-color:#3b4863 !important}a.bg-dark:hover,a.bg-dark:focus,button.bg-dark:hover,button.bg-dark:focus{background-color:#283143 !important}.bg-white{background-color:#fff !important}.bg-transparent{background-color:transparent !important}.border{border:1px solid #cdd4e0 !important}.border-top{border-top:1px solid #cdd4e0 !important}.border-right{border-right:1px solid #cdd4e0 !important}.border-bottom{border-bottom:1px solid #cdd4e0 !important}.border-left{border-left:1px solid #cdd4e0 !important}.border-0{border:0 !important}.border-top-0{border-top:0 !important}.border-right-0{border-right:0 !important}.border-bottom-0{border-bottom:0 !important}.border-left-0{border-left:0 !important}.border-primary{border-color:#36f !important}.border-secondary{border-color:#7987a1 !important}.border-success{border-color:#3bb001 !important}.border-info{border-color:#17a2b8 !important}.border-warning{border-color:#ffc107 !important}.border-danger{border-color:#dc3545 !important}.border-light{border-color:#f4f5f8 !important}.border-dark{border-color:#3b4863 !important}.border-white{border-color:#fff !important}.rounded-sm{border-radius:.2rem !important}.rounded{border-radius:3px !important}.rounded-top{border-top-left-radius:3px !important;border-top-right-radius:3px !important}.rounded-right{border-top-right-radius:3px !important;border-bottom-right-radius:3px !important}.rounded-bottom{border-bottom-right-radius:3px !important;border-bottom-left-radius:3px !important}.rounded-left{border-top-left-radius:3px !important;border-bottom-left-radius:3px !important}.rounded-lg{border-radius:.3rem !important}.rounded-circle{border-radius:50% !important}.rounded-pill{border-radius:50rem !important}.rounded-0{border-radius:0 !important}.clearfix::after{display:block;clear:both;content:""}.d-none{display:none !important}.d-inline{display:inline !important}.d-inline-block{display:inline-block !important}.d-block{display:block !important}.d-table{display:table !important}.d-table-row{display:table-row !important}.d-table-cell{display:table-cell !important}.d-flex{display:flex !important}.d-inline-flex{display:inline-flex !important}@media (min-width: 576px){.d-sm-none{display:none !important}.d-sm-inline{display:inline !important}.d-sm-inline-block{display:inline-block !important}.d-sm-block{display:block !important}.d-sm-table{display:table !important}.d-sm-table-row{display:table-row !important}.d-sm-table-cell{display:table-cell !important}.d-sm-flex{display:flex !important}.d-sm-inline-flex{display:inline-flex !important}}@media (min-width: 768px){.d-md-none{display:none !important}.d-md-inline{display:inline !important}.d-md-inline-block{display:inline-block !important}.d-md-block{display:block !important}.d-md-table{display:table !important}.d-md-table-row{display:table-row !important}.d-md-table-cell{display:table-cell !important}.d-md-flex{display:flex !important}.d-md-inline-flex{display:inline-flex !important}}@media (min-width: 992px){.d-lg-none{display:none !important}.d-lg-inline{display:inline !important}.d-lg-inline-block{display:inline-block !important}.d-lg-block{display:block !important}.d-lg-table{display:table !important}.d-lg-table-row{display:table-row !important}.d-lg-table-cell{display:table-cell !important}.d-lg-flex{display:flex !important}.d-lg-inline-flex{display:inline-flex !important}}@media (min-width: 1200px){.d-xl-none{display:none !important}.d-xl-inline{display:inline !important}.d-xl-inline-block{display:inline-block !important}.d-xl-block{display:block !important}.d-xl-table{display:table !important}.d-xl-table-row{display:table-row !important}.d-xl-table-cell{display:table-cell !important}.d-xl-flex{display:flex !important}.d-xl-inline-flex{display:inline-flex !important}}@media print{.d-print-none{display:none !important}.d-print-inline{display:inline !important}.d-print-inline-block{display:inline-block !important}.d-print-block{display:block !important}.d-print-table{display:table !important}.d-print-table-row{display:table-row !important}.d-print-table-cell{display:table-cell !important}.d-print-flex{display:flex !important}.d-print-inline-flex{display:inline-flex !important}}.embed-responsive{position:relative;display:block;width:100%;padding:0;overflow:hidden}.embed-responsive::before{display:block;content:""}.embed-responsive .embed-responsive-item,.embed-responsive iframe,.embed-responsive embed,.embed-responsive object,.embed-responsive video{position:absolute;top:0;bottom:0;left:0;width:100%;height:100%;border:0}.embed-responsive-21by9::before{padding-top:42.85714%}.embed-responsive-16by9::before{padding-top:56.25%}.embed-responsive-4by3::before{padding-top:75%}.embed-responsive-1by1::before{padding-top:100%}.flex-row{flex-direction:row !important}.flex-column{flex-direction:column !important}.flex-row-reverse{flex-direction:row-reverse !important}.flex-column-reverse{flex-direction:column-reverse !important}.flex-wrap{flex-wrap:wrap !important}.flex-nowrap{flex-wrap:nowrap !important}.flex-wrap-reverse{flex-wrap:wrap-reverse !important}.flex-fill{flex:1 1 auto !important}.flex-grow-0{flex-grow:0 !important}.flex-grow-1{flex-grow:1 !important}.flex-shrink-0{flex-shrink:0 !important}.flex-shrink-1{flex-shrink:1 !important}.justify-content-start{justify-content:flex-start !important}.justify-content-end{justify-content:flex-end !important}.justify-content-center{justify-content:center !important}.justify-content-between{justify-content:space-between !important}.justify-content-around{justify-content:space-around !important}.align-items-start{align-items:flex-start !important}.align-items-end{align-items:flex-end !important}.align-items-center{align-items:center !important}.align-items-baseline{align-items:baseline !important}.align-items-stretch{align-items:stretch !important}.align-content-start{align-content:flex-start !important}.align-content-end{align-content:flex-end !important}.align-content-center{align-content:center !important}.align-content-between{align-content:space-between !important}.align-content-around{align-content:space-around !important}.align-content-stretch{align-content:stretch !important}.align-self-auto{align-self:auto !important}.align-self-start{align-self:flex-start !important}.align-self-end{align-self:flex-end !important}.align-self-center{align-self:center !important}.align-self-baseline{align-self:baseline !important}.align-self-stretch{align-self:stretch !important}@media (min-width: 576px){.flex-sm-row{flex-direction:row !important}.flex-sm-column{flex-direction:column !important}.flex-sm-row-reverse{flex-direction:row-reverse !important}.flex-sm-column-reverse{flex-direction:column-reverse !important}.flex-sm-wrap{flex-wrap:wrap !important}.flex-sm-nowrap{flex-wrap:nowrap !important}.flex-sm-wrap-reverse{flex-wrap:wrap-reverse !important}.flex-sm-fill{flex:1 1 auto !important}.flex-sm-grow-0{flex-grow:0 !important}.flex-sm-grow-1{flex-grow:1 !important}.flex-sm-shrink-0{flex-shrink:0 !important}.flex-sm-shrink-1{flex-shrink:1 !important}.justify-content-sm-start{justify-content:flex-start !important}.justify-content-sm-end{justify-content:flex-end !important}.justify-content-sm-center{justify-content:center !important}.justify-content-sm-between{justify-content:space-between !important}.justify-content-sm-around{justify-content:space-around !important}.align-items-sm-start{align-items:flex-start !important}.align-items-sm-end{align-items:flex-end !important}.align-items-sm-center{align-items:center !important}.align-items-sm-baseline{align-items:baseline !important}.align-items-sm-stretch{align-items:stretch !important}.align-content-sm-start{align-content:flex-start !important}.align-content-sm-end{align-content:flex-end !important}.align-content-sm-center{align-content:center !important}.align-content-sm-between{align-content:space-between !important}.align-content-sm-around{align-content:space-around !important}.align-content-sm-stretch{align-content:stretch !important}.align-self-sm-auto{align-self:auto !important}.align-self-sm-start{align-self:flex-start !important}.align-self-sm-end{align-self:flex-end !important}.align-self-sm-center{align-self:center !important}.align-self-sm-baseline{align-self:baseline !important}.align-self-sm-stretch{align-self:stretch !important}}@media (min-width: 768px){.flex-md-row{flex-direction:row !important}.flex-md-column{flex-direction:column !important}.flex-md-row-reverse{flex-direction:row-reverse !important}.flex-md-column-reverse{flex-direction:column-reverse !important}.flex-md-wrap{flex-wrap:wrap !important}.flex-md-nowrap{flex-wrap:nowrap !important}.flex-md-wrap-reverse{flex-wrap:wrap-reverse !important}.flex-md-fill{flex:1 1 auto !important}.flex-md-grow-0{flex-grow:0 !important}.flex-md-grow-1{flex-grow:1 !important}.flex-md-shrink-0{flex-shrink:0 !important}.flex-md-shrink-1{flex-shrink:1 !important}.justify-content-md-start{justify-content:flex-start !important}.justify-content-md-end{justify-content:flex-end !important}.justify-content-md-center{justify-content:center !important}.justify-content-md-between{justify-content:space-between !important}.justify-content-md-around{justify-content:space-around !important}.align-items-md-start{align-items:flex-start !important}.align-items-md-end{align-items:flex-end !important}.align-items-md-center{align-items:center !important}.align-items-md-baseline{align-items:baseline !important}.align-items-md-stretch{align-items:stretch !important}.align-content-md-start{align-content:flex-start !important}.align-content-md-end{align-content:flex-end !important}.align-content-md-center{align-content:center !important}.align-content-md-between{align-content:space-between !important}.align-content-md-around{align-content:space-around !important}.align-content-md-stretch{align-content:stretch !important}.align-self-md-auto{align-self:auto !important}.align-self-md-start{align-self:flex-start !important}.align-self-md-end{align-self:flex-end !important}.align-self-md-center{align-self:center !important}.align-self-md-baseline{align-self:baseline !important}.align-self-md-stretch{align-self:stretch !important}}@media (min-width: 992px){.flex-lg-row{flex-direction:row !important}.flex-lg-column{flex-direction:column !important}.flex-lg-row-reverse{flex-direction:row-reverse !important}.flex-lg-column-reverse{flex-direction:column-reverse !important}.flex-lg-wrap{flex-wrap:wrap !important}.flex-lg-nowrap{flex-wrap:nowrap !important}.flex-lg-wrap-reverse{flex-wrap:wrap-reverse !important}.flex-lg-fill{flex:1 1 auto !important}.flex-lg-grow-0{flex-grow:0 !important}.flex-lg-grow-1{flex-grow:1 !important}.flex-lg-shrink-0{flex-shrink:0 !important}.flex-lg-shrink-1{flex-shrink:1 !important}.justify-content-lg-start{justify-content:flex-start !important}.justify-content-lg-end{justify-content:flex-end !important}.justify-content-lg-center{justify-content:center !important}.justify-content-lg-between{justify-content:space-between !important}.justify-content-lg-around{justify-content:space-around !important}.align-items-lg-start{align-items:flex-start !important}.align-items-lg-end{align-items:flex-end !important}.align-items-lg-center{align-items:center !important}.align-items-lg-baseline{align-items:baseline !important}.align-items-lg-stretch{align-items:stretch !important}.align-content-lg-start{align-content:flex-start !important}.align-content-lg-end{align-content:flex-end !important}.align-content-lg-center{align-content:center !important}.align-content-lg-between{align-content:space-between !important}.align-content-lg-around{align-content:space-around !important}.align-content-lg-stretch{align-content:stretch !important}.align-self-lg-auto{align-self:auto !important}.align-self-lg-start{align-self:flex-start !important}.align-self-lg-end{align-self:flex-end !important}.align-self-lg-center{align-self:center !important}.align-self-lg-baseline{align-self:baseline !important}.align-self-lg-stretch{align-self:stretch !important}}@media (min-width: 1200px){.flex-xl-row{flex-direction:row !important}.flex-xl-column{flex-direction:column !important}.flex-xl-row-reverse{flex-direction:row-reverse !important}.flex-xl-column-reverse{flex-direction:column-reverse !important}.flex-xl-wrap{flex-wrap:wrap !important}.flex-xl-nowrap{flex-wrap:nowrap !important}.flex-xl-wrap-reverse{flex-wrap:wrap-reverse !important}.flex-xl-fill{flex:1 1 auto !important}.flex-xl-grow-0{flex-grow:0 !important}.flex-xl-grow-1{flex-grow:1 !important}.flex-xl-shrink-0{flex-shrink:0 !important}.flex-xl-shrink-1{flex-shrink:1 !important}.justify-content-xl-start{justify-content:flex-start !important}.justify-content-xl-end{justify-content:flex-end !important}.justify-content-xl-center{justify-content:center !important}.justify-content-xl-between{justify-content:space-between !important}.justify-content-xl-around{justify-content:space-around !important}.align-items-xl-start{align-items:flex-start !important}.align-items-xl-end{align-items:flex-end !important}.align-items-xl-center{align-items:center !important}.align-items-xl-baseline{align-items:baseline !important}.align-items-xl-stretch{align-items:stretch !important}.align-content-xl-start{align-content:flex-start !important}.align-content-xl-end{align-content:flex-end !important}.align-content-xl-center{align-content:center !important}.align-content-xl-between{align-content:space-between !important}.align-content-xl-around{align-content:space-around !important}.align-content-xl-stretch{align-content:stretch !important}.align-self-xl-auto{align-self:auto !important}.align-self-xl-start{align-self:flex-start !important}.align-self-xl-end{align-self:flex-end !important}.align-self-xl-center{align-self:center !important}.align-self-xl-baseline{align-self:baseline !important}.align-self-xl-stretch{align-self:stretch !important}}.float-left{float:left !important}.float-right{float:right !important}.float-none{float:none !important}@media (min-width: 576px){.float-sm-left{float:left !important}.float-sm-right{float:right !important}.float-sm-none{float:none !important}}@media (min-width: 768px){.float-md-left{float:left !important}.float-md-right{float:right !important}.float-md-none{float:none !important}}@media (min-width: 992px){.float-lg-left{float:left !important}.float-lg-right{float:right !important}.float-lg-none{float:none !important}}@media (min-width: 1200px){.float-xl-left{float:left !important}.float-xl-right{float:right !important}.float-xl-none{float:none !important}}.overflow-auto{overflow:auto !important}.overflow-hidden{overflow:hidden !important}.position-static{position:static !important}.position-relative{position:relative !important}.position-absolute{position:absolute !important}.position-fixed{position:fixed !important}.position-sticky{position:sticky !important}.fixed-top{position:fixed;top:0;right:0;left:0;z-index:1030}.fixed-bottom{position:fixed;right:0;bottom:0;left:0;z-index:1030}@supports (position: sticky){.sticky-top{position:sticky;top:0;z-index:1020}}.sr-only{position:absolute;width:1px;height:1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;overflow:visible;clip:auto;white-space:normal}.shadow-sm{box-shadow:0 0.125rem 0.25rem rgba(0,0,0,0.075) !important}.shadow{box-shadow:0 0.5rem 1rem rgba(0,0,0,0.15) !important}.shadow-lg{box-shadow:0 1rem 3rem rgba(0,0,0,0.175) !important}.shadow-none{box-shadow:none !important}.w-25{width:25% !important}.w-50{width:50% !important}.w-75{width:75% !important}.w-100{width:100% !important}.w-auto{width:auto !important}.h-25{height:25% !important}.h-50{height:50% !important}.h-75{height:75% !important}.h-100{height:100% !important}.h-auto{height:auto !important}.mw-100{max-width:100% !important}.mh-100{max-height:100% !important}.min-vw-100{min-width:100vw !important}.min-vh-100{min-height:100vh !important}.vw-100{width:100vw !important}.vh-100{height:100vh !important}.stretched-link::after{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;pointer-events:auto;content:"";background-color:rgba(0,0,0,0)}.m-0{margin:0 !important}.mt-0,.my-0{margin-top:0 !important}.mr-0,.mx-0{margin-right:0 !important}.mb-0,.my-0{margin-bottom:0 !important}.ml-0,.mx-0{margin-left:0 !important}.m-1{margin:.25rem !important}.mt-1,.my-1{margin-top:.25rem !important}.mr-1,.mx-1{margin-right:.25rem !important}.mb-1,.my-1{margin-bottom:.25rem !important}.ml-1,.mx-1{margin-left:.25rem !important}.m-2{margin:.5rem !important}.mt-2,.my-2{margin-top:.5rem !important}.mr-2,.mx-2{margin-right:.5rem !important}.mb-2,.my-2{margin-bottom:.5rem !important}.ml-2,.mx-2{margin-left:.5rem !important}.m-3{margin:1rem !important}.mt-3,.my-3{margin-top:1rem !important}.mr-3,.mx-3{margin-right:1rem !important}.mb-3,.my-3{margin-bottom:1rem !important}.ml-3,.mx-3{margin-left:1rem !important}.m-4{margin:1.5rem !important}.mt-4,.my-4{margin-top:1.5rem !important}.mr-4,.mx-4{margin-right:1.5rem !important}.mb-4,.my-4{margin-bottom:1.5rem !important}.ml-4,.mx-4{margin-left:1.5rem !important}.m-5{margin:3rem !important}.mt-5,.my-5{margin-top:3rem !important}.mr-5,.mx-5{margin-right:3rem !important}.mb-5,.my-5{margin-bottom:3rem !important}.ml-5,.mx-5{margin-left:3rem !important}.p-0{padding:0 !important}.pt-0,.py-0{padding-top:0 !important}.pr-0,.px-0{padding-right:0 !important}.pb-0,.py-0{padding-bottom:0 !important}.pl-0,.px-0{padding-left:0 !important}.p-1{padding:.25rem !important}.pt-1,.py-1{padding-top:.25rem !important}.pr-1,.px-1{padding-right:.25rem !important}.pb-1,.py-1{padding-bottom:.25rem !important}.pl-1,.px-1{padding-left:.25rem !important}.p-2{padding:.5rem !important}.pt-2,.py-2{padding-top:.5rem !important}.pr-2,.px-2{padding-right:.5rem !important}.pb-2,.py-2{padding-bottom:.5rem !important}.pl-2,.px-2{padding-left:.5rem !important}.p-3{padding:1rem !important}.pt-3,.py-3{padding-top:1rem !important}.pr-3,.px-3{padding-right:1rem !important}.pb-3,.py-3{padding-bottom:1rem !important}.pl-3,.px-3{padding-left:1rem !important}.p-4{padding:1.5rem !important}.pt-4,.py-4{padding-top:1.5rem !important}.pr-4,.px-4{padding-right:1.5rem !important}.pb-4,.py-4{padding-bottom:1.5rem !important}.pl-4,.px-4{padding-left:1.5rem !important}.p-5{padding:3rem !important}.pt-5,.py-5{padding-top:3rem !important}.pr-5,.px-5{padding-right:3rem !important}.pb-5,.py-5{padding-bottom:3rem !important}.pl-5,.px-5{padding-left:3rem !important}.m-n1{margin:-.25rem !important}.mt-n1,.my-n1{margin-top:-.25rem !important}.mr-n1,.mx-n1{margin-right:-.25rem !important}.mb-n1,.my-n1{margin-bottom:-.25rem !important}.ml-n1,.mx-n1{margin-left:-.25rem !important}.m-n2{margin:-.5rem !important}.mt-n2,.my-n2{margin-top:-.5rem !important}.mr-n2,.mx-n2{margin-right:-.5rem !important}.mb-n2,.my-n2{margin-bottom:-.5rem !important}.ml-n2,.mx-n2{margin-left:-.5rem !important}.m-n3{margin:-1rem !important}.mt-n3,.my-n3{margin-top:-1rem !important}.mr-n3,.mx-n3{margin-right:-1rem !important}.mb-n3,.my-n3{margin-bottom:-1rem !important}.ml-n3,.mx-n3{margin-left:-1rem !important}.m-n4{margin:-1.5rem !important}.mt-n4,.my-n4{margin-top:-1.5rem !important}.mr-n4,.mx-n4{margin-right:-1.5rem !important}.mb-n4,.my-n4{margin-bottom:-1.5rem !important}.ml-n4,.mx-n4{margin-left:-1.5rem !important}.m-n5{margin:-3rem !important}.mt-n5,.my-n5{margin-top:-3rem !important}.mr-n5,.mx-n5{margin-right:-3rem !important}.mb-n5,.my-n5{margin-bottom:-3rem !important}.ml-n5,.mx-n5{margin-left:-3rem !important}.m-auto{margin:auto !important}.mt-auto,.my-auto{margin-top:auto !important}.mr-auto,.mx-auto{margin-right:auto !important}.mb-auto,.my-auto{margin-bottom:auto !important}.ml-auto,.mx-auto{margin-left:auto !important}@media (min-width: 576px){.m-sm-0{margin:0 !important}.mt-sm-0,.my-sm-0{margin-top:0 !important}.mr-sm-0,.mx-sm-0{margin-right:0 !important}.mb-sm-0,.my-sm-0{margin-bottom:0 !important}.ml-sm-0,.mx-sm-0{margin-left:0 !important}.m-sm-1{margin:.25rem !important}.mt-sm-1,.my-sm-1{margin-top:.25rem !important}.mr-sm-1,.mx-sm-1{margin-right:.25rem !important}.mb-sm-1,.my-sm-1{margin-bottom:.25rem !important}.ml-sm-1,.mx-sm-1{margin-left:.25rem !important}.m-sm-2{margin:.5rem !important}.mt-sm-2,.my-sm-2{margin-top:.5rem !important}.mr-sm-2,.mx-sm-2{margin-right:.5rem !important}.mb-sm-2,.my-sm-2{margin-bottom:.5rem !important}.ml-sm-2,.mx-sm-2{margin-left:.5rem !important}.m-sm-3{margin:1rem !important}.mt-sm-3,.my-sm-3{margin-top:1rem !important}.mr-sm-3,.mx-sm-3{margin-right:1rem !important}.mb-sm-3,.my-sm-3{margin-bottom:1rem !important}.ml-sm-3,.mx-sm-3{margin-left:1rem !important}.m-sm-4{margin:1.5rem !important}.mt-sm-4,.my-sm-4{margin-top:1.5rem !important}.mr-sm-4,.mx-sm-4{margin-right:1.5rem !important}.mb-sm-4,.my-sm-4{margin-bottom:1.5rem !important}.ml-sm-4,.mx-sm-4{margin-left:1.5rem !important}.m-sm-5{margin:3rem !important}.mt-sm-5,.my-sm-5{margin-top:3rem !important}.mr-sm-5,.mx-sm-5{margin-right:3rem !important}.mb-sm-5,.my-sm-5{margin-bottom:3rem !important}.ml-sm-5,.mx-sm-5{margin-left:3rem !important}.p-sm-0{padding:0 !important}.pt-sm-0,.py-sm-0{padding-top:0 !important}.pr-sm-0,.px-sm-0{padding-right:0 !important}.pb-sm-0,.py-sm-0{padding-bottom:0 !important}.pl-sm-0,.px-sm-0{padding-left:0 !important}.p-sm-1{padding:.25rem !important}.pt-sm-1,.py-sm-1{padding-top:.25rem !important}.pr-sm-1,.px-sm-1{padding-right:.25rem !important}.pb-sm-1,.py-sm-1{padding-bottom:.25rem !important}.pl-sm-1,.px-sm-1{padding-left:.25rem !important}.p-sm-2{padding:.5rem !important}.pt-sm-2,.py-sm-2{padding-top:.5rem !important}.pr-sm-2,.px-sm-2{padding-right:.5rem !important}.pb-sm-2,.py-sm-2{padding-bottom:.5rem !important}.pl-sm-2,.px-sm-2{padding-left:.5rem !important}.p-sm-3{padding:1rem !important}.pt-sm-3,.py-sm-3{padding-top:1rem !important}.pr-sm-3,.px-sm-3{padding-right:1rem !important}.pb-sm-3,.py-sm-3{padding-bottom:1rem !important}.pl-sm-3,.px-sm-3{padding-left:1rem !important}.p-sm-4{padding:1.5rem !important}.pt-sm-4,.py-sm-4{padding-top:1.5rem !important}.pr-sm-4,.px-sm-4{padding-right:1.5rem !important}.pb-sm-4,.py-sm-4{padding-bottom:1.5rem !important}.pl-sm-4,.px-sm-4{padding-left:1.5rem !important}.p-sm-5{padding:3rem !important}.pt-sm-5,.py-sm-5{padding-top:3rem !important}.pr-sm-5,.px-sm-5{padding-right:3rem !important}.pb-sm-5,.py-sm-5{padding-bottom:3rem !important}.pl-sm-5,.px-sm-5{padding-left:3rem !important}.m-sm-n1{margin:-.25rem !important}.mt-sm-n1,.my-sm-n1{margin-top:-.25rem !important}.mr-sm-n1,.mx-sm-n1{margin-right:-.25rem !important}.mb-sm-n1,.my-sm-n1{margin-bottom:-.25rem !important}.ml-sm-n1,.mx-sm-n1{margin-left:-.25rem !important}.m-sm-n2{margin:-.5rem !important}.mt-sm-n2,.my-sm-n2{margin-top:-.5rem !important}.mr-sm-n2,.mx-sm-n2{margin-right:-.5rem !important}.mb-sm-n2,.my-sm-n2{margin-bottom:-.5rem !important}.ml-sm-n2,.mx-sm-n2{margin-left:-.5rem !important}.m-sm-n3{margin:-1rem !important}.mt-sm-n3,.my-sm-n3{margin-top:-1rem !important}.mr-sm-n3,.mx-sm-n3{margin-right:-1rem !important}.mb-sm-n3,.my-sm-n3{margin-bottom:-1rem !important}.ml-sm-n3,.mx-sm-n3{margin-left:-1rem !important}.m-sm-n4{margin:-1.5rem !important}.mt-sm-n4,.my-sm-n4{margin-top:-1.5rem !important}.mr-sm-n4,.mx-sm-n4{margin-right:-1.5rem !important}.mb-sm-n4,.my-sm-n4{margin-bottom:-1.5rem !important}.ml-sm-n4,.mx-sm-n4{margin-left:-1.5rem !important}.m-sm-n5{margin:-3rem !important}.mt-sm-n5,.my-sm-n5{margin-top:-3rem !important}.mr-sm-n5,.mx-sm-n5{margin-right:-3rem !important}.mb-sm-n5,.my-sm-n5{margin-bottom:-3rem !important}.ml-sm-n5,.mx-sm-n5{margin-left:-3rem !important}.m-sm-auto{margin:auto !important}.mt-sm-auto,.my-sm-auto{margin-top:auto !important}.mr-sm-auto,.mx-sm-auto{margin-right:auto !important}.mb-sm-auto,.my-sm-auto{margin-bottom:auto !important}.ml-sm-auto,.mx-sm-auto{margin-left:auto !important}}@media (min-width: 768px){.m-md-0{margin:0 !important}.mt-md-0,.my-md-0{margin-top:0 !important}.mr-md-0,.mx-md-0{margin-right:0 !important}.mb-md-0,.my-md-0{margin-bottom:0 !important}.ml-md-0,.mx-md-0{margin-left:0 !important}.m-md-1{margin:.25rem !important}.mt-md-1,.my-md-1{margin-top:.25rem !important}.mr-md-1,.mx-md-1{margin-right:.25rem !important}.mb-md-1,.my-md-1{margin-bottom:.25rem !important}.ml-md-1,.mx-md-1{margin-left:.25rem !important}.m-md-2{margin:.5rem !important}.mt-md-2,.my-md-2{margin-top:.5rem !important}.mr-md-2,.mx-md-2{margin-right:.5rem !important}.mb-md-2,.my-md-2{margin-bottom:.5rem !important}.ml-md-2,.mx-md-2{margin-left:.5rem !important}.m-md-3{margin:1rem !important}.mt-md-3,.my-md-3{margin-top:1rem !important}.mr-md-3,.mx-md-3{margin-right:1rem !important}.mb-md-3,.my-md-3{margin-bottom:1rem !important}.ml-md-3,.mx-md-3{margin-left:1rem !important}.m-md-4{margin:1.5rem !important}.mt-md-4,.my-md-4{margin-top:1.5rem !important}.mr-md-4,.mx-md-4{margin-right:1.5rem !important}.mb-md-4,.my-md-4{margin-bottom:1.5rem !important}.ml-md-4,.mx-md-4{margin-left:1.5rem !important}.m-md-5{margin:3rem !important}.mt-md-5,.my-md-5{margin-top:3rem !important}.mr-md-5,.mx-md-5{margin-right:3rem !important}.mb-md-5,.my-md-5{margin-bottom:3rem !important}.ml-md-5,.mx-md-5{margin-left:3rem !important}.p-md-0{padding:0 !important}.pt-md-0,.py-md-0{padding-top:0 !important}.pr-md-0,.px-md-0{padding-right:0 !important}.pb-md-0,.py-md-0{padding-bottom:0 !important}.pl-md-0,.px-md-0{padding-left:0 !important}.p-md-1{padding:.25rem !important}.pt-md-1,.py-md-1{padding-top:.25rem !important}.pr-md-1,.px-md-1{padding-right:.25rem !important}.pb-md-1,.py-md-1{padding-bottom:.25rem !important}.pl-md-1,.px-md-1{padding-left:.25rem !important}.p-md-2{padding:.5rem !important}.pt-md-2,.py-md-2{padding-top:.5rem !important}.pr-md-2,.px-md-2{padding-right:.5rem !important}.pb-md-2,.py-md-2{padding-bottom:.5rem !important}.pl-md-2,.px-md-2{padding-left:.5rem !important}.p-md-3{padding:1rem !important}.pt-md-3,.py-md-3{padding-top:1rem !important}.pr-md-3,.px-md-3{padding-right:1rem !important}.pb-md-3,.py-md-3{padding-bottom:1rem !important}.pl-md-3,.px-md-3{padding-left:1rem !important}.p-md-4{padding:1.5rem !important}.pt-md-4,.py-md-4{padding-top:1.5rem !important}.pr-md-4,.px-md-4{padding-right:1.5rem !important}.pb-md-4,.py-md-4{padding-bottom:1.5rem !important}.pl-md-4,.px-md-4{padding-left:1.5rem !important}.p-md-5{padding:3rem !important}.pt-md-5,.py-md-5{padding-top:3rem !important}.pr-md-5,.px-md-5{padding-right:3rem !important}.pb-md-5,.py-md-5{padding-bottom:3rem !important}.pl-md-5,.px-md-5{padding-left:3rem !important}.m-md-n1{margin:-.25rem !important}.mt-md-n1,.my-md-n1{margin-top:-.25rem !important}.mr-md-n1,.mx-md-n1{margin-right:-.25rem !important}.mb-md-n1,.my-md-n1{margin-bottom:-.25rem !important}.ml-md-n1,.mx-md-n1{margin-left:-.25rem !important}.m-md-n2{margin:-.5rem !important}.mt-md-n2,.my-md-n2{margin-top:-.5rem !important}.mr-md-n2,.mx-md-n2{margin-right:-.5rem !important}.mb-md-n2,.my-md-n2{margin-bottom:-.5rem !important}.ml-md-n2,.mx-md-n2{margin-left:-.5rem !important}.m-md-n3{margin:-1rem !important}.mt-md-n3,.my-md-n3{margin-top:-1rem !important}.mr-md-n3,.mx-md-n3{margin-right:-1rem !important}.mb-md-n3,.my-md-n3{margin-bottom:-1rem !important}.ml-md-n3,.mx-md-n3{margin-left:-1rem !important}.m-md-n4{margin:-1.5rem !important}.mt-md-n4,.my-md-n4{margin-top:-1.5rem !important}.mr-md-n4,.mx-md-n4{margin-right:-1.5rem !important}.mb-md-n4,.my-md-n4{margin-bottom:-1.5rem !important}.ml-md-n4,.mx-md-n4{margin-left:-1.5rem !important}.m-md-n5{margin:-3rem !important}.mt-md-n5,.my-md-n5{margin-top:-3rem !important}.mr-md-n5,.mx-md-n5{margin-right:-3rem !important}.mb-md-n5,.my-md-n5{margin-bottom:-3rem !important}.ml-md-n5,.mx-md-n5{margin-left:-3rem !important}.m-md-auto{margin:auto !important}.mt-md-auto,.my-md-auto{margin-top:auto !important}.mr-md-auto,.mx-md-auto{margin-right:auto !important}.mb-md-auto,.my-md-auto{margin-bottom:auto !important}.ml-md-auto,.mx-md-auto{margin-left:auto !important}}@media (min-width: 992px){.m-lg-0{margin:0 !important}.mt-lg-0,.my-lg-0{margin-top:0 !important}.mr-lg-0,.mx-lg-0{margin-right:0 !important}.mb-lg-0,.my-lg-0{margin-bottom:0 !important}.ml-lg-0,.mx-lg-0{margin-left:0 !important}.m-lg-1{margin:.25rem !important}.mt-lg-1,.my-lg-1{margin-top:.25rem !important}.mr-lg-1,.mx-lg-1{margin-right:.25rem !important}.mb-lg-1,.my-lg-1{margin-bottom:.25rem !important}.ml-lg-1,.mx-lg-1{margin-left:.25rem !important}.m-lg-2{margin:.5rem !important}.mt-lg-2,.my-lg-2{margin-top:.5rem !important}.mr-lg-2,.mx-lg-2{margin-right:.5rem !important}.mb-lg-2,.my-lg-2{margin-bottom:.5rem !important}.ml-lg-2,.mx-lg-2{margin-left:.5rem !important}.m-lg-3{margin:1rem !important}.mt-lg-3,.my-lg-3{margin-top:1rem !important}.mr-lg-3,.mx-lg-3{margin-right:1rem !important}.mb-lg-3,.my-lg-3{margin-bottom:1rem !important}.ml-lg-3,.mx-lg-3{margin-left:1rem !important}.m-lg-4{margin:1.5rem !important}.mt-lg-4,.my-lg-4{margin-top:1.5rem !important}.mr-lg-4,.mx-lg-4{margin-right:1.5rem !important}.mb-lg-4,.my-lg-4{margin-bottom:1.5rem !important}.ml-lg-4,.mx-lg-4{margin-left:1.5rem !important}.m-lg-5{margin:3rem !important}.mt-lg-5,.my-lg-5{margin-top:3rem !important}.mr-lg-5,.mx-lg-5{margin-right:3rem !important}.mb-lg-5,.my-lg-5{margin-bottom:3rem !important}.ml-lg-5,.mx-lg-5{margin-left:3rem !important}.p-lg-0{padding:0 !important}.pt-lg-0,.py-lg-0{padding-top:0 !important}.pr-lg-0,.px-lg-0{padding-right:0 !important}.pb-lg-0,.py-lg-0{padding-bottom:0 !important}.pl-lg-0,.px-lg-0{padding-left:0 !important}.p-lg-1{padding:.25rem !important}.pt-lg-1,.py-lg-1{padding-top:.25rem !important}.pr-lg-1,.px-lg-1{padding-right:.25rem !important}.pb-lg-1,.py-lg-1{padding-bottom:.25rem !important}.pl-lg-1,.px-lg-1{padding-left:.25rem !important}.p-lg-2{padding:.5rem !important}.pt-lg-2,.py-lg-2{padding-top:.5rem !important}.pr-lg-2,.px-lg-2{padding-right:.5rem !important}.pb-lg-2,.py-lg-2{padding-bottom:.5rem !important}.pl-lg-2,.px-lg-2{padding-left:.5rem !important}.p-lg-3{padding:1rem !important}.pt-lg-3,.py-lg-3{padding-top:1rem !important}.pr-lg-3,.px-lg-3{padding-right:1rem !important}.pb-lg-3,.py-lg-3{padding-bottom:1rem !important}.pl-lg-3,.px-lg-3{padding-left:1rem !important}.p-lg-4{padding:1.5rem !important}.pt-lg-4,.py-lg-4{padding-top:1.5rem !important}.pr-lg-4,.px-lg-4{padding-right:1.5rem !important}.pb-lg-4,.py-lg-4{padding-bottom:1.5rem !important}.pl-lg-4,.px-lg-4{padding-left:1.5rem !important}.p-lg-5{padding:3rem !important}.pt-lg-5,.py-lg-5{padding-top:3rem !important}.pr-lg-5,.px-lg-5{padding-right:3rem !important}.pb-lg-5,.py-lg-5{padding-bottom:3rem !important}.pl-lg-5,.px-lg-5{padding-left:3rem !important}.m-lg-n1{margin:-.25rem !important}.mt-lg-n1,.my-lg-n1{margin-top:-.25rem !important}.mr-lg-n1,.mx-lg-n1{margin-right:-.25rem !important}.mb-lg-n1,.my-lg-n1{margin-bottom:-.25rem !important}.ml-lg-n1,.mx-lg-n1{margin-left:-.25rem !important}.m-lg-n2{margin:-.5rem !important}.mt-lg-n2,.my-lg-n2{margin-top:-.5rem !important}.mr-lg-n2,.mx-lg-n2{margin-right:-.5rem !important}.mb-lg-n2,.my-lg-n2{margin-bottom:-.5rem !important}.ml-lg-n2,.mx-lg-n2{margin-left:-.5rem !important}.m-lg-n3{margin:-1rem !important}.mt-lg-n3,.my-lg-n3{margin-top:-1rem !important}.mr-lg-n3,.mx-lg-n3{margin-right:-1rem !important}.mb-lg-n3,.my-lg-n3{margin-bottom:-1rem !important}.ml-lg-n3,.mx-lg-n3{margin-left:-1rem !important}.m-lg-n4{margin:-1.5rem !important}.mt-lg-n4,.my-lg-n4{margin-top:-1.5rem !important}.mr-lg-n4,.mx-lg-n4{margin-right:-1.5rem !important}.mb-lg-n4,.my-lg-n4{margin-bottom:-1.5rem !important}.ml-lg-n4,.mx-lg-n4{margin-left:-1.5rem !important}.m-lg-n5{margin:-3rem !important}.mt-lg-n5,.my-lg-n5{margin-top:-3rem !important}.mr-lg-n5,.mx-lg-n5{margin-right:-3rem !important}.mb-lg-n5,.my-lg-n5{margin-bottom:-3rem !important}.ml-lg-n5,.mx-lg-n5{margin-left:-3rem !important}.m-lg-auto{margin:auto !important}.mt-lg-auto,.my-lg-auto{margin-top:auto !important}.mr-lg-auto,.mx-lg-auto{margin-right:auto !important}.mb-lg-auto,.my-lg-auto{margin-bottom:auto !important}.ml-lg-auto,.mx-lg-auto{margin-left:auto !important}}@media (min-width: 1200px){.m-xl-0{margin:0 !important}.mt-xl-0,.my-xl-0{margin-top:0 !important}.mr-xl-0,.mx-xl-0{margin-right:0 !important}.mb-xl-0,.my-xl-0{margin-bottom:0 !important}.ml-xl-0,.mx-xl-0{margin-left:0 !important}.m-xl-1{margin:.25rem !important}.mt-xl-1,.my-xl-1{margin-top:.25rem !important}.mr-xl-1,.mx-xl-1{margin-right:.25rem !important}.mb-xl-1,.my-xl-1{margin-bottom:.25rem !important}.ml-xl-1,.mx-xl-1{margin-left:.25rem !important}.m-xl-2{margin:.5rem !important}.mt-xl-2,.my-xl-2{margin-top:.5rem !important}.mr-xl-2,.mx-xl-2{margin-right:.5rem !important}.mb-xl-2,.my-xl-2{margin-bottom:.5rem !important}.ml-xl-2,.mx-xl-2{margin-left:.5rem !important}.m-xl-3{margin:1rem !important}.mt-xl-3,.my-xl-3{margin-top:1rem !important}.mr-xl-3,.mx-xl-3{margin-right:1rem !important}.mb-xl-3,.my-xl-3{margin-bottom:1rem !important}.ml-xl-3,.mx-xl-3{margin-left:1rem !important}.m-xl-4{margin:1.5rem !important}.mt-xl-4,.my-xl-4{margin-top:1.5rem !important}.mr-xl-4,.mx-xl-4{margin-right:1.5rem !important}.mb-xl-4,.my-xl-4{margin-bottom:1.5rem !important}.ml-xl-4,.mx-xl-4{margin-left:1.5rem !important}.m-xl-5{margin:3rem !important}.mt-xl-5,.my-xl-5{margin-top:3rem !important}.mr-xl-5,.mx-xl-5{margin-right:3rem !important}.mb-xl-5,.my-xl-5{margin-bottom:3rem !important}.ml-xl-5,.mx-xl-5{margin-left:3rem !important}.p-xl-0{padding:0 !important}.pt-xl-0,.py-xl-0{padding-top:0 !important}.pr-xl-0,.px-xl-0{padding-right:0 !important}.pb-xl-0,.py-xl-0{padding-bottom:0 !important}.pl-xl-0,.px-xl-0{padding-left:0 !important}.p-xl-1{padding:.25rem !important}.pt-xl-1,.py-xl-1{padding-top:.25rem !important}.pr-xl-1,.px-xl-1{padding-right:.25rem !important}.pb-xl-1,.py-xl-1{padding-bottom:.25rem !important}.pl-xl-1,.px-xl-1{padding-left:.25rem !important}.p-xl-2{padding:.5rem !important}.pt-xl-2,.py-xl-2{padding-top:.5rem !important}.pr-xl-2,.px-xl-2{padding-right:.5rem !important}.pb-xl-2,.py-xl-2{padding-bottom:.5rem !important}.pl-xl-2,.px-xl-2{padding-left:.5rem !important}.p-xl-3{padding:1rem !important}.pt-xl-3,.py-xl-3{padding-top:1rem !important}.pr-xl-3,.px-xl-3{padding-right:1rem !important}.pb-xl-3,.py-xl-3{padding-bottom:1rem !important}.pl-xl-3,.px-xl-3{padding-left:1rem !important}.p-xl-4{padding:1.5rem !important}.pt-xl-4,.py-xl-4{padding-top:1.5rem !important}.pr-xl-4,.px-xl-4{padding-right:1.5rem !important}.pb-xl-4,.py-xl-4{padding-bottom:1.5rem !important}.pl-xl-4,.px-xl-4{padding-left:1.5rem !important}.p-xl-5{padding:3rem !important}.pt-xl-5,.py-xl-5{padding-top:3rem !important}.pr-xl-5,.px-xl-5{padding-right:3rem !important}.pb-xl-5,.py-xl-5{padding-bottom:3rem !important}.pl-xl-5,.px-xl-5{padding-left:3rem !important}.m-xl-n1{margin:-.25rem !important}.mt-xl-n1,.my-xl-n1{margin-top:-.25rem !important}.mr-xl-n1,.mx-xl-n1{margin-right:-.25rem !important}.mb-xl-n1,.my-xl-n1{margin-bottom:-.25rem !important}.ml-xl-n1,.mx-xl-n1{margin-left:-.25rem !important}.m-xl-n2{margin:-.5rem !important}.mt-xl-n2,.my-xl-n2{margin-top:-.5rem !important}.mr-xl-n2,.mx-xl-n2{margin-right:-.5rem !important}.mb-xl-n2,.my-xl-n2{margin-bottom:-.5rem !important}.ml-xl-n2,.mx-xl-n2{margin-left:-.5rem !important}.m-xl-n3{margin:-1rem !important}.mt-xl-n3,.my-xl-n3{margin-top:-1rem !important}.mr-xl-n3,.mx-xl-n3{margin-right:-1rem !important}.mb-xl-n3,.my-xl-n3{margin-bottom:-1rem !important}.ml-xl-n3,.mx-xl-n3{margin-left:-1rem !important}.m-xl-n4{margin:-1.5rem !important}.mt-xl-n4,.my-xl-n4{margin-top:-1.5rem !important}.mr-xl-n4,.mx-xl-n4{margin-right:-1.5rem !important}.mb-xl-n4,.my-xl-n4{margin-bottom:-1.5rem !important}.ml-xl-n4,.mx-xl-n4{margin-left:-1.5rem !important}.m-xl-n5{margin:-3rem !important}.mt-xl-n5,.my-xl-n5{margin-top:-3rem !important}.mr-xl-n5,.mx-xl-n5{margin-right:-3rem !important}.mb-xl-n5,.my-xl-n5{margin-bottom:-3rem !important}.ml-xl-n5,.mx-xl-n5{margin-left:-3rem !important}.m-xl-auto{margin:auto !important}.mt-xl-auto,.my-xl-auto{margin-top:auto !important}.mr-xl-auto,.mx-xl-auto{margin-right:auto !important}.mb-xl-auto,.my-xl-auto{margin-bottom:auto !important}.ml-xl-auto,.mx-xl-auto{margin-left:auto !important}}.text-monospace{font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace !important}.text-justify{text-align:justify !important}.text-wrap{white-space:normal !important}.text-nowrap{white-space:nowrap !important}.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.text-left{text-align:left !important}.text-right{text-align:right !important}.text-center{text-align:center !important}@media (min-width: 576px){.text-sm-left{text-align:left !important}.text-sm-right{text-align:right !important}.text-sm-center{text-align:center !important}}@media (min-width: 768px){.text-md-left{text-align:left !important}.text-md-right{text-align:right !important}.text-md-center{text-align:center !important}}@media (min-width: 992px){.text-lg-left{text-align:left !important}.text-lg-right{text-align:right !important}.text-lg-center{text-align:center !important}}@media (min-width: 1200px){.text-xl-left{text-align:left !important}.text-xl-right{text-align:right !important}.text-xl-center{text-align:center !important}}.text-lowercase{text-transform:lowercase !important}.text-uppercase{text-transform:uppercase !important}.text-capitalize{text-transform:capitalize !important}.font-weight-light{font-weight:300 !important}.font-weight-lighter{font-weight:lighter !important}.font-weight-normal{font-weight:400 !important}.font-weight-bold{font-weight:700 !important}.font-weight-bolder{font-weight:bolder !important}.font-italic{font-style:italic !important}.text-white{color:#fff !important}.text-primary{color:#36f !important}a.text-primary:hover,a.text-primary:focus{color:#0039e6 !important}.text-secondary{color:#7987a1 !important}a.text-secondary:hover,a.text-secondary:focus{color:#556179 !important}.text-success{color:#3bb001 !important}a.text-success:hover,a.text-success:focus{color:#226401 !important}.text-info{color:#17a2b8 !important}a.text-info:hover,a.text-info:focus{color:#0f6674 !important}.text-warning{color:#ffc107 !important}a.text-warning:hover,a.text-warning:focus{color:#ba8b00 !important}.text-danger{color:#dc3545 !important}a.text-danger:hover,a.text-danger:focus{color:#a71d2a !important}.text-light{color:#f4f5f8 !important}a.text-light:hover,a.text-light:focus{color:#c5cbda !important}.text-dark{color:#3b4863 !important}a.text-dark:hover,a.text-dark:focus{color:#1e2533 !important}.text-body{color:#031b4e !important}.text-muted{color:#7987a1 !important}.text-black-50{color:rgba(0,0,0,0.5) !important}.text-white-50{color:rgba(255,255,255,0.5) !important}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.text-decoration-none{text-decoration:none !important}.text-break{word-break:break-word !important;overflow-wrap:break-word !important}.text-reset{color:inherit !important}.visible{visibility:visible !important}.invisible{visibility:hidden !important}@media print{*,*::before,*::after{text-shadow:none !important;box-shadow:none !important}a:not(.btn){text-decoration:underline}abbr[title]::after{content:" (" attr(title) ")"}pre{white-space:pre-wrap !important}pre,blockquote{border:1px solid #97a3b9;page-break-inside:avoid}thead{display:table-header-group}tr,img{page-break-inside:avoid}p,h2,h3{orphans:3;widows:3}h2,h3{page-break-after:avoid}@page{size:a3}body{min-width:992px !important}.container{min-width:992px !important}.navbar{display:none}.badge{border:1px solid #000}.table{border-collapse:collapse !important}.table td,.table th{background-color:#fff !important}.table-bordered th,.table-bordered td{border:1px solid #cdd4e0 !important}.table-dark{color:inherit}.table-dark th,.table-dark td,.table-dark thead th,.table-dark tbody+tbody{border-color:#cdd4e0}.table .thead-dark th{color:inherit;border-color:#cdd4e0}}.accordion .card{border-width:0}.accordion .card+.card{margin-top:1px}.accordion .card-header{padding:0;background-color:transparent;font-weight:500}.accordion .card-header a{display:block;padding:14px 20px;color:#1c273c;position:relative;font-weight:500;font-size:14px;background-color:#f4f5f8}.accordion .card-header a:hover,.accordion .card-header a:focus{color:#1c273c}.accordion .card-header a.collapsed{color:#596882;background-color:#e3e7ed;border-bottom-color:transparent}.accordion .card-header a.collapsed:hover,.accordion .card-header a.collapsed:focus{color:#1c273c;background-color:#cdd4e0}.accordion .card-body{padding:0 20px 20px;background-color:#f4f5f8;transition:none}.accordion-indigo .card{border-color:#5b47fb}.accordion-indigo .card-header a,.accordion-indigo .card-header a:hover,.accordion-indigo .card-header a:focus{color:#5b47fb}.accordion-indigo .card-header a.collapsed{background-color:#5b47fb;color:rgba(255,255,255,0.8);font-weight:500;letter-spacing:-.1px}.accordion-indigo .card-header a.collapsed:hover,.accordion-indigo .card-header a.collapsed:focus{background-color:#452efa;color:#fff}.accordion-blue .card{border-color:#36f}.accordion-blue .card-header a,.accordion-blue .card-header a:hover,.accordion-blue .card-header a:focus{color:#36f}.accordion-blue .card-header a.collapsed{background-color:#36f;color:rgba(255,255,255,0.8);font-weight:500;letter-spacing:-.1px}.accordion-blue .card-header a.collapsed:hover,.accordion-blue .card-header a.collapsed:focus{background-color:#1a53ff;color:#fff}.accordion-dark .card{border-color:#1c273c}.accordion-dark .card-header a,.accordion-dark .card-header a:hover,.accordion-dark .card-header a:focus{color:#1c273c}.accordion-dark .card-header a.collapsed{background-color:#1c273c;color:rgba(255,255,255,0.8);font-weight:500;letter-spacing:-.1px}.accordion-dark .card-header a.collapsed:hover,.accordion-dark .card-header a.collapsed:focus{background-color:#141c2b;color:#fff}.accordion-gray .card{border-color:#7987a1}.accordion-gray .card-header a,.accordion-gray .card-header a:hover,.accordion-gray .card-header a:focus{color:#7987a1}.accordion-gray .card-header a.collapsed{background-color:#7987a1;color:rgba(255,255,255,0.8);font-weight:500;letter-spacing:-.1px}.accordion-gray .card-header a.collapsed:hover,.accordion-gray .card-header a.collapsed:focus{background-color:#6a7a96;color:#fff}.alert{border-width:0;padding:12px 15px;border-radius:0}.alert .close{text-shadow:none;opacity:.2}.alert strong{font-weight:600}[class*=alert-outline-]{border:1px solid transparent}.alert-outline-success{border-color:#65fe19;color:#3bb001}.alert-outline-info{border-color:#1ab6cf;color:#17a2b8}.alert-outline-warning{border-color:#ffdb6d;color:#d39e00}.alert-outline-danger{border-color:#eb8c95;color:#bd2130}[class*=alert-solid-]{border-width:0;color:#fff}.alert-solid-success{background-color:#3bb001}.alert-solid-info{background-color:#17a2b8}.alert-solid-warning{background-color:#ffc107}.alert-solid-danger{background-color:#dc3545}.badge{font-size:10px;font-weight:500;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";padding:3px 5px 4px}.badge-light{background-color:#cdd4e0}.badge-pill{padding-left:8px;padding-right:8px}.breadcrumb{background-color:#cdd4e0}.breadcrumb-style1,.breadcrumb-style2,.breadcrumb-style3{border-radius:0;background-color:transparent;padding:0}.breadcrumb-style1 .breadcrumb-item,.breadcrumb-style2 .breadcrumb-item,.breadcrumb-style3 .breadcrumb-item{font-size:11px;font-weight:500;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";letter-spacing:.5px;text-transform:uppercase}.breadcrumb-style1 .breadcrumb-item a,.breadcrumb-style2 .breadcrumb-item a,.breadcrumb-style3 .breadcrumb-item a{color:#1c273c}.breadcrumb-style1 .breadcrumb-item a:hover,.breadcrumb-style1 .breadcrumb-item a:focus,.breadcrumb-style2 .breadcrumb-item a:hover,.breadcrumb-style2 .breadcrumb-item a:focus,.breadcrumb-style3 .breadcrumb-item a:hover,.breadcrumb-style3 .breadcrumb-item a:focus{color:#5b47fb}.breadcrumb-style1 .breadcrumb-item.active,.breadcrumb-style2 .breadcrumb-item.active,.breadcrumb-style3 .breadcrumb-item.active{color:#5b47fb}.breadcrumb-style1 .breadcrumb-item+.breadcrumb-item::before,.breadcrumb-style2 .breadcrumb-item+.breadcrumb-item::before,.breadcrumb-style3 .breadcrumb-item+.breadcrumb-item::before{color:#97a3b9}.breadcrumb-style2 .breadcrumb-item+.breadcrumb-item::before,.breadcrumb-style3 .breadcrumb-item+.breadcrumb-item::before{width:16px;text-align:center;font-family:'Ionicons'}.breadcrumb-style2 .breadcrumb-item+.breadcrumb-item::before{content:'\f3d1'}.breadcrumb-style3 .breadcrumb-item+.breadcrumb-item::before{content:'\f287'}.btn,.sp-container button{border-width:0;line-height:1.538;padding:9px 20px;border-radius:0;transition:none;min-height:38px}.btn:active,.sp-container button:active,.btn:focus,.sp-container button:focus{box-shadow:none}.btn-light{color:#1c273c;background-color:#cdd4e0;border-color:#bdc6d6}.btn-light:hover{color:#1c273c;background-color:#b5c0d1;border-color:#9eabc3}.btn-light:focus,.btn-light.focus{box-shadow:0 0 0 .2rem rgba(165,175,191,0.5)}.btn-light.disabled,.btn-light:disabled{color:#1c273c;background-color:#cdd4e0;border-color:#bdc6d6}.btn-light:not(:disabled):not(.disabled):active,.btn-light:not(:disabled):not(.disabled).active,.show>.btn-light.dropdown-toggle{color:#1c273c;background-color:#aeb9cc;border-color:#96a5be}.btn-light:not(:disabled):not(.disabled):active:focus,.btn-light:not(:disabled):not(.disabled).active:focus,.show>.btn-light.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(165,175,191,0.5)}.btn-indigo{color:#fff;background-color:#5b47fb;border-color:#452efa}.btn-indigo:hover{color:#fff;background-color:#3a22fa;border-color:#1f05f0}.btn-indigo:focus,.btn-indigo.focus{box-shadow:0 0 0 .2rem rgba(97,77,251,0.5)}.btn-indigo.disabled,.btn-indigo:disabled{color:#fff;background-color:#5b47fb;border-color:#452efa}.btn-indigo:not(:disabled):not(.disabled):active,.btn-indigo:not(:disabled):not(.disabled).active,.show>.btn-indigo.dropdown-toggle{color:#fff;background-color:#2f15fa;border-color:#1e05e4}.btn-indigo:not(:disabled):not(.disabled):active:focus,.btn-indigo:not(:disabled):not(.disabled).active:focus,.show>.btn-indigo.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(97,77,251,0.5)}.btn-purple{color:#fff;background-color:#6f42c1;border-color:#643ab0}.btn-purple:hover{color:#fff;background-color:#5e37a6;border-color:#4e2d89}.btn-purple:focus,.btn-purple.focus{box-shadow:0 0 0 .2rem rgba(123,87,188,0.5)}.btn-purple.disabled,.btn-purple:disabled{color:#fff;background-color:#6f42c1;border-color:#643ab0}.btn-purple:not(:disabled):not(.disabled):active,.btn-purple:not(:disabled):not(.disabled).active,.show>.btn-purple.dropdown-toggle{color:#fff;background-color:#59339d;border-color:#482a80}.btn-purple:not(:disabled):not(.disabled):active:focus,.btn-purple:not(:disabled):not(.disabled).active:focus,.show>.btn-purple.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(123,87,188,0.5)}.btn-pink{color:#fff;background-color:#f10075;border-color:#d80069}.btn-pink:hover{color:#fff;background-color:#cb0062;border-color:#a50050}.btn-pink:focus,.btn-pink.focus{box-shadow:0 0 0 .2rem rgba(221,38,127,0.5)}.btn-pink.disabled,.btn-pink:disabled{color:#fff;background-color:#f10075;border-color:#d80069}.btn-pink:not(:disabled):not(.disabled):active,.btn-pink:not(:disabled):not(.disabled).active,.show>.btn-pink.dropdown-toggle{color:#fff;background-color:#be005c;border-color:#98004a}.btn-pink:not(:disabled):not(.disabled):active:focus,.btn-pink:not(:disabled):not(.disabled).active:focus,.show>.btn-pink.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(221,38,127,0.5)}.btn-gray-500{color:#1c273c;background-color:#97a3b9;border-color:#8896af}.btn-gray-500:hover{color:#fff;background-color:#808faa;border-color:#697b9a}.btn-gray-500:focus,.btn-gray-500.focus{box-shadow:0 0 0 .2rem rgba(120,133,158,0.5)}.btn-gray-500.disabled,.btn-gray-500:disabled{color:#1c273c;background-color:#97a3b9;border-color:#8896af}.btn-gray-500:not(:disabled):not(.disabled):active,.btn-gray-500:not(:disabled):not(.disabled).active,.show>.btn-gray-500.dropdown-toggle{color:#fff;background-color:#7988a4;border-color:#637493}.btn-gray-500:not(:disabled):not(.disabled):active:focus,.btn-gray-500:not(:disabled):not(.disabled).active:focus,.show>.btn-gray-500.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(120,133,158,0.5)}.btn-gray-700{color:#fff;background-color:#596882;border-color:#4f5c73}.btn-gray-700:hover{color:#fff;background-color:#49566b;border-color:#3a4455}.btn-gray-700:focus,.btn-gray-700.focus{box-shadow:0 0 0 .2rem rgba(105,116,136,0.5)}.btn-gray-700.disabled,.btn-gray-700:disabled{color:#fff;background-color:#596882;border-color:#4f5c73}.btn-gray-700:not(:disabled):not(.disabled):active,.btn-gray-700:not(:disabled):not(.disabled).active,.show>.btn-gray-700.dropdown-toggle{color:#fff;background-color:#445064;border-color:#353e4d}.btn-gray-700:not(:disabled):not(.disabled):active:focus,.btn-gray-700:not(:disabled):not(.disabled).active:focus,.show>.btn-gray-700.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(105,116,136,0.5)}[class*=btn-outline-]{padding:0.4rem 1rem;line-height:1.657;border-width:1px;background-color:transparent}[class*=btn-outline-]:hover,[class*=btn-outline-]:focus{color:#fff}.btn-outline-indigo{border-color:#5b47fb;color:#5b47fb}.btn-outline-indigo:hover,.btn-outline-indigo:focus{background-color:#5b47fb}.btn-outline-light{border-color:#97a3b9;color:#97a3b9}.btn-outline-light:hover,.btn-outline-light:focus{background-color:#97a3b9}.card{border-radius:0}.card.text-white .card-title,.card.tx-white .card-title{color:#fff}.card-header,.card-footer{position:relative;border-color:#cdd4e0;padding-left:15px;padding-right:15px}.card-header{border-bottom:0}.card-header:first-child{border-radius:0}.card-header-tab{border-bottom:0;padding:0}.card-title{font-weight:700;color:#1c273c}.carousel-control-prev-icon,.carousel-control-next-icon{background-image:none;display:block;width:auto;height:auto}.carousel-control-prev-icon svg,.carousel-control-next-icon svg{width:48px;height:48px}.carousel-indicators li{width:10px;height:10px;border-radius:100%}.dropdown-menu{padding:0;border-width:2px;border-radius:0}.dropdown-item{padding:8px 15px;font-size:13px}.dropdown-header{padding-left:15px;padding-right:15px}.form-control{height:38px;border-radius:0}.form-control:focus{border-color:#97a3b9;box-shadow:none}.custom-file,.custom-file-input,.custom-file-label{height:38px}.custom-file-label,.custom-file-label::after{line-height:1.8;border-radius:0}.custom-file-label::after{height:auto}.form-label{display:block;margin-bottom:5px;color:#596882}.row-sm{margin-left:-10px;margin-right:-10px}.row-sm>div{padding-left:10px;padding-right:10px}.row-xs{margin-left:-5px;margin-right:-5px}.row-xs>div{padding-left:5px;padding-right:5px}@media (min-width: 576px){.row-xs--sm{margin-left:-5px;margin-right:-5px}.row-xs--sm>div{padding-left:5px;padding-right:5px}.row-sm--sm{margin-left:-10px;margin-right:-10px}.row-sm--sm>div{padding-left:10px;padding-right:10px}.row--sm{margin-left:-15px;margin-right:-15px}.row--sm>div{padding-left:15px;padding-right:15px}}@media (min-width: 768px){.row-xs--md{margin-left:-5px;margin-right:-5px}.row-xs--md>div{padding-left:5px;padding-right:5px}.row-sm--md{margin-left:-10px;margin-right:-10px}.row-sm--md>div{padding-left:10px;padding-right:10px}.row--md{margin-left:-15px;margin-right:-15px}.row--md>div{padding-left:15px;padding-right:15px}}@media (min-width: 992px){.row-xs--lg{margin-left:-5px;margin-right:-5px}.row-xs--lg>div{padding-left:5px;padding-right:5px}.row-sm--lg{margin-left:-10px;margin-right:-10px}.row-sm--lg>div{padding-left:10px;padding-right:10px}.row--lg{margin-left:-15px;margin-right:-15px}.row--lg>div{padding-left:15px;padding-right:15px}}@media (min-width: 1200px){.row-xs--xl{margin-left:-5px;margin-right:-5px}.row-xs--xl>div{padding-left:5px;padding-right:5px}.row-sm--xl{margin-left:-10px;margin-right:-10px}.row-sm--xl>div{padding-left:10px;padding-right:10px}.row--xl{margin-left:-15px;margin-right:-15px}.row--xl>div{padding-left:15px;padding-right:15px}}.input-group-prepend,.input-group-append{border-radius:0}.input-group-text{padding-top:0;padding-bottom:0;align-items:center;border-radius:0}.modal-backdrop{background-color:#0c1019}.modal-backdrop.show{opacity:.8}.modal-content{border-radius:0;border-width:0}.modal-content .close{font-size:28px;padding:0;margin:0;line-height:.5}.modal-header{align-items:center;padding:15px}@media (min-width: 576px){.modal-header{padding:15px 20px}}@media (min-width: 992px){.modal-header{padding:20px}}@media (min-width: 1200px){.modal-header{padding:20px 25px}}.modal-header .modal-title{margin-bottom:0}.modal-title{font-size:18px;font-weight:700;color:#1c273c;line-height:1}.modal-body{padding:25px}.nav-link:hover,.nav-link:focus,.nav-link:active{outline:none}.nav-pills .nav-link{color:#596882}.nav-pills .nav-link:hover,.nav-pills .nav-link:focus{color:#1c273c}.nav-pills .nav-link.active{border-radius:2px;background-color:#5b47fb}.nav-pills .nav-link.active:hover,.nav-pills .nav-link.active:focus{color:#fff}.nav-dark .nav-link{color:#97a3b9}.nav-dark .nav-link:hover,.nav-dark .nav-link:focus{color:#fff}.nav-tabs{border-bottom-width:0}.nav-tabs .nav-link{background-color:rgba(255,255,255,0.3);border-width:0;border-radius:0;padding:10px 15px;line-height:1.428;color:#596882}@media (min-width: 768px){.nav-tabs .nav-link{padding:10px 20px}}.nav-tabs .nav-link:hover,.nav-tabs .nav-link:focus{background-color:rgba(255,255,255,0.5);color:#1c273c}.nav-tabs .nav-link+.nav-link{margin-left:3px}.nav-tabs .nav-link.active{background-color:#fff;color:#1c273c;font-weight:500;letter-spacing:-.1px}.page-item:first-child .page-link,.page-item:last-child .page-link{border-radius:0}.page-item+.page-item{margin-left:1px}.page-item.active .page-link{background-color:#5b47fb}.page-link{color:#596882;padding:0;display:flex;align-items:center;justify-content:center;width:36px;height:38px;border-width:0;background-color:#e3e7ed;margin-left:0;font-weight:500}.page-link i{font-size:18px;line-height:0}.page-link:hover,.page-link:focus{color:#1c273c;background-color:#cdd4e0}.pagination-dark .page-item.active .page-link{background-color:#5b47fb;color:#fff}.pagination-dark .page-link{font-weight:400;background-color:rgba(255,255,255,0.05);color:rgba(255,255,255,0.8)}.pagination-dark .page-link:hover,.pagination-dark .page-link:focus{color:#fff;background-color:rgba(255,255,255,0.08)}.pagination-primary .page-item.active .page-link{background-color:#36f}.pagination-success .page-item.active .page-link{background-color:#3bb001}.pagination-circled .page-item+.page-item{margin-left:5px}.pagination-circled .page-item:first-child .page-link,.pagination-circled .page-item:last-child .page-link{border-radius:100%}.pagination-circled .page-link{padding:0;width:40px;border-radius:100%}.popover{font-size:12px;padding:0;border-radius:0}.popover-header{text-transform:uppercase;font-size:12px;font-weight:600;color:#3b4863;letter-spacing:0.5px;padding:12px 15px;background-color:#fff;border-color:rgba(28,39,60,0.2);border-top-left-radius:0;border-top-right-radius:0}.popover-header::before{display:none !important}.popover-body{padding:15px}.popover-body p:last-child{margin-bottom:0}.popover-head-primary .popover-header{color:#fff;background-color:#5b47fb}.popover-head-primary.bs-popover-top .arrow,.popover-head-primary.bs-popover-auto[x-placement^="top"] .arrow{bottom:-7px}.popover-head-primary.bs-popover-left .arrow,.popover-head-primary.bs-popover-auto[x-placement^="left"] .arrow{right:-7px}.popover-head-primary.bs-popover-right .arrow,.popover-head-primary.bs-popover-auto[x-placement^="right"] .arrow{left:-7px}.popover-head-primary.bs-popover-bottom .arrow::after,.popover-head-primary.bs-popover-auto[x-placement^="bottom"] .arrow::after,.popover-head-primary.bs-popover-auto[x-placement^="bottom"] .arrow::after{border-bottom-color:#5b47fb}.popover-head-secondary .popover-header{color:#fff;background-color:#36f}.popover-head-secondary.bs-popover-top .arrow,.popover-head-secondary.bs-popover-auto[x-placement^="top"] .arrow{bottom:-7px}.popover-head-secondary.bs-popover-left .arrow,.popover-head-secondary.bs-popover-auto[x-placement^="left"] .arrow{right:-7px}.popover-head-secondary.bs-popover-right .arrow,.popover-head-secondary.bs-popover-auto[x-placement^="right"] .arrow{left:-7px}.popover-head-secondary.bs-popover-bottom .arrow::after,.popover-head-secondary.bs-popover-auto[x-placement^="bottom"] .arrow::after,.popover-head-secondary.bs-popover-auto[x-placement^="bottom"] .arrow::after{border-bottom-color:#36f}.popover-head-primary,.popover-head-primary .popover-header,.popover-head-secondary,.popover-head-secondary .popover-header{border:0}.popover-head-primary .popover-body,.popover-head-secondary .popover-body{border:1px solid rgba(28,39,60,0.2);border-top-width:0;border-bottom-right-radius:2px;border-bottom-left-radius:2px}.popover-head-primary.bs-popover-bottom .arrow::before,.popover-head-primary.bs-popover-auto[x-placement^="bottom"] .arrow::before,.popover-head-primary.bs-popover-auto[x-placement^="bottom"] .arrow::before,.popover-head-secondary.bs-popover-bottom .arrow::before,.popover-head-secondary.bs-popover-auto[x-placement^="bottom"] .arrow::before,.popover-head-secondary.bs-popover-auto[x-placement^="bottom"] .arrow::before{display:none}.popover-primary{background-color:#5b47fb;border-width:0;padding:15px}.popover-primary .popover-header{background-color:transparent;border-bottom-width:0;padding:0 0 15px;color:#fff}.popover-primary .popover-body{padding:0;color:rgba(255,255,255,0.75)}.popover-primary .arrow::before{display:none}.popover-primary.bs-popover-top .arrow::after,.popover-primary.bs-popover-auto[x-placement^="top"] .arrow::after,.popover-primary.bs-popover-auto[x-placement^="top"] .arrow::after{border-top-color:#5b47fb}.popover-primary.bs-popover-bottom .arrow::after,.popover-primary.bs-popover-auto[x-placement^="bottom"] .arrow::after,.popover-primary.bs-popover-auto[x-placement^="bottom"] .arrow::after{border-bottom-color:#5b47fb}.popover-primary.bs-popover-left .arrow::after,.popover-primary.bs-popover-auto[x-placement^="left"] .arrow::after,.popover-primary.bs-popover-auto[x-placement^="left"] .arrow::after{border-left-color:#5b47fb}.popover-primary.bs-popover-right .arrow::after,.popover-primary.bs-popover-auto[x-placement^="right"] .arrow::after,.popover-primary.bs-popover-auto[x-placement^="right"] .arrow::after{border-right-color:#5b47fb}.popover-secondary{background-color:#36f;border-width:0;padding:15px}.popover-secondary .popover-header{background-color:transparent;border-bottom-width:0;padding:0 0 15px;color:#fff}.popover-secondary .popover-body{padding:0;color:rgba(255,255,255,0.75)}.popover-secondary .arrow::before{display:none}.popover-secondary.bs-popover-top .arrow::after,.popover-secondary.bs-popover-auto[x-placement^="top"] .arrow::after,.popover-secondary.bs-popover-auto[x-placement^="top"] .arrow::after{border-top-color:#36f}.popover-secondary.bs-popover-bottom .arrow::after,.popover-secondary.bs-popover-auto[x-placement^="bottom"] .arrow::after,.popover-secondary.bs-popover-auto[x-placement^="bottom"] .arrow::after{border-bottom-color:#36f}.popover-secondary.bs-popover-left .arrow::after,.popover-secondary.bs-popover-auto[x-placement^="left"] .arrow::after,.popover-secondary.bs-popover-auto[x-placement^="left"] .arrow::after{border-left-color:#36f}.popover-secondary.bs-popover-right .arrow::after,.popover-secondary.bs-popover-auto[x-placement^="right"] .arrow::after,.popover-secondary.bs-popover-auto[x-placement^="right"] .arrow::after{border-right-color:#36f}.progress{height:auto}.progress,.progress-bar{border-radius:0}.progress-bar{height:10px;font-size:11px}.progress-bar-xs{height:5px}.progress-bar-sm{height:8px}.progress-bar-lg{height:15px}.table{color:#3b4863}.table thead th,.table thead td{color:#7987a1;font-weight:700;font-size:11px;letter-spacing:.5px;text-transform:uppercase;border-bottom-width:1px;border-top-width:0;padding:0 15px 5px}.table tbody tr{background-color:rgba(255,255,255,0.5)}.table tbody tr th{font-weight:500}.table th,.table td{padding:9px 15px;line-height:1.462}.table-striped tbody tr:nth-of-type(2n+1){background-color:rgba(151,163,185,0.1)}.table-bordered thead th,.table-bordered thead td{border-top-width:1px;padding-top:7px;padding-bottom:7px;background-color:rgba(255,255,255,0.5)}.toast{background-color:rgba(255,255,255,0.95);border-color:rgba(28,39,60,0.16);box-shadow:0 2px 3px rgba(28,39,60,0.06);border-radius:3px}.toast-header{border-bottom-color:rgba(205,212,224,0.4)}.toast-header .close{font-weight:300;color:#97a3b9}.tooltip{top:0}.tooltip-inner{font-size:12px;border-radius:2px}.tooltip-primary .tooltip-inner{background-color:#5b47fb;color:#fff}.tooltip-primary.bs-tooltip-top .arrow::before,.tooltip-primary.bs-tooltip-auto[x-placement^="top"] .arrow::before,.tooltip-primary.bs-tooltip-auto[x-placement^="top"] .arrow::before{border-top-color:#5b47fb}.tooltip-primary.bs-tooltip-bottom .arrow::before,.tooltip-primary.bs-tooltip-auto[x-placement^="bottom"] .arrow::before,.tooltip-primary.bs-tooltip-auto[x-placement^="bottom"] .arrow::before{border-bottom-color:#5b47fb}.tooltip-primary.bs-tooltip-left .arrow::before,.tooltip-primary.bs-tooltip-auto[x-placement^="left"] .arrow::before,.tooltip-primary.bs-tooltip-auto[x-placement^="left"] .arrow::before{border-left-color:#5b47fb}.tooltip-primary.bs-tooltip-right .arrow::before,.tooltip-primary.bs-tooltip-auto[x-placement^="right"] .arrow::before,.tooltip-primary.bs-tooltip-auto[x-placement^="right"] .arrow::before{border-right-color:#5b47fb}.tooltip-secondary .tooltip-inner{background-color:#36f;color:#fff}.tooltip-secondary.bs-tooltip-top .arrow::before,.tooltip-secondary.bs-tooltip-auto[x-placement^="top"] .arrow::before,.tooltip-secondary.bs-tooltip-auto[x-placement^="top"] .arrow::before{border-top-color:#36f}.tooltip-secondary.bs-tooltip-bottom .arrow::before,.tooltip-secondary.bs-tooltip-auto[x-placement^="bottom"] .arrow::before,.tooltip-secondary.bs-tooltip-auto[x-placement^="bottom"] .arrow::before{border-bottom-color:#36f}.tooltip-secondary.bs-tooltip-left .arrow::before,.tooltip-secondary.bs-tooltip-auto[x-placement^="left"] .arrow::before,.tooltip-secondary.bs-tooltip-auto[x-placement^="left"] .arrow::before{border-left-color:#36f}.tooltip-secondary.bs-tooltip-right .arrow::before,.tooltip-secondary.bs-tooltip-auto[x-placement^="right"] .arrow::before,.tooltip-secondary.bs-tooltip-auto[x-placement^="right"] .arrow::before{border-right-color:#36f}table.dataTable{border:1px solid #cdd4e0}table.dataTable.no-footer{border-bottom-color:#cdd4e0}table.dataTable thead th,table.dataTable thead td{border-top-width:0;border-bottom-width:0;padding:8px 10px;font-weight:700;font-size:12px;color:#1c273c}table.dataTable thead .sorting_asc,table.dataTable thead .sorting_desc{background-image:none;background-color:#eceff3;position:relative}table.dataTable thead .sorting_asc::after,table.dataTable thead .sorting_desc::after{font-family:'Ionicons';font-size:11px;position:absolute;line-height:0;top:50%;right:10px}table.dataTable thead .sorting_asc::after{content:'\f3d8'}table.dataTable thead .sorting_desc::after{content:'\f3d0'}table.dataTable thead .sorting{background-image:none;position:relative}table.dataTable thead .sorting::before,table.dataTable thead .sorting::after{font-family:'Ionicons';font-size:11px;position:absolute;line-height:0;right:10px}table.dataTable thead .sorting::before{content:'\f3d8';top:40%}table.dataTable thead .sorting::after{content:'\f3d0';top:60%}table.dataTable tbody td.sorting_1{background-color:#f3f4f7}table.dataTable.dtr-inline.collapsed>tbody>tr[role="row"]>td:first-child::before,table.dataTable.dtr-inline.collapsed>tbody>tr[role="row"]>td:first-child::before{top:9.5px;left:7px;width:16px;height:16px;display:flex;align-items:center;justify-content:center;border-width:0;box-shadow:none;background-color:#cdd4e0;font-size:14px;font-weight:700;color:#97a3b9}table.dataTable>tbody>tr.child ul.dtr-details{display:block}table.dataTable>tbody>tr.child span.dtr-title{font-weight:500}.dataTables_wrapper .dataTables_length{text-align:left}@media (min-width: 576px){.dataTables_wrapper .dataTables_length{float:left}}.dataTables_wrapper .dataTables_length label{display:block;margin-bottom:15px}.dataTables_wrapper .dataTables_length .select2-container--default{margin-right:5px}.dataTables_wrapper .dataTables_length .select2-container--default .select2-selection--single{height:32px;border-color:#cdd4e0;border-radius:3px}.dataTables_wrapper .dataTables_length .select2-container--default .select2-selection--single .select2-selection__rendered{line-height:32px}.dataTables_wrapper .dataTables_length .select2-container--default .select2-selection--single .select2-selection__arrow{height:30px}.dataTables_wrapper .dataTables_length .select2-container--default .select2-selection--single .select2-selection__arrow b{border-top-color:#97a3b9}.dataTables_wrapper .dataTables_filter{text-align:left}@media (min-width: 576px){.dataTables_wrapper .dataTables_filter{float:right;margin-top:0}}.dataTables_wrapper .dataTables_filter label{display:block;margin-bottom:15px}.dataTables_wrapper .dataTables_filter input{margin-left:0;border:1px solid #cdd4e0;padding:5px 10px;line-height:1.539;color:#031b4e;border-radius:3px;width:100%}@media (min-width: 576px){.dataTables_wrapper .dataTables_filter input{width:auto}}.dataTables_wrapper .dataTables_filter input::placeholder{color:#97a3b9}.dataTables_wrapper .dataTables_info{margin-top:15px;padding:5px 0;text-align:left}@media (min-width: 576px){.dataTables_wrapper .dataTables_info{float:left}}.dataTables_wrapper .dataTables_paginate{padding-top:0;margin-top:15px;text-align:left}@media (min-width: 576px){.dataTables_wrapper .dataTables_paginate{float:right}}.dataTables_wrapper .dataTables_paginate .paginate_button{background-color:#e3e7ed;padding:5px 10px;margin:0;border:0;border-radius:1px;transition:all 0.2s ease-in-out}@media (prefers-reduced-motion: reduce){.dataTables_wrapper .dataTables_paginate .paginate_button{transition:none}}.dataTables_wrapper .dataTables_paginate .paginate_button+.paginate_button{margin-left:3px}.dataTables_wrapper .dataTables_paginate .paginate_button.disabled,.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover,.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:focus{background-color:#eceff3;color:#cdd4e0 !important}.dataTables_wrapper .dataTables_paginate .paginate_button.previous{margin-right:3px}.dataTables_wrapper .dataTables_paginate .paginate_button.next{margin-left:3px}.dataTables_wrapper .dataTables_paginate .paginate_button:hover,.dataTables_wrapper .dataTables_paginate .paginate_button:focus{border:0;background-image:none;background-color:#cdd4e0;color:#031b4e !important}.dataTables_wrapper .dataTables_paginate .paginate_button.current,.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover,.dataTables_wrapper .dataTables_paginate .paginate_button.current:focus{border:0;background-image:none;background-color:#5b47fb;color:#fff !important}.ui-datepicker{background-color:#fff;border:1px solid rgba(28,39,60,0.2);font-family:inherit;font-size:inherit;padding:10px;margin:1px 0 0;display:none;width:auto !important;z-index:5 !important}.ui-datepicker .ui-datepicker-header{display:flex;justify-content:space-between;align-items:center;position:relative;font-weight:500;font-size:12px;text-transform:uppercase;color:#031b4e;padding:0 0 5px;letter-spacing:1px;border:0;background-color:transparent;border-top-left-radius:3px;border-top-right-radius:3px}.ui-datepicker .ui-datepicker-header .ui-datepicker-next,.ui-datepicker .ui-datepicker-header .ui-datepicker-prev{text-indent:-99999px;color:#7987a1;top:3px}.ui-datepicker .ui-datepicker-header .ui-datepicker-next::before,.ui-datepicker .ui-datepicker-header .ui-datepicker-prev::before{font-size:16px;font-family:'Ionicons';position:absolute;top:-2px;text-indent:0}.ui-datepicker .ui-datepicker-header .ui-datepicker-next:hover::before,.ui-datepicker .ui-datepicker-header .ui-datepicker-next:focus::before,.ui-datepicker .ui-datepicker-header .ui-datepicker-prev:hover::before,.ui-datepicker .ui-datepicker-header .ui-datepicker-prev:focus::before{color:#3b4863}.ui-datepicker .ui-datepicker-header .ui-datepicker-next{order:3}.ui-datepicker .ui-datepicker-header .ui-datepicker-next:before{right:5px;content:'\f3d1'}.ui-datepicker .ui-datepicker-header .ui-datepicker-prev:before{left:5px;content:'\f3cf'}.ui-datepicker .ui-datepicker-header .ui-datepicker-next-hover,.ui-datepicker .ui-datepicker-header .ui-datepicker-prev-hover{color:#596882;cursor:pointer;top:1px;border:0;background-color:transparent}.ui-datepicker .ui-datepicker-title{color:#3b4863;font-weight:700;font-size:13px}.ui-datepicker .ui-datepicker-calendar{margin:0;background-color:transparent;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.ui-datepicker .ui-datepicker-calendar th{text-transform:uppercase;font-size:12px;font-weight:700;letter-spacing:1px;padding:6px 9px;color:#3b4863}@media (max-width: 320px){.ui-datepicker .ui-datepicker-calendar th{padding:4px 0;letter-spacing:normal}}.ui-datepicker .ui-datepicker-calendar td{border:1px solid #fff;padding:0;background-color:#fff;text-align:right}.ui-datepicker .ui-datepicker-calendar td:last-child{border-right:0}.ui-datepicker .ui-datepicker-calendar td.ui-datepicker-other-month .ui-state-default{color:#ccc}.ui-datepicker .ui-datepicker-calendar td span,.ui-datepicker .ui-datepicker-calendar td a{transition:all 0.2s ease-in-out;padding:5px;color:#031b4e;padding:6px 10px;display:block;font-weight:400;font-size:12px;border:0;border-radius:1px}@media (prefers-reduced-motion: reduce){.ui-datepicker .ui-datepicker-calendar td span,.ui-datepicker .ui-datepicker-calendar td a{transition:none}}.ui-datepicker .ui-datepicker-calendar td a:hover{background-color:#fff;color:#031b4e}.ui-datepicker .ui-datepicker-calendar .ui-datepicker-today a,.ui-datepicker .ui-datepicker-calendar .ui-datepicker-today a:hover,.ui-datepicker .ui-datepicker-calendar .ui-datepicker-today a:focus{background-color:#36f;color:#fff}.ui-datepicker-multi .ui-datepicker-group{padding-right:15px;width:auto;float:left}.ui-datepicker-multi .ui-datepicker-group .ui-datepicker-title{margin:auto}.ui-datepicker-multi .ui-datepicker-group .ui-datepicker-prev::before{left:10px}.ui-datepicker-multi .ui-datepicker-group .ui-datepicker-next::before{right:10px}.ui-datepicker-multi .ui-datepicker-group table{margin:0}.ui-datepicker-multi .ui-datepicker-group-last{padding-right:0}.ui-datepicker-inline{border-color:#cdd4e0}@media (min-width: 576px){.ui-datepicker-inline{max-width:270px}}.wizard{border:1px solid #e3e7ed;background-color:#fff}.wizard>.steps{padding:20px}@media (min-width: 768px){.wizard>.steps{padding:25px}}@media (min-width: 992px){.wizard>.steps{padding:30px}}.wizard>.steps>ul{padding:0;margin-bottom:0;display:flex}.wizard>.steps>ul li{float:none;display:block;width:auto}.wizard>.steps>ul li .current-info{display:none}.wizard>.steps>ul li .title{margin-left:5px;white-space:nowrap;transition:all 0.2s ease-in-out}@media (prefers-reduced-motion: reduce){.wizard>.steps>ul li .title{transition:none}}@media (min-width: 576px){.wizard>.steps>ul li .title{display:none;margin-left:10px}}@media (min-width: 768px){.wizard>.steps>ul li .title{display:inline-block}}.wizard>.steps>ul li+li{margin-left:5px}@media (min-width: 576px){.wizard>.steps>ul li+li{margin-left:20px}}@media (min-width: 992px){.wizard>.steps>ul li+li{margin-left:30px}}.wizard>.steps a,.wizard>.steps a:hover,.wizard>.steps a:active{color:#1c273c;font-weight:500;font-size:15px;display:flex;justify-content:center;align-items:center}@media (min-width: 1200px){.wizard>.steps a,.wizard>.steps a:hover,.wizard>.steps a:active{justify-content:flex-start}}.wizard>.steps a .number,.wizard>.steps a:hover .number,.wizard>.steps a:active .number{flex-shrink:0;font-weight:700;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";color:#fff;display:block;text-align:center;line-height:2;width:30px;height:30px;background-color:#b4bdce;border-radius:100%;transition:all 0.2s ease-in-out}@media (prefers-reduced-motion: reduce){.wizard>.steps a .number,.wizard>.steps a:hover .number,.wizard>.steps a:active .number{transition:none}}@media (min-width: 576px){.wizard>.steps a .number,.wizard>.steps a:hover .number,.wizard>.steps a:active .number{font-size:18px;font-weight:600;line-height:2.1;width:40px;height:40px}}.wizard>.steps .disabled{display:none}@media (min-width: 576px){.wizard>.steps .disabled{display:block}}.wizard>.steps .disabled a,.wizard>.steps .disabled a:hover,.wizard>.steps .disabled a:active{color:#97a3b9}.wizard>.steps .current a,.wizard>.steps .current a:hover,.wizard>.steps .current a:active{color:#5b47fb}.wizard>.steps .current a .title,.wizard>.steps .current a:hover .title,.wizard>.steps .current a:active .title{display:inline-block}.wizard>.steps .current a .number,.wizard>.steps .current a:hover .number,.wizard>.steps .current a:active .number{background-color:#5b47fb}.wizard>.steps .done a,.wizard>.steps .done a:hover,.wizard>.steps .done a:active{color:#0cc}.wizard>.steps .done a .title,.wizard>.steps .done a:hover .title,.wizard>.steps .done a:active .title{display:none}@media (min-width: 768px){.wizard>.steps .done a .title,.wizard>.steps .done a:hover .title,.wizard>.steps .done a:active .title{display:inline-block}}.wizard>.steps .done a .number,.wizard>.steps .done a:hover .number,.wizard>.steps .done a:active .number{background-color:#0cc}.wizard>.content{border-top:1px solid #e3e7ed;border-bottom:1px solid #e3e7ed;min-height:150px;padding:20px}@media (min-width: 768px){.wizard>.content{padding:25px}}@media (min-width: 992px){.wizard>.content{padding:30px}}.wizard>.content>.title{font-size:18px;color:#1c273c;font-weight:700;margin-bottom:5px;display:none}.wizard>.content>.title.current{display:block}.wizard>.content>.body{float:none;position:static;width:auto;height:auto}.wizard>.content>.body input.parsley-error{border-color:#dc3545}.wizard>.content>.body input.parsley-error+ul{list-style:none !important}.wizard>.actions{padding:20px}@media (min-width: 768px){.wizard>.actions{padding:25px}}@media (min-width: 992px){.wizard>.actions{padding:30px}}.wizard>.actions>ul{margin:0;padding:0;list-style:none;display:flex;justify-content:space-between}.wizard>.actions>ul>li:last-child a{background-color:#0cc}.wizard>.actions a,.wizard>.actions a:hover,.wizard>.actions a:active{display:block;background-color:#5b47fb;padding:9px 25px;line-height:1.573;color:#fff}.wizard>.actions .disabled a,.wizard>.actions .disabled a:hover,.wizard>.actions .disabled a:active{background-color:#97a3b9}.wizard.vertical>.steps{padding:20px}@media (min-width: 576px){.wizard.vertical>.steps{float:left;width:20%}}@media (min-width: 768px){.wizard.vertical>.steps{width:15%}}@media (min-width: 992px){.wizard.vertical>.steps{padding:25px;width:30%}}@media (min-width: 576px){.wizard.vertical>.steps ul{flex-direction:column}}.wizard.vertical>.steps ul li+li{margin-left:10px}@media (min-width: 576px){.wizard.vertical>.steps ul li+li{margin-top:10px;margin-left:0}}@media (min-width: 768px){.wizard.vertical>.steps ul li+li{margin-top:20px}}.wizard.vertical>.steps ul li .title{display:none}@media (min-width: 992px){.wizard.vertical>.steps ul li .title{display:block}}@media (min-width: 992px){.wizard.vertical>.steps a{justify-content:flex-start}}.wizard.vertical>.steps .current a .title{display:inline-block}@media (min-width: 576px){.wizard.vertical>.steps .current a .title{display:none}}@media (min-width: 992px){.wizard.vertical>.steps .current a .title{display:inline-block}}.wizard.vertical>.content{margin:0;padding:20px}@media (min-width: 576px){.wizard.vertical>.content{border-top-width:0;border-bottom-width:0;width:80%;float:right;border-left:1px solid #cdd4e0}}@media (min-width: 768px){.wizard.vertical>.content{width:85%}}@media (min-width: 992px){.wizard.vertical>.content{width:70%;padding:25px}}.wizard.vertical>.actions{padding:20px}@media (min-width: 576px){.wizard.vertical>.actions{width:80%;float:right;border-left:1px solid #cdd4e0}}@media (min-width: 768px){.wizard.vertical>.actions{width:85%}}@media (min-width: 992px){.wizard.vertical>.actions{width:70%;padding:25px}}.wizard.vertical>.actions ul{float:none;margin:0;padding:0}.step-equal-width>.steps>ul{display:flex}.step-equal-width>.steps>ul>li{flex:1;width:auto;float:none}.step-equal-width>.steps>ul{display:flex}.step-equal-width>.steps>ul>li{flex:1;width:auto;float:none}.wizard-style-1>.steps>ul a,.wizard-style-1>.steps>ul a:hover,.wizard-style-1>.steps>ul a:active{padding:0;height:50px}.wizard-style-1>.steps>ul a .number,.wizard-style-1>.steps>ul a:hover .number,.wizard-style-1>.steps>ul a:active .number{width:50px;height:100%;border:0;font-size:18px;font-weight:bold;color:#7987a1;background-color:#cdd4e0;border-radius:0}.wizard-style-1>.steps>ul a .title,.wizard-style-1>.steps>ul a:hover .title,.wizard-style-1>.steps>ul a:active .title{margin-right:20px;margin-left:20px}.wizard-style-1>.steps>ul .current a .number,.wizard-style-1>.steps>ul .current a:hover .number,.wizard-style-1>.steps>ul .current a:active .number{background-color:#452efa;color:#fff}.wizard-style-1>.steps>ul .done a .number,.wizard-style-1>.steps>ul .done a:hover .number,.wizard-style-1>.steps>ul .done a:active .number{background-color:#643ab0;color:#fff}.wizard-style-2>.steps>ul a,.wizard-style-2>.steps>ul a:hover,.wizard-style-2>.steps>ul a:active{padding:0;height:50px;border-radius:50px}.wizard-style-2>.steps>ul a .number,.wizard-style-2>.steps>ul a:hover .number,.wizard-style-2>.steps>ul a:active .number{width:50px;height:100%;border:2px solid #e3e7ed;font-size:18px;font-weight:bold;color:#7987a1;background-color:#fff}.wizard-style-2>.steps>ul a .title,.wizard-style-2>.steps>ul a:hover .title,.wizard-style-2>.steps>ul a:active .title{margin-right:20px}.wizard-style-2>.steps>ul .current a .number,.wizard-style-2>.steps>ul .current a:hover .number,.wizard-style-2>.steps>ul .current a:active .number{border-color:#5b47fb;color:#5b47fb}.wizard-style-2>.steps>ul .done a .number,.wizard-style-2>.steps>ul .done a:hover .number,.wizard-style-2>.steps>ul .done a:active .number{border-color:#6f42c1;color:#6f42c1}.morris-hover.morris-default-style{border-radius:0}input.parsley-error:focus,textarea.parsley-error:focus{box-shadow:none !important}input.parsley-success:focus,textarea.parsley-success:focus{box-shadow:none !important}.parsley-checkbox.parsley-error{display:inline-block;padding:10px;border:1px solid #dc3545}.parsley-checkbox.parsley-success{display:inline-block;padding:10px;border:1px solid #3bb001}.parsley-errors-list{color:#dc3545;list-style:none;font-size:12px;padding:0;margin-bottom:0}.parsley-errors-list li{margin:5px 0 0}.parsley-style-1 .parsley-input.parsley-error .form-control{background-color:#fef9f9;border-color:#dc3545;border-bottom-width:0;border-bottom-right-radius:0;border-bottom-left-radius:0}.parsley-style-1 .parsley-input.parsley-success .form-control{border-color:#3bb001}.parsley-style-1 .parsley-checkbox.parsley-error{border:1px solid #dc3545;background-color:#fef9f9;border-top-left-radius:2px;border-top-right-radius:2px}.parsley-style-1 .parsley-select.parsley-error .select2-container--default .select2-selection--single{background-color:#fef9f9;border-bottom-right-radius:0;border-bottom-left-radius:0}.parsley-style-1 .parsley-errors-list.filled{background-color:#dc3545;color:#fff;padding:7px 10px;border-bottom-right-radius:2px;border-bottom-left-radius:2px}.parsley-style-1 .parsley-errors-list.filled li:first-child{margin-top:0}.jqvmap-label{padding:2px 8px;background-color:rgba(17,17,17,0.9);border-radius:2px}.jqvmap-zoomin,.jqvmap-zoomout{font-size:20px;padding:0;width:20px;height:20px;display:flex;align-items:center;justify-content:center;border-radius:2px}.jqvmap-zoomout{top:32px}.jqvmap-pin{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";cursor:default;pointer-events:none}#jqvmap1_ri_pin,#jqvmap1_dc_pin,#jqvmap1_de_pin,#jqvmap1_md_pin{display:none}#jqvmap1_ak_pin{margin-top:-2%}#jqvmap1_ca_pin{margin-left:-2%}#jqvmap1_ct_pin{margin-top:-0.25%;margin-left:-0.25%}#jqvmap1_fl_pin{margin-left:5%}#jqvmap1_id_pin{margin-top:3%;margin-left:-1%}#jqvmap1_ky_pin{margin-left:2%}#jqvmap1_la_pin{margin-left:-2%}#jqvmap1_mi_pin{margin-top:4%;margin-left:3%}#jqvmap1_ma_pin{margin-top:-0.25%}#jqvmap1_mn_pin{margin-top:2%;margin-left:-2%}#jqvmap1_nh_pin{margin-top:1%;margin-left:-0.25%}#jqvmap1_nj_pin{margin-top:1%}#jqvmap1_ok_pin{margin-left:2%}#jqvmap1_va_pin{margin-left:2%}#jqvmap1_wv_pin{margin-left:-1%;margin-top:1%}@media only screen and (min-width: 320px){.jqvmap-pin{font-size:6px}}@media only screen and (min-width: 480px){.jqvmap-pin{font-size:8px}}@media only screen and (min-width: 640px){.jqvmap-pin{font-size:10px}}@media only screen and (min-width: 800px){.jqvmap-pin{font-size:12px}}@media only screen and (min-width: 1024px){.jqvmap-pin{font-size:14px}}.ql-wrapper{display:flex;flex-direction:column}.ql-wrapper-modal .ql-snow.ql-toolbar{border-width:0;border-bottom-width:1px}@media (min-width: 576px){.ql-wrapper-modal .ql-snow.ql-toolbar{padding:15px 20px}}.ql-wrapper-modal .ql-snow.ql-container{border-width:0}.ql-wrapper-modal .ql-snow .ql-editor{padding:20px}.ql-bubble.ql-container{border:2px solid #e3e7ed}.ql-bubble.ql-container:not(.ql-disabled) a::before{background-color:#1c273c;border-radius:2px}.ql-bubble .ql-tooltip{background-color:#1c273c;border-radius:2px}.ql-bubble .ql-tooltip.ql-flip .ql-tooltip-arrow{border-top-color:#1c273c}.ql-bubble .ql-tooltip:not(.ql-flip) .ql-tooltip-arrow{border-bottom-color:#1c273c}.ql-bubble .ql-toolbar{padding:0 8px 8px}.ql-bubble .ql-toolbar button{width:32px;height:32px;display:flex;align-items:center;justify-content:center;color:#8896af;outline:none}.ql-bubble .ql-toolbar button i{font-size:24px;line-height:0;display:inline-block}.ql-bubble .ql-toolbar button i.la-bold,.ql-bubble .ql-toolbar button i.la-underline{width:21px}.ql-bubble .ql-toolbar button .ql-fill{fill:#8896af}.ql-bubble .ql-toolbar button .ql-stroke{stroke:#8896af}.ql-bubble .ql-toolbar button.ql-active{color:#fff;background-color:rgba(255,255,255,0.08)}.ql-bubble .ql-toolbar .ql-formats{margin:8px 8px 0 0}.ql-bubble .ql-toolbar .ql-formats:first-child{margin-left:0}@media (min-width: 576px){.ql-bubble .ql-toolbar .ql-formats{margin:8px 0 0}.ql-bubble .ql-toolbar .ql-formats:first-child{margin-left:0}}.ql-snow.ql-container{border-color:#e3e7ed;border-width:2px}.ql-snow.ql-toolbar{border-width:2px;border-color:#e3e7ed;border-bottom-width:1px;padding:5px 10px 10px}@media (min-width: 576px){.ql-snow.ql-toolbar{padding:15px}}.ql-snow.ql-toolbar .ql-picker-label{border-color:#b4bdce}.ql-snow.ql-toolbar .ql-picker-label.ql-active{background-color:#e3e7ed;border-color:transparent;color:#1c273c;font-weight:500}.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke{stroke:#031b4e}.ql-snow.ql-toolbar button{border:1px solid transparent;width:32px;height:32px;display:flex;align-items:center;justify-content:center;color:#031b4e;outline:none}.ql-snow.ql-toolbar button svg{width:20px;float:none}.ql-snow.ql-toolbar button i{font-size:24px;line-height:0;display:inline-block}.ql-snow.ql-toolbar button i.la-bold,.ql-snow.ql-toolbar button i.la-underline{width:21px}.ql-snow.ql-toolbar button .ql-stroke{stroke-width:2px}.ql-snow.ql-toolbar button:hover,.ql-snow.ql-toolbar button:focus{border-color:#b4bdce;color:#063598}.ql-snow.ql-toolbar button:hover .ql-stroke,.ql-snow.ql-toolbar button:focus .ql-stroke{stroke:#7987a1}.ql-snow.ql-toolbar button.ql-active{background-color:#e3e7ed;color:#3b4863;border-color:transparent}.ql-snow.ql-toolbar button.ql-active .ql-fill{fill:#3b4863}.ql-snow.ql-toolbar button.ql-active .ql-stroke{stroke:#3b4863}.ql-snow.ql-toolbar .ql-formats{margin-top:5px;margin-right:5px}.ql-snow .ql-formats button+button{margin:0 0 0 2px}.ql-snow .ql-picker{display:block;border-width:0;height:32px;color:#596882}.ql-snow .ql-picker:not(.ql-color-picker):not(.ql-icon-picker) svg{right:3px}.ql-snow .ql-picker:hover .ql-picker-label,.ql-snow .ql-picker:focus .ql-picker-label{color:#1c273c}.ql-snow .ql-picker:hover .ql-picker-label .ql-stroke,.ql-snow .ql-picker:focus .ql-picker-label .ql-stroke{stroke:#031b4e}.ql-snow .ql-picker.ql-header{width:120px}.ql-snow .ql-picker-label{display:block;padding-left:10px;font-size:13px;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";border:1px solid #cdd4e0;background-color:#fff;outline:none}.ql-snow .ql-picker-label::before{line-height:2.25;font-weight:400}.ql-snow .ql-stroke{stroke:#031b4e;stroke-linecap:square;stroke-linejoin:miter;stroke-width:1}.ql-snow .ql-editor{padding:20px;color:#3b4863}.irs-min,.irs-max{font-family:"Roboto",sans-serif;border-radius:0}.irs-from,.irs-to,.irs-single{font-family:"Roboto",sans-serif;background-color:#5b47fb;border-radius:0}.irs-bar{background-image:none;background-color:#5b47fb}.irs-bar-edge{background-image:none;background-color:#5b47fb;border-top-left-radius:0;border-bottom-left-radius:0}.irs-line-left{background-image:none;background-color:#cdd4e0;border-top-left-radius:0;border-bottom-left-radius:0}.irs-line-mid{background-image:none;background-color:#cdd4e0}.irs-line-right{background-image:none;background-color:#cdd4e0;border-top-right-radius:0;border-bottom-right-radius:0}.irs-from::after,.irs-to::after,.irs-single::after{border-top-color:#5b47fb}.irs-slider{background-image:none}.irs-slider:before{content:'';width:2px;height:18px;position:absolute;background-color:#5b47fb;left:50%;margin-left:-1px}.irs-slider:hover:before,.irs-slider:focus:before{background-color:#260bfa}.irs-primary .irs-bar,.irs-primary .irs-bar-edge,.irs-primary .irs-slider::before{background-color:#36f}.irs-primary .irs-from,.irs-primary .irs-to,.irs-primary .irs-single{background-color:#36f}.irs-primary .irs-from::after,.irs-primary .irs-to::after,.irs-primary .irs-single::after{border-top-color:#36f}.irs-success .irs-bar,.irs-success .irs-bar-edge,.irs-success .irs-slider::before{background-color:#3bb001}.irs-success .irs-from,.irs-success .irs-to,.irs-success .irs-single{background-color:#3bb001}.irs-success .irs-from::after,.irs-success .irs-to::after,.irs-success .irs-single::after{border-top-color:#3bb001}.irs-dark .irs-bar,.irs-dark .irs-bar-edge,.irs-dark .irs-slider::before{background-color:#3b4863}.irs-dark .irs-from,.irs-dark .irs-to,.irs-dark .irs-single{background-color:#3b4863}.irs-dark .irs-from::after,.irs-dark .irs-to::after,.irs-dark .irs-single::after{border-top-color:#3b4863}.irs-modern .irs-line-left,.irs-modern .irs-line-mid,.irs-modern .irs-line-right{height:6px;box-shadow:inset -2px 2px 2px 0 rgba(34,34,34,0.1)}.irs-modern .irs-bar,.irs-modern .irs-bar-edge{height:6px;box-shadow:inset 0 1px 1px 0 rgba(34,34,34,0.1)}.irs-modern .irs-slider{top:19px;background-color:#fff;border:1px solid #5b47fb;border-radius:0}.irs-modern .irs-slider::before{width:4px;height:9px;background-color:#fff;border-left:1px solid #5b47fb;border-right:1px solid #5b47fb;margin-left:-2px;top:3px}.irs-modern.irs-primary .irs-slider{border-color:#36f}.irs-modern.irs-primary .irs-slider::before{border-color:#36f}.irs-modern.irs-success .irs-slider{border-color:#3bb001}.irs-modern.irs-success .irs-slider::before{border-color:#3bb001}.irs-modern.irs-dark .irs-slider{border-color:#1c273c}.irs-modern.irs-dark .irs-slider::before{border-color:#1c273c}.irs-outline .irs-line{border:1px solid #5b47fb;height:10px;border-radius:5px}.irs-outline .irs-line-left,.irs-outline .irs-line-mid,.irs-outline .irs-line-right{height:10px;background-color:transparent}.irs-outline .irs-bar,.irs-outline .irs-bar-edge{height:10px}.irs-outline .irs-bar-edge{border-top-left-radius:5px;border-bottom-left-radius:5px}.irs-outline .irs-slider{top:21px;width:18px;background-color:#fff;border:1px solid #5b47fb;border-radius:100%}.irs-outline .irs-slider::before{margin-left:-4px;top:4px;width:8px;height:8px;border-radius:100%}.irs-outline .irs-slider:hover::before,.irs-outline .irs-slider:focus::before{background-color:#452efa}.irs-outline.irs-primary .irs-line,.irs-outline.irs-primary .irs-slider{border-color:#36f}.irs-outline.irs-primary .irs-line:hover::before,.irs-outline.irs-primary .irs-line:focus::before,.irs-outline.irs-primary .irs-slider:hover::before,.irs-outline.irs-primary .irs-slider:focus::before{background-color:#1a53ff}.irs-outline.irs-success .irs-line,.irs-outline.irs-success .irs-slider{border-color:#3bb001}.irs-outline.irs-success .irs-line:hover::before,.irs-outline.irs-success .irs-line:focus::before,.irs-outline.irs-success .irs-slider:hover::before,.irs-outline.irs-success .irs-slider:focus::before{background-color:#339701}.irs-outline.irs-dark .irs-line,.irs-outline.irs-dark .irs-slider{border-color:#3b4863}.irs-outline.irs-dark .irs-line:hover::before,.irs-outline.irs-dark .irs-line:focus::before,.irs-outline.irs-dark .irs-slider:hover::before,.irs-outline.irs-dark .irs-slider:focus::before{background-color:#313c53}.ps{overflow:hidden}.ps>.ps__rail-y{width:5px;background-color:rgba(28,39,60,0.04);z-index:10;position:absolute;left:auto !important;right:0;opacity:0;transition:opacity 0.2s}@media (prefers-reduced-motion: reduce){.ps>.ps__rail-y{transition:none}}.ps>.ps__rail-y>.ps__thumb-y{position:absolute;border-radius:0;width:2px;left:2px;background-color:#97a3b9}.ps.ps--active-y:hover>.ps__rail-y,.ps.ps--active-y:focus>.ps__rail-y{opacity:1}.select2-results__option{border-radius:0;margin-bottom:1px;font-size:13px}.select2-container--default .select2-selection--single{background-color:#fff;border-color:#cdd4e0;border-radius:3px;height:38px;outline:none;border-radius:0}.select2-container--default .select2-selection--single .select2-selection__rendered{color:#596882;line-height:calc(1.5em + .75rem + 2px)-0.1rem;padding-left:.75rem;height:100%;display:flex;align-items:center}.select2-container--default .select2-selection--single .select2-selection__placeholder{color:#7987a1}.select2-container--default .select2-selection--single .select2-selection__arrow{width:30px;height:38px;line-height:calc(1.5em + .75rem + 2px)}.select2-container--default .select2-selection--single .select2-selection__arrow b{margin-top:-3px}.select2-container--default .select2-selection--multiple{background-color:#fff;border-color:#cdd4e0;border-radius:0;min-height:38px;outline:none}.select2-container--default .select2-selection--multiple .select2-selection__rendered{padding:0 4px}.select2-container--default .select2-selection--multiple .select2-selection__choice{position:relative;margin-top:5px;margin-right:4px;padding:3px 10px 3px 20px;border-color:transparent;border-radius:0;background-color:#5b47fb;color:#fff;line-height:1.45}.select2-container--default .select2-selection--multiple .select2-selection__choice__remove{color:#fff;opacity:.5;font-size:12px;display:inline-block;position:absolute;top:4px;left:7px}.select2-container--default.select2-container--focus .select2-selection--multiple{border-color:#cdd4e0}.select2-container--default .select2-search--dropdown .select2-search__field{border-color:#cdd4e0;border-radius:0}.select2-container--default .select2-results__option[aria-selected="true"]{background-color:#fff}.select2-container--default .select2-results__option--highlighted[aria-selected]{background-color:#5b47fb}.select2-container--default .select2-results>.select2-results__options{margin:4px}.select2-container--default .select2-search--inline .select2-search__field{margin-top:7px;line-height:26px;padding-left:7px;opacity:1}.select2-container--default.select2-container--disabled .select2-selection__choice{padding-left:10px;background-color:#97a3b9}.select2-container--default.select2-container--disabled .select2-selection__choice .select2-selection__choice__remove{display:none}.select2-container--open .select2-selection--single,.select2-container--open .select2-selection--multiple{background-color:#fff;border-color:#cdd4e0}.select2-container--open .select2-dropdown--above{border-top-left-radius:0;border-top-right-radius:0}.select2-container--open .select2-dropdown--below{border-bottom-right-radius:0;border-bottom-left-radius:0;top:0}.select2-dropdown{border-color:#cdd4e0;z-index:200}.select2-search--dropdown{padding-bottom:0}.select2-results__option{padding:6px 10px;font-size:.875rem}.has-success .select2-container--default .select2-selection--single,.parsley-select.parsley-success .select2-container--default .select2-selection--single{border-color:#3bb001}.has-warning .select2-container--default .select2-selection--single{border-color:#ffc107}.has-danger .select2-container--default .select2-selection--single,.parsley-select.parsley-error .select2-container--default .select2-selection--single{border-color:#dc3545}.select2-xs+.select2-container{font-size:12px}.select2-dropdown-xs .select2-results__option{font-size:12px}.select2-sm+.select2-container{font-size:14px}.select2-dropdown-sm .select2-results__option{font-size:14px}.select2-bd-0+.select2-container--default .select2-selection--single{border-width:0}.bg-gray+.select2-container--default .select2-selection--single{background-color:#455473}.bg-gray+.select2-container--default .select2-selection--single .select2-selection__rendered{color:#cdd4e0}.sp-container{background-color:#fff;border-color:#cdd4e0;z-index:200}.sp-container button{border:0;padding:8px 15px;background-image:none;background-color:#cdd4e0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-size:12px;text-shadow:none;text-transform:capitalize;border-radius:2px}.sp-container button:hover,.sp-container button:focus{border:0;background-image:none;background-color:#97a3b9;text-shadow:none}.sp-button-container .sp-cancel{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-size:12px;text-transform:capitalize;color:#7987a1 !important}.sp-button-container .sp-cancel:hover,.sp-button-container .sp-cancel:focus{color:#3b4863 !important;text-decoration:none}.sp-picker-container{border-left:0}.sp-replacer{border-color:#cdd4e0;background-color:#fff}.sp-replacer:hover,.sp-replacer:focus{border-color:#b4bdce}.sp-replacer.sp-active{border-color:#7987a1}.sp-dd{text-indent:-99999px;position:relative;width:10px}.sp-dd::before{content:'\f280';font-family:'Ionicons';font-size:15px;color:#97a3b9;position:absolute;text-indent:0;left:0;z-index:10}.sp-preview{border:0}.sp-dragger{background-color:transparent}.sp-choose{background-color:#cdd4e0}.sp-palette .sp-thumb-el:hover,.sp-palette .sp-thumb-el.sp-thumb-active{border-color:#3b4863}.datetimepicker{box-shadow:none;border-radius:0;border-width:1px;border-color:#cdd4e0;min-width:270px;padding:0 10px 10px}.datetimepicker::before{display:none}.datetimepicker table{width:100%}.datetimepicker table th.prev,.datetimepicker table th.next,.datetimepicker table th.switch{background-color:#fff;color:#031b4e}.datetimepicker table th.prev,.datetimepicker table th.next{position:relative}.datetimepicker table th.prev span,.datetimepicker table th.next span{position:absolute;top:0;right:0;bottom:0;left:0}.datetimepicker table th.prev span::before,.datetimepicker table th.next span::before{font-family:'Ionicons';position:absolute;top:50%;font-size:16px;color:#1c273c;line-height:0}.datetimepicker table th.prev:hover,.datetimepicker table th.prev:focus,.datetimepicker table th.next:hover,.datetimepicker table th.next:focus{background-color:#fff}.datetimepicker table th.prev:hover span::before,.datetimepicker table th.prev:focus span::before,.datetimepicker table th.next:hover span::before,.datetimepicker table th.next:focus span::before{color:#36f}.datetimepicker table th.prev span::before{content:'\f3cf';left:0}.datetimepicker table th.next span::before{content:'\f3d1';right:0}.datetimepicker table th.switch{text-transform:uppercase;font-weight:700;font-size:13px;letter-spacing:1px;color:#1c273c}.datetimepicker table th.switch:hover,.datetimepicker table th.switch:focus{background-color:#fff;color:#36f}.datetimepicker table td{font-size:.875rem;text-align:center}.datetimepicker table td.old,.datetimepicker table td.new{color:#97a3b9}.datetimepicker table td.active,.datetimepicker table td.active:hover,.datetimepicker table td.active:focus{background-color:#36f;color:#fff}.datetimepicker table span.active,.datetimepicker table span.active:hover,.datetimepicker table span.active:focus{background-color:#36f;color:#fff}.datetimepicker .datetimepicker-days table thead tr:first-child th{height:38px}.datetimepicker .datetimepicker-days table thead tr:last-child th{height:25px;text-transform:uppercase;color:#596882;font-weight:700;font-size:11px}.az-datetimepicker{box-shadow:none;border-radius:0;border-color:#cdd4e0;margin-top:2px}.az-datetimepicker>.datepicker_header{padding:10px;display:flex;align-items:center;justify-content:space-between}.az-datetimepicker>.datepicker_header>.icon-home{display:none}.az-datetimepicker>.datepicker_header a:nth-child(2),.az-datetimepicker>.datepicker_header a:last-child{display:block;position:relative;text-indent:-999999px}.az-datetimepicker>.datepicker_header a:nth-child(2)::before,.az-datetimepicker>.datepicker_header a:last-child::before{font-family:'Ionicons';position:absolute;top:50%;line-height:0;text-indent:0;font-size:13px}.az-datetimepicker>.datepicker_header a:nth-child(2)::before{content:'\f3cf';left:0}.az-datetimepicker>.datepicker_header a:last-child::before{content:'\f3d1';right:0}.az-datetimepicker>.datepicker_header span{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";text-transform:uppercase}.az-datetimepicker>.datepicker_inner_container{border-radius:0;box-shadow:none;border-width:0;display:flex;height:225px;margin:0;background-color:#fff}.az-datetimepicker>.datepicker_inner_container::after{display:none}.az-datetimepicker>.datepicker_inner_container>.datepicker_calendar{width:230px;border-width:0;border-radius:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";padding:5px;float:none;margin:0}.az-datetimepicker>.datepicker_inner_container>.datepicker_calendar>table{width:100%;height:100%}.az-datetimepicker>.datepicker_inner_container>.datepicker_calendar th{font-size:11px;text-transform:uppercase;color:#1c273c;font-weight:700;text-align:center;padding:8px 5px}.az-datetimepicker>.datepicker_inner_container>.datepicker_calendar td{font-size:.875rem;font-weight:400;text-align:center;padding:5px}.az-datetimepicker>.datepicker_inner_container>.datepicker_calendar td.day_another_month{color:#97a3b9}.az-datetimepicker>.datepicker_inner_container>.datepicker_calendar td.hover{background-color:#e3e7ed;cursor:pointer}.az-datetimepicker>.datepicker_inner_container>.datepicker_calendar td.active{background-color:#36f;color:#fff}.az-datetimepicker>.datepicker_inner_container>.datepicker_timelist{float:none;width:70px;height:100% !important;border-left:1px solid #b4bdce}.az-datetimepicker>.datepicker_inner_container>.datepicker_timelist>div.timelist_item{padding:5px 8px;margin:0 0 0 1px}.az-datetimepicker>.datepicker_inner_container>.datepicker_timelist>div.timelist_item:hover,.az-datetimepicker>.datepicker_inner_container>.datepicker_timelist>div.timelist_item:focus{background-color:#e3e7ed}.az-datetimepicker>.datepicker_inner_container>.datepicker_timelist>div.timelist_item.active{background-color:#36f;color:#fff}.picker-title{font-size:15px;font-weight:500}.picker-cell__header{text-transform:uppercase;font-size:.875rem;font-weight:700;letter-spacing:.4px}.picker-item{font-family:"Archivo",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"}.picker-picked{font-weight:500;color:#36f}.az-accordion .accordion-item{background-color:#f4f5f8;border:1px solid #dee2ef;position:relative;transition:all 0.2s ease-in-out}@media (prefers-reduced-motion: reduce){.az-accordion .accordion-item{transition:none}}.az-accordion .accordion-item:hover,.az-accordion .accordion-item:focus{cursor:pointer;background-color:#f1f2f6;border-color:#bcc4de;z-index:4}.az-accordion .accordion-item.active{background-color:#fff;z-index:5;border-color:#bcc4de}.az-accordion .accordion-item.active .accordion-title{color:#36f}.az-accordion .accordion-item.active .accordion-body{display:block}.az-accordion .accordion-item+.accordion-item{margin-top:-1px}.az-accordion .accordion-header{display:flex;align-items:center;padding:15px 20px}.az-accordion .accordion-title{font-weight:700;color:#031b4e;margin:0;transition:all 0.2s ease-in-out}@media (prefers-reduced-motion: reduce){.az-accordion .accordion-title{transition:none}}.az-accordion .accordion-body{display:none;padding:0 20px 20px}.btn-az-primary{color:#fff;background-color:#5b47fb;border-color:#452efa}.btn-az-primary:hover{color:#fff;background-color:#3a22fa;border-color:#1f05f0}.btn-az-primary:focus,.btn-az-primary.focus{box-shadow:0 0 0 .2rem rgba(97,77,251,0.5)}.btn-az-primary.disabled,.btn-az-primary:disabled{color:#fff;background-color:#5b47fb;border-color:#452efa}.btn-az-primary:not(:disabled):not(.disabled):active,.btn-az-primary:not(:disabled):not(.disabled).active,.show>.btn-az-primary.dropdown-toggle{color:#fff;background-color:#2f15fa;border-color:#1e05e4}.btn-az-primary:not(:disabled):not(.disabled):active:focus,.btn-az-primary:not(:disabled):not(.disabled).active:focus,.show>.btn-az-primary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(97,77,251,0.5)}.btn-az-secondary{color:#fff;background-color:#36f;border-color:#1a53ff}.btn-az-secondary:hover{color:#fff;background-color:#0d49ff;border-color:#0039e6}.btn-az-secondary:focus,.btn-az-secondary.focus{box-shadow:0 0 0 .2rem rgba(60,109,255,0.5)}.btn-az-secondary.disabled,.btn-az-secondary:disabled{color:#fff;background-color:#36f;border-color:#1a53ff}.btn-az-secondary:not(:disabled):not(.disabled):active,.btn-az-secondary:not(:disabled):not(.disabled).active,.show>.btn-az-secondary.dropdown-toggle{color:#fff;background-color:#0040ff;border-color:#0036d9}.btn-az-secondary:not(:disabled):not(.disabled):active:focus,.btn-az-secondary:not(:disabled):not(.disabled).active:focus,.show>.btn-az-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(60,109,255,0.5)}.btn-rounded{border-radius:50px}.btn-with-icon{display:flex;align-items:center;justify-content:center;height:38px}.btn-with-icon i{line-height:0;font-size:20px;margin-right:5px}.btn-with-icon i.typcn{line-height:.9}.btn-with-icon i.fas{font-size:15px}.btn-with-icon i.icon{font-size:18px}.btn-icon{width:38px;height:38px;display:flex;align-items:center;justify-content:center;flex-shrink:0}.btn-icon i{line-height:0;font-size:24px}.btn-icon i.typcn{line-height:.95}.az-donut-chart{position:relative;border-radius:50%;overflow:hidden}.az-donut-chart .slice{position:absolute;top:0;left:0;width:100%;height:100%}.az-donut-chart .chart-center{position:absolute;border-radius:50%}.az-donut-chart .chart-center span{display:block;text-align:center}.ckbox{font-weight:normal;position:relative;display:block;line-height:1;margin-bottom:0}.ckbox span{padding-left:15px}.ckbox span:empty{float:left}.ckbox span:before,.ckbox span:after{line-height:18px;position:absolute}.ckbox span:before{content:'';width:16px;height:16px;background-color:#fff;border:1px solid #97a3b9;top:1px;left:0}.ckbox span:after{top:1px;left:0;width:16px;height:16px;content:'';background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E");background-size:65%;background-repeat:no-repeat;background-position:55% 45%;background-color:#36f;line-height:17px;display:none}.ckbox span:empty{padding-left:0;width:3px}.ckbox input[type='checkbox']{opacity:0;margin:0}.ckbox input[type='checkbox']:checked+span:after{display:block}.ckbox input[type='checkbox'][disabled]+span,.ckbox input[type='checkbox'][disabled]+span:before,.ckbox input[type='checkbox'][disabled]+span:after{opacity:.75}.ckbox-inline{display:inline-block}.rdiobox{font-weight:normal;position:relative;display:block;line-height:18px}.rdiobox span{padding-left:13px}.rdiobox span:before,.rdiobox span:after{line-height:18px;position:absolute}.rdiobox span:before{content:'';width:16px;height:16px;background-color:#fff;border:1px solid #97a3b9;border-radius:50px;top:2px;left:0}.rdiobox span:after{content:'';width:6px;height:6px;background-color:#fff;border-radius:50px;top:7px;left:5px;display:none}.rdiobox span:empty{padding-left:0;width:16px;display:block}.rdiobox input[type='radio']{opacity:0;margin:0}.rdiobox input[type='radio']:checked+span:before{border-color:transparent;background-color:#36f}.rdiobox input[type='radio']:checked+span:after{display:block}.rdiobox input[type='radio'][disabled]+span,.rdiobox input[type='radio'][disabled]+span:before,.rdiobox input[type='radio'][disabled]+span:after{opacity:.75}.rdiobox-inline{display:inline-block}.form-group-rdiobox{display:flex;align-items:center}.form-group-rdiobox .rdiobox{margin-bottom:0}.form-group-rdiobox .rdiobox+.rdiobox{margin-left:30px}.form-group-rdiobox .rdiobox span{padding-left:0}.az-toggle{width:60px;height:25px;background-color:#b4bdce;padding:2px;position:relative;overflow:hidden}.az-toggle span{position:absolute;top:3px;bottom:3px;left:3px;display:block;width:20px;background-color:#fff;cursor:pointer;transition:all 0.2s ease-in-out}@media (prefers-reduced-motion: reduce){.az-toggle span{transition:none}}.az-toggle span::before,.az-toggle span::after{position:absolute;font-size:10px;font-weight:500;letter-spacing:.5px;text-transform:uppercase;color:#fff;top:2px;line-height:1.38}.az-toggle span::before{content:'on';left:-25px}.az-toggle span::after{content:'off';right:-29px}.az-toggle.on{background-color:#5b47fb}.az-toggle.on span{left:37px}.az-toggle-secondary.on{background-color:#36f}.az-toggle-success.on{background-color:#3bb001}.az-toggle-dark.on{background-color:#1c273c}.az-form-group{padding:12px 15px;border:1px solid #cdd4e0}.az-form-group.focus{border-color:#b4bdce;box-shadow:0 0 0 2px rgba(91,71,251,0.16)}.az-form-group .form-label{font-size:13px;margin-bottom:2px;font-weight:400;color:#97a3b9}.az-form-group .form-control{padding:0;border-width:0;height:25px;color:#1c273c;font-weight:500}.az-form-group .form-control:focus{box-shadow:none}.az-img-user{display:block;position:relative;width:36px;height:36px;border-radius:100%}.az-img-user img{width:100%;height:100%;object-fit:cover;border-radius:100%}.az-img-user::after{content:'';position:absolute;bottom:0;right:3px;width:6px;height:6px;background-color:#97a3b9;box-shadow:0 0 0 2px rgba(255,255,255,0.95);border-radius:100%}.az-img-user.online::after{background-color:#3bb001}.az-avatar{position:relative;width:36px;height:36px;border-radius:100%;display:flex;align-items:center;justify-content:center;color:#fff;font-weight:600;font-size:16px;background-color:#596882}.az-avatar::after{content:'';position:absolute;bottom:0;right:3px;width:6px;height:6px;background-color:#97a3b9;box-shadow:0 0 0 2px rgba(255,255,255,0.95);border-radius:100%}.az-avatar.online::after{background-color:#3bb001}.avatar-xs{width:24px;height:24px;font-size:11px}.avatar-xs::after{width:5px;height:5px}.avatar-sm{width:32px;height:32px;font-size:14px}.avatar-sm::after{width:7px;height:7px}.avatar-md{width:48px;height:48px;font-size:24px}.avatar-md::after{width:9px;height:9px;right:2px;bottom:2px}.avatar-lg{width:64px;height:64px;font-size:28px}.avatar-lg::after{width:10px;height:10px;bottom:3px;right:4px}.avatar-xl{width:72px;height:72px;font-size:36px}.avatar-xl::after{width:11px;height:11px;bottom:4px;right:5px;box-shadow:0 0 0 2.5px #fff}.avatar-xxl{width:100px;height:100px;font-size:56px}.avatar-xxl::after{width:13px;height:13px;bottom:6px;right:7px;box-shadow:0 0 0 3px #fff}.az-list-item{display:flex;align-items:center;justify-content:space-between;padding:10px 0}.az-list-item+.az-list-item{border-top:1px solid #e3e7ed}.az-list-item:last-child{padding-bottom:0}.az-list-item h6{margin-bottom:2px;font-weight:600}.az-list-item>div:first-child h6{color:#1c273c}.az-list-item>div span{color:#7987a1;font-size:12px}.az-list-item>div:last-child{text-align:right}.az-list-item>div:last-child h6{line-height:1}.modal.animated .modal-dialog{transform:translate(0, 0)}.modal.effect-scale .modal-dialog{transform:scale(0.7);opacity:0;transition:all 0.3s}.modal.effect-scale.show .modal-dialog{transform:scale(1);opacity:1}.modal.effect-slide-in-right .modal-dialog{transform:translateX(20%);opacity:0;transition:all 0.3s cubic-bezier(0.25, 0.5, 0.5, 0.9)}.modal.effect-slide-in-right.show .modal-dialog{transform:translateX(0);opacity:1}.modal.effect-slide-in-bottom .modal-dialog{transform:translateY(20%);opacity:0;transition:all 0.3s}.modal.effect-slide-in-bottom.show .modal-dialog{transform:translateY(0);opacity:1}.modal.effect-newspaper .modal-dialog{transform:scale(0) rotate(720deg);opacity:0}.modal.effect-newspaper.show ~ .modal-backdrop,.modal.effect-newspaper .modal-dialog{transition:all 0.5s}.modal.effect-newspaper.show .modal-dialog{transform:scale(1) rotate(0deg);opacity:1}.modal.effect-fall{-webkit-perspective:1300px;-moz-perspective:1300px;perspective:1300px}.modal.effect-fall .modal-dialog{-moz-transform-style:preserve-3d;transform-style:preserve-3d;transform:translateZ(600px) rotateX(20deg);opacity:0}.modal.effect-fall.show .modal-dialog{transition:all 0.3s ease-in;transform:translateZ(0px) rotateX(0deg);opacity:1}.modal.effect-flip-horizontal{perspective:1300px}.modal.effect-flip-horizontal .modal-dialog{-moz-transform-style:preserve-3d;transform-style:preserve-3d;transform:rotateY(-70deg);transition:all 0.3s;opacity:0}.modal.effect-flip-horizontal.show .modal-dialog{transform:rotateY(0deg);opacity:1}.modal.effect-flip-vertical{perspective:1300px}.modal.effect-flip-vertical .modal-dialog{-moz-transform-style:preserve-3d;transform-style:preserve-3d;transform:rotateX(-70deg);transition:all 0.3s;opacity:0}.modal.effect-flip-vertical.show .modal-dialog{transform:rotateX(0deg);opacity:1}.modal.effect-super-scaled .modal-dialog{transform:scale(2);opacity:0;transition:all 0.3s}.modal.effect-super-scaled.show .modal-dialog{transform:scale(1);opacity:1}.modal.effect-sign{perspective:1300px}.modal.effect-sign .modal-dialog{-moz-transform-style:preserve-3d;transform-style:preserve-3d;transform:rotateX(-60deg);transform-origin:50% 0;opacity:0;transition:all 0.3s}.modal.effect-sign.show .modal-dialog{transform:rotateX(0deg);opacity:1}.modal.effect-rotate-bottom{perspective:1300px}.modal.effect-rotate-bottom .modal-dialog{-moz-transform-style:preserve-3d;transform-style:preserve-3d;transform:translateY(100%) rotateX(90deg);transform-origin:0 100%;opacity:0;transition:all 0.3s ease-out}.modal.effect-rotate-bottom.show .modal-dialog{transform:translateY(0%) rotateX(0deg);opacity:1}.modal.effect-rotate-left{perspective:1300px}.modal.effect-rotate-left .modal-dialog{-moz-transform-style:preserve-3d;transform-style:preserve-3d;transform:translateZ(100px) translateX(-30%) rotateY(90deg);transform-origin:0 100%;opacity:0;transition:all 0.3s}.modal.effect-rotate-left.show .modal-dialog{transform:translateZ(0px) translateX(0%) rotateY(0deg);opacity:1}.modal.effect-just-me .modal-dialog{transform:scale(0.8);opacity:0;transition:all 0.3s}.modal.effect-just-me .modal-content{background-color:transparent}.modal.effect-just-me .close{text-shadow:none;color:#fff}.modal.effect-just-me .modal-header{background-color:transparent;border-bottom-color:rgba(255,255,255,0.1);padding-left:0;padding-right:0}.modal.effect-just-me .modal-header h6{color:#fff;font-weight:500}.modal.effect-just-me .modal-body{color:rgba(255,255,255,0.8);padding-left:0;padding-right:0}.modal.effect-just-me .modal-body h6{color:#fff}.modal.effect-just-me .modal-footer{background-color:transparent;padding-left:0;padding-right:0;border-top-color:rgba(255,255,255,0.1)}.modal.effect-just-me.show ~ .modal-backdrop{opacity:.96}.modal.effect-just-me.show .modal-dialog{transform:scale(1);opacity:1}@media (min-width: 768px){.az-nav{align-items:center}}.az-nav .nav-link{display:block;color:#596882;padding:0;position:relative;line-height:normal}.az-nav .nav-link:hover,.az-nav .nav-link:focus{color:#1c273c}.az-nav .nav-link+.nav-link{padding-top:12px;margin-top:12px;border-top:1px dotted #97a3b9}@media (min-width: 768px){.az-nav .nav-link+.nav-link{padding-top:0;margin-top:0;border-top:0;padding-left:15px;margin-left:15px;border-left:1px dotted #97a3b9}}.az-nav .nav-link.active{color:#5b47fb}.az-nav-column{flex-direction:column}.az-nav-column .nav-link{padding:0;height:38px;color:#1c273c;display:flex;align-items:center;justify-content:flex-start}.az-nav-column .nav-link i{font-size:24px;line-height:0;width:24px;margin-right:12px;text-align:center;transition:all 0.2s ease-in-out}@media (prefers-reduced-motion: reduce){.az-nav-column .nav-link i{transition:none}}.az-nav-column .nav-link i:not([class*=' tx-']){color:#7987a1}.az-nav-column .nav-link i.typcn{line-height:.9}.az-nav-column .nav-link span{font-weight:400;font-size:11px;color:#97a3b9;margin-left:auto}.az-nav-column .nav-link:hover,.az-nav-column .nav-link:focus{color:#1c273c}.az-nav-column .nav-link:hover i:not([class*=' tx-']),.az-nav-column .nav-link:focus i:not([class*=' tx-']){color:#1c273c}.az-nav-column .nav-link.active{position:relative}.az-nav-column .nav-link.active::before{content:'';position:absolute;top:6px;bottom:6px;left:-28px;width:3px;background-color:#5b47fb;border-radius:3px;display:none}.az-nav-column .nav-link.active,.az-nav-column .nav-link.active:hover,.az-nav-column .nav-link.active:focus{color:#5b47fb}.az-nav-column .nav-link.active i,.az-nav-column .nav-link.active:hover i,.az-nav-column .nav-link.active:focus i{color:#5b47fb}.az-nav-column .nav-link+.nav-link{border-top:1px dotted #b4bdce}.az-nav-column.sm .nav-link{font-size:.875rem;font-weight:400;padding:10px 0}.az-nav-column.sm .nav-link i{font-size:21px}.az-nav-dark .nav-link{color:rgba(255,255,255,0.7)}.az-nav-dark .nav-link:hover,.az-nav-dark .nav-link:focus{color:#fff}.az-nav-dark .nav-link+.nav-link{border-color:#596882}.az-nav-dark .nav-link.active{color:#5b47fb}.az-nav-colored-bg .nav-link+.nav-link{border-color:rgba(255,255,255,0.4)}.az-nav-colored-bg .nav-link.active{color:#fff}.az-nav-line{position:relative}.az-nav-line .nav-link{padding:0;color:#596882;position:relative}.az-nav-line .nav-link:hover,.az-nav-line .nav-link:focus{color:#1c273c}.az-nav-line .nav-link+.nav-link{margin-top:15px}@media (min-width: 768px){.az-nav-line .nav-link+.nav-link{margin-top:0;margin-left:30px}}.az-nav-line .nav-link.active{color:#1c273c}.az-nav-line .nav-link.active::before{content:'';position:absolute;top:0;bottom:0;left:-20px;width:2px;background-color:#1c273c}@media (min-width: 768px){.az-nav-line .nav-link.active::before{top:auto;bottom:-20px;left:0;right:0;height:2px;width:auto}}.az-nav-line.az-nav-dark .nav-link{color:rgba(255,255,255,0.7)}.az-nav-line.az-nav-dark .nav-link:hover,.az-nav-line.az-nav-dark .nav-link:focus{color:#fff}.az-nav-line.az-nav-dark .nav-link.active{color:#fff}.az-nav-line.az-nav-dark .nav-link.active::before{background-color:#fff}.az-nav-tabs{padding:15px 15px 0;background-color:#cdd4e0}.az-nav-tabs .lSSlideOuter{position:relative;padding-left:32px;padding-right:35px}.az-nav-tabs .lSSlideWrapper{overflow:visible}.az-nav-tabs .lSAction>a{display:block;height:40px;top:16px;opacity:1;background-color:#b4bdce;background-image:none}.az-nav-tabs .lSAction>a:hover,.az-nav-tabs .lSAction>a:focus{background-color:#a5afc4}.az-nav-tabs .lSAction>a::before{font-family:'Ionicons';font-size:18px;position:absolute;top:-4px;left:0;right:0;bottom:0;display:flex;align-items:center;justify-content:center}.az-nav-tabs .lSAction>a.lSPrev{left:-32px}.az-nav-tabs .lSAction>a.lSPrev::before{content:'\f3cf'}.az-nav-tabs .lSAction>a.lSNext{right:-35px}.az-nav-tabs .lSAction>a.lSNext::before{content:'\f3d1'}.az-nav-tabs .lSAction>a.disabled{background-color:#e3e7ed;color:#fff}.az-nav-tabs .lightSlider{display:flex}.az-nav-tabs .tab-item{flex-shrink:0;display:block;float:none;min-width:150px}.az-nav-tabs .tab-link{display:flex;align-items:center;justify-content:center;padding:10px 20px;line-height:1.428;color:#596882;white-space:nowrap;background-color:#e3e7ed}.az-nav-tabs .tab-link:hover,.az-nav-tabs .tab-link:focus{background-color:#f4f5f8}.az-nav-tabs .tab-link.active{background-color:#fff;color:#1c273c;font-weight:500}.az-tab-pane{display:none}.az-tab-pane.active{display:block}@media (max-width: 575px){.az-content-left-show{overflow:hidden}}@media (max-width: 991.98px){.az-content-left-show .az-content-left{display:block;position:fixed;top:0;bottom:0;left:0;background-color:#fff;z-index:800;border-right:1px solid #cdd4e0;box-shadow:0 0 3px rgba(28,39,60,0.1);overflow-y:auto}}@media (max-width: 575px){.az-content-left-show .az-content-body{display:none}}@media (max-width: 991.98px){.az-content-body-show .az-header .az-header-menu-icon{display:none}.az-content-body-show .az-header .az-header-left .az-header-arrow{display:block}.az-content-body-show .az-content-left{display:none}.az-content-body-show .az-content-body{display:block}}@media (min-width: 992px){.az-content{padding:30px 0}}.az-content .container,.az-content .container-fluid{display:flex;padding-left:20px;padding-right:20px}@media (min-width: 992px){.az-content .container{padding:0}}@media (max-width: 991.98px){.az-content .container{max-width:none}}.az-content-app{padding-top:20px}@media (min-width: 992px){.az-content-app{height:calc(100vh - 104px);padding-top:30px}}.az-content-app .container,.az-content-app .container-fluid{height:100%;padding:0}.az-content-left{width:100%;position:relative;padding:0 20px 20px;flex-shrink:0;display:none}@media (min-width: 576px){.az-content-left{width:280px}}@media (min-width: 992px){.az-content-left{display:block;padding:0}}.az-content-header{height:60px;display:flex;align-items:center;justify-content:space-between;margin-bottom:20px}@media (min-width: 992px){.az-content-header{display:none}}.az-content-header .az-logo{flex:1;text-align:center}.az-content-body{flex:1}.az-content-right{padding-left:25px;margin-left:25px;width:200px;display:none}@media (min-width: 992px){.az-content-right{display:block}}.az-content-breadcrumb{display:flex;align-items:center;font-size:10px;font-weight:500;font-family:"Roboto",sans-serif;letter-spacing:1px;text-transform:uppercase;color:#97a3b9;margin-bottom:10px}.az-content-breadcrumb span{position:relative}.az-content-breadcrumb span+span::before{content:'\f3d1';font-family:'Ionicons';font-size:12px;font-weight:300;display:inline;margin:0 5px;color:#b4bdce;line-height:0;position:relative;top:1px}.az-content-breadcrumb span:last-child{color:#596882}.az-content-title{color:#1c273c;font-weight:500;font-size:32px;text-indent:-1px;line-height:1;position:relative;margin-bottom:20px}@media (min-width: 992px){.az-content-title{margin-bottom:40px}}.az-content-label,.card-table-two .card-title,.card-dashboard-eight .card-title{color:#1c273c;font-weight:800;text-transform:uppercase;line-height:1;margin-bottom:10px;letter-spacing:.2px}.az-content-label-sm{font-size:10px;font-weight:600;text-transform:uppercase;color:#97a3b9;letter-spacing:.5px}.az-content-text{font-size:12px;line-height:1.4;display:block;color:#7987a1}.az-footer{background-color:#fff;border-top:1px solid #cdd4e0;margin-top:auto;display:none}@media (min-width: 992px){.az-footer{display:block}}.az-footer .container,.az-footer .container-fluid{font-size:12px;padding:10px 20px 0;display:flex;align-items:center;justify-content:space-between;color:#7987a1}@media (min-width: 992px){.az-footer .container{padding:10px 0 0}}.az-footer .container-fluid{padding-left:20px;padding-right:20px}.az-footer-app .container,.az-footer-app .container-fluid{border-top-width:0}body{font-family:"Roboto",sans-serif}.az-body,.az-dashboard{min-height:100vh;display:flex;flex-direction:column;justify-content:flex-start;position:relative}.az-body::before{content:'az';position:fixed;top:45%;left:70%;transform:translate3d(-50%, -58%, 0);font-size:1300px;font-weight:600;letter-spacing:-10px;line-height:.5;opacity:.02;z-index:-1;display:none}.az-table-reference{margin-top:40px;background-color:#fff}.az-table-reference>thead>tr>th,.az-table-reference>thead>tr>td,.az-table-reference>tbody>tr>th,.az-table-reference>tbody>tr>td{padding:8px 10px;border:1px solid #cdd4e0;font-size:13px}.az-table-reference>thead>tr>th,.az-table-reference>thead>tr>td{background-color:#f4f5f8;color:#7987a1;font-size:11px;font-weight:500;text-transform:uppercase;letter-spacing:1px;border-bottom:0}@media (max-width: 991.98px){.az-header-menu-show{overflow:hidden}.az-header-menu-show .az-header-menu{border-right:1px solid rgba(28,39,60,0.08);box-shadow:0 0 30px rgba(28,39,60,0.08);transform:translateX(0)}.az-header-menu-show .az-navbar-backdrop{visibility:visible;opacity:1}}.az-header{height:60px;background-color:#fff;box-shadow:0 0 30px rgba(28,39,60,0.08);border-bottom:1px solid rgba(28,39,60,0.12)}@media (min-width: 992px){.az-header{position:relative;z-index:100;height:64px}}.az-header>.container,.az-header>.container-fluid{height:100%;display:flex;align-items:center;justify-content:space-between;padding-left:20px;padding-right:20px}@media (min-width: 992px){.az-header>.container,.az-header>.container-fluid{padding-left:25px;padding-right:25px}}@media (min-width: 992px){.az-header>.container{padding:0}}@media (max-width: 991.98px){.az-header>.container{max-width:none}}.az-header .az-header-left .az-logo{display:none}@media (min-width: 992px){.az-header .az-header-left .az-logo{display:flex}}.az-header-left{display:flex;align-items:center}.az-header-left .az-header-arrow{display:none;position:relative;top:-2px}.az-logo{font-weight:700;font-size:28px;font-family:'Poppins', sans-serif;text-transform:lowercase;color:#5b47fb;letter-spacing:-1px;display:flex;align-items:center;position:relative;top:-2px}.az-logo:hover,.az-logo:focus{color:#5b47fb}.az-logo i{display:block;line-height:.9;margin-right:8px;font-size:40px}.az-logo i::before{width:auto;height:auto}.az-header-menu-icon{margin-right:10px;width:20px;height:30px;display:flex;align-items:center}@media (min-width: 992px){.az-header-menu-icon{margin-right:25px}}.az-header-menu-icon span{display:block;position:relative;width:15px;height:2px;background-color:#1c273c;border-radius:3px;transition:all 0.2s ease-in-out}@media (prefers-reduced-motion: reduce){.az-header-menu-icon span{transition:none}}.az-header-menu-icon span::before,.az-header-menu-icon span::after{content:'';position:absolute;left:0;width:20px;height:2px;background-color:#1c273c;border-radius:3px;transition:all 0.2s ease-in-out}@media (prefers-reduced-motion: reduce){.az-header-menu-icon span::before,.az-header-menu-icon span::after{transition:none}}.az-header-menu-icon span::before{top:-6px}.az-header-menu-icon span::after{bottom:-6px}.az-header-menu{position:fixed;top:0;bottom:0;left:0;width:240px;background-color:#fff;overflow-y:auto;z-index:1000;transform:translateX(-240px);transition:all 0.35s}@media (prefers-reduced-motion: reduce){.az-header-menu{transition:none}}@media (min-width: 992px){.az-header-menu{background-color:transparent;border-right:0;position:static;width:auto;overflow-y:visible;transform:none;z-index:auto}}.az-header-menu>.nav{flex-direction:column;padding:20px}@media (min-width: 992px){.az-header-menu>.nav{padding:0;flex-direction:row;align-items:center}}.az-header-menu .nav-item::before{content:'';position:absolute;top:67px;margin-left:25px;width:15px;height:15px;border-top:2px solid rgba(28,39,60,0.12);border-left:2px solid rgba(28,39,60,0.12);background-color:#fff;transform:rotate(45deg);z-index:100;display:none}.az-header-menu .nav-item+.nav-item{margin-top:10px}@media (min-width: 992px){.az-header-menu .nav-item+.nav-item{margin-top:0;margin-left:30px}}.az-header-menu .nav-item>.nav-link{display:flex;align-items:center;position:relative;color:#031b4e;font-size:15px;font-weight:500;padding:0;transition:all 0.2s ease-in-out}@media (prefers-reduced-motion: reduce){.az-header-menu .nav-item>.nav-link{transition:none}}@media (min-width: 992px){.az-header-menu .nav-item>.nav-link{font-size:.875rem}}.az-header-menu .nav-item>.nav-link:hover{color:#5b47fb}.az-header-menu .nav-item>.nav-link:hover i{color:#5b47fb}.az-header-menu .nav-item>.nav-link.with-sub::after{content:'\f3d0';display:inline-block;font-family:'Ionicons';font-size:12px;font-weight:400;margin-left:auto;margin-top:3px;opacity:.5}@media (min-width: 992px){.az-header-menu .nav-item>.nav-link.with-sub::after{margin-left:5px}}.az-header-menu .nav-item>.nav-link .typcn{font-size:20px;line-height:.95;margin-right:15px;width:16px}@media (min-width: 992px){.az-header-menu .nav-item>.nav-link .typcn{font-size:18px;margin-right:7px}}.az-header-menu .nav-item>.nav-link .typcn::before{width:auto}.az-header-menu .nav-item.active>.nav-link{color:#5b47fb;position:relative}.az-header-menu .nav-item.active>.nav-link::before{content:'';position:absolute;bottom:0;top:0;left:-20px;width:2px;background-color:#5b47fb;border-radius:3px}@media (min-width: 992px){.az-header-menu .nav-item.active>.nav-link::before{top:auto;bottom:-22px;left:0;right:0;width:auto;height:2px}}@media (min-width: 992px){.az-header-menu .nav-item.show::before{display:block}}.az-header-menu .nav-item.show .az-menu-sub{display:block}.az-header-menu-header{height:60px;display:flex;align-items:center;justify-content:space-between;padding:0 20px;border-bottom:1px solid rgba(28,39,60,0.05)}@media (min-width: 992px){.az-header-menu-header{display:none}}.az-header-menu-header .close{font-weight:300;font-size:28px}.az-menu-sub{font-size:13px;margin-left:32px;margin-top:12px;display:none}@media (min-width: 992px){.az-menu-sub{position:absolute;top:74px;background-color:#fff;padding:15px 20px;border:2px solid rgba(28,39,60,0.12);min-width:200px;margin-left:0;margin-top:0}}.az-menu-sub .nav{flex-direction:column}.az-menu-sub .nav-link{padding:0;display:block;color:#596882}.az-menu-sub .nav-link+.nav-link{margin-top:6px;padding-top:6px;border-top:1px dotted #e3e7ed}.az-menu-sub .nav-link:hover,.az-menu-sub .nav-link:focus{color:#5b47fb}.az-menu-sub .nav-link.active{color:#5b47fb;font-weight:500}@media (min-width: 992px){.az-menu-sub .nav-link.active{font-weight:400}}.az-menu-sub-mega{left:0;right:0;background-color:transparent;padding:0;border:0}.az-menu-sub-mega .container{padding:0}@media (max-width: 991.98px){.az-menu-sub-mega .container{max-width:none}}@media (min-width: 992px){.az-menu-sub-mega .container{display:flex;background-color:#fff;border:2px solid rgba(28,39,60,0.12)}}@media (min-width: 992px){.az-menu-sub-mega .container>div{display:flex;padding:20px;flex:1;margin-top:0}}@media (min-width: 1200px){.az-menu-sub-mega .container>div{padding:20px 25px}}.az-menu-sub-mega .container>div+div{margin-top:25px}@media (min-width: 992px){.az-menu-sub-mega .container>div+div{margin-top:0;border-left:1px solid rgba(28,39,60,0.05)}}.az-menu-sub-mega .nav{min-width:120px;flex-direction:column}@media (min-width: 1200px){.az-menu-sub-mega .nav{min-width:140px}}.az-menu-sub-mega .nav+.nav{border-top:1px dotted #e3e7ed;margin-top:6px;padding-top:6px}@media (min-width: 992px){.az-menu-sub-mega .nav+.nav{margin-left:20px;margin-top:31px;padding-top:0;border-top:0}}@media (min-width: 1200px){.az-menu-sub-mega .nav+.nav{margin-left:25px}}.az-menu-sub-mega .nav>span{display:block;text-transform:uppercase;font-size:10px;font-weight:700;color:#1c273c;letter-spacing:.5px;margin-bottom:15px;margin-top:30px}@media (min-width: 992px){.az-menu-sub-mega .nav>span{font-size:12px}}.az-menu-sub-mega .nav>span:first-of-type{margin-top:0}.az-header-center{flex:1;margin:0 50px;position:relative;display:none}@media (min-width: 992px){.az-header-center{display:block}}.az-header-center .form-control{border-color:#e3e7ed;border-width:2px;background-color:#fcfcfc;transition:none;height:40px}.az-header-center .form-control:focus{background-color:#fff;border-color:#b4bdce;box-shadow:none !important}.az-header-center .form-control:focus+.btn,.az-header-center .sp-container .form-control:focus+button,.sp-container .az-header-center .form-control:focus+button{color:#7987a1}.az-header-center .btn,.az-header-center .sp-container button,.sp-container .az-header-center button{position:absolute;top:0;right:0;background-color:transparent;height:40px;color:#b4bdce;transition:none;font-size:16px;padding-right:13px}.az-header-center .btn:hover,.az-header-center .sp-container button:hover,.sp-container .az-header-center button:hover,.az-header-center .btn:focus,.az-header-center .sp-container button:focus,.sp-container .az-header-center button:focus{color:#1c273c}.az-header-right{display:flex;align-items:center}.az-header-right .btn-social{padding:0;display:flex;align-items:center;justify-content:center;color:#97a3b9;border-radius:3px;transition:all 0.2s ease-in-out}@media (prefers-reduced-motion: reduce){.az-header-right .btn-social{transition:none}}.az-header-right .btn-social:hover,.az-header-right .btn-social:focus{color:#596882}.az-header-right .btn-social i{font-size:18px;line-height:0}.az-header-right .btn-social+.btn-social{margin-left:10px}.az-header-right .btn-buy{text-transform:uppercase;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-size:11px;font-weight:500;background-color:#5b47fb;color:#fff;letter-spacing:.5px;display:flex;align-items:center;border-radius:3px;transition:all 0.2s ease-in-out;margin-left:20px}@media (prefers-reduced-motion: reduce){.az-header-right .btn-buy{transition:none}}.az-header-right .btn-buy:hover,.az-header-right .btn-buy:focus{background-color:#452efa}.az-header-search-link{font-size:18px;color:#596882;line-height:1;margin-right:15px}.az-header-arrow{font-size:27px;color:#1c273c;display:inline-block;line-height:0}.az-header-arrow i{line-height:0}.az-header-arrow:hover,.az-header-arrow:focus{color:#596882}.az-header-message,.az-header-notification{position:relative}.az-header-message>a,.az-header-notification>a{display:block;font-size:24px;color:#1c273c;position:relative;line-height:.9;outline:none}.az-header-message>a.new::before,.az-header-notification>a.new::before{content:'';position:absolute;top:-2px;right:2px;width:7px;height:7px;background-color:#dc3545;border-radius:100%}.az-header-notification{margin-left:15px}.az-header-notification>a::after{content:'';position:absolute;top:47px;left:50%;margin-left:-7px;width:14px;height:14px;border:2px solid transparent;border-top-color:#cdd4e0;border-left-color:#cdd4e0;transform:rotate(45deg);background-color:#fff;z-index:901;display:none}@media (min-width: 992px){.az-header-notification>a::after{bottom:-36px}}.az-header-notification .dropdown-menu{background-color:#fff;width:100%;position:fixed;top:0;left:0;right:0;bottom:0;padding:15px 20px;border-width:0;margin-top:0;z-index:900;border-radius:0}@media (min-width: 576px){.az-header-notification .dropdown-menu{width:300px;position:absolute;top:52px;left:auto;right:-10px;bottom:auto;padding:20px 20px 15px;border-color:#cdd4e0;border-width:2px}}.az-header-notification .dropdown-footer{text-align:center;padding-top:10px;font-size:13px;border-top:1px dotted #b4bdce}@media (min-width: 576px){.az-header-notification.show>a::after{display:block}}.az-header-notification.show .dropdown-menu{display:block}.az-notification-title{font-size:18px;font-weight:700;color:#1c273c;margin-bottom:5px;line-height:1}.az-notification-text{font-size:13px;margin-bottom:15px}.az-notification-list .media{padding:10px 0;position:relative}.az-notification-list .media+.media{border-top:1px dotted #b4bdce}.az-notification-list .media.new{color:#1c273c}.az-notification-list .media:hover,.az-notification-list .media:focus{cursor:pointer;z-index:1}.az-notification-list .media:hover::before,.az-notification-list .media:focus::before{content:'';position:absolute;top:-1px;left:-20px;bottom:-1px;right:-20px;background-color:#f4f5f8;border-top:1px solid #cdd4e0;border-bottom:1px solid #cdd4e0;z-index:-1}.az-notification-list .media-body{margin-left:15px;font-size:13px}.az-notification-list .media-body p{margin-bottom:5px;line-height:1.3}.az-notification-list .media-body strong{font-weight:500}.az-notification-list .media-body span{display:block;font-size:11px;color:#97a3b9}.az-profile-menu{position:relative;margin-left:15px}.az-profile-menu>.az-img-user{outline:none;width:32px;height:32px}.az-profile-menu>.az-img-user::before{content:'';position:absolute;bottom:-33px;left:50%;margin-left:-7px;width:14px;height:14px;border:2px solid transparent;border-top-color:#cdd4e0;border-left-color:#cdd4e0;transform:rotate(45deg);background-color:#fff;z-index:901;display:none}.az-profile-menu>.az-img-user::after{display:none}.az-profile-menu .dropdown-menu{background-color:#fff;width:100%;position:fixed;top:0;left:0;right:0;bottom:0;padding:15px 20px 5px;border-width:0;margin-top:0;z-index:900;border-radius:0}@media (min-width: 576px){.az-profile-menu .dropdown-menu{padding-top:20px;position:absolute;top:56px;left:auto;right:-10px;bottom:auto;width:230px;border-color:#cdd4e0;border-width:2px}}.az-profile-menu .dropdown-item{position:relative;padding:0;height:38px;display:flex;align-items:center;font-size:13px;color:#596882}.az-profile-menu .dropdown-item i{font-size:24px;margin-right:10px;width:24px;text-align:center}.az-profile-menu .dropdown-item i.typcn{line-height:.9}.az-profile-menu .dropdown-item:hover,.az-profile-menu .dropdown-item:focus{background-color:transparent;color:#5b47fb}.az-profile-menu .dropdown-item+.dropdown-item{border-top:1px dotted #b4bdce}.az-profile-menu .dropdown-item:last-child{margin-bottom:10px}@media (min-width: 576px){.az-profile-menu.show .az-img-user::before{display:block}}.az-profile-menu.show .dropdown-menu{display:block}.az-header-profile{display:flex;flex-direction:column;align-items:center;padding:20px}.az-header-profile .az-img-user{width:120px;height:120px;margin-bottom:20px}@media (min-width: 576px){.az-header-profile .az-img-user{width:80px;height:80px}}.az-header-profile .az-img-user::after{display:none}.az-header-profile h6{font-size:24px;font-weight:700;color:#1c273c;margin-bottom:0}@media (min-width: 576px){.az-header-profile h6{font-size:18px}}.az-header-profile span{display:block;font-size:13px}.az-header-sticky{position:fixed;top:0;left:0;right:0;z-index:1000}@media (max-width: 991.98px){.az-iconbar-show .az-iconbar{display:flex}.az-iconbar-show .az-iconbar-aside{display:block}}.az-iconbar{width:64px;display:none;flex-direction:column;align-items:center;padding:20px 0;background-color:#fff;position:fixed;top:0;left:0;height:100%;background-color:#fff;z-index:500}@media (min-width: 992px){.az-iconbar{display:flex}}.az-iconbar .nav{flex:1;flex-direction:column;align-items:center;padding:5px 0}.az-iconbar .nav-link{position:relative;padding:0;color:#031b4e;width:40px;height:40px;display:flex;align-items:center;justify-content:center}.az-iconbar .nav-link i{font-size:28px}.az-iconbar .nav-link i.typcn{line-height:1}.az-iconbar .nav-link i.typcn::before{width:auto}.az-iconbar .nav-link i.typcn-device-laptop,.az-iconbar .nav-link i.typcn-th-large-outline{font-size:25px}.az-iconbar .nav-link i.fa-desktop{font-size:23px}.az-iconbar .nav-link:hover,.az-iconbar .nav-link:focus{color:#596882}.az-iconbar .nav-link.active{color:#5b47fb}.az-iconbar .nav-link+.nav-link{margin-top:10px}.az-iconbar-logo{width:100%;display:flex;align-items:center;justify-content:center;font-size:32px;line-height:.9;color:#1c273c;flex-shrink:0;margin-bottom:20px;position:relative}.az-iconbar-logo::after{content:'';position:absolute;bottom:6px;left:20px;height:3px;width:24px;background-color:#5b47fb;border-radius:2px}.az-iconbar-logo:hover,.az-iconbar-logo:focus{color:#1c273c}.az-iconbar-bottom{flex-shrink:0;display:flex;flex-direction:column;align-items:center}.az-iconbar-help{line-height:0;font-size:22px;color:#7987a1;margin-bottom:20px}.az-iconbar-help:hover,.az-iconbar-help:focus{color:#1c273c}.az-iconbar-aside{width:230px;height:100%;background-color:#fff;border-right:1px solid #b4bdce;position:fixed;top:0;left:64px;overflow-y:auto;z-index:600;display:none}@media (min-width: 1200px){.az-iconbar-aside{border-right:0;z-index:500}}@media (min-width: 992px){.az-iconbar-aside.show{display:block}}@media (min-width: 1200px){.az-iconbar-aside.show+.az-content{margin-left:294px}}.az-iconbar-header{display:flex;align-items:center;justify-content:space-between;padding:20px;padding-left:0}.az-iconbar-header .az-logo{line-height:1}.az-iconbar-toggle-menu{display:block;position:relative;line-height:0;color:#1c273c;font-size:28px;opacity:.5}.az-iconbar-toggle-menu:hover,.az-iconbar-toggle-menu:focus{opacity:1;color:#1c273c}.az-iconbar-toggle-menu i:first-child{display:none}@media (min-width: 1200px){.az-iconbar-toggle-menu{font-size:24px}.az-iconbar-toggle-menu::before{content:'';position:absolute;top:3px;bottom:3px;left:-1px;border-left:2px solid #1c273c}.az-iconbar-toggle-menu i:first-child{display:block}.az-iconbar-toggle-menu i:last-child{display:none}}.az-iconbar-body{padding:20px;padding-left:0;height:calc(100vh - 68px)}.az-iconbar-body .nav{flex-direction:column;border-left:2px solid #e3e7ed;padding-top:10px;padding-left:20px}.az-iconbar-body .nav-item{position:relative;display:block}.az-iconbar-body .nav-item+.nav-item{margin-top:-1px;border-top:1px dotted #cdd4e0}.az-iconbar-body .nav-item.active .nav-link{color:#5b47fb}.az-iconbar-body .nav-item.active .nav-link i{color:#5b47fb}.az-iconbar-body .nav-item.show .nav-sub{display:block}.az-iconbar-body .nav-link{position:relative;color:#031b4e;font-size:13px;padding:0;display:flex;align-items:center;height:38px}.az-iconbar-body .nav-link i{color:#97a3b9;font-size:16px;font-weight:400;line-height:0;margin-right:10px}.az-iconbar-body .nav-link i.typcn{line-height:.9}.az-iconbar-body .nav-link i.typcn::before{width:auto}.az-iconbar-body .nav-link:hover,.az-iconbar-body .nav-link:focus{color:#5b47fb}.az-iconbar-body .nav-link:hover i,.az-iconbar-body .nav-link:focus i{color:#5b47fb}.az-iconbar-body .nav-link.with-sub{justify-content:space-between}.az-iconbar-body .nav-link.with-sub::after{content:'\f3d0';font-family:'Ionicons';font-size:11px;font-weight:400;display:inline-block;position:relative;margin-left:auto;color:#97a3b9}@media (min-width: 992px){.az-iconbar-body .nav-link.with-sub::after{margin-left:4px;font-size:12px}}.az-iconbar-body .nav-sub{list-style:none;padding:0;margin:0;border-top:1px dotted #cdd4e0;display:none}.az-iconbar-body .nav-sub .nav-sub-item{position:relative;display:block;margin-left:15px}.az-iconbar-body .nav-sub .nav-sub-item+.nav-sub-item{border-top:1px dotted #cdd4e0}.az-iconbar-body .nav-sub .nav-sub-item.active>.nav-sub-link{color:#5b47fb}.az-iconbar-body .nav-sub .nav-sub-link{display:flex;align-items:center;height:36px;color:#031b4e}.az-iconbar-body .nav-sub .nav-sub-link:hover,.az-iconbar-body .nav-sub .nav-sub-link:focus{color:#5b47fb}.az-iconbar-title{font-size:20px;font-weight:700;color:#1c273c;margin-bottom:10px;line-height:1}.az-iconbar-text{display:block;font-size:12px;color:#7987a1;margin-bottom:12px}.az-iconbar-pane{margin-bottom:20px;display:none}.az-iconbar-pane.show{display:block}@media (max-width: 991.98px){.az-navbar-show{overflow:hidden}.az-navbar-show .az-navbar-backdrop{visibility:visible;opacity:1}.az-navbar-show .az-navbar{transform:translateX(0);visibility:visible}}.az-navbar-backdrop{position:fixed;top:0;left:0;right:0;bottom:0;background-color:rgba(0,0,0,0.45);z-index:900;visibility:hidden;opacity:0;transition:all 0.4s}@media (prefers-reduced-motion: reduce){.az-navbar-backdrop{transition:none}}.az-navbar{position:fixed;top:0;left:0;bottom:0;width:240px;overflow-y:auto;background-color:#fff;z-index:1000;visibility:hidden;transform:translateX(-240px);transition:all 0.4s}@media (prefers-reduced-motion: reduce){.az-navbar{transition:none}}@media (min-width: 992px){.az-navbar{position:relative;top:auto;left:auto;bottom:auto;width:auto;padding:0;border-right:0;overflow-y:inherit;display:block;border-bottom:1px solid rgba(28,39,60,0.12);visibility:visible;transform:none;z-index:auto}}.az-navbar>.container,.az-navbar>.container-fluid{display:flex;flex-direction:column}@media (max-width: 991.98px){.az-navbar>.container,.az-navbar>.container-fluid{padding:0}}@media (min-width: 992px){.az-navbar>.container,.az-navbar>.container-fluid{flex-direction:row;align-items:center;height:48px}}@media (min-width: 992px){.az-navbar>.container{padding:0}}@media (min-width: 992px){.az-navbar>.container-fluid{padding-left:20px;padding-right:20px}}.az-navbar .nav{flex-direction:column;padding:20px;margin-bottom:20px}@media (min-width: 992px){.az-navbar .nav{flex-direction:row;align-items:center;margin-bottom:0;padding:0}}.az-navbar .nav-label{font-size:10px;font-weight:500;text-transform:uppercase;color:#7987a1;letter-spacing:1px;display:block;margin-bottom:10px}@media (min-width: 992px){.az-navbar .nav-label{display:none}}.az-navbar .nav-item{position:relative}.az-navbar .nav-item+.nav-item{border-top:1px dotted #e3e7ed}@media (min-width: 992px){.az-navbar .nav-item+.nav-item{border-top:0;margin-left:15px;padding-left:15px;border-left:1px dotted #e3e7ed}}@media (min-width: 1200px){.az-navbar .nav-item+.nav-item{margin-left:20px;padding-left:20px}}.az-navbar .nav-item.active .nav-link{color:#5b47fb}@media (min-width: 992px){.az-navbar .nav-item.show .nav-link::before{display:block}}.az-navbar .nav-item.show>.nav-sub{display:block}.az-navbar .nav-item-mega{position:static}.az-navbar .nav-link{padding:0;color:#1c273c;font-size:15px;font-weight:500;position:relative;display:flex;align-items:center;height:42px;outline:none}@media (min-width: 992px){.az-navbar .nav-link{height:auto;font-size:14px}}.az-navbar .nav-link i{font-size:26px;margin-right:10px}@media (min-width: 992px){.az-navbar .nav-link i{margin-right:8px;font-size:22px}}.az-navbar .nav-link i.typcn{line-height:1;width:20px}@media (min-width: 992px){.az-navbar .nav-link i.typcn{line-height:.9;width:auto}}.az-navbar .nav-link i.typcn::before{width:auto}.az-navbar .nav-link.with-sub::after{content:'\f3d0';font-family:'Ionicons';font-size:11px;font-weight:400;display:inline-block;position:relative;margin-left:auto;color:#97a3b9}@media (min-width: 992px){.az-navbar .nav-link.with-sub::after{margin-left:4px}}.az-navbar .nav-link.with-sub::before{content:'';position:absolute;top:39px;left:50%;margin-left:-7px;width:15px;height:15px;border:2px solid transparent;border-top-color:rgba(28,39,60,0.12);border-left-color:rgba(28,39,60,0.12);transform:rotate(45deg);background-color:#fff;z-index:901;display:none}.az-navbar .nav-sub{display:none;border-top:1px dotted #e3e7ed;list-style:none;padding:0;margin:0}@media (min-width: 992px){.az-navbar .nav-sub{position:absolute;top:44.5px;left:0;width:200px;background-color:#fff;border:2px solid rgba(28,39,60,0.12);padding:8px 20px;z-index:900}}.az-navbar .nav-sub-item{position:relative;display:block;margin-left:30px}@media (min-width: 992px){.az-navbar .nav-sub-item{margin-left:0}}.az-navbar .nav-sub-item+.nav-sub-item{border-top:1px dotted #e3e7ed}.az-navbar .nav-sub-item>.nav-sub{left:176px;top:-10px;display:none}@media (max-width: 991.98px){.az-navbar .nav-sub-item>.nav-sub>.nav-sub-item{margin-left:37px}.az-navbar .nav-sub-item>.nav-sub>.nav-sub-item>.nav-sub-link{padding-left:10px}}.az-navbar .nav-sub-item.show>.nav-sub{display:block}.az-navbar .nav-sub-item.active>.nav-sub-link{color:#5b47fb}.az-navbar .nav-sub-link{position:relative;font-size:.875rem;color:#596882;display:flex;align-items:center;height:34px}@media (min-width: 992px){.az-navbar .nav-sub-link{font-size:.8125rem;height:36px}}.az-navbar .nav-sub-link:hover,.az-navbar .nav-sub-link:focus{color:#5b47fb;outline:none}.az-navbar .nav-sub-link.with-sub{justify-content:space-between}.az-navbar .nav-sub-link.with-sub::after{content:'\f3d0';font-family:'Ionicons';font-size:11px;font-weight:400;display:inline-block;position:relative;margin-left:auto;color:#97a3b9}@media (min-width: 992px){.az-navbar .nav-sub-link.with-sub::after{margin-left:4px;content:'\f3d1';font-size:12px}}.az-navbar .nav-sub-mega{top:57px;left:0;right:0;background-color:transparent;padding:7px 0;border:0;width:auto;border-top:1px dotted #e3e7ed;pointer-events:none}@media (min-width: 992px){.az-navbar .nav-sub-mega{padding:0 25px;border-top:0}}.az-navbar .nav-sub-mega .container,.az-navbar .nav-sub-mega .container-fluid{padding:0;pointer-events:auto}@media (max-width: 991.98px){.az-navbar .nav-sub-mega .container,.az-navbar .nav-sub-mega .container-fluid{max-width:none}}@media (min-width: 992px){.az-navbar .nav-sub-mega .container,.az-navbar .nav-sub-mega .container-fluid{display:flex;background-color:#fff;border:2px solid rgba(28,39,60,0.12)}}@media (min-width: 992px){.az-navbar .nav-sub-mega .container>div,.az-navbar .nav-sub-mega .container-fluid>div{display:flex;padding:20px;flex:1;margin-top:0}}@media (min-width: 1200px){.az-navbar .nav-sub-mega .container>div,.az-navbar .nav-sub-mega .container-fluid>div{padding:20px 25px}}.az-navbar .nav-sub-mega .container>div+div,.az-navbar .nav-sub-mega .container-fluid>div+div{margin-top:25px}@media (min-width: 992px){.az-navbar .nav-sub-mega .container>div+div,.az-navbar .nav-sub-mega .container-fluid>div+div{margin-top:0;border-left:1px solid rgba(28,39,60,0.05)}}.az-navbar .nav-sub-mega .nav{min-width:120px;flex-direction:column;align-items:stretch;padding:0;margin:0}@media (min-width: 1200px){.az-navbar .nav-sub-mega .nav{min-width:140px}}@media (max-width: 991.98px){.az-navbar .nav-sub-mega .nav+.nav .nav-sub-item:first-child{margin-top:6px;padding-top:6px;border-top:1px dotted #e3e7ed}}@media (min-width: 992px){.az-navbar .nav-sub-mega .nav+.nav{margin-left:20px;margin-top:31px;padding-top:0;border-top:0}}@media (min-width: 1200px){.az-navbar .nav-sub-mega .nav+.nav{margin-left:25px}}.az-navbar .nav-sub-mega .nav li:not(.nav-sub-item){display:block;text-transform:uppercase;font-size:12px;font-weight:700;color:#1c273c;letter-spacing:.5px;margin-bottom:10px;margin-top:30px;margin-left:30px}@media (min-width: 992px){.az-navbar .nav-sub-mega .nav li:not(.nav-sub-item){margin-bottom:15px;margin-left:0}}.az-navbar .nav-sub-mega .nav li:not(.nav-sub-item):first-of-type{margin-top:0}.az-navbar .nav-sub-mega .nav-sub-item+.nav-sub-item{padding-top:7px;margin-top:7px}.az-navbar .nav-sub-mega .nav-sub-link{height:auto}.az-navbar-header{display:flex;align-items:center;justify-content:space-between;padding:0 20px;border-bottom:1px solid #e3e7ed;height:60px}@media (min-width: 992px){.az-navbar-header{display:none}}.az-navbar-search{position:relative;padding:0 20px;border-bottom:1px solid #e3e7ed}@media (min-width: 992px){.az-navbar-search{display:none}}.az-navbar-search .form-control{border-width:0;padding:0}.az-navbar-search .form-control:focus{box-shadow:none !important;border-color:#cdd4e0}.az-navbar-search .btn,.az-navbar-search .sp-container button,.sp-container .az-navbar-search button{background-color:transparent;position:absolute;top:0;right:0;height:38px;padding-left:20px;padding-right:20px;font-size:16px;line-height:1}.az-navbar-two .nav-item.active{position:relative}.az-navbar-two .nav-item.active::before{content:'';position:absolute}@media (min-width: 992px){.az-navbar-two .nav-item.active::before{top:33px;left:0;right:12px;bottom:auto;border-bottom:2px solid #5b47fb;z-index:5}}.az-navbar-two .nav-item.show .nav-link::before{display:none}.az-navbar-two .nav-link{text-transform:uppercase;font-size:13px;font-weight:700}.az-navbar-two .nav-sub{border-width:1px;top:35px;border-top-width:0}.az-navbar-two .nav-sub-item>.nav-sub{left:178px;top:-8px;border-top-width:1px}.az-navbar-two .nav-sub-mega{top:48px}.az-navbar-three .nav-item{display:block}.az-navbar-three .nav-item+.nav-item{border-left-width:0;padding-left:0}@media (min-width: 992px){.az-navbar-three .nav-item+.nav-item{margin-left:25px}}.az-navbar-three .nav-item.show .nav-link::before{display:none}.az-navbar-three .nav-item.active .nav-link{color:#5b47fb;font-weight:700}.az-navbar-three .nav-link{text-transform:uppercase;font-size:13px;font-weight:700;color:#3b4863;position:relative}@media (min-width: 992px){.az-navbar-three .nav-link{display:block}}.az-navbar-three .nav-link:hover,.az-navbar-three .nav-link:focus{color:#1c273c}@media (min-width: 992px){.az-navbar-three .nav-link i{display:none}}.az-navbar-three .nav-sub{top:35px;border-width:0;padding-bottom:5px}@media (min-width: 992px){.az-navbar-three .nav-sub{box-shadow:0 0 0 2px rgba(180,189,206,0.5);padding-bottom:8px}}.az-navbar-three .nav-sub-item+.nav-sub-item{border-top:0}.az-navbar-three .nav-sub-item .nav-sub{top:-8px;left:182px}.az-navbar-three .nav-sub-link{height:30px}@media (min-width: 992px){.az-navbar-three .nav-sub-link{height:36px}}@media (max-width: 991.98px){.az-sidebar-show{overflow:hidden}.az-sidebar-show .az-sidebar{display:flex;overflow-y:auto;transform:translateX(0);visibility:visible}.az-sidebar-show .az-content{transform:translateX(240px)}.az-sidebar-show .az-navbar-backdrop{visibility:visible;opacity:1}}@media (min-width: 992px){.az-sidebar-hide .az-sidebar{display:none}.az-sidebar-hide .az-sidebar-sticky+.az-content{margin-left:0}}.az-body-sidebar{display:block}@media (min-width: 992px){.az-body-sidebar{display:flex;flex-direction:row}}.az-body-sidebar .az-content{flex:1;padding:0;display:flex;flex-direction:column}@media (min-width: 992px){.az-body-sidebar .az-header .container-fluid{padding-left:20px;padding-right:20px}}.az-body-sidebar .az-content-header{height:auto;padding:20px;margin-bottom:0}.az-body-sidebar .az-content-body{padding:0 20px 20px}.az-body-sidebar .az-footer{margin-top:auto}.az-sidebar{width:240px;flex-direction:column;flex-shrink:0;border-right:0 solid #cdd4e0;transform:translateX(-240px);visibility:hidden;transition:all 0.4s}@media (prefers-reduced-motion: reduce){.az-sidebar{transition:none}}@media (min-width: 992px) and (max-width: 1199.98px){.az-sidebar{width:220px}}@media (max-width: 991.98px){.az-sidebar{position:fixed;top:0;left:0;bottom:0;z-index:1000;background-color:#fff}}@media (min-width: 992px){.az-sidebar{position:relative;display:flex;transform:none;z-index:1050;border-right-width:1px;visibility:visible}}.az-sidebar-sticky{position:fixed;top:0;left:0;bottom:0}.az-sidebar-sticky .az-sidebar-body{height:calc(100vh - 122px);position:relative}@media (min-width: 992px){.az-sidebar-sticky+.az-content{margin-left:220px}}@media (min-width: 1200px){.az-sidebar-sticky+.az-content{margin-left:240px}}.az-sidebar-header{flex-shrink:0;height:64px;display:flex;align-items:center;padding:0 20px}.az-sidebar-loggedin{padding:10px 20px;display:flex;flex-shrink:0}.az-sidebar-loggedin .az-img-user{width:36px;height:36px}.az-sidebar-loggedin .media-body{margin-left:12px}.az-sidebar-loggedin .media-body h6{font-weight:700;font-size:14px;color:#1c273c;margin-bottom:2px}.az-sidebar-loggedin .media-body span{display:block;color:#7987a1}.az-sidebar-body{padding:20px}@media (min-width: 1200px){.az-sidebar-body{padding:20px}}.az-sidebar-body .nav{flex-direction:column}.az-sidebar-body .nav-label{text-transform:uppercase;font-size:10px;font-weight:500;letter-spacing:.5px;color:#7987a1;padding-bottom:5px;border-bottom:1px dotted #cdd4e0}.az-sidebar-body .nav-item{position:relative;display:block}.az-sidebar-body .nav-item.active .nav-link{color:#5b47fb}.az-sidebar-body .nav-item.show>.nav-sub{display:block}.az-sidebar-body .nav-item+.nav-item{margin-top:-1px}.az-sidebar-body .nav-item+.nav-item::before{content:'';position:absolute;top:0;left:30px;right:0;border-top:1px dotted #cdd4e0}.az-sidebar-body .nav-link{height:40px;display:flex;align-items:center;padding:0;font-weight:500;font-size:14px;color:#1c273c;padding-bottom:2px}.az-sidebar-body .nav-link i{font-size:24px;line-height:0;margin-right:5px;width:24px}.az-sidebar-body .nav-link i.typcn{line-height:.9}.az-sidebar-body .nav-link i.typcn::before{width:auto}.az-sidebar-body .nav-link.with-sub{position:relative}.az-sidebar-body .nav-link.with-sub::after{content:'\f3d0';font-family:'Ionicons';font-weight:400;font-size:12px;position:absolute;top:10px;right:0;color:#cdd4e0}.az-sidebar-body .nav-sub{list-style:none;padding:0;display:none;padding:0 0 10px 21px;margin:0 0 0 7px;border-left:2px solid #e3e7ed}.az-sidebar-body .nav-sub-item .nav-sub{padding:0 0 0 12px;border-left-width:1px;margin-left:0}.az-sidebar-body .nav-sub-item .nav-sub .nav-sub-link{height:auto;padding:7px 0}.az-sidebar-body .nav-sub-item.active>.nav-sub-link{color:#5b47fb}.az-sidebar-body .nav-sub-item.show .nav-sub{display:block}.az-sidebar-body .nav-sub-link{height:34px;display:flex;align-items:center;color:#031b4e;font-size:13px}.az-sidebar-body .nav-sub-link:hover,.az-sidebar-body .nav-sub-link:focus{color:#5b47fb}.az-sidebar-body .nav-sub-link.with-sub{justify-content:space-between}.az-sidebar-body .nav-sub-link.with-sub::after{content:'\f3d0';font-family:'Ionicons';font-size:12px;font-weight:400;display:inline-block;position:relative;margin-left:auto;color:#cdd4e0}@media (min-width: 992px){.az-sidebar-body .nav-sub-link.with-sub::after{margin-left:4px;font-size:12px}}.az-sidebar-body .nav-sub-link+.nav-sub-link{border-top:1px dotted #cdd4e0}.az-home-slider{position:relative;z-index:4;width:100%;height:600px;max-height:1800px;overflow:hidden;background-color:#1904be}@media (min-width: 576px){.az-home-slider{height:600px}}@media (min-width: 1200px){.az-home-slider{height:100vh;max-height:780px}}@media (min-width: 1440px){.az-home-slider{max-height:900px}}@media (min-width: 1680px){.az-home-slider{max-height:1050px}}@media (min-width: 1920px){.az-home-slider{max-height:1200px}}@media (min-width: 2560px){.az-home-slider{max-height:1600px}}@media (min-width: 2880px){.az-home-slider{max-height:1800px}}.az-home-slider .chart-wrapper{position:absolute;top:0;left:0;right:0;bottom:-20px;z-index:3;display:flex;align-items:flex-end;opacity:.2}@media (min-width: 768px){.az-home-slider .chart-wrapper{opacity:1}}.az-home-slider .chart-wrapper .flot-chart{width:100%;height:400px}@media (min-width: 992px){.az-home-slider .chart-wrapper .flot-chart{height:500px}}.az-home-slider .card-columns{column-gap:5px;column-count:3;width:500px;transform:rotate(37deg);position:absolute;top:9%;left:24%;z-index:4;opacity:.25}@media (min-width: 576px){.az-home-slider .card-columns{width:120%;left:16%;transform:rotate(44deg)}}@media (min-width: 768px){.az-home-slider .card-columns{transform:rotate(45deg);width:100%;top:0;left:auto;right:-45%;opacity:1}}@media (min-width: 992px){.az-home-slider .card-columns{width:80%;top:-10%;right:-30%;column-gap:10px}}@media (min-width: 1200px){.az-home-slider .card-columns{width:70%;right:-15%;top:-15%}}@media (min-width: 1300px){.az-home-slider .card-columns{right:-5%}}.az-home-slider .card-columns .card{position:relative;border-width:0;background-color:transparent;margin-bottom:5px}@media (min-width: 992px){.az-home-slider .card-columns .card{margin-bottom:10px}}.az-home-content{position:absolute;top:20px;left:20px;z-index:5;color:rgba(255,255,255,0.7);right:20px}@media (min-width: 576px){.az-home-content{top:40px;left:40px;right:auto;width:400px}}@media (min-width: 768px){.az-home-content{width:410px}}.az-home-content .az-logo{font-size:30px;font-weight:700;display:flex;line-height:1;color:#fff;margin-bottom:5px;text-indent:-1px;color:#fff;letter-spacing:-.5px}@media (min-width: 576px){.az-home-content .az-logo{font-size:36px;letter-spacing:-1px}}.az-home-content h5{font-size:12px;font-weight:400;letter-spacing:.2px;margin-bottom:25px}@media (min-width: 576px){.az-home-content h5{font-size:15px}}.az-home-content .logo-group{margin-bottom:60px;display:flex}.az-home-content .logo-group i{font-weight:400;font-size:32px;line-height:.2}.az-home-content .logo-group i+i{margin-left:10px}.az-home-content h1{color:#fff;font-weight:300;font-size:24px;margin-bottom:20px}@media (min-width: 576px){.az-home-content h1{font-size:2.03125rem}}.az-home-content p:first-of-type{font-size:14px;line-height:1.7;margin-bottom:25px}.az-home-content p:last-of-type{display:flex;margin-bottom:100px}.az-home-content p:last-of-type .btn,.az-home-content p:last-of-type .sp-container button,.sp-container .az-home-content p:last-of-type button{flex:1;text-transform:uppercase;font-size:11px;font-weight:500;min-height:inherit;letter-spacing:1px;padding:10px 15px}@media (min-width: 768px){.az-home-content p:last-of-type .btn,.az-home-content p:last-of-type .sp-container button,.sp-container .az-home-content p:last-of-type button{padding:10px 25px;flex:none}}@media (min-width: 992px){.az-home-content p:last-of-type .btn,.az-home-content p:last-of-type .sp-container button,.sp-container .az-home-content p:last-of-type button{flex:1}}.az-home-content p:last-of-type .btn+.btn,.az-home-content p:last-of-type .sp-container button+.btn,.sp-container .az-home-content p:last-of-type button+.btn,.az-home-content p:last-of-type .sp-container .btn+button,.sp-container .az-home-content p:last-of-type .btn+button,.az-home-content p:last-of-type .sp-container button+button,.sp-container .az-home-content p:last-of-type button+button{margin-left:5px}.az-home-content nav:last-child{display:flex}.az-home-content nav:last-child a{font-size:24px;color:rgba(255,255,255,0.5)}.az-home-content nav:last-child a:hover,.az-home-content nav:last-child a:focus{color:#fff}.az-home-content nav:last-child a+a{margin-left:8px}.az-content-choose-demo{position:relative;z-index:5;background-color:#0f0373;color:rgba(255,255,255,0.5);padding:0}.az-content-choose-demo .container{display:block;padding:20px}@media (min-width: 576px){.az-content-choose-demo .container{padding:40px}}@media (min-width: 992px){.az-content-choose-demo .container{padding:100px 40px}}@media (min-width: 1200px){.az-content-choose-demo .container{padding:100px 0}}.az-content-choose-demo .title-label{text-transform:uppercase;letter-spacing:1px;font-size:10px;color:#5b47fb;margin-bottom:3px}@media (min-width: 768px){.az-content-choose-demo .title-label{font-size:11px}}.az-content-choose-demo .title{font-size:20px;font-weight:400;color:#fff;letter-spacing:-.5px;margin-bottom:10px}@media (min-width: 768px){.az-content-choose-demo .title{font-size:30px}}.az-content-choose-demo .title-text{font-weight:300;margin-bottom:20px}@media (min-width: 576px){.az-content-choose-demo .title-text{margin-bottom:40px}}@media (min-width: 768px){.az-content-choose-demo .title-text{font-size:16px}}@media (min-width: 992px){.az-content-choose-demo .title-text{margin-bottom:60px}}.az-content-choose-demo .card{border-width:0;margin-bottom:10px;height:200px;overflow:hidden;position:relative}@media (min-width: 576px){.az-content-choose-demo .card{height:155px}}@media (min-width: 768px){.az-content-choose-demo .card{height:215px;margin-bottom:15px}}@media (min-width: 1200px){.az-content-choose-demo .card{height:255px}}.az-content-choose-demo .card img{transition:all 0.2s ease-in-out}@media (prefers-reduced-motion: reduce){.az-content-choose-demo .card img{transition:none}}.az-content-choose-demo .card figure{margin-bottom:0}.az-content-choose-demo .card figure:hover img,.az-content-choose-demo .card figure:focus img{transform:scale(1.75, 1.75)}.az-content-choose-demo .card figure:hover figcaption,.az-content-choose-demo .card figure:focus figcaption{opacity:1}.az-content-choose-demo .card figcaption{position:absolute;top:0;left:0;right:0;bottom:0;display:flex;align-items:center;justify-content:center;background-color:rgba(25,4,190,0.75);opacity:0;transition:all 0.2s ease-in-out}@media (prefers-reduced-motion: reduce){.az-content-choose-demo .card figcaption{transition:none}}.az-content-choose-demo .card figcaption .btn,.az-content-choose-demo .card figcaption .sp-container button,.sp-container .az-content-choose-demo .card figcaption button{text-transform:uppercase;letter-spacing:1.5px;font-size:11px;font-weight:500;min-height:inherit;padding:10px 20px;border-radius:2px}.az-content-choose-demo .card.coming-soon{display:flex;align-items:center;justify-content:center;color:#1c273c;background-color:#e3e7ed}.az-content-choose-demo .card.coming-soon .typcn{line-height:.9;font-size:48px;margin-bottom:10px}.az-content-choose-demo .card.coming-soon h6{margin-bottom:0;text-transform:uppercase;font-weight:800;letter-spacing:1px}.az-content-choose-demo .az-content-label,.az-content-choose-demo .card-table-two .card-title,.card-table-two .az-content-choose-demo .card-title,.az-content-choose-demo .card-dashboard-eight .card-title,.card-dashboard-eight .az-content-choose-demo .card-title{color:#7987a1;margin-bottom:5px;letter-spacing:1px}.az-content-choose-demo .az-content-title{font-size:15px;font-weight:400;margin-bottom:0;color:#fff}@media (min-width: 768px){.az-content-choose-demo .az-content-title{font-size:17px}}.az-footer-demo{background-color:#0c025b;color:rgba(255,255,255,0.4);height:60px}.az-footer-demo .container{border-top-width:0}.az-footer-demo a{color:rgba(255,255,255,0.5)}.az-footer-demo a:hover,.az-footer-demo a:focus{color:#fff}.btn-icon-list{display:flex;align-items:center}.btn-icon-list .btn+.btn,.btn-icon-list .sp-container button+.btn,.sp-container .btn-icon-list button+.btn,.btn-icon-list .sp-container .btn+button,.sp-container .btn-icon-list .btn+button,.btn-icon-list .sp-container button+button,.sp-container .btn-icon-list button+button{margin-left:5px}.az-icon-group{text-align:center;padding:20px;color:#3b4863}.az-icon-group i{line-height:1;font-size:24px}@media (min-width: 992px){.az-icon-group i{font-size:32px}}.modal-content-demo .modal-body h6{color:#1c273c;font-size:15px;margin-bottom:15px}.modal-content-demo .modal-body p{margin-bottom:0}.tooltip-static-demo{text-align:center;background-color:#e3e7ed;padding:20px}.tooltip-static-demo .tooltip{z-index:0;opacity:1;position:relative;display:inline-block;margin:0 10px}.tooltip-static-demo .bs-tooltip-top .arrow,.tooltip-static-demo .bs-tooltip-auto[x-placement^="top"] .arrow,.tooltip-static-demo .bs-tooltip-bottom .arrow,.tooltip-static-demo .bs-tooltip-auto[x-placement^="bottom"] .arrow{left:50%;margin-left:-2px}.tooltip-static-demo .bs-tooltip-left,.tooltip-static-demo .bs-tooltip-auto[x-placement^="left"],.tooltip-static-demo .bs-tooltip-right,.tooltip-static-demo .bs-tooltip-auto[x-placement^="right"]{margin-top:5px}.tooltip-static-demo .bs-tooltip-left .arrow,.tooltip-static-demo .bs-tooltip-auto[x-placement^="left"] .arrow,.tooltip-static-demo .bs-tooltip-right .arrow,.tooltip-static-demo .bs-tooltip-auto[x-placement^="right"] .arrow{top:50%;margin-top:-3px}.popover-static-demo{background-color:#e3e7ed;padding-top:40px;padding-bottom:40px;text-align:center}.popover-static-demo .popover{z-index:0;opacity:1;position:relative;display:inline-block;margin:0 10px}.popover-static-demo .bs-popover-top .arrow,.popover-static-demo .bs-popover-auto[x-placement^="top"] .arrow,.popover-static-demo .bs-popover-bottom .arrow,.popover-static-demo .bs-popover-auto[x-placement^="bottom"] .arrow{left:50%;margin-left:-5px}.popover-static-demo .bs-popover-left,.popover-static-demo .bs-popover-auto[x-placement^="left"],.popover-static-demo .bs-popover-right,.popover-static-demo .bs-popover-auto[x-placement^="right"]{margin-top:5px}.popover-static-demo .bs-popover-left .arrow,.popover-static-demo .bs-popover-auto[x-placement^="left"] .arrow,.popover-static-demo .bs-popover-right .arrow,.popover-static-demo .bs-popover-auto[x-placement^="right"] .arrow{top:50%;margin-top:-5px}.az-toggle-group-demo{display:flex}.az-toggle-group-demo .az-toggle+.az-toggle{margin-left:10px}.az-dropdown-form-demo .static-dropdown{padding:20px;background-color:#e3e7ed;display:inline-flex;justify-content:center}@media (min-width: 576px){.az-dropdown-form-demo .static-dropdown{padding:40px}}.az-dropdown-form-demo .static-dropdown .dropdown-menu{display:block;position:static;float:none}.az-dropdown-form-demo .dropdown-menu{padding:20px}@media (min-width: 576px){.az-dropdown-form-demo .dropdown-menu{width:300px;padding:30px 25px}}.az-dropdown-form-demo .dropdown-title{font-size:20px;font-weight:700;color:#1c273c;margin-bottom:5px}.ql-wrapper-demo{background-color:#fff}@media (min-width: 1200px){.ql-wrapper-demo{width:70%}}.ql-wrapper-demo .ql-container{height:250px}.ql-wrapper-demo .ql-editor{height:100%;overflow-y:auto}.ql-scrolling-demo{background-color:#fff;height:100%;min-height:100%;overflow:hidden;border:2px solid #e3e7ed;position:relative}@media (min-width: 768px){.ql-scrolling-demo{padding-left:15px}}.ql-scrolling-demo .ql-container{border-width:0;height:auto;min-height:100%;padding:30px}@media (min-width: 768px){.ql-scrolling-demo .ql-container{padding:50px;padding-left:35px}}.ql-scrolling-demo .ql-container .ql-editor{font-size:16px;overflow-y:visible;color:#3b4863}.morris-wrapper-demo{height:200px;position:relative;margin-left:-15px;margin-right:-15px}@media (min-width: 576px){.morris-wrapper-demo{height:300px}}.morris-donut-wrapper-demo{height:200px}@media (min-width: 576px){.morris-donut-wrapper-demo{height:250px}}.chartjs-wrapper-demo{height:250px}@media (max-width: 330px){.chartjs-wrapper-demo{width:290px}}@media (min-width: 992px){.chartjs-wrapper-demo{height:300px}}.chartist-wrapper-demo{height:200px}@media (min-width: 768px){.chartist-wrapper-demo{height:300px}}.az-content-left-components{border-right:1px solid #e3e7ed;width:200px}.az-content-left-components .component-item label{display:block;text-transform:uppercase;font-size:12px;font-weight:700;letter-spacing:.5px}.az-content-left-components .component-item label ~ label{margin-top:30px}.az-content-left-components .component-item .nav-link{padding:0;display:block;font-size:13px;color:#596882}.az-content-left-components .component-item .nav-link+.nav-link{margin-top:5px}.az-content-left-components .component-item .nav-link:hover{color:#5b47fb}.az-content-left-components .component-item .nav-link.active{color:#5b47fb;font-weight:500}.az-breadcrumbs{padding:0;background-color:transparent;margin-bottom:0}.az-breadcrumbs .breadcrumb-item{font-size:10px;text-transform:uppercase;letter-spacing:.5px;font-weight:700}.az-breadcrumbs .breadcrumb-item a{color:#031b4e;transition:all 0.2s ease-in-out}@media (prefers-reduced-motion: reduce){.az-breadcrumbs .breadcrumb-item a{transition:none}}.az-breadcrumbs .breadcrumb-item a:hover{color:#97a3b9}.az-breadcrumbs .breadcrumb-item.active{color:#36f}.az-breadcrumbs .breadcrumb-item+.breadcrumb-item{padding-left:8px}.az-breadcrumbs .breadcrumb-item+.breadcrumb-item::before{color:#97a3b9;padding-right:8px;font-weight:400}.az-page-header{position:relative;padding:30px 0 40px;border-bottom:1px solid #dee2ef;margin-bottom:40px}.az-page-title{font-weight:700;font-size:40px;font-family:"Raleway",sans-serif;margin-bottom:15px;line-height:1;letter-spacing:-1.5px}.az-page-text{font-size:20px;font-weight:300;margin-bottom:30px}.az-page-content-list{margin:0;padding:0;list-style:none}.az-page-content-list li{display:flex;align-items:center;font-size:13px;font-weight:500}.az-page-content-list li+li{margin-top:5px}.az-page-content-list li i{margin-right:10px;font-size:10px;line-height:0;color:#97a3b9;text-indent:1px}.az-page-label{font-size:20px;font-weight:600;margin-bottom:5px;letter-spacing:-.2px}.az-syntax-wrapper{position:relative}.az-syntax-wrapper .badge{padding:4px 5px;position:absolute;top:5px;right:5px;text-transform:uppercase;font-weight:500;font-size:9px;letter-spacing:normal;border-radius:1px}.az-syntax-wrapper pre{border-color:#cdd4e0;background-color:#fff;padding:15px;font-size:13px}.az-syntax-wrapper code[class*="language-"],.az-syntax-wrapper pre[class*="language-"]{font-family:'Roboto Mono', monospace}.demo-avatar-group{display:flex;align-items:center}.demo-avatar-group .az-img-user,.demo-avatar-group .az-avatar{flex-shrink:0}.demo-avatar-group .az-img-user+.az-img-user,.demo-avatar-group .az-img-user+.az-avatar,.demo-avatar-group .az-avatar+.az-img-user,.demo-avatar-group .az-avatar+.az-avatar{margin-left:5px}@media (min-width: 576px){.demo-avatar-group .az-img-user+.az-img-user,.demo-avatar-group .az-img-user+.az-avatar,.demo-avatar-group .az-avatar+.az-img-user,.demo-avatar-group .az-avatar+.az-avatar{margin-left:10px}}.demo-static-toast .toast{opacity:1}@media (min-width: 992px){.az-content-calendar{padding:25px 0}}.az-content-calendar .container,.az-content-calendar .container-fluid{padding:20px 0 0}@media (min-width: 992px){.az-content-calendar .container,.az-content-calendar .container-fluid{padding-top:0}}@media (min-width: 576px){.az-content-left-calendar{width:300px}}@media (min-width: 992px){.az-content-left-calendar{width:230px}}.az-datepicker .ui-datepicker-inline{margin-top:0}.az-datepicker .ui-datepicker .ui-datepicker-title{color:#5b47fb;letter-spacing:-.2px}.az-datepicker .ui-datepicker .ui-datepicker-calendar{width:100%}.az-datepicker .ui-datepicker .ui-datepicker-calendar th{padding:5px;font-size:10px;color:#1c273c}.az-datepicker .ui-datepicker .ui-datepicker-calendar th,.az-datepicker .ui-datepicker .ui-datepicker-calendar td{text-align:center}.az-datepicker .ui-datepicker .ui-datepicker-calendar th.ui-datepicker-week-end:first-child:not(.ui-datepicker-other-month) a,.az-datepicker .ui-datepicker .ui-datepicker-calendar td.ui-datepicker-week-end:first-child:not(.ui-datepicker-other-month) a{color:#dc3545}.az-datepicker .ui-datepicker .ui-datepicker-calendar td{padding:0 1px}.az-datepicker .ui-datepicker .ui-datepicker-calendar td span,.az-datepicker .ui-datepicker .ui-datepicker-calendar td a{padding:4px 5px;font-family:Verdana, sans-serif;font-size:11px;color:#596882}.az-datepicker .ui-datepicker .ui-datepicker-calendar .ui-datepicker-today a{background-color:#5b47fb;color:#fff;border-radius:2px}.az-nav-calendar-event .nav-link{font-size:13px;position:relative}.az-nav-calendar-event .nav-link i{font-size:21px;position:relative;margin-right:10px;top:-.5px}.az-nav-calendar-event .nav-link.exclude{color:#7987a1}.az-nav-calendar-event .nav-link.exclude i{color:#7987a1}.az-nav-calendar-event .nav-link.exclude::before{content:'';position:absolute;top:50%;left:0;right:0;border-top:1px solid #7987a1}@media (min-width: 992px){.az-content-body-calendar{padding-left:25px}}.az-calendar{border-color:#cdd4e0}.az-calendar .fc-content,.az-calendar .fc-divider,.az-calendar .fc-list-heading td,.az-calendar .fc-list-view,.az-calendar .fc-popover,.az-calendar .fc-row,.az-calendar tbody,.az-calendar td,.az-calendar th,.az-calendar thead{border-color:#cdd4e0}.az-calendar .fc-header-toolbar{display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;margin-bottom:15px;padding:0 20px}@media (min-width: 992px){.az-calendar .fc-header-toolbar{padding:0;margin-bottom:24px}}.az-calendar .fc-header-toolbar h2{margin-bottom:0;color:#1c273c;font-size:20px;font-weight:700}@media (min-width: 576px){.az-calendar .fc-header-toolbar h2{font-size:22px}}.az-calendar .fc-header-toolbar .fc-right{order:3}.az-calendar .fc-header-toolbar .fc-clear{display:none}@media (max-width: 767.98px){.az-calendar .fc-header-toolbar .fc-center{order:1;flex:0 0 100%;display:flex;justify-content:center;margin-bottom:20px}.az-calendar .fc-header-toolbar .fc-left{order:2;flex:0 0 50%}.az-calendar .fc-header-toolbar .fc-right{flex:0 0 50%;display:flex;justify-content:flex-end}}.az-calendar .fc-header-toolbar button{height:38px;background-color:#fff;background-image:none;border:1px solid #cdd4e0;box-shadow:none;padding:0 15px;display:flex;align-items:center;color:#1c273c;font-size:13px;text-transform:capitalize;outline:none;text-shadow:none;border-radius:0}.az-calendar .fc-header-toolbar button:hover,.az-calendar .fc-header-toolbar button:focus{background-color:#e3e7ed}.az-calendar .fc-header-toolbar button.fc-prev-button,.az-calendar .fc-header-toolbar button.fc-next-button{padding:0;width:38px;justify-content:center}.az-calendar .fc-header-toolbar button.fc-prev-button span,.az-calendar .fc-header-toolbar button.fc-next-button span{margin:0}.az-calendar .fc-header-toolbar button.fc-state-active{background-color:#e3e7ed}.az-calendar .fc-header-toolbar button.fc-today-button{color:#fff;background-color:#36f;border-color:#1a53ff}.az-calendar .fc-header-toolbar button.fc-today-button.fc-state-disabled{border-color:#cdd4e0;background-color:#f4f5f8;color:#97a3b9;cursor:default}@media (max-width: 575px){.az-calendar .fc-header-toolbar button.fc-prev-button,.az-calendar .fc-header-toolbar button.fc-next-button{width:32px;height:32px}.az-calendar .fc-header-toolbar button.fc-today-button{height:32px;padding-left:10px;padding-right:10px;font-size:11px}.az-calendar .fc-header-toolbar button.fc-month-button,.az-calendar .fc-header-toolbar button.fc-agendaWeek-button,.az-calendar .fc-header-toolbar button.fc-agendaDay-button,.az-calendar .fc-header-toolbar button.fc-listWeek-button,.az-calendar .fc-header-toolbar button.fc-listMonth-button{text-indent:-9999px;width:32px;height:32px;position:relative;color:transparent}.az-calendar .fc-header-toolbar button.fc-month-button::before,.az-calendar .fc-header-toolbar button.fc-agendaWeek-button::before,.az-calendar .fc-header-toolbar button.fc-agendaDay-button::before,.az-calendar .fc-header-toolbar button.fc-listWeek-button::before,.az-calendar .fc-header-toolbar button.fc-listMonth-button::before{position:absolute;top:6px;left:10px;z-index:100;display:inline-block;text-indent:0;font-size:12px;font-weight:700;color:#031b4e}.az-calendar .fc-header-toolbar button.fc-month-button::before{content:'M'}.az-calendar .fc-header-toolbar button.fc-agendaWeek-button::before{content:'W'}.az-calendar .fc-header-toolbar button.fc-agendaDay-button::before{content:'D'}.az-calendar .fc-header-toolbar button.fc-listWeek-button::before,.az-calendar .fc-header-toolbar button.fc-listMonth-button::before{content:'L';left:11px}}.az-calendar .fc-icon-left-single-arrow,.az-calendar .fc-icon-right-single-arrow{top:0}.az-calendar .fc-icon-left-single-arrow::after,.az-calendar .fc-icon-right-single-arrow::after{font-family:'Ionicons';font-size:18px;font-weight:400;line-height:1}@media (min-width: 992px){.az-calendar .fc-icon-left-single-arrow::after,.az-calendar .fc-icon-right-single-arrow::after{line-height:.75}}.az-calendar .fc-icon-left-single-arrow::after{content:'\f3cf'}.az-calendar .fc-icon-right-single-arrow::after{content:'\f3d1'}.az-calendar .fc-head-container .fc-day-header{font-size:11px;font-weight:700;text-transform:uppercase;padding:5px 0;color:#1c273c}@media (min-width: 576px){.az-calendar .fc-head-container .fc-day-header{font-size:12px}}.az-calendar .fc-view>table{background-color:#fff}.az-calendar .fc-view>table>thead th,.az-calendar .fc-view>table>thead td{border-color:#cdd4e0}@media (max-width: 991.98px){.az-calendar .fc-view>table>thead th:first-child,.az-calendar .fc-view>table>thead td:first-child{border-left-width:0}.az-calendar .fc-view>table>thead th:last-child,.az-calendar .fc-view>table>thead td:last-child{border-right-width:0}}.az-calendar .fc-view>table>tbody>tr>td{border-color:#cdd4e0}@media (max-width: 991.98px){.az-calendar .fc-view>table>tbody>tr>td:first-child{border-left-width:0}.az-calendar .fc-view>table>tbody>tr>td:last-child{border-right-width:0}}.az-calendar .fc-view .fc-other-month{background-color:#fcfcfc}.az-calendar .fc-view .fc-day-number{font-size:14px;font-weight:400;font-family:Arial, sans-serif;color:#596882;display:inline-block;padding:5px 8px;position:relative;transition:all 0.2s ease-in-out;margin:2px 2px 0 0;min-width:20px;text-align:center}@media (prefers-reduced-motion: reduce){.az-calendar .fc-view .fc-day-number{transition:none}}.az-calendar .fc-view .fc-day-number:hover,.az-calendar .fc-view .fc-day-number:focus{color:#1c273c;background-color:#f4f5f8}.az-calendar .fc-view .fc-scroller{height:auto !important;overflow:visible !important}.az-calendar .fc-view.fc-agenda-view .fc-day-header>a>span{display:block}.az-calendar .fc-view.fc-agenda-view .fc-day-header>a>span:first-child{color:#7987a1;font-size:8px;font-weight:400;line-height:1.2}@media (min-width: 576px){.az-calendar .fc-view.fc-agenda-view .fc-day-header>a>span:first-child{font-size:11px;font-weight:600}}.az-calendar .fc-view.fc-agenda-view .fc-day-header>a>span:last-child{font-weight:700;font-size:14px;font-family:Helvetica, Arial, sans-serif;line-height:1}@media (min-width: 576px){.az-calendar .fc-view.fc-agenda-view .fc-day-header>a>span:last-child{font-size:25px}}.az-calendar .fc-view.fc-agenda-view .fc-day-header.fc-today>a{color:#5b47fb}.az-calendar .fc-view.fc-listMonth-view,.az-calendar .fc-view.fc-listWeek-view{border-width:0}.az-calendar .fc-view.fc-listMonth-view .fc-scroller,.az-calendar .fc-view.fc-listWeek-view .fc-scroller{padding:0 20px 20px}@media (min-width: 992px){.az-calendar .fc-view.fc-listMonth-view .fc-scroller,.az-calendar .fc-view.fc-listWeek-view .fc-scroller{padding:0}}.az-calendar .fc-view.fc-listMonth-view .fc-list-table,.az-calendar .fc-view.fc-listWeek-view .fc-list-table{border-collapse:separate;display:block}.az-calendar .fc-view.fc-listMonth-view .fc-list-table>tbody,.az-calendar .fc-view.fc-listWeek-view .fc-list-table>tbody{display:flex;flex-wrap:wrap}.az-calendar .fc-view.fc-listMonth-view .fc-list-heading,.az-calendar .fc-view.fc-listWeek-view .fc-list-heading{flex:0 0 20%;max-width:20%;margin-top:15px}@media (min-width: 576px){.az-calendar .fc-view.fc-listMonth-view .fc-list-heading,.az-calendar .fc-view.fc-listWeek-view .fc-list-heading{flex:0 0 15%;max-width:15%}}@media (min-width: 768px){.az-calendar .fc-view.fc-listMonth-view .fc-list-heading,.az-calendar .fc-view.fc-listWeek-view .fc-list-heading{flex:0 0 12%;max-width:12%}}@media (min-width: 992px){.az-calendar .fc-view.fc-listMonth-view .fc-list-heading,.az-calendar .fc-view.fc-listWeek-view .fc-list-heading{flex:0 0 10%;max-width:10%}}@media (min-width: 1200px){.az-calendar .fc-view.fc-listMonth-view .fc-list-heading,.az-calendar .fc-view.fc-listWeek-view .fc-list-heading{flex:0 0 8%;max-width:8%}}.az-calendar .fc-view.fc-listMonth-view .fc-list-heading:first-child,.az-calendar .fc-view.fc-listWeek-view .fc-list-heading:first-child{margin-top:0}.az-calendar .fc-view.fc-listMonth-view .fc-list-heading:first-child+.fc-list-item,.az-calendar .fc-view.fc-listWeek-view .fc-list-heading:first-child+.fc-list-item{margin-top:0}.az-calendar .fc-view.fc-listMonth-view .fc-list-heading td,.az-calendar .fc-view.fc-listWeek-view .fc-list-heading td{background-color:transparent;border-width:0;padding:0}.az-calendar .fc-view.fc-listMonth-view .fc-list-heading-main,.az-calendar .fc-view.fc-listWeek-view .fc-list-heading-main{display:block;font-size:11px;text-transform:uppercase;color:#7987a1;font-weight:600;padding:5px;text-align:center}.az-calendar .fc-view.fc-listMonth-view .fc-list-heading-main span:last-child,.az-calendar .fc-view.fc-listWeek-view .fc-list-heading-main span:last-child{display:block;font-size:30px;font-weight:700;font-family:Helvetica, Arial, sans-serif;letter-spacing:-1px;color:#1c273c;line-height:1}.az-calendar .fc-view.fc-listMonth-view .fc-list-heading-main.now,.az-calendar .fc-view.fc-listWeek-view .fc-list-heading-main.now{color:#5b47fb}.az-calendar .fc-view.fc-listMonth-view .fc-list-heading-main.now span:last-child,.az-calendar .fc-view.fc-listWeek-view .fc-list-heading-main.now span:last-child{color:#5b47fb}.az-calendar .fc-view.fc-listMonth-view .fc-list-item,.az-calendar .fc-view.fc-listWeek-view .fc-list-item{flex:0 0 calc(80% - 5px);max-width:calc(80% - 5px);dispLay:flex;flex-direction:column;border-left:4px solid transparent;background-color:#fff;margin-top:15px}@media (min-width: 576px){.az-calendar .fc-view.fc-listMonth-view .fc-list-item,.az-calendar .fc-view.fc-listWeek-view .fc-list-item{flex:0 0 calc(85% - 5px);max-width:calc(85% - 5px)}}@media (min-width: 768px){.az-calendar .fc-view.fc-listMonth-view .fc-list-item,.az-calendar .fc-view.fc-listWeek-view .fc-list-item{flex:0 0 calc(88% - 5px);max-width:calc(88% - 5px)}}@media (min-width: 992px){.az-calendar .fc-view.fc-listMonth-view .fc-list-item,.az-calendar .fc-view.fc-listWeek-view .fc-list-item{flex:0 0 calc(90% - 5px);max-width:calc(90% - 5px)}}@media (min-width: 1200px){.az-calendar .fc-view.fc-listMonth-view .fc-list-item,.az-calendar .fc-view.fc-listWeek-view .fc-list-item{flex:0 0 calc(92% - 5px);max-width:calc(92% - 5px)}}.az-calendar .fc-view.fc-listMonth-view .fc-list-item:hover,.az-calendar .fc-view.fc-listMonth-view .fc-list-item:focus,.az-calendar .fc-view.fc-listWeek-view .fc-list-item:hover,.az-calendar .fc-view.fc-listWeek-view .fc-list-item:focus{cursor:pointer}.az-calendar .fc-view.fc-listMonth-view .fc-list-item:hover td,.az-calendar .fc-view.fc-listMonth-view .fc-list-item:focus td,.az-calendar .fc-view.fc-listWeek-view .fc-list-item:hover td,.az-calendar .fc-view.fc-listWeek-view .fc-list-item:focus td{background-color:transparent}.az-calendar .fc-view.fc-listMonth-view .fc-list-item>td,.az-calendar .fc-view.fc-listWeek-view .fc-list-item>td{border-width:0}.az-calendar .fc-view.fc-listMonth-view .fc-list-item>td.fc-list-item-time,.az-calendar .fc-view.fc-listWeek-view .fc-list-item>td.fc-list-item-time{border-top:1px solid #e3e7ed;border-right:1px solid #e3e7ed;box-sizing:border-box}.az-calendar .fc-view.fc-listMonth-view .fc-list-item>td.fc-list-item-title,.az-calendar .fc-view.fc-listWeek-view .fc-list-item>td.fc-list-item-title{border-bottom:1px solid #e3e7ed;border-right:1px solid #e3e7ed;box-sizing:border-box}.az-calendar .fc-view.fc-listMonth-view .fc-list-item+.fc-list-item,.az-calendar .fc-view.fc-listWeek-view .fc-list-item+.fc-list-item{margin-left:20%}@media (min-width: 576px){.az-calendar .fc-view.fc-listMonth-view .fc-list-item+.fc-list-item,.az-calendar .fc-view.fc-listWeek-view .fc-list-item+.fc-list-item{margin-left:15%}}@media (min-width: 768px){.az-calendar .fc-view.fc-listMonth-view .fc-list-item+.fc-list-item,.az-calendar .fc-view.fc-listWeek-view .fc-list-item+.fc-list-item{margin-left:12%}}@media (min-width: 992px){.az-calendar .fc-view.fc-listMonth-view .fc-list-item+.fc-list-item,.az-calendar .fc-view.fc-listWeek-view .fc-list-item+.fc-list-item{margin-left:10%}}@media (min-width: 1200px){.az-calendar .fc-view.fc-listMonth-view .fc-list-item+.fc-list-item,.az-calendar .fc-view.fc-listWeek-view .fc-list-item+.fc-list-item{margin-left:8%}}.az-calendar .fc-view.fc-listMonth-view .fc-list-item-marker,.az-calendar .fc-view.fc-listWeek-view .fc-list-item-marker{display:none}.az-calendar .fc-view.fc-listMonth-view .fc-list-item-time,.az-calendar .fc-view.fc-listWeek-view .fc-list-item-time{padding:12px 15px 2px;font-size:13px;text-transform:capitalize;width:100%}.az-calendar .fc-view.fc-listMonth-view .fc-list-item-title,.az-calendar .fc-view.fc-listWeek-view .fc-list-item-title{padding:0 15px 12px}.az-calendar .fc-view.fc-listMonth-view .fc-list-item-title a,.az-calendar .fc-view.fc-listWeek-view .fc-list-item-title a{display:block;font-weight:700;font-size:15px;margin-bottom:5px;color:#1c273c}.az-calendar .fc-view.fc-listMonth-view .fc-list-item-title .fc-desc,.az-calendar .fc-view.fc-listWeek-view .fc-list-item-title .fc-desc{font-size:13px;line-height:1.375;display:block}.az-calendar td.fc-today{background-color:#f4f5f8}.az-calendar td.fc-today .fc-day-number,.az-calendar td.fc-today .fc-day-number:hover,.az-calendar td.fc-today .fc-day-number:focus{background-color:#5b47fb;color:#fff;border-radius:1px}.az-calendar .fc-axis{font-size:11px}@media (min-width: 576px){.az-calendar .fc-axis{font-size:13px}}.az-calendar .fc-event{border-width:0;border-top-width:5px;border-radius:0}@media (min-width: 576px){.az-calendar .fc-event{border-top-width:0;border-left-width:2px;padding:3px 4px}}.az-calendar .fc-event.fc-day-grid-event>div{display:none}@media (min-width: 576px){.az-calendar .fc-event.fc-day-grid-event>div{display:block}}.az-calendar .fc-event.fc-day-grid-event>div .fc-time{font-weight:500}.az-calendar .fc-event.fc-day-grid-event>div .fc-desc{display:none}.az-calendar .fc-time-grid-event{padding:5px;border-left-width:0;border-top-width:2px}.az-calendar .fc-time-grid-event .fc-time{font-size:12px}.az-calendar .fc-time-grid-event .fc-title{font-size:14px;font-weight:700;color:#1c273c;margin-bottom:10px}.az-calendar .fc-time-grid-event .fc-desc{font-size:13px;line-height:1.3;color:rgba(28,39,60,0.8)}.az-calendar .fc-agendaWeek-view .fc-time-grid-event>div{display:none}@media (min-width: 576px){.az-calendar .fc-agendaWeek-view .fc-time-grid-event>div{display:block}}.az-calendar .fc-agendaWeek-view .fc-time-grid-event>div .fc-time{font-size:11px}.az-calendar .fc-agendaWeek-view .fc-time-grid-event>div .fc-title{font-size:13px}.az-calendar .fc-agendaWeek-view .fc-time-grid-event>div .fc-desc{display:none}@media (min-width: 992px){.az-calendar .fc-agendaWeek-view .fc-time-grid-event>div .fc-desc{display:block}}.az-calendar .fc-list-empty{padding:20px 0;background-color:#fff;border:1px solid #cdd4e0}.az-modal-calendar-schedule .modal-content{border-width:0;position:relative}.az-modal-calendar-schedule .modal-content>.close{position:absolute;top:20px;right:25px;font-size:28px;font-weight:700;color:#7987a1;text-shadow:none}.az-modal-calendar-schedule .modal-header{padding:20px 25px}.az-modal-calendar-schedule .modal-body{padding:30px 25px}.az-modal-calendar-schedule .form-group-date{display:flex;align-items:center;border:1px solid #cdd4e0;background-color:#f4f5f8;padding:10px 5px;color:#1c273c;font-size:13px;font-weight:600}.az-modal-calendar-schedule .form-group-date>i{font-size:32px;line-height:0;margin-right:10px;opacity:.5}.az-modal-calendar-schedule .select2-container{width:100% !important}.az-modal-calendar-event .modal-content{border-width:0;position:relative;background-color:transparent}.az-modal-calendar-event .modal-content>.close{font-size:18px;text-shadow:none}.az-modal-calendar-event .modal-header{position:relative;padding:20px;border-bottom-width:0;display:flex;align-items:center;justify-content:space-between;border-top-left-radius:0;border-top-right-radius:0}@media (min-width: 576px){.az-modal-calendar-event .modal-header{padding:20px 25px}}.az-modal-calendar-event .nav-modal-event{align-items:center}.az-modal-calendar-event .nav-modal-event .nav-link{padding:0;color:rgba(255,255,255,0.75);font-size:21px;line-height:0;position:relative;transition:all 0.2s ease-in-out}@media (prefers-reduced-motion: reduce){.az-modal-calendar-event .nav-modal-event .nav-link{transition:none}}.az-modal-calendar-event .nav-modal-event .nav-link:hover,.az-modal-calendar-event .nav-modal-event .nav-link:focus{color:#fff}.az-modal-calendar-event .nav-modal-event .nav-link+.nav-link{margin-left:15px}.az-modal-calendar-event .nav-modal-event .nav-link:last-child{font-size:24px}.az-modal-calendar-event .event-title{color:#fff;font-size:18px;font-weight:500;margin-bottom:0;line-height:1}.az-modal-calendar-event .modal-body{padding:20px;background-color:#fff}@media (min-width: 576px){.az-modal-calendar-event .modal-body{padding:30px}}.az-modal-calendar-event .event-start-date,.az-modal-calendar-event .event-end-date{color:#1c273c;font-weight:500}.az-modal-calendar-event .event-desc{margin-top:5px}.az-modal-calendar-event .event-desc:empty{margin-bottom:5px}@media (max-width: 991.98px){.az-content-body-show .az-header-menu-icon{display:none}.az-content-body-show .az-header-left .az-header-arrow{display:block}.az-content-body-show .az-content-left-chat{display:none}.az-content-body-show .az-content-body-chat{display:flex}}.az-content-left-chat{width:100%;position:relative;display:flex;flex-direction:column;padding:0}@media (min-width: 992px){.az-content-left-chat{width:320px;border-right:1px solid #cdd4e0}}.az-nav-line-chat{border-bottom:1px solid #cdd4e0;padding-bottom:5px;flex-shrink:0;flex-direction:row;padding-left:20px}@media (min-width: 992px){.az-nav-line-chat{padding-left:0}}.az-nav-line-chat .nav-link{font-size:13px;font-weight:500;color:#3b4863;text-transform:uppercase}.az-nav-line-chat .nav-link:hover,.az-nav-line-chat .nav-link:focus,.az-nav-line-chat .nav-link:active{outline:none}.az-nav-line-chat .nav-link+.nav-link{margin-top:0;margin-left:30px}.az-nav-line-chat .nav-link.active{color:#5b47fb}.az-nav-line-chat .nav-link.active::before{top:auto;left:0;right:0;width:auto;bottom:-6px;background-color:#5b47fb}.az-chat-contacts-wrapper{padding:10px 20px;flex-shrink:0;border-bottom:1px solid #cdd4e0;overflow:hidden}@media (min-width: 992px){.az-chat-contacts-wrapper{padding:10px 15px 10px 0}}.az-chat-contacts-wrapper .az-content-label,.az-chat-contacts-wrapper .card-table-two .card-title,.card-table-two .az-chat-contacts-wrapper .card-title,.az-chat-contacts-wrapper .card-dashboard-eight .card-title,.card-dashboard-eight .az-chat-contacts-wrapper .card-title{margin-bottom:15px;line-height:1}.az-chat-contacts-wrapper .lSSlideOuter,.az-chat-contacts-wrapper .lSSlideWrapper{overflow:visible}.az-chat-contacts{padding-left:20px;display:flex}.az-chat-contacts .lslide{display:flex;flex-direction:column;align-items:center;float:none}.az-chat-contacts small{font-size:11px;width:36px;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;margin-top:3px;text-align:center}.az-chat-contacts-more{width:36px;height:36px;display:flex;align-items:center;justify-content:center;border-radius:100%;background-color:#cdd4e0;font-size:12px;font-weight:500;color:#fff}@media (min-width: 992px){.az-chat-list{height:calc(100% - 134px);position:relative}}.az-chat-list .media{padding:12px 20px;border:1px solid transparent;position:relative}@media (min-width: 992px){.az-chat-list .media{padding:12px 15px}}.az-chat-list .media .az-img-user{flex-shrink:0;top:3px}.az-chat-list .media::after{content:'';position:absolute;top:-1px;bottom:-1px;left:0;width:1px;background-color:#36f;display:none}.az-chat-list .media+.media{margin-top:-1px}.az-chat-list .media+.media::before{content:'';position:absolute;top:-1px;left:65px;right:0;border-top:1px solid #e3e7ed}.az-chat-list .media.new{background-color:#fff}.az-chat-list .media.new .az-img-user span{display:flex}.az-chat-list .media.new .media-contact-name span:first-child{font-weight:700;color:#1c273c}.az-chat-list .media.new .media-body p{color:#031b4e}.az-chat-list .media:hover,.az-chat-list .media:focus{cursor:pointer;background-color:#fcfcfc;border-top-color:#e3e7ed;border-bottom-color:#e3e7ed;z-index:1}.az-chat-list .media:hover:first-child,.az-chat-list .media:focus:first-child{border-top-color:transparent}.az-chat-list .media.selected{background-color:#f4f5f8;border-top-color:#e3e7ed;border-bottom-color:#e3e7ed;z-index:2}.az-chat-list .media.selected:first-child{border-top-color:transparent}.az-chat-list .media.selected::after{display:block}.az-chat-list .media.selected .media-contact-name span:first-child{color:#1c273c}.az-chat-list .media.selected .media-body p{color:#031b4e}.az-chat-list .az-img-user span{position:absolute;top:0;left:-2px;width:14px;height:14px;display:none;align-items:center;justify-content:center;border-radius:100%;font-size:9px;font-weight:500;color:#fff;background-color:#dc3545;box-shadow:0 0 0 2px #fff}.az-chat-list .media-body{margin-left:15px}.az-chat-list .media-body p{font-size:13px;margin-bottom:0;color:#7987a1;line-height:1.35}.az-chat-list .media-contact-name{display:flex;align-items:center;justify-content:space-between;margin-bottom:2px}.az-chat-list .media-contact-name span:first-child{display:block;font-size:14px;font-weight:500;color:#1c273c}.az-chat-list .media-contact-name span:last-child{display:block;font-size:11px;color:#97a3b9}.az-content-body-chat{flex-direction:column;display:none}@media (min-width: 992px){.az-content-body-chat{display:flex}}.az-chat-header{flex-shrink:0;height:56px;display:flex;align-items:center;justify-content:flex-start;padding:0 20px 12px;border-bottom:1px solid #cdd4e0}.az-chat-header .nav{margin-left:auto;align-items:center}.az-chat-header .nav-link{padding:0;color:#cdd4e0;font-size:20px;display:none}.az-chat-header .nav-link:first-child{display:block}@media (min-width: 576px){.az-chat-header .nav-link{display:block}.az-chat-header .nav-link:first-child{display:none}}.az-chat-header .nav-link i{line-height:0}.az-chat-header .nav-link .typcn{line-height:.9}.az-chat-header .nav-link .typcn::before{width:auto}.az-chat-header .nav-link:hover,.az-chat-header .nav-link:focus{color:#5b47fb}.az-chat-header .nav-link+.nav-link{margin-left:15px}.az-chat-msg-name{margin-left:15px}.az-chat-msg-name h6{margin-bottom:2px;font-size:15px;font-weight:700;color:#1c273c}.az-chat-msg-name small{font-size:12px;color:#7987a1}.az-chat-body{position:relative;padding-bottom:50px}@media (min-width: 992px){.az-chat-body{padding-bottom:0;height:calc(100% - 105px);overflow:hidden}}.az-chat-body .content-inner{padding:20px}.az-chat-body .media+.media{margin-top:20px}.az-chat-body .media.flex-row-reverse .media-body{margin-left:0;margin-right:20px;align-items:flex-end}@media (min-width: 576px){.az-chat-body .media.flex-row-reverse .media-body{margin-left:55px}}.az-chat-body .media.flex-row-reverse .az-msg-wrapper{background-color:#5b47fb;color:#fff}.az-chat-body .media-body{margin-left:20px;display:flex;flex-direction:column;align-items:flex-start}@media (min-width: 576px){.az-chat-body .media-body{margin-right:55px}}.az-chat-body .media-body>div:last-child{font-size:11px;color:#7987a1;display:flex;align-items:center}.az-chat-time{display:block;position:relative;text-align:center;margin:20px 0}.az-chat-time:first-of-type{margin-top:0}.az-chat-time span{font-size:10px;font-weight:500;text-transform:uppercase;letter-spacing:1px}.az-msg-wrapper{padding:10px 15px;background-color:#cdd4e0;font-size:13px;margin-bottom:5px;border-radius:2px;display:inline-block}.az-chat-footer{flex-shrink:0;display:flex;align-items:center;height:50px;padding:0 20px;border-top:1px solid #cdd4e0;background-color:#fff;position:fixed;bottom:0;left:0;right:0}@media (min-width: 992px){.az-chat-footer{position:relative;bottom:auto;left:auto;right:auto}}.az-chat-footer .nav{align-items:center}.az-chat-footer .nav-link{padding:0;color:#97a3b9;font-size:16px;display:none}.az-chat-footer .nav-link+.nav-link{margin-left:10px}.az-chat-footer .nav-link:last-child{display:block;margin-left:0}@media (min-width: 576px){.az-chat-footer .nav-link{display:block}.az-chat-footer .nav-link:last-child{display:none}}.az-chat-footer .form-control{flex:1;margin:0 10px;padding-left:0;padding-right:0;border-width:0}@media (min-width: 576px){.az-chat-footer .form-control{margin-left:20px}}@media (min-width: 768px){.az-chat-footer .form-control{margin:0 20px}}.az-chat-footer .form-control:hover,.az-chat-footer .form-control:focus{box-shadow:none}.az-msg-send{font-size:20px;color:#36f}@media (min-width: 768px) and (max-width: 991.98px){.az-content-body-show .az-header-contacts .az-header-menu-icon{display:flex}.az-content-body-show .az-content-left-contacts{display:block}}@media (min-width: 768px) and (max-width: 991.98px){.az-content-contacts{height:calc(100vh - 60px)}}.az-content-left-contacts{width:100%;display:block;padding:0}@media (min-width: 768px){.az-content-left-contacts{width:300px;border-right:1px solid #cdd4e0}}.az-content-left-contacts .az-content-breadcrumb,.az-content-left-contacts .az-content-title{padding-left:20px}@media (min-width: 992px){.az-content-left-contacts .az-content-breadcrumb,.az-content-left-contacts .az-content-title{padding-left:0}}@media (min-width: 768px){.az-contacts-list{height:calc(100% - 102px);position:relative}}.az-contact-label{padding-top:20px;padding-bottom:5px;padding-left:20px;font-weight:500;font-size:12px;color:#97a3b9;position:relative}@media (min-width: 992px){.az-contact-label{padding-left:0}}.az-contact-label::after{content:'';position:absolute;bottom:-1px;left:0;right:0;border-bottom:1px solid #cdd4e0;z-index:5}.az-contact-item{padding:10px 20px;border:1px solid transparent;border-right-width:0;display:flex;position:relative;cursor:pointer}@media (min-width: 992px){.az-contact-item{padding:10px 15px}}.az-contact-item+.az-contact-item{margin-top:-1px;border-top-color:transparent}.az-contact-item+.az-contact-item::before{content:'';position:absolute;top:-1px;left:65px;right:0;border-top:1px solid #e3e7ed}.az-contact-item:hover,.az-contact-item:focus{background-color:#f4f5f8;border-top-color:#e3e7ed;border-bottom-color:#e3e7ed}.az-contact-item.selected{z-index:1;border-left-color:#5b47fb;border-top-color:#e3e7ed;border-bottom-color:#e3e7ed;background-color:#f4f5f8}.az-contact-body{flex:1;margin-left:15px}.az-contact-body h6{color:#1c273c;font-weight:500;margin-bottom:2px}.az-contact-body span{font-size:13px;color:#7987a1}.az-contact-star{font-size:16px;color:#97a3b9}.az-contact-star:hover,.az-contact-star:focus{color:#7987a1}.az-contact-star.active{color:#ffc107}.az-content-body-contacts{display:none}@media (min-width: 768px){.az-content-body-contacts{display:block;overflow-y:auto}}@media (min-width: 992px){.az-content-body-contacts{overflow:visible}}.az-contact-info-header{padding-top:40px;padding-left:20px;padding-bottom:20px;border-bottom:1px solid #cdd4e0;position:relative}@media (min-width: 576px){.az-contact-info-header{padding-top:0}}@media (min-width: 992px){.az-contact-info-header{padding-left:30px;padding-bottom:25px}}.az-contact-info-header .media{display:block}@media (min-width: 992px){.az-contact-info-header .media{display:flex;align-items:center}}.az-contact-info-header .az-img-user{width:100px;height:100px}.az-contact-info-header .az-img-user::after{display:none}.az-contact-info-header .az-img-user a{position:absolute;bottom:0;right:0;display:flex;align-items:center;justify-content:center;width:32px;height:32px;background-color:#7987a1;color:#fff;font-size:18px;line-height:.9;box-shadow:0 0 0 2px #fff;border-radius:100%}.az-contact-info-header .az-img-user a:hover,.az-contact-info-header .az-img-user a:focus{background-color:#36f}.az-contact-info-header .media-body{margin-top:30px}@media (min-width: 992px){.az-contact-info-header .media-body{margin-top:0;margin-left:30px}}.az-contact-info-header .media-body h4{color:#1c273c;font-size:26px;font-weight:500;margin-bottom:8px;line-height:1}.az-contact-info-header .media-body p{color:#031b4e;margin-bottom:15px}.az-contact-info-header .media-body .nav-link{padding:0;display:flex;align-items:center;color:#7987a1;font-size:13px}@media (min-width: 576px){.az-contact-info-header .media-body .nav-link{font-size:.875rem}}.az-contact-info-header .media-body .nav-link i{font-size:21px;line-height:0;margin-right:5px}@media (min-width: 576px){.az-contact-info-header .media-body .nav-link i{margin-right:7px}}.az-contact-info-header .media-body .nav-link i.typcn{line-height:.9}.az-contact-info-header .media-body .nav-link i.typcn::before{width:auto}.az-contact-info-header .media-body .nav-link:hover,.az-contact-info-header .media-body .nav-link:focus{color:#36f}.az-contact-info-header .media-body .nav-link+.nav-link{margin-left:10px}@media (min-width: 576px){.az-contact-info-header .media-body .nav-link+.nav-link{margin-left:25px}}.az-contact-action{position:absolute;top:0;right:20px;display:flex}@media (min-width: 992px){.az-contact-action{right:0}}.az-contact-action a{display:flex;align-items:center;color:#7987a1;font-size:12px}.az-contact-action a:hover,.az-contact-action a:focus{color:#36f}.az-contact-action a i{font-size:21px;line-height:.7;margin-right:5px}.az-contact-action a+a{margin-left:15px}.az-contact-info-body{padding-left:20px}@media (min-width: 992px){.az-contact-info-body{padding-left:30px;height:calc(100% - 126px);position:relative}}.az-contact-info-body .media-list{padding:20px 0}@media (min-width: 992px){.az-contact-info-body .media-list{padding:25px 0}}.az-contact-info-body .media{align-items:center;position:relative}.az-contact-info-body .media+.media{margin-top:30px}.az-contact-info-body .media+.media::before{content:'';position:absolute;top:-15px;left:130px;right:0;border-top:1px dotted #cdd4e0}.az-contact-info-body .media:last-child{margin-bottom:15px}.az-contact-info-body .media-icon{font-size:32px;color:#97a3b9;line-height:1;width:40px;text-align:center}@media (min-width: 992px){.az-contact-info-body .media-icon{width:100px}}.az-contact-info-body .media-body{margin-left:30px}@media (min-width: 992px){.az-contact-info-body .media-body{display:flex}}@media (min-width: 992px){.az-contact-info-body .media-body>div{flex:1}}.az-contact-info-body .media-body>div+div{margin-top:15px}@media (min-width: 992px){.az-contact-info-body .media-body>div+div{margin-top:0}}.az-contact-info-body .media-body label{color:#7987a1;margin-bottom:0;display:block;font-size:13px}.az-contact-info-body .media-body span{display:block;color:#1c273c;font-weight:500}.az-content-left-invoice{display:block;padding:0}@media (max-width: 991.98px){.az-content-left-invoice{width:100%}}@media (min-width: 992px){.az-content-left-invoice{border-right:1px solid #cdd4e0}}.az-content-left-invoice .az-content-breadcrumb,.az-content-left-invoice .az-content-title{padding-left:20px}@media (min-width: 992px){.az-content-left-invoice .az-content-breadcrumb,.az-content-left-invoice .az-content-title{padding-left:0}}.az-invoice-list{position:relative;border-top:1px solid #cdd4e0}@media (min-width: 992px){.az-invoice-list{height:calc(100% - 65px)}}.az-invoice-list .media{align-items:center;border:1px solid transparent;border-right-width:0;padding:10px 20px;position:relative}@media (min-width: 992px){.az-invoice-list .media{padding:10px 15px}}.az-invoice-list .media:hover,.az-invoice-list .media:focus{cursor:pointer;background-color:#f4f5f8}.az-invoice-list .media+.media{margin-top:-1px}.az-invoice-list .media+.media::before{content:'';position:absolute;top:-1px;left:55px;right:0;border-top:1px dotted #cdd4e0}.az-invoice-list .media-icon{width:24px;text-align:center;font-size:32px;color:#97a3b9}.az-invoice-list .media-body{margin-left:15px}.az-invoice-list .media-body h6{font-weight:500;color:#1c273c;margin-bottom:3px;display:flex;align-items:center;justify-content:space-between}.az-invoice-list .media-body h6 span:last-child{color:#5b47fb}.az-invoice-list .media-body div{display:flex;justify-content:space-between;align-items:center}.az-invoice-list .media-body p{margin-bottom:0;font-size:11px;font-family:Arial, sans-serif;color:#3b4863}.az-invoice-list .media-body p span{color:#7987a1}.az-invoice-list .selected{background-color:#f4f5f8;border-top-color:#cdd4e0;border-bottom-color:#cdd4e0;border-left-color:#5b47fb}.az-invoice-list .selected:first-child{border-top-color:transparent}.az-content-body-invoice{position:relative;display:none}@media (min-width: 992px){.az-content-body-invoice{display:block}}.card-invoice{background-color:transparent;border-width:0}.card-invoice .card-body{padding:20px}@media (min-width: 992px){.card-invoice .card-body{padding:0 50px 50px}}@media (min-width: 768px){.invoice-header{display:flex;justify-content:space-between;flex-direction:row-reverse}}.invoice-title{margin-bottom:0;text-transform:uppercase;color:#cdd4e0;font-weight:700}.billed-from{margin-top:25px;margin-bottom:25px}@media (min-width: 768px){.billed-from{margin-top:0}}.billed-from h6{color:#1c273c;font-size:14px;font-weight:700}.billed-from p{font-size:13px;margin-bottom:0}.billed-to h6{color:#1c273c;font-size:14px;font-weight:700}.billed-to p{font-size:13px;margin-bottom:0}.invoice-info-row{display:flex;justify-content:space-between;padding:5px 0;margin-bottom:0;font-size:13px}.invoice-info-row+.invoice-info-row{border-top:1px dotted #cdd4e0}.invoice-info-row span:first-child{color:#596882}.table-invoice thead>tr>th,.table-invoice thead>tr>td{font-size:11px;font-weight:700;color:#7987a1}.table-invoice tbody>tr>th:first-child,.table-invoice tbody>tr>td:first-child{color:#1c273c;font-weight:500}.table-invoice tbody>tr>th:first-child .invoice-notes,.table-invoice tbody>tr>td:first-child .invoice-notes{margin-right:20px}.table-invoice tbody>tr>th:first-child .invoice-notes .section-label-sm,.table-invoice tbody>tr>td:first-child .invoice-notes .section-label-sm{font-weight:600}.table-invoice tbody>tr>th:first-child .invoice-notes p,.table-invoice tbody>tr>td:first-child .invoice-notes p{font-size:13px;font-weight:400;color:#031b4e}.az-content-mail .container,.az-content-mail .container-fluid{padding:20px 0 0}@media (min-width: 992px){.az-content-mail .container,.az-content-mail .container-fluid{padding:0}}@media (min-width: 576px){.az-content-left-mail{width:300px}}@media (min-width: 992px){.az-content-left-mail{width:230px;display:block;padding:0;border-right:1px solid #cdd4e0}}.az-content-left-mail .btn-compose{margin-bottom:20px;text-transform:uppercase;font-weight:500;font-size:11px;padding:0 20px;letter-spacing:2px;display:flex;align-items:center;justify-content:center;height:38px}@media (min-width: 992px){.az-content-left-mail .btn-compose{margin-right:25px}}.az-mail-menu{position:relative;padding-right:0}@media (min-width: 992px){.az-mail-menu{padding-right:25px}}.az-mail-menu .nav-link{height:38px}@media (min-width: 992px){.az-mail-menu .nav-link{font-size:13px}}.az-mail-menu .nav-link i{font-size:22px}.az-mail-header{display:flex;align-items:center;justify-content:space-between;margin-bottom:20px;padding:0 20px}@media (min-width: 992px){.az-mail-header{padding:0 0 0 25px;margin-bottom:25px}}.az-mail-header>div:first-child p{font-size:13px;margin-bottom:0}.az-mail-header>div:last-child{display:none}@media (min-width: 768px){.az-mail-header>div:last-child{display:flex;align-items:center}}.az-mail-header>div:last-child>span{font-size:12px;margin-right:10px}.az-mail-header .btn-group .btn,.az-mail-header .btn-group .sp-container button,.sp-container .az-mail-header .btn-group button{font-size:21px;display:flex;align-items:center;justify-content:center;width:38px;height:38px;line-height:0;padding:0;position:relative;z-index:1;border-color:#cdd4e0;background-color:#fff}.az-mail-header .btn-group .btn:hover,.az-mail-header .btn-group .sp-container button:hover,.sp-container .az-mail-header .btn-group button:hover,.az-mail-header .btn-group .btn:focus,.az-mail-header .btn-group .sp-container button:focus,.sp-container .az-mail-header .btn-group button:focus{color:#1c273c;background-color:#f4f5f8}.az-mail-header .btn-group .btn.disabled,.az-mail-header .btn-group .sp-container button.disabled,.sp-container .az-mail-header .btn-group button.disabled{background-color:#fff;color:#cdd4e0;border-color:#cdd4e0;z-index:0}.az-mail-header .btn-group .btn.disabled:focus,.az-mail-header .btn-group .sp-container button.disabled:focus,.sp-container .az-mail-header .btn-group button.disabled:focus,.az-mail-header .btn-group .btn.disabled:active,.az-mail-header .btn-group .sp-container button.disabled:active,.sp-container .az-mail-header .btn-group button.disabled:active{box-shadow:none}.az-mail-header .btn-group .btn+.btn,.az-mail-header .btn-group .sp-container button+.btn,.sp-container .az-mail-header .btn-group button+.btn,.az-mail-header .btn-group .sp-container .btn+button,.sp-container .az-mail-header .btn-group .btn+button,.az-mail-header .btn-group .sp-container button+button,.sp-container .az-mail-header .btn-group button+button{margin-left:-2px}.az-mail-options{padding:5px 10px 5px 20px;border:1px solid #cdd4e0;border-left-width:0;border-right-width:0;display:none;align-items:center;justify-content:flex-end}@media (min-width: 992px){.az-mail-options{padding-left:25px;display:flex;justify-content:space-between}}.az-mail-options .btn,.az-mail-options .sp-container button,.sp-container .az-mail-options button{font-size:22px;display:flex;align-items:center;justify-content:center;width:36px;height:36px;background-color:transparent}.az-mail-options .btn:hover,.az-mail-options .sp-container button:hover,.sp-container .az-mail-options button:hover,.az-mail-options .btn:focus,.az-mail-options .sp-container button:focus,.sp-container .az-mail-options button:focus{background-color:#e3e7ed}.az-mail-options .btn i,.az-mail-options .sp-container button i,.sp-container .az-mail-options button i{line-height:0}.az-mail-options .btn i.typcn,.az-mail-options .sp-container button i.typcn,.sp-container .az-mail-options button i.typcn{line-height:.75}.az-mail-options .btn.disabled,.az-mail-options .sp-container button.disabled,.sp-container .az-mail-options button.disabled{background-color:transparent;color:#7987a1}.az-mail-list{border-top:1px solid #e3e7ed}@media (min-width: 992px){.az-mail-list{border-top-width:0}}.az-mail-item{padding:10px 15px;border-top:1px solid #e3e7ed;border-bottom:1px solid #e3e7ed;background-color:#fcfcfc;position:relative;display:flex;align-items:center;width:100vw}@media (min-width: 576px){.az-mail-item{padding:10px 20px}}@media (min-width: 992px){.az-mail-item{width:auto;padding:10px 25px}}.az-mail-item+.az-mail-item{margin-top:-1px}.az-mail-item:first-child{border-top-width:0}.az-mail-item .az-img-user,.az-mail-item .az-avatar{flex-shrink:0;margin-right:15px}.az-mail-item .az-img-user::after,.az-mail-item .az-avatar::after{display:none}.az-mail-item:hover,.az-mail-item:focus{background-color:#f4f5f8}.az-mail-item.unread{background-color:#fff}.az-mail-item.selected{background-color:#fff}.az-mail-checkbox{margin-right:15px;display:none}@media (min-width: 992px){.az-mail-checkbox{display:block}}.az-mail-star{margin-right:15px;font-size:18px;line-height:.9;color:#cdd4e0;position:absolute;bottom:10px;right:0}@media (min-width: 992px){.az-mail-star{position:relative;bottom:auto;top:2px}}.az-mail-star.active{color:#ffc107}.az-mail-body{width:calc(100% - 80px);cursor:pointer}@media (min-width: 992px){.az-mail-body{max-width:460px;margin-right:15px;flex:1}}@media (min-width: 1200px){.az-mail-body{max-width:640px}}.az-mail-from{font-size:13px}@media (min-width: 576px){.az-mail-subject{white-space:nowrap;text-overflow:ellipsis;overflow:hidden;width:100%}}.az-mail-subject strong{font-weight:700;font-size:14px;color:#1c273c;display:block;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;width:100%}@media (min-width: 576px){.az-mail-subject strong{display:inline;width:auto;white-space:normal;text-overflow:inherit;overflow:visible}}.az-mail-subject span{font-size:13px;color:#7987a1;display:none}@media (min-width: 576px){.az-mail-subject span{display:inline}}.az-mail-attachment{margin-right:15px;font-size:21px;line-height:.9;display:none}@media (min-width: 992px){.az-mail-attachment{display:block}}.az-mail-date{font-size:11px;position:absolute;top:12px;right:15px;color:#97a3b9;margin-left:auto}@media (min-width: 992px){.az-mail-date{position:static;font-size:13px}}.az-mail-compose{position:fixed;top:0;left:0;width:100%;height:100%;background-color:rgba(28,39,60,0.5);z-index:1000;display:none}.az-mail-compose>div{display:flex;align-items:center;justify-content:center;width:100%;height:100%}@media (min-width: 992px){.az-mail-compose .container{padding:0}}.az-mail-compose-box{box-shadow:0 0 30px rgba(28,39,60,0.2);border-radius:3px}.az-mail-compose-header{padding:10px 20px;display:flex;align-items:center;justify-content:space-between;background-color:#1c273c;color:#fff;font-size:14px;font-weight:500;border-top-left-radius:3px;border-top-right-radius:3px}@media (min-width: 992px){.az-mail-compose-header{padding:20px 25px}}.az-mail-compose-header .nav-link{color:rgba(255,255,255,0.3);font-size:14px;line-height:1;padding:0;transition:all 0.2s ease-in-out}@media (prefers-reduced-motion: reduce){.az-mail-compose-header .nav-link{transition:none}}.az-mail-compose-header .nav-link:hover,.az-mail-compose-header .nav-link:focus{color:#fff}.az-mail-compose-header .nav-link+.nav-link{margin-left:15px}.az-mail-compose-header .nav-link:nth-child(2){display:none}@media (min-width: 768px){.az-mail-compose-header .nav-link:nth-child(2){display:block}}.az-mail-compose-body{background-color:#fff;padding:20px;border-bottom-right-radius:3px;border-bottom-left-radius:3px}@media (min-width: 992px){.az-mail-compose-body{padding:25px}}.az-mail-compose-body .form-group{display:flex;align-items:center}.az-mail-compose-body .form-group>div{flex:1;margin-left:10px}.az-mail-compose-body .form-group .form-label{margin:0;color:#1c273c}.az-mail-compose-body .form-group .form-control{border-width:0;border-radius:0;padding:0}.az-mail-compose-body .form-group .form-control:focus{box-shadow:none !important}.az-mail-compose-body .form-group+.form-group{border-top:1px dotted #cdd4e0;padding-top:1rem}.az-mail-compose-body .form-group:last-child{display:block}@media (min-width: 576px){.az-mail-compose-body .form-group:last-child{display:flex;justify-content:space-between}}.az-mail-compose-body .form-group:last-child .btn,.az-mail-compose-body .form-group:last-child .sp-container button,.sp-container .az-mail-compose-body .form-group:last-child button{width:100%;margin-top:15px;padding-left:20px;padding-right:20px}@media (min-width: 576px){.az-mail-compose-body .form-group:last-child .btn,.az-mail-compose-body .form-group:last-child .sp-container button,.sp-container .az-mail-compose-body .form-group:last-child button{width:auto;margin-top:0}}.az-mail-compose-body .form-group .nav-link{padding:0;font-size:18px;line-height:0;color:#031b4e;position:relative;transition:all 0.2s ease-in-out}@media (prefers-reduced-motion: reduce){.az-mail-compose-body .form-group .nav-link{transition:none}}.az-mail-compose-body .form-group .nav-link:hover,.az-mail-compose-body .form-group .nav-link:focus{color:#1c273c}.az-mail-compose-body .form-group .nav-link+.nav-link{margin-left:15px}.az-mail-compose-compress,.az-mail-compose-minimize{top:auto;left:auto;bottom:0;right:30px;width:560px;height:auto;background-color:transparent}.az-mail-compose-compress .container,.az-mail-compose-minimize .container{max-width:none;padding:0}.az-mail-compose-minimize .az-mail-compose-body{display:none}.az-mail-two .az-content{display:flex;flex-direction:column}.az-mail-two .az-header{width:100%;border-bottom:1px solid #cdd4e0}.az-mail-two .az-footer{width:100%}.az-mail-two .az-header-menu-icon{margin-right:0}.az-mail-two .az-content-body{display:flex;padding:0}.az-mail-left{background-color:#f9f9f9;width:240px;border-right:1px solid #b4bdce;padding:20px;display:none}@media (min-width: 1200px){.az-mail-left{display:block}}.az-mail-left .btn-compose{display:block;margin-bottom:20px}.az-mail-left .az-mail-menu{padding-right:0}.az-mail-content{background-color:#fcfcfc;flex:1;max-width:100vw - 480px}.az-mail-content .az-mail-header{margin-bottom:0;padding:20px}.az-mail-content .az-mail-body{max-width:590px}.az-content-profile{flex:1}@media (max-width: 991.98px){.az-content-profile .container,.az-content-profile .container-fluid{display:block}}.az-content-left-profile{padding-left:0;padding-right:0;display:block;border-bottom:1px solid #cdd4e0;padding-bottom:25px;width:auto}@media (min-width: 992px){.az-content-left-profile{width:270px;padding-right:20px;padding-bottom:0;border-right:1px solid #cdd4e0;border-bottom:0}}@media (min-width: 1200px){.az-content-left-profile{padding-right:25px}}.az-profile-overview .az-img-user{width:120px;height:120px;margin-bottom:20px}.az-profile-overview .az-img-user::after{display:none}.az-profile-overview .btn-icon-list .btn,.az-profile-overview .btn-icon-list .sp-container button,.sp-container .az-profile-overview .btn-icon-list button{border-radius:100%}.az-profile-name{color:#1c273c;font-weight:700;font-size:20px;margin-bottom:2px}.az-profile-name-text{color:#7987a1;font-size:13px;margin-bottom:0}.az-profile-bio{font-size:13px;margin-bottom:20px}.az-profile-social-list .media{align-items:center}.az-profile-social-list .media+.media{margin-top:20px}.az-profile-social-list .media-icon{font-size:34px;width:30px;line-height:0}.az-profile-social-list .media-body{margin-left:20px}.az-profile-social-list .media-body span{display:block;font-size:12px}.az-profile-social-list .media-body a{font-size:13px}.az-content-body-profile .nav{flex-direction:column;padding:20px 20px 20px 0;border-bottom:1px solid #cdd4e0}@media (min-width: 576px){.az-content-body-profile .nav{flex-direction:row;align-items:center;padding-bottom:10px}}@media (min-width: 992px){.az-content-body-profile .nav{padding-left:20px}}@media (min-width: 1200px){.az-content-body-profile .nav{padding-left:25px}}.az-content-body-profile .az-nav-line .nav-link{text-transform:uppercase;font-size:13px;font-weight:500;color:#3b4863}.az-content-body-profile .az-nav-line .nav-link.active{font-weight:700;color:#5b47fb}.az-content-body-profile .az-nav-line .nav-link.active::before{background-color:#5b47fb}@media (min-width: 576px) and (max-width: 767.98px){.az-content-body-profile .az-nav-line .nav-link.active::before{width:auto;top:auto;left:0;right:0;height:2px}}@media (min-width: 576px){.az-content-body-profile .az-nav-line .nav-link.active::before{bottom:-11px}}@media (min-width: 576px) and (max-width: 767.98px){.az-content-body-profile .az-nav-line .nav-link+.nav-link{margin-top:0;margin-left:20px}}.az-profile-body{padding:15px 0 0}@media (min-width: 576px){.az-profile-body{padding-top:20px}}@media (min-width: 992px){.az-profile-body{padding:25px 0 0 20px}}@media (min-width: 1200px){.az-profile-body{padding-left:25px}}.az-profile-view-chart{position:relative;width:calc(100% - 10px);height:200px}@media (min-width: 375px){.az-profile-view-chart{width:100%}}@media (min-width: 576px){.az-profile-view-chart{height:250px}}.az-profile-view-info{position:absolute;top:0;left:0}.az-profile-view-info h6{font-size:32px;font-weight:500;color:#1c273c;margin-bottom:0}.az-profile-view-info span{font-size:12px;color:#f10075;margin-left:5px}.az-profile-view-info p{font-size:13px;margin-bottom:0}.az-traffic-detail-item>div:first-child{display:flex;align-items:center;justify-content:space-between;font-size:12px;margin-bottom:7px}.az-traffic-detail-item>div:first-child>span:first-child{color:#7987a1}.az-traffic-detail-item>div:first-child>span:last-child{font-size:11px;font-weight:700;color:#1c273c}.az-traffic-detail-item>div:first-child>span:last-child span{color:#7987a1;font-weight:400}.az-traffic-detail-item+.az-traffic-detail-item{margin-top:25px}.az-traffic-detail-item .progress{height:8px}.az-profile-work-list .media+.media{margin-top:25px}.az-profile-work-list .media-logo{width:40px;height:40px;display:flex;align-items:center;justify-content:center;line-height:0;color:#fff;font-size:21px;position:relative;top:2px;border-radius:100%}.az-profile-work-list .media-body{margin-left:20px}.az-profile-work-list .media-body h6{color:#1c273c;font-weight:500;margin-bottom:2px}.az-profile-work-list .media-body span{display:block;margin-bottom:5px}.az-profile-work-list .media-body p{margin-bottom:0;font-size:12px;color:#7987a1}.az-profile-contact-list .media{align-items:center}.az-profile-contact-list .media+.media{margin-top:25px}.az-profile-contact-list .media-icon{line-height:0;font-size:36px;width:35px;text-align:center}.az-profile-contact-list .media-body{margin-left:25px}.az-profile-contact-list .media-body span{font-size:12px;color:#7987a1;display:block;line-height:1.3}.az-profile-contact-list .media-body div{font-weight:500;color:#1c273c}.az-signin-wrapper{flex:1;display:flex;align-items:center;justify-content:center}.az-card-signin{height:560px;padding:20px;display:flex;flex-direction:column;justify-content:space-between;background-color:rgba(255,255,255,0.5)}@media (min-width: 480px){.az-card-signin{border:1px solid #cdd4e0;width:360px;padding:30px 35px}}.az-signin-header h2{font-weight:500;color:#5b47fb;letter-spacing:-1px}.az-signin-header h4{font-weight:400;color:#1c273c;margin-bottom:25px}.az-signin-header label{color:#7987a1}.az-signin-header .form-control{color:#1c273c;font-weight:500;border-width:2px;border-color:#cdd4e0}.az-signin-header .form-control:focus{border-color:#b4bdce;box-shadow:none}.az-signin-header .form-control::placeholder{font-weight:400;color:#97a3b9}.az-signin-header .btn,.az-signin-header .sp-container button,.sp-container .az-signin-header button{margin-top:25px}.az-signin-footer p{color:#7987a1}.az-signin-footer p:first-child{margin-bottom:5px}.az-signin-footer p:last-child{margin-bottom:0}.az-signin-footer a{color:#1c273c;font-weight:700}.az-signin-footer a:hover,.az-signin-footer a:focus{color:#5b47fb}.az-signup-wrapper{flex:1;display:flex;justify-content:center;background-color:rgba(244,245,248,0.2)}@media (min-width: 992px){.az-signup-wrapper{justify-content:flex-end}}.az-column-signup-left{flex:1;padding:30px;flex-direction:column;align-items:center;justify-content:center;display:none}@media (min-width: 576px){.az-column-signup-left{padding:40px}}@media (min-width: 992px){.az-column-signup-left{display:flex}}.az-column-signup-left>div{max-width:500px}.az-column-signup-left .typcn{font-size:80px;margin-bottom:50px}.az-column-signup-left .typcn::before{width:auto}.az-column-signup-left .az-logo{font-size:40px;line-height:1}.az-column-signup-left h5{color:#1c273c;font-weight:500;font-size:18px;margin-bottom:25px}.az-column-signup-left p{line-height:1.7;margin-bottom:25px}.az-column-signup-left .btn,.az-column-signup-left .sp-container button,.sp-container .az-column-signup-left button{border-width:2px;padding-left:25px;padding-right:25px;font-weight:700;text-transform:uppercase;height:38px}.az-column-signup{background-color:#fff;padding:30px;display:flex;flex-direction:column;justify-content:space-between}@media (min-width: 576px){.az-column-signup{padding:40px;width:500px}}@media (min-width: 992px){.az-column-signup{border-left:1px solid #cdd4e0}}.az-signup-header h2{font-weight:500;color:#5b47fb;letter-spacing:-1px}.az-signup-header h4{font-size:20px;font-weight:400;color:#1c273c;margin-bottom:25px}.az-signup-header label{color:#7987a1}.az-signup-header .form-control{color:#1c273c;font-weight:500;border-width:2px;border-color:#cdd4e0}.az-signup-header .form-control:focus{border-color:#b4bdce;box-shadow:none}.az-signup-header .form-control::placeholder{font-weight:400;color:#97a3b9}.az-signup-header>.btn,.sp-container .az-signup-header>button{margin-top:25px}.az-signup-header .row{margin-top:20px}.az-signup-header .row>div .btn i,.az-signup-header .row>div .sp-container button i,.sp-container .az-signup-header .row>div button i{font-size:15px;line-height:0;margin-right:5px}.az-signup-header .row>div:first-child .btn,.az-signup-header .row>div:first-child .sp-container button,.sp-container .az-signup-header .row>div:first-child button{background-color:#4267b2;color:#fff}.az-signup-header .row>div:first-child .btn:hover,.az-signup-header .row>div:first-child .sp-container button:hover,.sp-container .az-signup-header .row>div:first-child button:hover,.az-signup-header .row>div:first-child .btn:focus,.az-signup-header .row>div:first-child .sp-container button:focus,.sp-container .az-signup-header .row>div:first-child button:focus{background-color:#375694;color:#fff}.az-signup-footer p{color:#7987a1;margin-bottom:0}.az-signup-footer a{color:#1c273c;font-weight:700}.az-signup-footer a:hover,.az-signup-footer a:focus{color:#5b47fb}.az-error-wrapper{flex:1;display:flex;align-items:center;justify-content:center;flex-direction:column;padding:20px;text-align:center}.az-error-wrapper h1{line-height:1;font-size:150px;font-weight:700;color:#1c273c}.az-error-wrapper h2{font-weight:500;color:#3b4863;letter-spacing:-.5px;margin-bottom:15px}.az-error-wrapper h6{margin-bottom:40px;font-size:14px}.az-error-wrapper .btn,.az-error-wrapper .sp-container button,.sp-container .az-error-wrapper button{border-width:2px;font-weight:700}.az-content-dashboard{padding-top:20px}@media (min-width: 992px){.az-content-dashboard{padding-top:30px}}.az-dashboard-one-title{margin-bottom:20px}@media (min-width: 576px){.az-dashboard-one-title{display:flex;align-items:center;justify-content:space-between}}@media (min-width: 992px){.az-dashboard-one-title{margin-bottom:30px}}.az-dashboard-title{font-size:22px;font-weight:700;color:#1c273c;letter-spacing:-1px;margin-bottom:3px}.az-dashboard-text{font-size:13px;margin-bottom:0}.az-dashboard-date{display:flex;align-items:center;margin-top:20px}@media (min-width: 576px){.az-dashboard-date{margin-top:0}}.az-dashboard-date .date{display:flex}.az-dashboard-date .date>div:first-child{font-size:32px;font-family:Arial, sans-serif;font-weight:500;color:#1c273c;line-height:.9}@media (min-width: 768px){.az-dashboard-date .date>div:first-child{font-size:36px}}.az-dashboard-date .date>div:last-child{margin-left:5px}.az-dashboard-date .date>div:last-child span{display:block;color:#1c273c;font-weight:700;font-size:12px;line-height:1.2;letter-spacing:-.5px}@media (min-width: 768px){.az-dashboard-date .date>div:last-child span{font-size:13px}}.az-dashboard-date .date>div:last-child span:last-child{color:#7987a1;font-weight:400}.az-dashboard-date>i{font-size:21px;line-height:0;display:block;margin:0 15px;color:#97a3b9}@media (min-width: 768px){.az-dashboard-date>i{margin:0 20px;font-size:24px}}.az-dashboard-nav{display:flex;align-items:center;justify-content:space-between;border-bottom:1px solid #cdd4e0;margin-bottom:20px}.az-dashboard-nav .nav-link{font-size:12px;padding:5px 10px 8px;display:flex;align-items:center;line-height:1}@media (min-width: 576px){.az-dashboard-nav .nav-link{font-size:.875rem}}@media (min-width: 992px){.az-dashboard-nav .nav-link{padding:5px 15px 10px}}.az-dashboard-nav .nav-link:hover,.az-dashboard-nav .nav-link:focus{color:#5b47fb}.az-dashboard-nav .nav-link+.nav-link{border-left:1px solid #cdd4e0}.az-dashboard-nav .nav:first-child .nav-link{color:#1c273c;display:none}@media (min-width: 576px){.az-dashboard-nav .nav:first-child .nav-link{display:block}}.az-dashboard-nav .nav:first-child .nav-link:hover,.az-dashboard-nav .nav:first-child .nav-link:focus{color:#5b47fb}.az-dashboard-nav .nav:first-child .nav-link.active{color:#5b47fb}.az-dashboard-nav .nav:first-child .nav-link:first-child{padding-left:0}.az-dashboard-nav .nav:first-child .nav-link:first-child,.az-dashboard-nav .nav:first-child .nav-link:last-child{display:block}.az-dashboard-nav .nav:last-child .nav-link{color:#596882;display:none}@media (min-width: 768px){.az-dashboard-nav .nav:last-child .nav-link{display:block}}.az-dashboard-nav .nav:last-child .nav-link:hover,.az-dashboard-nav .nav:last-child .nav-link:focus{color:#5b47fb}.az-dashboard-nav .nav:last-child .nav-link i{font-size:16px;margin-right:7px;line-height:0}.az-dashboard-nav .nav:last-child .nav-link:last-child{padding-right:0;display:block}.az-dashboard-nav .nav:last-child .nav-link:last-child i{margin-right:0}@media (min-width: 768px){.az-dashboard-nav .nav:last-child .nav-link:last-child{display:none}}.card-dashboard-one{position:relative;border-color:#cdd4e0}.card-dashboard-one .card-header{padding:20px;background-color:transparent}@media (min-width: 576px){.card-dashboard-one .card-header{display:flex;align-items:flex-start;justify-content:space-between}}.card-dashboard-one .card-header .card-title{color:#1c273c;font-weight:700;font-size:14px;line-height:1;margin-bottom:3px}.card-dashboard-one .card-header .card-text{margin-bottom:0}.card-dashboard-one .card-header .btn-group{margin-top:15px}@media (min-width: 576px){.card-dashboard-one .card-header .btn-group{margin-top:0}}.card-dashboard-one .card-header .btn-group .btn,.card-dashboard-one .card-header .btn-group .sp-container button,.sp-container .card-dashboard-one .card-header .btn-group button{font-size:12px;font-weight:500;padding:5px 10px;min-height:inherit;background-color:#fff;color:#7987a1;border:1px solid #cdd4e0}.card-dashboard-one .card-header .btn-group .btn:hover,.card-dashboard-one .card-header .btn-group .sp-container button:hover,.sp-container .card-dashboard-one .card-header .btn-group button:hover,.card-dashboard-one .card-header .btn-group .btn:focus,.card-dashboard-one .card-header .btn-group .sp-container button:focus,.sp-container .card-dashboard-one .card-header .btn-group button:focus{background-color:#f4f5f8;border-color:#cdd4e0}.card-dashboard-one .card-header .btn-group .btn+.btn,.card-dashboard-one .card-header .btn-group .sp-container button+.btn,.sp-container .card-dashboard-one .card-header .btn-group button+.btn,.card-dashboard-one .card-header .btn-group .sp-container .btn+button,.sp-container .card-dashboard-one .card-header .btn-group .btn+button,.card-dashboard-one .card-header .btn-group .sp-container button+button,.sp-container .card-dashboard-one .card-header .btn-group button+button{margin-left:-1px}.card-dashboard-one .card-header .btn-group .btn.active,.card-dashboard-one .card-header .btn-group .sp-container button.active,.sp-container .card-dashboard-one .card-header .btn-group button.active{color:#1c273c;background-color:#e3e7ed;border-color:#cdd4e0}.card-dashboard-one .card-body{padding:10px 0 20px;position:relative;overflow:hidden}.card-dashboard-one .card-body .flot-chart-wrapper{position:relative;margin-left:-28px;margin-right:-20px}.card-dashboard-one .card-body .flot-chart{width:100%;height:150px}@media (min-width: 576px){.card-dashboard-one .card-body .flot-chart{height:275px}}@media (min-width: 992px) and (max-width: 1199.98px){.card-dashboard-one .card-body .flot-chart{height:252px}}.card-dashboard-one .card-body .flot-chart .flot-y-axis>div{transform:translateX(50px);text-shadow:1px 1px rgba(255,255,255,0.75);color:#031b4e;font-weight:700;font-size:11px}.card-dashboard-one .card-body .flot-chart .flot-x-axis>div{color:#97a3b9;font-weight:500;font-size:11px}.card-dashboard-one .card-body-top{display:flex;align-items:flex-start;flex-wrap:wrap;padding-left:20px}@media (min-width: 576px){.card-dashboard-one .card-body-top{position:absolute;top:-5px;left:20px;z-index:5;padding-left:0}}.card-dashboard-one .card-body-top>div{flex-basis:50%}@media (min-width: 576px){.card-dashboard-one .card-body-top>div{flex-basis:auto}}@media (min-width: 576px){.card-dashboard-one .card-body-top>div+div{margin-left:30px}}.card-dashboard-one .card-body-top label{font-size:12px;margin-bottom:3px}@media (min-width: 576px){.card-dashboard-one .card-body-top label{font-size:.875rem}}.card-dashboard-one .card-body-top h2{font-size:20px;font-weight:600;font-family:"Archivo",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";color:#1c273c}@media (min-width: 576px){.card-dashboard-one .card-body-top h2{font-size:24px;letter-spacing:-.5px}}.card-dashboard-two{height:100%;border-radius:0;border-color:#cdd4e0;background-color:rgba(255,255,255,0.5)}.card-dashboard-two .card-header{background-color:transparent;padding:20px 20px 0}.card-dashboard-two .card-header h6{font-size:28px;font-weight:600;font-family:"Archivo",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";color:#1c273c;display:flex;align-items:baseline;margin-bottom:2px;line-height:1;letter-spacing:-1px}@media (min-width: 992px) and (max-width: 1199.98px){.card-dashboard-two .card-header h6{font-size:24px}}.card-dashboard-two .card-header h6 i{margin-left:10px;font-size:24px}.card-dashboard-two .card-header h6 small{font-size:12px;font-weight:400;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";margin-left:5px;color:#7987a1;letter-spacing:normal}.card-dashboard-two .card-header p{margin-bottom:0;font-size:13px}.card-dashboard-two .card-body{padding:0;overflow:hidden}.card-dashboard-two .chart-wrapper{position:relative;margin:0 -10px -10px}.card-dashboard-two .flot-chart{width:100%;height:100px}.card-dashboard-three{height:150px;border-radius:0;border-color:#cdd4e0;background-color:rgba(255,255,255,0.5)}@media (min-width: 768px){.card-dashboard-three{height:170px}}@media (min-width: 992px){.card-dashboard-three{height:100%}}.card-dashboard-three .card-header{background-color:transparent;padding:20px;position:absolute;max-width:50%}.card-dashboard-three .card-header h6{font-size:28px;font-weight:600;font-family:"Archivo",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";color:#1c273c;display:flex;align-items:baseline;margin-bottom:15px;line-height:1;letter-spacing:-1px}@media (min-width: 1200px){.card-dashboard-three .card-header h6{font-size:32px}}.card-dashboard-three .card-header h6 small{font-size:12px;font-weight:400;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";margin-left:5px;letter-spacing:normal}.card-dashboard-three .card-header p{margin-bottom:10px;font-weight:700;text-transform:uppercase;color:#1c273c}.card-dashboard-three .card-header>small{font-size:11px;display:none;color:#7987a1}@media (min-width: 768px){.card-dashboard-three .card-header>small{display:block}}.card-dashboard-three .card-body{padding:0 0 0 20px;display:flex;justify-content:flex-end}.card-dashboard-three .chart{width:70%;height:150px}@media (min-width: 375px){.card-dashboard-three .chart{width:auto}}@media (min-width: 768px){.card-dashboard-three .chart{height:170px}}@media (min-width: 992px){.card-dashboard-three .chart{height:200px;width:80%}}.card-dashboard-pageviews{border-color:#cdd4e0;border-radius:0;padding:20px}.card-dashboard-pageviews .card-header{background-color:transparent;padding:0 0 10px}.card-dashboard-pageviews .card-title{font-weight:700;font-size:14px;color:#1c273c;margin-bottom:5px}.card-dashboard-pageviews .card-text{font-size:13px;margin-bottom:0}.card-dashboard-pageviews .card-body{padding:0}.card-dashboard-four{border-radius:0;border-color:#cdd4e0;padding:20px;height:100%}.card-dashboard-four .card-header{padding:0 0 20px;background-color:transparent}.card-dashboard-four .card-title{font-weight:700;font-size:14px;color:#1c273c;margin-bottom:0}.card-dashboard-four .card-body{padding:0}@media (min-width: 992px){.card-dashboard-four .card-body{padding:0 20px}}.card-dashboard-four .chart{width:calc(100vw - 80px);height:200px}@media (min-width: 375px){.card-dashboard-four .chart{width:auto}}@media (min-width: 992px){.card-dashboard-four .chart{height:85%}}.card-dashboard-five{border-color:#cdd4e0;padding:20px}.card-dashboard-five .card-header{padding:0;background-color:transparent}.card-dashboard-five .card-title{font-weight:700;font-size:14px;color:#1c273c;margin-bottom:5px}.card-dashboard-five .card-text{display:block;font-size:12px}.card-dashboard-five .card-body{padding:20px 0 5px}.card-dashboard-five .card-body label{display:block;margin-bottom:2px;font-size:12px}.card-dashboard-five .card-body h4{color:#1c273c;font-family:"Archivo",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-weight:700;letter-spacing:-.5px;margin-bottom:0}.card-dashboard-five .card-chart{width:40px;height:40px;display:flex;align-items:center;justify-content:center;margin-bottom:10px}@media (min-width: 576px){.card-dashboard-five .card-chart{margin-bottom:0;margin-right:10px}}.card-table-one{padding:20px 20px 10px;border-color:#cdd4e0}.card-table-one .card-title{font-size:14px;font-weight:700;margin-bottom:5px}.card-table-one .table-responsive{width:calc(100vw - 80px)}@media (min-width: 576px){.card-table-one .table-responsive{width:100%}}.card-table-one .table{margin-bottom:0}.card-table-one .table thead tr>th,.card-table-one .table thead tr>td,.card-table-one .table tbody tr>th,.card-table-one .table tbody tr>td{vertical-align:middle;white-space:nowrap;padding-right:2px}@media (min-width: 768px){.card-table-one .table thead tr>th,.card-table-one .table thead tr>td,.card-table-one .table tbody tr>th,.card-table-one .table tbody tr>td{padding-left:0;padding-right:0}}.card-table-one .table thead tr>th:nth-child(3),.card-table-one .table thead tr>th:nth-child(4),.card-table-one .table thead tr>th:nth-child(5),.card-table-one .table thead tr>td:nth-child(3),.card-table-one .table thead tr>td:nth-child(4),.card-table-one .table thead tr>td:nth-child(5),.card-table-one .table tbody tr>th:nth-child(3),.card-table-one .table tbody tr>th:nth-child(4),.card-table-one .table tbody tr>th:nth-child(5),.card-table-one .table tbody tr>td:nth-child(3),.card-table-one .table tbody tr>td:nth-child(4),.card-table-one .table tbody tr>td:nth-child(5){text-align:right}.card-table-one .table thead tr>th strong,.card-table-one .table thead tr>td strong,.card-table-one .table tbody tr>th strong,.card-table-one .table tbody tr>td strong{color:#1c273c}.card-table-one .flag-icon{font-size:20px;line-height:1;border-radius:100%}.az-content-dashboard-two{background-color:#fdfdfd;transition:all 0.4s}@media (prefers-reduced-motion: reduce){.az-content-dashboard-two{transition:none}}.az-content-dashboard-two .az-content-title{letter-spacing:-.5px}.az-content-dashboard-two .az-content-body{padding:0 20px}@media (min-width: 992px){.az-content-dashboard-two .az-content-body{padding:0 20px 20px}}.az-content-dashboard-two .az-header-menu-icon{margin-right:0}.az-dashboard-header-right{margin-top:20px;display:flex;flex-wrap:wrap}@media (min-width: 576px){.az-dashboard-header-right{flex-wrap:nowrap}}@media (min-width: 768px){.az-dashboard-header-right{margin-top:0}}@media (min-width: 768px){.az-dashboard-header-right>div{text-align:right}}.az-dashboard-header-right>div label{display:block;margin-bottom:5px}.az-dashboard-header-right>div h5{font-size:20px;font-weight:700;font-family:"Archivo",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";color:#1c273c;margin-bottom:0;line-height:1}.az-dashboard-header-right>div:first-child{flex-basis:100%}.az-dashboard-header-right>div+div{margin-top:10px}@media (max-width: 575.98px){.az-dashboard-header-right>div+div{flex-basis:50%}}@media (min-width: 576px){.az-dashboard-header-right>div+div{margin-left:25px;margin-top:0;flex-shrink:0}}@media (min-width: 992px){.az-dashboard-header-right>div+div{margin-left:50px}}.az-star{display:flex;align-items:center}.az-star i{font-size:20px;line-height:0;color:#97a3b9;display:inline-block}.az-star i.typcn{line-height:.9}.az-star i.active{color:#ffc107}.az-star span{font-size:13px;display:inline-block;margin-left:5px}.card-dashboard-seven{border-color:#cdd4e0;margin-bottom:20px;width:100vw;border-left-width:0;border-right-width:0;position:relative;margin-left:-20px;margin-right:-20px}@media (min-width: 576px){.card-dashboard-seven{margin-bottom:20px;margin-left:0;margin-right:0;width:auto;border-left-width:1px;border-right-width:1px}}.card-dashboard-seven .card-header{background-color:transparent;padding:20px;border-bottom:1px solid #cdd4e0;background-color:#f4f5f8}@media (min-width: 576px){.card-dashboard-seven .card-header{padding:20px}}.card-dashboard-seven .card-header .media{align-items:center}.card-dashboard-seven .card-header .media>div:first-child{line-height:0;font-size:16px;margin-right:5px;color:#fff;display:flex;align-items:center;justify-content:center;width:32px;height:34px;background-color:#97a3b9}@media (min-width: 576px){.card-dashboard-seven .card-header .media>div:first-child{width:34px;font-size:24px;margin-right:8px}}.card-dashboard-seven .card-header .media-body{margin-top:3px}.card-dashboard-seven .card-header label{margin-bottom:0;display:block;line-height:1;font-size:11px;color:#97a3b9}.card-dashboard-seven .card-header .date{font-weight:500;display:flex;align-items:center}.card-dashboard-seven .card-header .date span{display:block}.card-dashboard-seven .card-header .date a{margin-left:5px;font-size:14px;color:#97a3b9;display:block}.card-dashboard-seven .card-header .date a i{line-height:0;position:relative;top:1px}.card-dashboard-seven .card-body{padding:20px}.card-dashboard-seven .card-body .row>div+div{position:relative}.card-dashboard-seven .card-body .row>div+div::before{content:'';position:absolute;top:0;left:-1px;bottom:0;border-left:1px dotted #cdd4e0;display:none}@media (min-width: 992px){.card-dashboard-seven .card-body .row>div+div::before{display:block}}.card-dashboard-seven .card-body .az-content-label,.card-dashboard-seven .card-body .card-table-two .card-title,.card-table-two .card-dashboard-seven .card-body .card-title,.card-dashboard-seven .card-body .card-dashboard-eight .card-title,.card-dashboard-eight .card-dashboard-seven .card-body .card-title{text-transform:none;color:#031b4e;font-weight:500;font-size:.875rem;margin-bottom:10px}.card-dashboard-seven .card-body h2{color:#1c273c;font-family:"Archivo",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-weight:600;font-size:24px;letter-spacing:-1px;margin-bottom:5px;line-height:1}@media (min-width: 576px){.card-dashboard-seven .card-body h2{font-size:32px}}.card-dashboard-seven .card-body h2 span{font-weight:400;color:#031b4e;letter-spacing:normal}.card-dashboard-seven .card-body .desc{display:flex;align-items:flex-end;margin-bottom:15px}.card-dashboard-seven .card-body .desc>i{line-height:0;font-size:18px}.card-dashboard-seven .card-body .desc span{display:block;line-height:1;margin-left:5px}.card-dashboard-seven .card-body .desc span strong{color:#1c273c}.card-dashboard-seven .card-body .desc.up>i{color:#3bb001}.card-dashboard-seven .card-body .desc.down>i{color:#dc3545}.card-dashboard-six{border-color:#cdd4e0;padding:20px}@media (min-width: 992px){.card-dashboard-six{height:100%}}.card-dashboard-six .card-header{padding:0;background-color:transparent;margin-bottom:20px}@media (min-width: 576px){.card-dashboard-six .card-header{display:flex;align-items:center;justify-content:space-between}}@media (min-width: 992px){.card-dashboard-six .card-header{margin-bottom:30px}}.card-dashboard-six .az-content-label,.card-dashboard-six .card-table-two .card-title,.card-table-two .card-dashboard-six .card-title,.card-dashboard-six .card-dashboard-eight .card-title,.card-dashboard-eight .card-dashboard-six .card-title{margin-bottom:5px;font-size:.875rem}.card-dashboard-six .chart-legend{margin-top:20px;display:flex}@media (min-width: 576px){.card-dashboard-six .chart-legend{display:block;margin-top:0}}.card-dashboard-six .chart-legend>div{display:flex;align-items:center;font-size:11px;font-weight:500}.card-dashboard-six .chart-legend>div+div{margin-top:2px}.card-dashboard-six .chart-legend>div span:last-child{width:8px;height:8px;margin-left:5px}@media (min-width: 576px){.card-dashboard-six .chart-legend>div span:last-child{margin-left:10px;width:20px}}.card-dashboard-six .chart-legend>div span:first-child{width:100px;text-align:right}.card-dashboard-map-one{border-color:#cdd4e0;padding:20px}@media (min-width: 992px){.card-dashboard-map-one{height:100%}}.card-dashboard-map-one .az-content-label,.card-dashboard-map-one .card-table-two .card-title,.card-table-two .card-dashboard-map-one .card-title,.card-dashboard-map-one .card-dashboard-eight .card-title,.card-dashboard-eight .card-dashboard-map-one .card-title{font-size:.875rem}.card-dashboard-map-one .vmap-wrapper{height:200px}@media (min-width: 576px){.card-dashboard-map-one .vmap-wrapper{height:300px}}@media (min-width: 992px){.card-dashboard-map-one .vmap-wrapper{height:260px}}.card-table-two{border-color:#cdd4e0;padding:20px}.card-table-two .card-title{font-size:13px;margin-bottom:5px}.card-table-two .table-responsive{width:calc(100vw - 62px)}@media (min-width: 576px){.card-table-two .table-responsive{width:100%}}.table-dashboard-two thead>tr>th,.table-dashboard-two thead>tr>td,.table-dashboard-two tbody>tr>th,.table-dashboard-two tbody>tr>td{white-space:nowrap}.table-dashboard-two tbody>tr>th:not(:first-child),.table-dashboard-two tbody>tr>td:not(:first-child){font-family:"Archivo",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-weight:600;font-size:13px}.card-dashboard-eight{border-color:#cdd4e0;background-color:rgba(255,255,255,0.5);padding:20px}@media (min-width: 768px){.card-dashboard-eight{height:100%}}.card-dashboard-eight .card-title{font-size:13px;margin-bottom:5px}.card-dashboard-eight .list-group-item{padding:10px 0;border-left-width:0;border-right-width:0;border-style:dotted;border-color:#cdd4e0;background-color:transparent;display:flex;flex-direction:row;align-items:center;justify-content:flex-start}.card-dashboard-eight .list-group-item:first-child{border-top-left-radius:0;border-top-right-radius:0}.card-dashboard-eight .list-group-item:last-child{border-bottom-right-radius:0;border-bottom-left-radius:0}.card-dashboard-eight .list-group-item p{margin-bottom:0;margin-left:10px}.card-dashboard-eight .list-group-item span{display:block;margin-left:auto;font-weight:600;font-family:'Archivo', Arial, sans-serif;color:#1c273c}.card-dashboard-eight .flag-icon{font-size:24px;line-height:1;border-radius:100%}.az-content-dashboard-three{position:relative;padding:0;min-height:100vh;display:flex;flex-direction:column;justify-content:flex-start;background-color:#fdfdfd}@media (min-width: 992px){.az-content-dashboard-three{border-left:1px solid #cdd4e0;margin-left:64px}}.az-header-dashboard-three{height:auto}.az-header-dashboard-three .container-fluid{padding:15px 20px}@media (min-width: 992px){.az-header-dashboard-three .az-header-left{display:none}}.az-header-dashboard-three .az-header-center{margin-left:0}.az-header-dashboard-three .az-header-right{margin-left:auto}.az-content-body-dashboard-three{padding:20px;position:relative;width:100%}.az-content-body-dashboard-three .az-content-title{letter-spacing:-.5px}.card-dashboard-nine{border-color:#cdd4e0;background-color:rgba(255,255,255,0.5);position:relative;padding:20px 20px 15px}.card-dashboard-nine .card-header{position:absolute;top:20px;left:20px;right:20px;padding:0;background-color:transparent;z-index:5}.card-dashboard-nine .card-header h1{font-size:32px;font-family:"Archivo",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";margin-bottom:8px;line-height:1;letter-spacing:-.5px;color:#1c273c}.card-dashboard-nine .az-content-label,.card-dashboard-nine .card-table-two .card-title,.card-table-two .card-dashboard-nine .card-title,.card-dashboard-nine .card-dashboard-eight .card-title,.card-dashboard-eight .card-dashboard-nine .card-title{font-size:13px;margin-bottom:10px;color:#031b4e}.card-dashboard-nine .card-title{font-weight:600}.card-dashboard-nine .az-content-text{color:#7987a1}.card-dashboard-nine .bar-chart{position:relative;width:auto;height:200px}@media (min-width: 992px){.card-dashboard-nine .bar-chart{height:210px}}.card-dashboard-ten{border-width:0;padding:20px}@media (min-width: 576px){.card-dashboard-ten{width:calc(50% - 11px);display:inline-block}}@media (min-width: 992px){.card-dashboard-ten{width:auto;display:block}}.card-dashboard-ten+.card-dashboard-ten{margin-top:20px}@media (min-width: 576px){.card-dashboard-ten+.card-dashboard-ten{margin-top:0;margin-left:18px}}@media (min-width: 992px){.card-dashboard-ten+.card-dashboard-ten{margin-left:0;margin-top:20px}}.card-dashboard-ten .az-content-label,.card-dashboard-ten .card-table-two .card-title,.card-table-two .card-dashboard-ten .card-title,.card-dashboard-ten .card-dashboard-eight .card-title,.card-dashboard-eight .card-dashboard-ten .card-title{font-size:13px;font-weight:500;margin-bottom:15px;line-height:1.05;color:#fff}.card-dashboard-ten .card-body{padding:0;display:flex;align-items:center;justify-content:space-between}.card-dashboard-ten .card-body>div{flex:1}@media (min-width: 992px){.card-dashboard-ten .card-body>div{flex:none}}@media (min-width: 1360px){.card-dashboard-ten .card-body>div:first-child{flex-basis:60%}.card-dashboard-ten .card-body>div:last-child{flex-basis:40%}}.card-dashboard-ten .card-body>div label{font-size:13px;margin-bottom:0;color:rgba(255,255,255,0.75)}.card-dashboard-ten .card-body>div h6{margin-bottom:2px;color:#fff;font-size:32px;font-weight:600;line-height:.975;font-family:"Archivo",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"}@media (min-width: 992px){.card-dashboard-ten .card-body>div h6{font-size:24px}}.card-dashboard-ten .card-body>div h6 span{font-size:13px}.card-dashboard-ten .card-body>div h6 .percent{font-size:20px}.card-dashboard-eleven{border-color:#cdd4e0;position:relative;overflow:hidden}.card-dashboard-eleven .card-header{padding:20px;background-color:transparent;position:relative;z-index:200}.card-dashboard-eleven .az-content-label,.card-dashboard-eleven .card-table-two .card-title,.card-table-two .card-dashboard-eleven .card-title,.card-dashboard-eleven .card-dashboard-eight .card-title,.card-dashboard-eight .card-dashboard-eleven .card-title{display:block;font-size:13px;margin-bottom:5px;color:#3b4863;line-height:1.4}.card-dashboard-eleven .card-text{color:#7987a1}.card-dashboard-eleven .card-body{padding:0 0 5px;margin-left:20px;position:relative;z-index:200}.card-dashboard-eleven .flot-chart{width:100%;height:250px}.card-dashboard-eleven .card-footer{z-index:200;background-color:transparent;padding:0;border-width:0}@media (min-width: 768px){.card-dashboard-eleven .card-footer{display:flex;align-items:stretch}}.card-dashboard-eleven .card-footer>div{flex:1;padding:15px 20px;border-top:1px solid #cdd4e0;position:relative}@media (min-width: 768px){.card-dashboard-eleven .card-footer>div+div{border-left:1px solid #cdd4e0}}.card-dashboard-eleven .card-footer label{font-weight:700;text-transform:uppercase;margin-bottom:10px;color:#596882;display:block}.card-dashboard-eleven .card-footer h6{font-size:28px;font-weight:600;font-family:"Archivo",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";color:#1c273c;line-height:.7;letter-spacing:-1px;margin-bottom:10px;display:flex;align-items:baseline}.card-dashboard-eleven .card-footer h6 span{margin-left:5px;font-size:11px;font-weight:500;display:block;padding:4px 6px;color:#fff;line-height:.8;position:relative;bottom:3px;letter-spacing:normal}.card-dashboard-eleven .card-footer h6 span.up{background-color:#3bb001}.card-dashboard-eleven .card-footer h6 span.down{background-color:#dc3545}.card-dashboard-eleven .card-footer small{display:block;font-size:13px;color:#596882}.card-dashboard-eleven .jqvmap{position:absolute;top:10%;left:0;width:100%;height:300px}@media (min-width: 992px){.card-dashboard-eleven .jqvmap{height:80%}}.az-navbar-dashboard-four{box-shadow:0 0 30px rgba(28,39,60,0.08)}@media (min-width: 992px){.az-navbar-dashboard-four .container-fluid{padding-left:25px;padding-right:25px}}.az-content-dashboard-four{padding:20px}@media (min-width: 992px){.az-content-dashboard-four{flex:1;padding:30px 25px}}.az-content-dashboard-four ~ .az-footer .container,.az-content-dashboard-four ~ .az-footer .container-fluid{padding-left:25px;padding-right:25px}.az-content-dashboard-four>.media-dashboard{display:block}@media (min-width: 1200px){.az-content-dashboard-four>.media-dashboard{display:flex;align-items:stretch;height:100%}}.az-content-dashboard-four>.media-dashboard .media-aside{margin-top:20px}@media (min-width: 1200px){.az-content-dashboard-four>.media-dashboard .media-aside{margin-top:0;display:block;width:320px}}@media (min-width: 1200px){.az-content-dashboard-four>.media-dashboard>.media-body{padding:0 20px 0 0}}.az-content-dashboard-four .az-content-header{height:auto;margin-bottom:20px;align-items:flex-start;padding:0}@media (min-width: 768px){.az-content-dashboard-four .az-content-header{display:flex}}.az-content-header-right{display:none}@media (min-width: 992px){.az-content-header-right{display:flex;align-items:center}}.az-content-header-right .media label{margin-bottom:2px;font-size:10px;font-weight:500;letter-spacing:.5px;text-transform:uppercase;color:#97a3b9}.az-content-header-right .media h6{color:#1c273c;margin-bottom:0}.az-content-header-right .media+.media{margin-left:20px;padding-left:20px;border-left:1px solid #cdd4e0}.az-content-header-right .btn:first-of-type,.az-content-header-right .sp-container button:first-of-type,.sp-container .az-content-header-right button:first-of-type{margin-left:30px}.az-content-header-right .btn+.btn,.az-content-header-right .sp-container button+.btn,.sp-container .az-content-header-right button+.btn,.az-content-header-right .sp-container .btn+button,.sp-container .az-content-header-right .btn+button,.az-content-header-right .sp-container button+button,.sp-container .az-content-header-right button+button{margin-left:5px}.card-dashboard-calendar{border-color:#cdd4e0;padding:20px;box-shadow:0 0 10px rgba(28,39,60,0.1)}.card-dashboard-calendar .card-title{color:#1c273c;font-weight:700;text-transform:uppercase;margin-bottom:15px}.card-dashboard-calendar .card-body{padding:0}.card-dashboard-calendar .ui-datepicker-inline{border-width:0;max-width:none;padding:0;margin:0}.card-dashboard-calendar .ui-datepicker .ui-datepicker-header{border-bottom:1px solid #cdd4e0;padding:10px;margin-bottom:5px}.card-dashboard-calendar .ui-datepicker .ui-datepicker-header .ui-datepicker-next::before,.card-dashboard-calendar .ui-datepicker .ui-datepicker-header .ui-datepicker-prev::before{top:8px}.card-dashboard-calendar .ui-datepicker .ui-datepicker-month{color:#5b47fb}.card-dashboard-calendar .ui-datepicker .ui-datepicker-calendar{width:calc(100% - 20px)}@media (min-width: 576px){.card-dashboard-calendar .ui-datepicker .ui-datepicker-calendar{width:100%}}.card-dashboard-calendar .ui-datepicker .ui-datepicker-calendar th{font-size:10px}.card-dashboard-calendar .ui-datepicker .ui-datepicker-calendar th,.card-dashboard-calendar .ui-datepicker .ui-datepicker-calendar td{text-align:center}.card-dashboard-calendar .ui-datepicker .ui-datepicker-calendar td a{display:block;width:34px;height:34px;font-size:12px;font-family:'Archivo', sans-serif;border-radius:100%;display:flex;align-items:center;justify-content:center}.card-dashboard-calendar .ui-datepicker .ui-datepicker-calendar .ui-datepicker-today a{background-color:transparent;border:2px solid #36f;color:#36f;font-weight:700}.card-dashboard-twelve{border-color:#cdd4e0;box-shadow:0 0 10px rgba(28,39,60,0.1)}.card-dashboard-twelve .card-header{background-color:transparent;border-bottom:1px solid #e3e7ed;padding:20px}.card-dashboard-twelve .card-title{text-transform:uppercase;font-weight:700;margin-bottom:20px}.card-dashboard-twelve .card-title span{font-weight:400;color:#031b4e;text-transform:capitalize}.card-dashboard-twelve .sales-overview{display:flex;align-items:flex-start;flex-wrap:wrap}@media (min-width: 992px){.card-dashboard-twelve .sales-overview{margin-bottom:10px;flex-wrap:nowrap}}.card-dashboard-twelve .sales-overview .media{align-items:flex-end;flex-shrink:0;flex-basis:calc(50% - 10px)}@media (min-width: 576px){.card-dashboard-twelve .sales-overview .media{flex-basis:auto}}.card-dashboard-twelve .sales-overview .media+.media{margin-left:20px}@media (min-width: 576px){.card-dashboard-twelve .sales-overview .media+.media{margin-left:40px}}@media (min-width: 992px){.card-dashboard-twelve .sales-overview .media+.media{margin-left:50px}}@media (max-width: 575.98px){.card-dashboard-twelve .sales-overview .media:nth-child(3){margin-left:0;margin-top:15px}}.card-dashboard-twelve .sales-overview .media:last-child{display:none}@media (min-width: 768px){.card-dashboard-twelve .sales-overview .media:last-child{flex:1;display:block}}.card-dashboard-twelve .sales-overview .media-icon{width:45px;height:45px;color:#fff;display:flex;align-items:center;justify-content:center;position:relative;top:-5px;margin-right:15px;border-radius:100%;display:none}.card-dashboard-twelve .sales-overview .media-icon .typcn{line-height:.9;font-size:24px}.card-dashboard-twelve .sales-overview label{text-transform:uppercase;font-size:9px;font-weight:700;letter-spacing:.5px;color:#031b4e;margin-bottom:8px}@media (min-width: 576px){.card-dashboard-twelve .sales-overview label{font-size:10px;margin-bottom:10px}}.card-dashboard-twelve .sales-overview h4{font-size:20px;font-family:"Archivo",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-weight:600;color:#1c273c;line-height:1;letter-spacing:-1px;margin-bottom:3px}@media (min-width: 576px){.card-dashboard-twelve .sales-overview h4{font-size:28px}}.card-dashboard-twelve .sales-overview h4 span{color:#031b4e;font-weight:400}.card-dashboard-twelve .sales-overview .media-body>span{display:block;font-size:10px;color:#97a3b9}@media (min-width: 576px){.card-dashboard-twelve .sales-overview .media-body>span{font-size:11px}}.card-dashboard-twelve .sales-overview .media-body>span strong{font-weight:500;color:#031b4e}.card-dashboard-twelve .sales-overview p{font-size:11px;margin-bottom:0;color:#97a3b9}.card-dashboard-twelve .card-body{position:relative;padding:20px 5px}@media (min-width: 576px){.card-dashboard-twelve .card-body{padding:20px}}.card-dashboard-twelve .chart-legend{margin-bottom:20px;display:flex;align-items:center;justify-content:center;position:absolute;top:5px;left:0;right:0;z-index:10;font-size:10px;font-weight:500;letter-spacing:1px;text-transform:uppercase}@media (min-width: 576px){.card-dashboard-twelve .chart-legend{top:65px}}.card-dashboard-twelve .chart-legend div{display:flex;align-items:center}.card-dashboard-twelve .chart-legend div+div{margin-left:15px}@media (min-width: 576px){.card-dashboard-twelve .chart-legend div+div{margin-left:30px}}.card-dashboard-twelve .chart-legend span{width:10px;height:4px;display:block;margin-right:5px}@media (min-width: 576px){.card-dashboard-twelve .chart-legend span{width:40px;margin-right:10px}}.card-dashboard-twelve .chart-wrapper{position:relative;margin-left:-13px;margin-right:-13px}@media (min-width: 576px){.card-dashboard-twelve .chart-wrapper{margin-left:-10px;margin-right:-15px}}.card-dashboard-twelve .flot-chart{width:100%;height:200px;position:relative}@media (min-width: 768px){.card-dashboard-twelve .flot-chart{height:250px}}@media (min-width: 992px){.card-dashboard-twelve .flot-chart{height:300px}}.card-dashboard-twelve .flot-chart .flot-x-axis>div span:first-child{display:block;text-transform:uppercase;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-weight:500;font-size:10px;color:#7987a1}.card-dashboard-twelve .flot-chart .flot-x-axis>div span:last-child{display:block;font-size:16px;font-weight:700;font-family:"Archivo",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";color:#1c273c;line-height:1}.az-media-date h1{font-size:42px;font-family:"Archivo",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";color:#1c273c;line-height:.95}.az-media-date .media-body{margin-left:5px}.az-media-date p{color:#1c273c;font-weight:700;margin-bottom:0;text-transform:uppercase}.az-media-date span{display:block;line-height:1.2}.card-dashboard-thirteen{border-color:#cdd4e0;padding:20px;box-shadow:0 0 10px rgba(28,39,60,0.1)}.card-dashboard-thirteen .az-content-label,.card-dashboard-thirteen .card-table-two .card-title,.card-table-two .card-dashboard-thirteen .card-title,.card-dashboard-thirteen .card-dashboard-eight .card-title,.card-dashboard-eight .card-dashboard-thirteen .card-title{font-size:13px}.card-dashboard-thirteen .media{margin-bottom:15px}.card-dashboard-thirteen .media-icon{font-size:45px;line-height:1;margin-right:10px;display:flex}.card-dashboard-thirteen .media-icon i{line-height:0}.card-dashboard-thirteen .media-body h6{font-size:22px;font-weight:600;font-family:"Archivo",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";color:#1c273c;letter-spacing:-.5px;margin-bottom:2px}.card-dashboard-thirteen .media-body h6 span{font-weight:400;color:#031b4e}.card-dashboard-thirteen .media-body label{font-weight:700;font-size:12px;text-transform:uppercase;margin-bottom:0;display:block;letter-spacing:.5px}.card-dashboard-events{border-color:#cdd4e0;box-shadow:0 0 10px rgba(28,39,60,0.1)}.card-dashboard-events .card-header{padding:20px;background-color:transparent}.card-dashboard-events .card-title{color:#7987a1;text-transform:uppercase;margin-bottom:10px;font-size:10px;font-weight:500;letter-spacing:1px}.card-dashboard-events .card-subtitle{color:#1c273c;font-weight:400;font-size:18px}.card-dashboard-events .card-body{padding:0}.card-dashboard-events .list-group-item{padding:15px 20px 15px 40px;border-left-width:0;border-right-width:0;position:relative}.card-dashboard-events .list-group-item:first-child,.card-dashboard-events .list-group-item:last-child{border-radius:0}.card-dashboard-events .list-group-item label{text-transform:uppercase;font-weight:700;font-size:10px;color:#596882;margin-bottom:5px;letter-spacing:.5px}.card-dashboard-events .list-group-item label span{color:#97a3b9;font-weight:500}.card-dashboard-events .list-group-item h6{font-size:14px;font-weight:700;color:#1c273c;margin-bottom:5px;display:flex;align-items:center}.card-dashboard-events .list-group-item p{margin-bottom:5px}.card-dashboard-events .list-group-item p strong{font-weight:500}.card-dashboard-events .list-group-item small{font-size:11px}.card-dashboard-events .list-group-item small span{font-weight:700;text-transform:uppercase}.card-dashboard-events .event-indicator{width:10px;height:10px;position:absolute;top:21px;left:20px;border-radius:100%}.card-dashboard-events .event-user{margin-top:10px;display:flex;align-items:center}.card-dashboard-events .event-user .az-img-user{width:28px;height:28px}.card-dashboard-events .event-user .az-img-user::after{display:none}.card-dashboard-events .event-user .az-img-user+.az-img-user{margin-left:-6px}.card-dashboard-events .event-user a:last-child{margin-left:10px;color:#7987a1;font-weight:500;font-size:11px}.card-dashboard-events .event-user a:last-child:hover,.card-dashboard-events .event-user a:last-child:focus{color:#596882}.card-dashboard-fourteen{border-color:#cdd4e0;box-shadow:0 0 10px rgba(28,39,60,0.1);padding:20px}@media (min-width: 768px){.card-dashboard-fourteen{height:100%}}.card-dashboard-fourteen .az-content-label,.card-dashboard-fourteen .card-table-two .card-title,.card-table-two .card-dashboard-fourteen .card-title,.card-dashboard-fourteen .card-dashboard-eight .card-title,.card-dashboard-eight .card-dashboard-fourteen .card-title{font-size:.875rem;margin-bottom:20px}.card-dashboard-fourteen .az-content-label span,.card-dashboard-fourteen .card-table-two .card-title span,.card-table-two .card-dashboard-fourteen .card-title span,.card-dashboard-fourteen .card-dashboard-eight .card-title span,.card-dashboard-eight .card-dashboard-fourteen .card-title span{font-weight:400;color:#97a3b9;text-transform:none}.card-dashboard-fourteen .card-body{padding:0;min-height:100px}.card-dashboard-fourteen .card-body h1{color:#1c273c;font-family:"Archivo",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-weight:600;letter-spacing:-1px;margin-bottom:0}.card-dashboard-fourteen .card-body h1 span{color:#97a3b9;letter-spacing:normal;font-weight:400;margin-right:5px}.card-dashboard-fourteen .card-body h4{color:#1c273c;font-weight:700;font-family:"Archivo",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";margin-bottom:0;letter-spacing:-.5px}.card-dashboard-fourteen .card-body .progress{margin-bottom:2px}.card-dashboard-fourteen .card-body small{font-size:11px;color:#97a3b9}.card-dashboard-fourteen .sparkline-wrapper canvas{width:100% !important}.card-dashboard-fourteen .card-footer{background-color:transparent;padding:0;margin-top:15px;border-top-width:0}.card-dashboard-fourteen .card-footer h6{color:#1c273c;font-size:20px;font-weight:700;font-family:"Archivo",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";margin-bottom:0;letter-spacing:-.5px}.card-dashboard-fourteen .card-footer label{display:block;margin-bottom:0;color:#97a3b9;font-size:11px}@media (min-width: 576px){.card-dashboard-fourteen .card-footer label{font-size:.875rem}}.az-body-sidebar.az-light .az-sidebar{background-color:#f4f5f8;border-right-color:#cdd4e0;box-shadow:2px 0 3px rgba(28,39,60,0.04)}.az-content-dashboard-five{background-color:#eeeff4;transition:all 0.4s}@media (prefers-reduced-motion: reduce){.az-content-dashboard-five{transition:none}}.az-content-dashboard-five .az-header{background-color:#fcfcfc;box-shadow:0 2px 3px rgba(28,39,60,0.05)}.az-content-dashboard-five .az-header-menu-icon{margin-right:0}.az-content-dashboard-five .az-header-center .form-control{border-color:#cdd4e0}.az-content-dashboard-five .az-content-header{padding:20px 20px 0}@media (min-width: 1200px){.az-content-dashboard-five .az-content-header{padding:25px 25px 0}}.az-content-dashboard-five .az-content-body{padding:20px}.az-content-dashboard-five .card{background-color:#fcfcfc;border-color:#cdd4e0;box-shadow:0 0 10px rgba(28,39,60,0.1)}.az-content-dashboard-five .card-header{padding:20px 20px 0;background-color:transparent}.az-content-dashboard-five .card-text{font-size:12px;line-height:1.4;color:#97a3b9;margin-bottom:0}.card-dashboard-fifteen{padding:20px 20px 0;overflow:hidden}.card-dashboard-fifteen h1{font-size:40px;font-weight:500;font-family:"Archivo",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";color:#1c273c;margin-bottom:0;line-height:1}.card-dashboard-fifteen h1 span{display:inline;font-size:18px;color:#7987a1}.card-dashboard-fifteen label{font-size:14px;font-weight:500;display:block}.card-dashboard-fifteen span{color:#97a3b9;display:block;font-size:12px}.card-dashboard-fifteen .chart-wrapper{position:relative;margin-left:-32px;margin-right:-32px;margin-bottom:-10px}.card-dashboard-fifteen .flot-chart{width:100%;height:127px;position:relative;margin-top:20px}.card-dashboard-fifteen .flot-chart .flot-x-axis>div:nth-child(4){color:#1c273c !important}.table-talk-time{margin-bottom:0}.table-talk-time thead>tr th,.table-talk-time thead>tr td,.table-talk-time tbody>tr th,.table-talk-time tbody>tr td{padding:7px 10px}.table-talk-time thead>tr th:first-child,.table-talk-time thead>tr td:first-child,.table-talk-time tbody>tr th:first-child,.table-talk-time tbody>tr td:first-child{padding-left:20px}.card-dashboard-sixteen .az-img-user::after{display:none}.card-dashboard-sixteen .table tbody>tr{background-color:transparent}.card-dashboard-sixteen .table tbody>tr th,.card-dashboard-sixteen .table tbody>tr td{padding:10px 10px 10px 0;vertical-align:middle;white-space:nowrap}.card-dashboard-sixteen .table tbody>tr th:first-child,.card-dashboard-sixteen .table tbody>tr td:first-child{width:10%}.card-dashboard-sixteen .table tbody>tr th:nth-child(2),.card-dashboard-sixteen .table tbody>tr td:nth-child(2){width:60%}.card-dashboard-sixteen .table tbody>tr th:last-child,.card-dashboard-sixteen .table tbody>tr td:last-child{width:30%}.dashboard-five-stacked-chart{height:200px}@media (min-width: 768px){.dashboard-five-stacked-chart{height:240px}}@media (min-width: 847px){.dashboard-five-stacked-chart{height:260px}}@media (min-width: 992px){.dashboard-five-stacked-chart{height:240px}}@media (min-width: 1067px){.dashboard-five-stacked-chart{height:260px}}.az-light .az-iconbar{background-color:#e3e7ed}.az-light .az-iconbar-aside{background-color:#e3e7ed}@media (min-width: 992px) and (max-width: 1199.98px){.az-light .az-iconbar-aside.show+.az-content{box-shadow:none}}.az-light .az-iconbar-body .nav{border-left-color:#cdd4e0}.az-light .az-iconbar-body .nav-item+.nav-item{border-top-color:#bdc6d6}.az-light .az-iconbar-body .nav-sub{border-top-color:#bdc6d6}.az-light .az-iconbar-body .nav-sub-item+.nav-sub-item{border-top-color:#bdc6d6}.az-content-dashboard-six{border-left-color:#cdd4e0;box-shadow:0 0 7px rgba(28,39,60,0.08);position:relative;padding:0;min-height:100vh;display:flex;flex-direction:column;justify-content:flex-start;background-color:#f4f5f8}@media (min-width: 992px){.az-content-dashboard-six{border-left:1px solid #cdd4e0;margin-left:64px;z-index:550}}.az-header-dashboard-six{background-color:#fff;border-bottom:1px solid #cdd4e0;box-shadow:0 0 10px rgba(28,39,60,0.06)}@media (min-width: 992px) and (max-width: 1199.98px){.az-header-dashboard-six .az-header-center{margin-left:5px}}@media (min-width: 1200px){.az-header-dashboard-six .az-header-center{margin-left:0}}.az-header-dashboard-six .az-header-menu-icon{margin-right:0}@media (min-width: 992px){.az-header-dashboard-six .az-header-menu-icon{display:none}}.az-content-body-dashboard-six{padding:25px}.az-content-body-dashboard-six .az-content-title{letter-spacing:-.8px}.az-content-body-dashboard-six .card{border-color:#cdd4e0;box-shadow:0 0 10px rgba(28,39,60,0.06)}.az-content-body-dashboard-six .card-header{background-color:transparent;padding:20px 20px 0}.az-content-body-dashboard-six .card-title{text-transform:uppercase;font-weight:700}.card-dashboard-donut .card-body{padding:25px 20px;display:flex;align-items:center;justify-content:center}.card-dashboard-donut .az-donut-chart.chart1{width:140px;height:140px;background:#cdd4e0}.card-dashboard-donut .az-donut-chart.chart1 .slice.one{clip:rect(0 140px 70px 0);-webkit-transform:rotate(90deg);transform:rotate(90deg);background:#6f42c1}.card-dashboard-donut .az-donut-chart.chart1 .slice.two{clip:rect(0 70px 140px 0);-webkit-transform:rotate(270deg);transform:rotate(270deg);background:#6f42c1}.card-dashboard-donut .az-donut-chart.chart1 .chart-center{top:10px;left:10px;width:120px;height:120px;background:#fff}.card-dashboard-donut .az-donut-chart.chart1 .chart-center span{font-size:40px;line-height:120px;color:#6f42c1}.card-dashboard-donut .az-donut-chart.chart1 .chart-center span:after{content:"75%"}.card-dashboard-donut .az-donut-chart.chart2{width:140px;height:140px;background:#cdd4e0}.card-dashboard-donut .az-donut-chart.chart2 .slice.one{clip:rect(0 140px 70px 0);-webkit-transform:rotate(90deg);transform:rotate(90deg);background:#36f}.card-dashboard-donut .az-donut-chart.chart2 .slice.two{clip:rect(0 70px 140px 0);-webkit-transform:rotate(244.8deg);transform:rotate(244.8deg);background:#36f}.card-dashboard-donut .az-donut-chart.chart2 .chart-center{top:10px;left:10px;width:120px;height:120px;background:#fff}.card-dashboard-donut .az-donut-chart.chart2 .chart-center span{font-size:40px;line-height:120px;color:#36f}.card-dashboard-donut .az-donut-chart.chart2 .chart-center span:after{content:"68%"}.card-dashboard-donut .az-donut-chart.chart1 .chart-center span,.card-dashboard-donut .az-donut-chart.chart2 .chart-center span{font-weight:600;font-family:"Archivo",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-size:32px}.card-dashboard-balance{position:relative;overflow:hidden}@media (min-width: 576px){.card-dashboard-balance{min-height:260px;height:100%}}.card-dashboard-balance .card-body{padding:20px;position:relative;z-index:5}@media (min-width: 576px){.card-dashboard-balance .card-body{padding:30px;display:flex;flex-direction:column;justify-content:space-between}}.card-dashboard-balance .fab{position:absolute;top:20px;right:20px;font-size:48px;color:#36f;z-index:5;background-color:#fff}.card-dashboard-balance .az-content-label,.card-dashboard-balance .card-table-two .card-title,.card-table-two .card-dashboard-balance .card-title,.card-dashboard-balance .card-dashboard-eight .card-title,.card-dashboard-eight .card-dashboard-balance .card-title{color:#7987a1;font-size:10px;font-weight:500;letter-spacing:1px}@media (min-width: 576px){.card-dashboard-balance .az-content-label,.card-dashboard-balance .card-table-two .card-title,.card-table-two .card-dashboard-balance .card-title,.card-dashboard-balance .card-dashboard-eight .card-title,.card-dashboard-eight .card-dashboard-balance .card-title{font-size:11px}}.card-dashboard-balance .balance-amount{color:#1c273c;font-family:"Archivo",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-weight:600;font-size:28px;letter-spacing:-1px;margin-bottom:20px}@media (min-width: 576px){.card-dashboard-balance .balance-amount{font-size:36px}}.card-dashboard-balance .balance-amount span{color:#97a3b9;font-weight:400;letter-spacing:normal}.card-dashboard-balance .account-number{display:flex;align-items:center;font-size:20px;font-weight:700;font-family:"Archivo",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";color:#1c273c;letter-spacing:-1px;margin-bottom:20px}@media (min-width: 576px){.card-dashboard-balance .account-number{font-size:28px}}.card-dashboard-balance .account-number span{display:flex;align-items:center;line-height:1}.card-dashboard-balance .account-number span+span{margin-left:20px}@media (min-width: 576px){.card-dashboard-balance .account-number span+span{margin-left:30px}}@media (min-width: 1200px){.card-dashboard-balance .account-number span+span{margin-left:50px}}.card-dashboard-balance .account-number span i{width:5px;height:5px;background-color:#1c273c;border-radius:100%}@media (min-width: 576px){.card-dashboard-balance .account-number span i{width:10px;height:10px}}.card-dashboard-balance .account-number span i+i{margin-left:5px}.card-dashboard-balance .account-name{color:#1c273c;font-weight:400;margin-bottom:0}.card-dashboard-balance .chart-wrapper{position:absolute;top:20px;bottom:10px;left:-10px;right:-10px;opacity:.3;z-index:4}.card-dashboard-balance .flot-chart{width:100%;height:100%}@media (min-width: 1200px){.card-dashboard-ratio{height:350px}}.card-dashboard-ratio .card-body{display:flex;align-items:center}.card-dashboard-ratio .card-body+.card-body{padding-top:0px}.card-dashboard-ratio .card-body>div:first-child{width:140px;display:none;align-items:center;justify-content:center}@media (min-width: 576px){.card-dashboard-ratio .card-body>div:first-child{display:flex}}.card-dashboard-ratio .card-body>div:last-child{flex:1}@media (min-width: 576px){.card-dashboard-ratio .card-body>div:last-child{margin-left:30px}}.card-dashboard-ratio .card-body h5{font-size:28px;font-weight:600;font-family:"Archivo",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";color:#1c273c;letter-spacing:-1px;margin-bottom:2px}.card-dashboard-ratio .card-icon{display:flex;align-items:center;justify-content:center;color:#cdd4e0;font-size:140px}.card-dashboard-ratio .card-icon .typcn{line-height:1}.card-dashboard-ratio .card-icon .typcn::before{width:auto}.card-dashboard-finance{padding:20px;display:flex;flex-direction:column;justify-content:flex-end}@media (min-width: 992px){.card-dashboard-finance{min-height:172px}}@media (min-width: 1200px){.card-dashboard-finance{min-height:165px}}.card-dashboard-finance .card-title{margin-bottom:20px}@media (min-width: 992px){.card-dashboard-finance .card-title{margin-bottom:auto}}.card-dashboard-finance h2{line-height:1;color:#1c273c;font-weight:600;font-size:30px;font-family:"Archivo",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";letter-spacing:-1px;margin-top:10px;margin-bottom:2px}.card-dashboard-finance h2 span{letter-spacing:normal;color:#97a3b9;font-weight:400;margin-right:5px}.card-dashboard-table-six .card-title{padding:15px 20px;margin-bottom:0;border-bottom:1px solid #cdd4e0}.card-dashboard-table-six .table-responsive{width:calc(100vw - 42px)}@media (min-width: 992px){.card-dashboard-table-six .table-responsive{width:100%}}.card-dashboard-table-six .table{margin-bottom:0}.card-dashboard-table-six .table thead tr th{white-space:nowrap}.card-dashboard-table-six .table thead tr:first-child{background-color:#e3e7ed}.card-dashboard-table-six .table thead tr:first-child th{padding:10px 12px;line-height:1}.card-dashboard-table-six .table thead tr:first-child th:last-child{border-left:1px solid #cdd4e0}.card-dashboard-table-six .table thead tr:last-child th{width:13%;padding:10px 12px;line-height:1;text-align:right}.card-dashboard-table-six .table thead tr:last-child th:first-child{width:22%}.card-dashboard-table-six .table thead tr:last-child th:nth-child(2){border-left:1px solid #cdd4e0}.card-dashboard-table-six .table thead tr:last-child th:nth-child(6){border-left:1px solid #cdd4e0}.card-dashboard-table-six .table tbody tr td{text-align:right;white-space:nowrap}.card-dashboard-table-six .table tbody tr td:first-child{text-align:left}.card-dashboard-table-six .table tbody tr td:nth-child(2){border-left:1px solid #cdd4e0}.card-dashboard-table-six .table tbody tr td:nth-child(6){border-left:1px solid #cdd4e0}.card-dashboard-table-six .table tbody tr:last-child td{font-weight:500;color:#1c273c}.az-minimal{min-height:100vh;display:flex;flex-direction:column;justify-content:flex-start;background-color:#fff}@media (min-width: 1200px){.az-minimal{padding:10px 0 0}}.az-minimal .az-navbar-three .nav-item.active::before{bottom:-3px}.az-minimal .az-navbar-three .nav-item.active .nav-link{font-weight:700}.az-minimal .az-navbar-three .nav-link{font-size:13px}.az-minimal.az-navbar-show .az-header{z-index:auto}.az-content-title-minimal{color:#1c273c;font-weight:700;font-size:24px;letter-spacing:-1px;line-height:1;margin-bottom:8px}.az-content-title-minimal span{font-weight:700}.az-content-text-minimal{font-weight:400;color:#596882;margin-bottom:20px}.media-dashboard-one{display:block}@media (min-width: 992px){.media-dashboard-one{display:flex;align-items:stretch}}.media-dashboard-one .media-right{width:100%;flex-shrink:0}@media (min-width: 992px){.media-dashboard-one .media-right{width:280px}}.media-dashboard-one .media-body{margin-bottom:20px}@media (min-width: 992px){.media-dashboard-one .media-body{margin-right:20px;margin-bottom:0}}.card-minimal-one{border-color:#cdd4e0;min-height:320px;height:100%;overflow:hidden;position:relative}.card-minimal-one .card-body{position:relative;padding:20px;display:flex;flex-direction:column;justify-content:flex-start;z-index:5}.card-minimal-one .card-body>label{font-weight:700;font-size:14px;color:#5b47fb;text-transform:uppercase;margin-bottom:5px;display:block;line-height:1}.card-minimal-one .card-body>label span{font-weight:500;color:#596882}.card-minimal-one .card-body>small{font-size:12px;display:block;color:#97a3b9}.card-minimal-one .card-body>h6{color:#1c273c;font-size:36px;font-family:"Archivo",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-weight:600;letter-spacing:-2px;display:flex;line-height:1;align-items:flex-end;margin:15px 0}.card-minimal-one .card-body>h6 span{font-weight:400;margin-right:3px;color:#031b4e}.card-minimal-one .value-info{display:flex;align-items:center}.card-minimal-one .value-info+.value-info{margin-top:5px}.card-minimal-one .value-info p{margin-bottom:0;color:#1c273c;font-weight:700;font-family:'Archivo', sans-serif;font-size:14px;letter-spacing:-.35px}.card-minimal-one .value-info p span{letter-spacing:normal;margin-right:2px;color:#031b4e}.card-minimal-one .value-info label{display:block;margin-bottom:0;font-weight:700;width:40px;position:relative;top:-2px}.card-minimal-one .open-info{display:flex;align-items:flex-start;margin-top:auto;margin-bottom:25px}.card-minimal-one .open-info>div+div{margin-left:25px}.card-minimal-one .open-info label{font-size:12px;margin-bottom:2px;color:#7f8da9}.card-minimal-one .open-info h6{margin-bottom:0;color:#1c273c;font-family:"Archivo",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-weight:700;font-size:13px}.card-minimal-one .open-info h6 span{font-weight:400}.card-minimal-one .chart-wrapper{position:absolute;left:-9px;right:-8px;bottom:-13px}.card-minimal-one .chart-wrapper .flot-x-axis>div{transform:translate(20px, -23px)}.card-minimal-one .flot-chart{width:100%;height:250px;position:relative}.card-minimal-two{height:100%;border-color:#cdd4e0;background-color:transparent;overflow:hidden}.card-minimal-two .card-header{background-color:transparent;padding:15px;align-items:center;justify-content:space-between;border-bottom:1px solid #cdd4e0}@media (min-width: 576px){.card-minimal-two .card-header{display:flex;padding:15px 20px}}.card-minimal-two .card-header>.nav .nav-link{padding:8px 18px;font-weight:500;background-color:#e3e7ed}@media (min-width: 992px){.card-minimal-two .card-header>.nav .nav-link{padding:8px 20px}}@media (min-width: 1200px){.card-minimal-two .card-header>.nav .nav-link{padding:8px 30px}}.card-minimal-two .card-header>.nav .nav-link+.nav-link{margin-left:2px}.card-minimal-two .card-header>.nav .nav-link:hover,.card-minimal-two .card-header>.nav .nav-link:focus{background-color:#cdd4e0}.card-minimal-two .card-header>.nav .nav-link.active{background-color:#5b47fb;color:#fff}.card-minimal-two .card-header-right{display:flex;align-items:center;margin-top:20px}@media (min-width: 576px){.card-minimal-two .card-header-right{margin-top:0}}.card-minimal-two .card-header-right .nav{justify-content:flex-end;width:100%}.card-minimal-two .card-header-right .nav-link{padding:5px 10px;text-transform:capitalize}@media (min-width: 576px){.card-minimal-two .card-header-right .nav-link{padding:8px 10px}}.card-minimal-two .card-header-right .nav-link+.nav-link{margin-left:2px}.card-minimal-two .card-header-right .nav-link span:first-child{display:none}@media (min-width: 768px){.card-minimal-two .card-header-right .nav-link span:first-child{display:inline}}.card-minimal-two .card-header-right .nav-link span:last-child{text-transform:uppercase;font-size:11px;font-weight:500}@media (min-width: 768px){.card-minimal-two .card-header-right .nav-link span:last-child{display:none}}.card-minimal-two .card-header-right .nav-link:hover,.card-minimal-two .card-header-right .nav-link:focus{background-color:#e3e7ed}.card-minimal-two .card-header-right .nav-link.active{background-color:#97a3b9;color:#fff}.card-minimal-two .card-body{position:relative;overflow:hidden;padding:0}@media (min-width: 992px){.card-minimal-two .card-body{padding:0 20px}}.card-minimal-two .flot-wrapper{position:relative;bottom:-14px;margin-right:-9px;margin-left:-31px;margin-top:-25px}@media (min-width: 992px){.card-minimal-two .flot-wrapper{margin-right:-9px;margin-left:10px;margin-top:0}}.card-minimal-two .flot-wrapper .flot-x-axis>div{transform:translate(22px, -23px)}.card-minimal-two .flot-wrapper .flot-y-axis>div{transform:translateX(-10px)}.card-minimal-two .flot-chart{width:100%;height:250px;position:relative}@media (min-width: 992px){.card-minimal-two .flot-chart{height:300px}}.card-minimal-two .more-info{position:absolute;top:10px;right:10px}@media (min-width: 576px){.card-minimal-two .more-info{right:20px;top:30px}}@media (min-width: 992px){.card-minimal-two .more-info{right:30px;top:50px}}.card-minimal-two .more-info div{display:flex;align-items:flex-start;font-size:13px}.card-minimal-two .more-info span:first-child{width:80px;text-align:right;color:#7987a1;display:block;line-height:1.35}.card-minimal-two .more-info span:last-child{margin-left:15px;color:#1c273c;font-weight:700;font-family:"Archivo",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-size:14px}.card-minimal-two .card-footer{padding:20px;position:relative;z-index:2;overflow-y:hidden;width:calc(100vw - 40px);margin-bottom:-8px}@media (min-width: 992px){.card-minimal-two .card-footer{width:auto}}.card-minimal-two .card-footer .media-icon{color:#f7931a;font-size:42px;line-height:0}.card-minimal-two .card-footer .media-body{margin-left:20px;margin-bottom:10px}.card-minimal-two .card-footer .row{flex-wrap:nowrap;white-space:nowrap;overflow-x:auto}.card-minimal-two .card-footer .row>div{flex-shrink:0}.card-minimal-two .card-footer label{margin-bottom:2px;text-transform:uppercase;font-weight:500;font-size:11px;letter-spacing:.5px;color:#7987a1}.card-minimal-two .card-footer p{margin-bottom:0;color:#1c273c;font-weight:700;font-size:16px;font-family:"Archivo",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"}.card-minimal-three{border-color:#cdd4e0;width:calc(100vw - 38px)}@media (min-width: 992px){.card-minimal-three{width:634px}}@media (min-width: 1200px){.card-minimal-three{width:753px}}.card-minimal-three .card-header{border-bottom:1px solid #cdd4e0;background-color:transparent;padding:20px 20px 0}.card-minimal-three .card-header .az-content-text{margin-bottom:20px}.card-minimal-three .az-nav-tabs{padding:0;background-color:transparent;position:relative;margin-left:-15px;margin-right:-15px;margin-bottom:3px}.card-minimal-three .az-nav-tabs .lSAction>a{background-color:#cdd4e0}.card-minimal-three .az-nav-tabs .lSAction>a::before{top:-4px}.card-minimal-three .az-nav-tabs .lSAction>a.lSPrev{left:-35px}.card-minimal-three .az-nav-tabs .tab-item{min-width:203px}@media (min-width: 576px){.card-minimal-three .az-nav-tabs .tab-item{min-width:150px}}.card-minimal-three .az-nav-tabs .tab-link{background-color:#e3e7ed;font-weight:500;align-items:flex-start;padding-top:8px}.card-minimal-three .az-nav-tabs .tab-link:hover{background-color:#cdd4e0}.card-minimal-three .az-nav-tabs .tab-link.active,.card-minimal-three .az-nav-tabs .tab-link.active:hover,.card-minimal-three .az-nav-tabs .tab-link.active:focus{background-color:#596882;color:#fff}.card-minimal-three .card-body{padding:0}.card-minimal-three .tab-pane-header{padding:20px;background-color:#fff;border-bottom:1px solid #cdd4e0}@media (min-width: 576px){.card-minimal-three .tab-pane-header{display:flex;align-items:center;justify-content:space-between}}.card-minimal-three .tab-pane-header .az-content-label,.card-minimal-three .tab-pane-header .card-table-two .card-title,.card-table-two .card-minimal-three .tab-pane-header .card-title,.card-minimal-three .tab-pane-header .card-dashboard-eight .card-title,.card-dashboard-eight .card-minimal-three .tab-pane-header .card-title{margin-bottom:3px}.card-minimal-three .tab-pane-header>div:last-child{display:flex;margin-top:15px}.card-minimal-three .tab-pane-header>div:last-child a{flex:1}.card-minimal-three .tab-pane-header>div:last-child a+a{margin-left:10px}.card-minimal-three .tab-pane-body{padding:20px}.card-minimal-three .tab-pane-body .table thead tr th,.card-minimal-three .tab-pane-body .table thead tr td,.card-minimal-three .tab-pane-body .table tbody tr th,.card-minimal-three .tab-pane-body .table tbody tr td{white-space:nowrap}.card-minimal-three .no-transactions-panel{height:200px;display:flex;align-items:center;justify-content:center;flex-direction:column}.card-minimal-three .no-transactions-panel .icon-wrapper{width:80px;height:80px;background-color:#e3e7ed;color:#97a3b9;font-size:48px;display:flex;align-items:center;justify-content:center;margin-bottom:20px;border-radius:100%}.card-minimal-three .no-transactions-panel .icon-wrapper i{line-height:0}.card-minimal-three .no-transactions-panel h6{text-transform:uppercase;font-weight:700;font-size:15px;color:#1c273c;letter-spacing:1px;margin-bottom:2px}.card-minimal-three .table tbody tr td{vertical-align:middle}.card-minimal-three .table tbody tr td span{display:block;width:8px;height:8px;border-radius:100%}.card-minimal-three .table tbody tr td:last-child{font-weight:500;color:#1c273c}.card-crypto-portfolio{width:100%;border-color:#cdd4e0;margin-top:20px}@media (min-width: 992px){.card-crypto-portfolio{width:calc(33.33333% - 13px);margin-top:0}}.card-crypto-portfolio .card-title{text-transform:uppercase}.card-crypto-portfolio .table{margin-bottom:0}.card-crypto-portfolio .table thead tr th,.card-crypto-portfolio .table thead tr td,.card-crypto-portfolio .table tbody tr th,.card-crypto-portfolio .table tbody tr td{padding:10px 0;text-align:right;white-space:nowrap}.card-crypto-portfolio .table thead tr th:first-child,.card-crypto-portfolio .table thead tr td:first-child,.card-crypto-portfolio .table tbody tr th:first-child,.card-crypto-portfolio .table tbody tr td:first-child{text-align:left}.card-crypto-portfolio .table thead tr th{font-size:10px}.card-crypto-portfolio .table tbody tr td:first-child{font-weight:500;color:#1c273c}.card-minimal-four{border-color:#cdd4e0}.card-minimal-four .card-header{background-color:transparent;border-bottom:1px solid #cdd4e0}.card-minimal-four .card-header h6{font-size:14px;font-weight:700;margin-bottom:2px;color:#1c273c}.card-minimal-four .card-header p{margin-bottom:0;white-space:nowrap}.card-minimal-four .card-header p span{color:#dc3545}.card-minimal-four .card-header .media{align-items:center}.card-minimal-four .card-header .media-body{margin-left:12px}.card-minimal-four .coin-logo{width:42px;height:42px;color:#fff;border-radius:100%;display:flex;align-items:center;justify-content:center;font-size:24px}.card-minimal-four .coin-logo i{line-height:0}.card-minimal-four .card-body{padding:0;overflow:hidden;position:relative;background-color:#fcfcfc}.card-minimal-four .card-body-top{top:15px;left:10px;position:absolute;font-size:10px;text-transform:uppercase;letter-spacing:1px;z-index:10}.card-minimal-four .card-body-top a{color:#1c273c;font-weight:700;width:20px;text-align:right;display:inline-block}.card-minimal-four .card-body-top a:hover,.card-minimal-four .card-body-top a:focus{color:#36f}.card-minimal-four .card-body-top div+div{margin-top:5px}.card-minimal-four .chart-wrapper{position:relative;margin-left:-20px;margin-right:-9px;margin-bottom:-17px}.card-minimal-four .flot-chart{width:100%;height:150px}.card-minimal-four .card-footer{background-color:transparent;border-top-color:#cdd4e0;padding:0}.card-minimal-four .card-footer .nav-link{flex:1;display:block;text-align:center;background-color:#e3e7ed;position:relative;padding-left:10px;padding-right:10px}.card-minimal-four .card-footer .nav-link:hover,.card-minimal-four .card-footer .nav-link:focus{background-color:#eeeff4}.card-minimal-four .card-footer .nav-link span{display:block}.card-minimal-four .card-footer .nav-link span:first-child{color:#97a3b9;font-weight:700;font-size:11px}.card-minimal-four .card-footer .nav-link span:last-child{color:#031b4e;font-weight:500;font-size:11px;font-family:"Archivo",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"}.card-minimal-four .card-footer .nav-link+.nav-link{border-left:1px solid #cdd4e0}.card-minimal-four .card-footer .nav-link.active{background-color:#fcfcfc}.card-minimal-four .card-footer .nav-link.active::before{content:'';position:absolute;top:-1px;left:0;right:0;border-top:1px solid #f7f7f7;z-index:5}.card-minimal-four .card-footer .nav-link.active span:first-child{color:#1c273c}.az-dashboard-eight{background-color:#dde2e9}.az-header-primary{background-color:#0040ff}.az-header-primary .az-header-center .form-control{background-color:#03c;border-width:0;height:38px;border-radius:2px;color:#fff}.az-header-primary .az-header-center .form-control::placeholder{color:rgba(255,255,255,0.4)}.az-header-primary .az-header-center .form-control:focus+.btn,.az-header-primary .az-header-center .sp-container .form-control:focus+button,.sp-container .az-header-primary .az-header-center .form-control:focus+button{color:#fff}.az-header-primary .az-header-center .btn,.az-header-primary .az-header-center .sp-container button,.sp-container .az-header-primary .az-header-center button{font-size:14px}.az-header-primary .az-header-center .btn:hover,.az-header-primary .az-header-center .sp-container button:hover,.sp-container .az-header-primary .az-header-center button:hover,.az-header-primary .az-header-center .btn:focus,.az-header-primary .az-header-center .sp-container button:focus,.sp-container .az-header-primary .az-header-center button:focus{color:#fff}.az-header-primary .az-logo{color:#fff;font-weight:600;letter-spacing:-1.2px}.az-header-primary .az-logo span{color:rgba(255,255,255,0.65)}.az-header-primary .az-header-menu-icon span,.az-header-primary .az-header-menu-icon span::before,.az-header-primary .az-header-menu-icon span::after{background-color:rgba(255,255,255,0.65)}.az-header-primary .az-header-message>a,.az-header-primary .az-header-notification>a{color:rgba(255,255,255,0.75)}.az-header-primary .az-header-notification>a::after{display:none}.az-header-primary .az-header-notification .dropdown-menu,.az-header-primary .az-profile-menu .dropdown-menu{border-width:0;box-shadow:0 0 5px rgba(28,39,60,0.1)}@media (min-width: 576px){.az-header-primary .az-header-notification .dropdown-menu{top:43px}}@media (min-width: 992px){.az-header-primary .az-header-notification .dropdown-menu{top:45px}}@media (min-width: 576px){.az-header-primary .az-profile-menu .dropdown-menu{top:46px}}@media (min-width: 992px){.az-header-primary .az-profile-menu .dropdown-menu{top:48px}}.az-header-primary .az-profile-menu.show .az-img-user::before{display:none}.az-navbar-dashboard-eight{background-color:#f9f9f9;border-bottom-width:0}.az-navbar-dashboard-eight .az-navbar-header{background-color:#0040ff;border-bottom-width:0;color:#fff}.az-navbar-dashboard-eight .az-navbar-header .az-logo{color:#fff}.az-navbar-dashboard-eight .nav-item.active::before{border-bottom-color:#1a53ff}.az-navbar-dashboard-eight .nav-item.active .nav-link{color:#1a53ff}.az-navbar-dashboard-eight .nav-link{text-transform:capitalize;font-weight:500;font-size:14px}.az-navbar-dashboard-eight .nav-sub:not(.nav-sub-mega){background-color:#f9f9f9;border-width:0}@media (min-width: 992px){.az-navbar-dashboard-eight .nav-sub:not(.nav-sub-mega){box-shadow:0 0 5px rgba(28,39,60,0.12)}}.az-navbar-dashboard-eight .nav-sub:not(.nav-sub-mega)::before{content:'';position:absolute;top:-5px;left:-5px;right:-5px;height:5px;background-color:#f9f9f9;z-index:4}.az-navbar-dashboard-eight .nav-sub-item>.nav-sub{left:180px}.az-navbar-dashboard-eight .nav-sub-item>.nav-sub::before{left:-5px;top:-5px;bottom:-5px;right:auto;width:5px;height:auto}.az-navbar-dashboard-eight .nav-sub-item.active .nav-sub-link{color:#36f}.az-navbar-dashboard-eight .nav-sub-link:hover{color:#36f}.az-navbar-dashboard-eight .nav-sub-mega .container,.az-navbar-dashboard-eight .nav-sub-mega .container-fluid{background-color:#f9f9f9;border-width:0}@media (min-width: 992px){.az-navbar-dashboard-eight .nav-sub-mega .container,.az-navbar-dashboard-eight .nav-sub-mega .container-fluid{box-shadow:0 5px 3px -3px rgba(28,39,60,0.12)}}.az-content-dashboard-eight{padding-top:25px}@media (max-width: 575px){.az-content-dashboard-eight .container{padding-left:20px;padding-right:20px}}.az-content-dashboard-eight .az-content-title{letter-spacing:-.8px}.az-content-dashboard-eight .card{border-width:0;border-radius:2px;box-shadow:0 0 5px rgba(28,39,60,0.1)}.az-content-dashboard-eight .card-title{font-weight:500}.card-dashboard-seventeen{position:relative}.card-dashboard-seventeen .card-body{display:flex;flex-direction:column;justify-content:space-between;height:180px;position:relative;z-index:10}.card-dashboard-seventeen .card-body h4{margin-bottom:0;font-weight:700;font-family:"Archivo",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";color:#1c273c}.card-dashboard-seventeen .card-body span{font-size:11px}.card-dashboard-seventeen .card-title{line-height:1.3}.card-dashboard-seventeen.bg-primary-dark{background-color:#03c}.card-dashboard-seventeen .chart-wrapper{position:absolute;right:-8px;bottom:-8px;left:-8px}.card-dashboard-seventeen .flot-chart{width:100%;height:180px}.card-dashboard-eighteen{display:block;padding:20px}.card-dashboard-eighteen .card-title{font-weight:700;text-transform:uppercase}.card-dashboard-eighteen .card-body{padding:20px 0 34px;align-items:flex-start}.card-dashboard-eighteen .card-body h6{color:#1c273c;font-family:"Archivo",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-weight:600;font-size:21px;letter-spacing:-.8px;margin-bottom:2px;position:relative;padding-left:23px}.card-dashboard-eighteen .card-body h6 span{font-weight:400;color:#97a3b9;letter-spacing:normal}.card-dashboard-eighteen .card-body h6::before{content:'';position:absolute;display:block;top:calc(50% - 8px);left:0;width:16px;height:16px;border-radius:100%;border:4px solid transparent}.card-dashboard-eighteen .card-body h6.dot-primary::before{border-color:#36f}.card-dashboard-eighteen .card-body h6.dot-purple::before{border-color:#6f42c1}.card-dashboard-eighteen .card-body h6.dot-teal::before{border-color:#0cc}.card-dashboard-eighteen .card-body h6.dot-dark-blue::before{border-color:#03c}.card-dashboard-eighteen .card-body label{color:#7987a1;margin-bottom:0;display:block}.card-dashboard-eighteen .chartjs-wrapper{height:309px;position:relative;margin-left:-10px;margin-right:-5px}.card-dashboard-nineteen{overflow:hidden;position:relative;background-color:#f9f9f9}.card-dashboard-nineteen .card-header{padding:20px 20px 0;background-color:transparent}@media (min-width: 375px){.card-dashboard-nineteen .card-header{position:absolute;top:0;left:0;width:100%;z-index:10}}.card-dashboard-nineteen .card-header .row{display:block}@media (min-width: 375px){.card-dashboard-nineteen .card-header .row{display:flex}}.card-dashboard-nineteen .card-header .row>div{max-width:none}.card-dashboard-nineteen .card-header .row>div+div{margin-top:20px}@media (min-width: 375px){.card-dashboard-nineteen .card-header .row>div+div{margin-top:0}}.card-dashboard-nineteen .card-header h4{font-size:24px;font-family:"Archivo",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-weight:600;letter-spacing:-1px;color:#1c273c;margin-bottom:10px}@media (min-width: 576px){.card-dashboard-nineteen .card-header h4{font-size:30px}}.card-dashboard-nineteen .card-header h4 span{font-weight:400;letter-spacing:normal;color:#97a3b9}.card-dashboard-nineteen .card-header .az-content-label,.card-dashboard-nineteen .card-header .card-table-two .card-title,.card-table-two .card-dashboard-nineteen .card-header .card-title,.card-dashboard-nineteen .card-header .card-dashboard-eight .card-title,.card-dashboard-eight .card-dashboard-nineteen .card-header .card-title{text-transform:none;line-height:1.3;margin-bottom:5px;font-size:.875rem}@media (min-width: 992px){.card-dashboard-nineteen .card-header .az-content-label,.card-dashboard-nineteen .card-header .card-table-two .card-title,.card-table-two .card-dashboard-nineteen .card-header .card-title,.card-dashboard-nineteen .card-header .card-dashboard-eight .card-title,.card-dashboard-eight .card-dashboard-nineteen .card-header .card-title{font-size:14px}}.card-dashboard-nineteen .card-header p{font-size:11px;color:#7987a1;margin-bottom:0}@media (min-width: 576px){.card-dashboard-nineteen .card-header p{font-size:12px}}.card-dashboard-nineteen .card-header .btn,.card-dashboard-nineteen .card-header .sp-container button,.sp-container .card-dashboard-nineteen .card-header button{text-transform:uppercase;font-weight:500;font-size:11px;letter-spacing:.5px;padding:5px 20px;min-height:inherit;border-width:2px}.card-dashboard-nineteen .card-title{text-transform:uppercase;font-weight:700;margin-bottom:15px;color:#0040ff}.card-dashboard-nineteen .chart-legend{margin-top:22px;display:flex;align-items:center}@media (min-width: 768px){.card-dashboard-nineteen .chart-legend{margin-left:70px}}.card-dashboard-nineteen .chart-legend>div{position:relative;text-transform:uppercase;font-size:10px;font-weight:500;letter-spacing:.5px}@media (min-width: 375px){.card-dashboard-nineteen .chart-legend>div{letter-spacing:1px}}.card-dashboard-nineteen .chart-legend>div::before{content:'';position:relative;top:1.5px;display:inline-block;width:10px;height:10px;margin-right:5px}.card-dashboard-nineteen .chart-legend>div:first-child::before{background-color:#05478f}.card-dashboard-nineteen .chart-legend>div:nth-child(2)::before{background-color:#2f93fe}.card-dashboard-nineteen .chart-legend>div:last-child::before{background-color:#bbdafc}.card-dashboard-nineteen .chart-legend>div+div{margin-left:10px}@media (min-width: 375px){.card-dashboard-nineteen .chart-legend>div+div{margin-left:30px}}.card-dashboard-nineteen .card-body{padding:0;position:relative}@media (min-width: 375px) and (max-width: 575px){.card-dashboard-nineteen .card-body{padding-top:170px}}@media (min-width: 576px){.card-dashboard-nineteen .card-body{padding-top:130px}}@media (min-width: 768px){.card-dashboard-nineteen .card-body{padding-top:95px}}.card-dashboard-nineteen .flot-chart-wrapper{position:relative;margin:-30px -8px -16px -47px}@media (min-width: 375px){.card-dashboard-nineteen .flot-chart-wrapper{margin-top:0}}.card-dashboard-nineteen .flot-chart{width:100%;height:250px}@media (min-width: 576px){.card-dashboard-nineteen .flot-chart{height:314px}}.card-dashboard-nineteen .flot-chart .flot-x-axis{transform:translate(18px, -25px);color:#fff;font-size:10px;text-transform:uppercase;letter-spacing:1px;opacity:.5}.card-dashboard-nineteen .flot-chart .flot-y-axis{transform:translate(66px, -13px);color:rgba(0,0,0,0.65);font-weight:400;font-size:10px;letter-spacing:.5px}.card-dashboard-twenty .card-body{display:flex;flex-direction:column;justify-content:flex-start}.card-dashboard-twenty .chartjs-wrapper{width:100%;height:230px}@media (min-width: 992px) and (max-width: 1199.98px){.card-dashboard-twenty .chartjs-wrapper{margin-top:auto}}.card-dashboard-twenty .expansion-value{display:flex;justify-content:space-between;font-size:17px;font-weight:700;font-family:"Archivo",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";letter-spacing:-.5px;margin-bottom:5px;margin-top:auto}.card-dashboard-twenty .expansion-value strong:first-child{color:#1c273c}.card-dashboard-twenty .expansion-value strong:last-child{color:#7987a1}.card-dashboard-twenty .progress{margin-bottom:3px;height:4px}.card-dashboard-twenty .expansion-label{display:flex;justify-content:space-between}.card-dashboard-twenty .expansion-label span{font-weight:400;font-size:11px;color:#97a3b9}.card-dashboard-progress .progress-legend{margin:0;padding:0;list-style:none;display:flex;align-items:center}.card-dashboard-progress .progress-legend li{position:relative;text-transform:uppercase;font-size:10px;font-weight:500;letter-spacing:1px;padding-left:15px;line-height:.95}.card-dashboard-progress .progress-legend li::before{content:'';position:absolute;top:1px;left:0;width:8px;height:8px}.card-dashboard-progress .progress-legend li:first-child::before{background-color:#36f}.card-dashboard-progress .progress-legend li:last-child::before{background-color:#0cc}.card-dashboard-progress .progress-legend li+li{margin-left:20px}.card-dashboard-progress .media{display:block}@media (min-width: 576px){.card-dashboard-progress .media{display:flex;align-items:center}}.card-dashboard-progress .media>label{width:50px;display:block;margin-bottom:0}.card-dashboard-progress .media+.media{margin-top:15px}.card-dashboard-progress .media-body{margin-top:5px}@media (min-width: 576px){.card-dashboard-progress .media-body{margin-top:0;margin-left:15px}}.card-dashboard-progress .progress{background-color:#e3e7ed}.card-dashboard-progress .progress-bar{height:25px;font-family:"Archivo",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-weight:600}.card-dashboard-progress .progress-bar+.progress-bar{margin-left:1px}.az-body-dashboard-nine{background-color:#cdd4e0}@media (min-width: 992px){.az-body-dashboard-nine .az-header .container-fluid{padding-left:20px;padding-right:20px}}@media (min-width: 992px){.az-body-dashboard-nine.az-sidebar-hide .az-header-dashboard-nine{left:0}}.az-sidebar-indigo-dark{background-color:#4130c5;border-right-width:0}.az-sidebar-indigo-dark .az-logo{color:#fff;letter-spacing:-1.4px}.az-sidebar-indigo-dark .az-sidebar-loggedin .media-body h6{color:#fff;font-weight:500}.az-sidebar-indigo-dark .az-sidebar-loggedin .media-body span{color:rgba(255,255,255,0.5)}.az-sidebar-indigo-dark .az-img-user::after{box-shadow:none}.az-sidebar-indigo-dark .az-sidebar-body .nav-label{border-bottom-color:rgba(255,255,255,0.2);color:rgba(255,255,255,0.35);font-weight:400}.az-sidebar-indigo-dark .az-sidebar-body .nav-item+.nav-item{margin-top:-1px}.az-sidebar-indigo-dark .az-sidebar-body .nav-item+.nav-item::before{border-top-color:rgba(255,255,255,0.12)}.az-sidebar-indigo-dark .az-sidebar-body .nav-item.active{position:relative;z-index:5}.az-sidebar-indigo-dark .az-sidebar-body .nav-item.active::before{content:'';position:absolute;top:-1px;left:-20px;right:-20px;background-color:#33269c;height:41px}.az-sidebar-indigo-dark .az-sidebar-body .nav-item.active .nav-link,.az-sidebar-indigo-dark .az-sidebar-body .nav-item.active .nav-link:hover,.az-sidebar-indigo-dark .az-sidebar-body .nav-item.active .nav-link:focus{font-weight:500;color:#fff}.az-sidebar-indigo-dark .az-sidebar-body .nav-item.active .nav-link i,.az-sidebar-indigo-dark .az-sidebar-body .nav-item.active .nav-link:hover i,.az-sidebar-indigo-dark .az-sidebar-body .nav-item.active .nav-link:focus i{color:#fff}.az-sidebar-indigo-dark .az-sidebar-body .nav-link{color:rgba(255,255,255,0.45);font-weight:400}.az-sidebar-indigo-dark .az-sidebar-body .nav-link i{color:rgba(255,255,255,0.75)}.az-sidebar-indigo-dark .az-sidebar-body .nav-link.with-sub::after{opacity:.3}.az-sidebar-indigo-dark .az-sidebar-body .nav-link:hover,.az-sidebar-indigo-dark .az-sidebar-body .nav-link:focus{color:rgba(255,255,255,0.75)}.az-sidebar-indigo-dark .az-sidebar-body .nav-sub{border-left-color:rgba(255,255,255,0.1);padding-left:0;padding-bottom:0;position:relative}.az-sidebar-indigo-dark .az-sidebar-body .nav-sub::before{content:'';position:absolute;top:0;left:-32px;right:-20px;bottom:0;background-color:rgba(0,0,0,0.1);z-index:4}.az-sidebar-indigo-dark .az-sidebar-body .nav-sub-item.active .nav-sub-link{color:#fff}.az-sidebar-indigo-dark .az-sidebar-body .nav-sub-link{padding-left:21px;color:rgba(255,255,255,0.4);border-top-color:rgba(255,255,255,0.1);position:relative;z-index:5}.az-sidebar-indigo-dark .az-sidebar-body .nav-sub-link:hover,.az-sidebar-indigo-dark .az-sidebar-body .nav-sub-link:focus{color:#fff}.az-header-dashboard-nine{background-color:#fff}@media (min-width: 992px){.az-header-dashboard-nine{position:fixed;top:0;left:220px;right:0;box-shadow:0 0 15px rgba(28,39,60,0.1)}}@media (min-width: 1200px){.az-header-dashboard-nine{left:240px}}.az-header-dashboard-nine .az-header-menu-icon{margin-right:0}.az-content-dashboard-nine{position:relative}@media (min-width: 992px){.az-content-dashboard-nine{margin-top:64px}}.az-content-dashboard-nine .az-content-header{display:block;padding:20px;background-color:#ebedf2}@media (min-width: 992px){.az-content-dashboard-nine .az-content-header{padding:20px 20px 15px}}@media (max-width: 991.98px){.az-content-dashboard-nine .az-content-header .nav-wrapper{overflow:hidden;width:100%;height:20px}}.az-content-dashboard-nine .az-content-header .nav{justify-content:flex-start}@media (max-width: 991.98px){.az-content-dashboard-nine .az-content-header .nav{flex-direction:row;flex-wrap:nowrap;overflow-x:auto;width:calc(100vw - 20px)}}.az-content-dashboard-nine .az-content-header .nav-link{color:#596882;font-weight:500}@media (max-width: 991.98px){.az-content-dashboard-nine .az-content-header .nav-link{white-space:nowrap;padding-bottom:10px}}.az-content-dashboard-nine .az-content-header .nav-link:hover,.az-content-dashboard-nine .az-content-header .nav-link:focus{color:#1c273c}.az-content-dashboard-nine .az-content-header .nav-link.active{color:#2f15fa}.az-content-dashboard-nine .az-content-header .nav-link.active::before{top:34px;bottom:auto;background-color:#2f15fa}.az-content-dashboard-nine .az-content-header .nav-link+.nav-link{margin-top:0;margin-left:25px}@media (min-width: 992px){.az-content-dashboard-nine .az-content-header .nav-link:nth-child(5),.az-content-dashboard-nine .az-content-header .nav-link:last-child{font-weight:400}}@media (min-width: 992px){.az-content-dashboard-nine .az-content-header .nav-link:nth-child(5){margin-left:auto}}.az-content-dashboard-nine .az-content-header .nav-link:last-child{position:relative}.az-content-dashboard-nine .az-content-header .nav-link:last-child::after{content:'';position:relative;display:inline-block;width:25px}@media (min-width: 768px){.az-content-dashboard-nine .az-content-header .nav-link:last-child::after{display:none}}.az-content-dashboard-nine .az-content-header-top{margin-bottom:20px}@media (min-width: 576px){.az-content-dashboard-nine .az-content-header-top{display:flex;align-items:center;justify-content:space-between;margin-bottom:20px}}.az-content-dashboard-nine .az-content-title{letter-spacing:-.7px;font-size:24px}.az-content-dashboard-nine .az-content-body{padding:20px}.az-content-dashboard-nine .card{border-width:0;box-shadow:0 0 10px rgba(28,39,60,0.1)}.card-dashboard-twentyone{position:relative}.card-dashboard-twentyone .card-body{background-color:#f4f5f8;padding:20px;height:100%}.card-dashboard-twentyone .card-body .az-content-label,.card-dashboard-twentyone .card-body .card-table-two .card-title,.card-table-two .card-dashboard-twentyone .card-body .card-title,.card-dashboard-twentyone .card-body .card-dashboard-eight .card-title,.card-dashboard-eight .card-dashboard-twentyone .card-body .card-title{margin-bottom:8px;text-transform:capitalize;font-size:14px}@media (min-width: 768px){.card-dashboard-twentyone .list-group{margin-bottom:10px}}.card-dashboard-twentyone .list-group-item{padding:8px 0;border-width:0;border-right-width:0;display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;position:relative;background-color:transparent}.card-dashboard-twentyone .list-group-item span{flex-basis:50%;max-width:50%}.card-dashboard-twentyone .list-group-item span:last-of-type{text-align:right;color:#1c273c;font-size:12px;font-weight:700;font-family:"Archivo",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"}.card-dashboard-twentyone .list-group-item .progress{margin-top:5px;margin-bottom:0;flex-basis:100%;max-width:100%;height:5px;background-color:#b4bdce}.card-dashboard-twentyone .list-group-item:first-child{border-top-left-radius:0;border-top-right-radius:0}.card-dashboard-twentyone .list-group-item:last-child{border-bottom-right-radius:0;border-bottom-left-radius:0}.card-dashboard-twentyone .vmap-wrapper{width:100%;height:180px}@media (min-width: 576px){.card-dashboard-twentyone .vmap-wrapper{height:250px}}@media (min-width: 768px){.card-dashboard-twentyone .vmap-wrapper{height:100%}}.card-dashboard-twentyone .vmap-wrapper .jqvmap-zoomin,.card-dashboard-twentyone .vmap-wrapper .jqvmap-zoomout{width:24px;height:24px;left:15px;border-radius:100%;background-color:#1c273c;color:#fff;font-size:20px;font-weight:500;opacity:.2}.card-dashboard-twentyone .vmap-wrapper .jqvmap-zoomin:hover,.card-dashboard-twentyone .vmap-wrapper .jqvmap-zoomin:focus,.card-dashboard-twentyone .vmap-wrapper .jqvmap-zoomout:hover,.card-dashboard-twentyone .vmap-wrapper .jqvmap-zoomout:focus{opacity:.8}.card-dashboard-twentyone .vmap-wrapper .jqvmap-zoomin{top:15px}.card-dashboard-twentyone .vmap-wrapper .jqvmap-zoomout{top:45px}.card-dashboard-twentytwo{background-color:#fff;position:relative;height:120px}.card-dashboard-twentytwo .media{padding:20px;position:relative;z-index:5}.card-dashboard-twentytwo .media-icon{width:45px;height:45px;color:#fff;border-radius:100%;display:flex;align-items:center;justify-content:center}.card-dashboard-twentytwo .media-icon i{font-size:24px;line-height:0}.card-dashboard-twentytwo .media-icon i.typcn{line-height:.9}.card-dashboard-twentytwo .media-body{margin-left:15px;padding-top:5px}.card-dashboard-twentytwo .media-body h6{margin-bottom:5px;line-height:.7;color:#1c273c;font-size:26px;font-weight:700;font-family:"Archivo",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";letter-spacing:-.5px;display:flex;align-items:flex-end}.card-dashboard-twentytwo .media-body h6>small{color:#fff;padding:2px 3px;font-size:9px;font-weight:500;line-height:1.1;margin-left:5px;letter-spacing:normal}.card-dashboard-twentytwo .media-body h6>small.up{background-color:#3bb001}.card-dashboard-twentytwo .media-body h6>small.down{background-color:#dc3545}.card-dashboard-twentytwo .media-body>span{display:block}.card-dashboard-twentytwo .media-body>small{display:block;font-size:11px;color:#97a3b9}.card-dashboard-twentytwo .media-body>small strong{font-weight:500}.card-dashboard-twentytwo .chart-wrapper{position:absolute;right:-9px;left:-9px;opacity:.3}.card-dashboard-twentytwo .flot-chart{width:100%;height:120px}.card-dashboard-twentythree{background-color:#f4f5f8}.card-dashboard-twentythree .az-donut-chart.chart1{width:130px;height:130px;background:#b4bdce}.card-dashboard-twentythree .az-donut-chart.chart1 .slice.one{clip:rect(0 130px 65px 0);-webkit-transform:rotate(90deg);transform:rotate(90deg);background:#5b47fb}.card-dashboard-twentythree .az-donut-chart.chart1 .slice.two{clip:rect(0 65px 130px 0);-webkit-transform:rotate(234deg);transform:rotate(234deg);background:#5b47fb}.card-dashboard-twentythree .az-donut-chart.chart1 .chart-center{top:15px;left:15px;width:100px;height:100px;background:#f4f5f8}.card-dashboard-twentythree .az-donut-chart.chart1 .chart-center span{font-size:40px;line-height:100px;color:#5b47fb}.card-dashboard-twentythree .az-donut-chart.chart1 .chart-center span:after{content:"65%"}.card-dashboard-twentythree .az-donut-chart.chart1 .chart-center span{font-weight:700;font-family:"Archivo",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-size:32px}.card-dashboard-twentythree label{display:flex;align-items:center;text-transform:uppercase;font-weight:500;font-size:10px;line-height:1;letter-spacing:.5px}.card-dashboard-twentythree label span{display:block;width:8px;height:8px;border-radius:100%;margin-right:5px}.card-dashboard-twentythree h5{font-size:24px;font-weight:700;font-family:"Archivo",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";color:#1c273c;letter-spacing:-1px}.card-dashboard-audience-metrics{background-color:#f4f5f8;position:relative;overflow:hidden;height:250px}@media (min-width: 576px){.card-dashboard-audience-metrics{height:270px}}.card-dashboard-audience-metrics .card-header{padding:20px 20px 0;background-color:#f4f5f8;position:relative;z-index:10}.card-dashboard-audience-metrics .card-title{font-size:14px;margin-bottom:5px}.card-dashboard-audience-metrics .chart-wrapper{position:absolute;right:0;bottom:-20px;left:0;padding:5px 5px 0}@media (min-width: 576px){.card-dashboard-audience-metrics .chart-wrapper{padding-bottom:10px;bottom:10px}}.card-dashboard-audience-metrics .flot-chart{width:100%;height:180px}.card-dashboard-audience-metrics .flot-chart .flot-x-axis>div{text-transform:uppercase;font-size:10px;font-weight:700;color:#7987a1;display:none}@media (min-width: 576px){.card-dashboard-audience-metrics .flot-chart .flot-x-axis>div{display:block}}.card-dashboard-audience-metrics .flot-chart .flot-x-axis>div span:last-child{padding-left:2px;font-weight:700;color:#1c273c}.card-dashboard-audience-metrics .card-body{background-color:#f4f5f8;display:flex;padding:0 20px 20px;flex:none;position:relative;z-index:10}.card-dashboard-audience-metrics .card-body>div+div{margin-left:10px;padding-left:10px;border-left:1px solid #b4bdce}@media (min-width: 576px){.card-dashboard-audience-metrics .card-body>div+div{margin-left:20px;padding-left:20px}}.card-dashboard-audience-metrics .card-body h4{font-weight:700;font-size:17px;font-family:"Archivo",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";color:#1c273c;letter-spacing:-.5px;margin-bottom:3px}@media (min-width: 576px){.card-dashboard-audience-metrics .card-body h4{font-size:21px}}.card-dashboard-audience-metrics .card-body label{margin-bottom:0;display:flex;align-items:center;font-size:11px}@media (min-width: 576px){.card-dashboard-audience-metrics .card-body label{font-size:.875rem}}.card-dashboard-audience-metrics .card-body label span{display:inline-block;width:9px;height:9px;margin-right:5px;border-radius:100%}.bg-primary-dark{background-color:#03c}.az-iconbar-primary{background-color:#0040ff;padding-top:0}.az-iconbar-primary .az-img-user::after{box-shadow:none}.az-iconbar-primary .az-iconbar-logo{background-color:#0039e6;color:#fff;height:64px}.az-iconbar-primary .az-iconbar-logo::after{display:none}.az-iconbar-primary .nav{justify-content:center}.az-iconbar-primary .nav-link{width:42px;height:42px;color:rgba(255,255,255,0.5);border-radius:3px;transition:all 0.2s ease-in-out}@media (prefers-reduced-motion: reduce){.az-iconbar-primary .nav-link{transition:none}}.az-iconbar-primary .nav-link:hover,.az-iconbar-primary .nav-link:focus{color:#fff;background-color:rgba(255,255,255,0.1)}.az-iconbar-primary .nav-link.active{color:#fff;background-color:rgba(255,255,255,0.2)}.az-iconbar-primary .az-iconbar-help{color:rgba(255,255,255,0.5)}.az-iconbar-primary .az-iconbar-help:hover,.az-iconbar-primary .az-iconbar-help:focus{color:#fff}.az-iconbar-aside-primary{width:250px;background-color:#f4f5f8;box-shadow:0 0 16px rgba(28,39,60,0.08);border-right:1px solid #cdd4e0}.az-iconbar-aside-primary .az-iconbar-header{padding:18px 25px;background-color:#fff;border-bottom:1px solid #e3e7ed}.az-iconbar-aside-primary .az-iconbar-body{padding:20px 25px}.az-iconbar-aside-primary .az-iconbar-body .nav{padding-top:0;padding-left:0;border-left-width:0}.az-iconbar-aside-primary .az-iconbar-body .nav-item+.nav-item{border-top-color:#cdd4e0}.az-iconbar-aside-primary .az-iconbar-body .nav-sub{border-top-color:#cdd4e0}.az-iconbar-aside-primary .az-iconbar-body .nav-sub-item+.nav-sub-item{border-top-color:#cdd4e0}.az-iconbar-aside-primary .az-iconbar-body .nav-link:hover,.az-iconbar-aside-primary .az-iconbar-body .nav-link:focus{color:#36f}.az-iconbar-aside-primary .az-iconbar-body .nav-link.active{color:#36f}.az-iconbar-aside-primary .az-iconbar-toggle-menu{display:none}@media (min-width: 992px){.az-iconbar-aside-primary.show+.az-content{margin-left:64px}}.az-content-dashboard-ten{padding:0;min-height:100vh;background-color:#e3e7ed}@media (min-width: 992px){.az-content-dashboard-ten{display:flex;flex-direction:column;justify-content:flex-start;margin-left:64px}}.az-content-dashboard-ten .az-header{position:fixed;top:0;left:0;right:0;background-color:#fff}@media (min-width: 992px){.az-content-dashboard-ten .az-header{left:64px}}@media (min-width: 992px){.az-content-dashboard-ten .az-header .container-fluid{padding-left:20px;padding-right:20px}}.az-content-dashboard-ten .az-header-center{margin-left:0}.az-content-dashboard-ten .az-content-body{margin-top:64px}@media (min-width: 1200px){.az-content-dashboard-ten .az-content-body{display:flex}}.az-content-dashboard-ten .az-content-body-left{flex:1;padding:20px}.az-content-dashboard-ten .az-content-body-right{background-color:#fcfcfc;padding:20px;display:none}@media (min-width: 1200px){.az-content-dashboard-ten .az-content-body-right{display:block;width:280px;box-shadow:0 0 6px rgba(28,39,60,0.1)}}@media (min-width: 1300px){.az-content-dashboard-ten .az-content-body-right{width:300px}}.az-content-dashboard-ten .az-content-title{letter-spacing:-.8px}.az-content-dashboard-ten .card{border-width:0;box-shadow:0 0 6px rgba(28,39,60,0.12)}.az-content-dashboard-ten .az-footer{margin-top:auto}.card-dashboard-twentyfour .card-header{background-color:transparent;display:flex;align-items:center;justify-content:space-between;padding:20px 20px 0}.card-dashboard-twentyfour .card-title{font-size:14px;margin-bottom:0}.card-dashboard-twentyfour .card-body{padding:15px 20px 20px}.card-dashboard-twentyfour .card-body-top{display:flex;margin-bottom:20px}.card-dashboard-twentyfour .card-body-top h6{color:#1c273c;font-size:18px;font-weight:600;font-family:"Archivo",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";margin-bottom:0;letter-spacing:-.75px}@media (min-width: 576px){.card-dashboard-twentyfour .card-body-top h6{font-size:22px}}.card-dashboard-twentyfour .card-body-top h6 small{font-weight:600}.card-dashboard-twentyfour .card-body-top h6 span{color:#97a3b9;font-weight:400;letter-spacing:normal}.card-dashboard-twentyfour .card-body-top label{display:block;margin-bottom:0;color:#7987a1;font-size:11px}@media (min-width: 576px){.card-dashboard-twentyfour .card-body-top label{font-size:.875rem}}.card-dashboard-twentyfour .card-body-top>div+div{margin-left:30px}.card-dashboard-twentyfour .az-content-label,.card-dashboard-twentyfour .card-table-two .card-title,.card-table-two .card-dashboard-twentyfour .card-title,.card-dashboard-twentyfour .card-dashboard-eight .card-title,.card-dashboard-eight .card-dashboard-twentyfour .card-title{font-size:10px;color:#031b4e;letter-spacing:.5px;margin-bottom:0}.card-dashboard-twentyfour .chart-legend{display:flex;align-items:center;font-size:10px;font-weight:500;text-transform:uppercase;letter-spacing:.5px;line-height:.6}.card-dashboard-twentyfour .chart-legend span{display:inline-block;width:7px;height:7px;margin-right:5px}.card-dashboard-twentyfour .chart-legend>div{display:flex;align-items:center}.card-dashboard-twentyfour .chart-legend>div+div{margin-left:20px}.card-dashboard-twentyfour .chart-wrapper{position:relative;margin-right:-10px}.card-dashboard-twentyfour .flot-chart{width:100%;height:130px}.card-dashboard-twentyfive .card-title{font-size:14px;margin-bottom:15px}.card-dashboard-twentyfive .col+.col{border-left:1px solid #cdd4e0}.card-dashboard-twentyfive .card-label{display:block;text-transform:uppercase;font-size:11px;font-weight:500;letter-spacing:.5px;margin-bottom:2px;color:#97a3b9;white-space:nowrap}.card-dashboard-twentyfive .card-value{font-size:22px;font-weight:600;font-family:"Archivo",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";color:#1c273c;margin-bottom:0;letter-spacing:-1px}.card-dashboard-twentyfive .chart-wrapper{position:relative;margin:0 -8px -5px}.card-dashboard-twentyfive .flot-chart{width:100%;height:35px}.card-dashboard-twentysix .card-header{padding:15px 15px 10px;background-color:transparent;display:flex;align-items:center;justify-content:space-between}.card-dashboard-twentysix .card-title{margin-bottom:0;text-transform:uppercase}.card-dashboard-twentysix .chart-legend{display:flex;align-items:center}.card-dashboard-twentysix .chart-legend>div{font-size:10px;font-weight:500;text-transform:uppercase;letter-spacing:.5px}.card-dashboard-twentysix .chart-legend>div+div{margin-left:15px}.card-dashboard-twentysix .chart-legend span{display:inline-block;width:8px;height:8px;margin-right:2px}.card-dashboard-twentysix .card-body{padding:0;position:relative;overflow:hidden}.card-dashboard-twentysix .card-body h6{margin-bottom:0;color:#1c273c;font-size:22px;font-weight:600;font-family:"Archivo",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";letter-spacing:-.5px;line-height:1}.card-dashboard-twentysix .card-body h6 span{font-weight:400;font-size:18px;letter-spacing:-1px}.card-dashboard-twentysix .card-body label{font-size:12px;margin-bottom:0;color:#97a3b9}.card-dashboard-twentysix .chart-wrapper{position:relative;margin:-30px -18px -15px -18px}.card-dashboard-twentysix .flot-chart{width:100%;height:120px}.card-dashboard-twentysix .flot-chart .flot-x-axis>div{font-size:10px;letter-spacing:.5px;text-transform:uppercase;color:rgba(255,255,255,0.75);transform:translateY(-20px)}.card-dashboard-twentysix .flot-chart .flot-y-axis>div{font-size:10px;transform:translateX(33px);color:rgba(28,39,60,0.5)}.card-dashboard-twentysix.card-dark-one .card-title,.card-dashboard-twentysix.card-dark-two .card-title{color:#fff}.card-dashboard-twentysix.card-dark-one .card-body h6,.card-dashboard-twentysix.card-dark-two .card-body h6{color:#fff}.card-dashboard-twentysix.card-dark-one .card-body h6 span,.card-dashboard-twentysix.card-dark-two .card-body h6 span{color:rgba(255,255,255,0.5)}.card-dashboard-twentysix.card-dark-one .card-body label,.card-dashboard-twentysix.card-dark-two .card-body label{color:rgba(255,255,255,0.7)}.card-dashboard-twentysix.card-dark-one .flot-chart .flot-y-axis>div,.card-dashboard-twentysix.card-dark-two .flot-chart .flot-y-axis>div{color:rgba(255,255,255,0.2)}.card-dashboard-twentysix.card-dark-one{background-color:#0039e6;background-image:linear-gradient(to bottom, #1f05f0 0%, #0039e6 100%);background-repeat:repeat-x}.card-dashboard-twentysix.card-dark-two{background-color:#0040ff;background-image:linear-gradient(to bottom, #0a47ff 0%, #36f 100%);background-repeat:repeat-x}.az-rating-value{font-size:40px;font-weight:400;font-family:"Archivo",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";color:#1c273c;margin-bottom:0;letter-spacing:-.5px;line-height:.7}.az-rating-label{margin-bottom:10px;font-size:10px;font-weight:500;text-transform:uppercase;letter-spacing:.5px}.az-media-list-reviews .media+.media{margin-top:25px}.az-media-list-reviews .az-img-user{width:32px;height:32px}.az-media-list-reviews .az-img-user::after{display:none}.az-media-list-reviews .media-body{margin-left:15px}.az-media-list-reviews .media-body h6{margin-bottom:2px;line-height:1}.az-media-list-reviews .media-body small{display:inline-block;font-size:12px;color:#97a3b9;line-height:1}.az-star-group{display:flex;align-items:center}.az-star-group span:last-child{display:block;font-weight:500;font-size:11px;margin-left:5px;color:#7987a1}.az-star-item{color:#36f;font-size:14px;position:relative}.az-star-item+.az-star-item{margin-left:3px}.az-media-list-activity .media+.media{margin-top:25px}.az-media-list-activity .media-icon{width:32px;height:32px;display:flex;align-items:center;justify-content:center;color:#fff;border-radius:100%}.az-media-list-activity .media-icon i{font-size:21px;line-height:0}.az-media-list-activity .media-icon i.typcn{line-height:.9}.az-media-list-activity .media-body{margin-left:15px}.az-media-list-activity .media-body h6{margin-bottom:2px;color:#1c273c}.az-media-list-activity .media-body span{display:block;font-size:11px;color:#97a3b9}.az-media-list-activity .media-right{font-size:11px;color:#97a3b9}.bg-transparent{background-color:transparent}.bg-gray-100{background-color:#f4f5f8}.bg-gray-200{background-color:#e3e7ed}.bg-gray-300{background-color:#cdd4e0}.bg-gray-400{background-color:#b4bdce}.bg-gray-500{background-color:#97a3b9}.bg-gray-600{background-color:#7987a1}.bg-gray-700{background-color:#596882}.bg-gray-800{background-color:#3b4863}.bg-gray-900{background-color:#1c273c}.bg-white-1{background-color:rgba(255,255,255,0.1)}.bg-white-2{background-color:rgba(255,255,255,0.2)}.bg-white-3{background-color:rgba(255,255,255,0.3)}.bg-white-4{background-color:rgba(255,255,255,0.4)}.bg-white-5{background-color:rgba(255,255,255,0.5)}.bg-white-6{background-color:rgba(255,255,255,0.6)}.bg-white-7{background-color:rgba(255,255,255,0.7)}.bg-white-8{background-color:rgba(255,255,255,0.8)}.bg-white-9{background-color:rgba(255,255,255,0.9)}.bg-black-1{background-color:rgba(0,0,0,0.1)}.bg-black-2{background-color:rgba(0,0,0,0.2)}.bg-black-3{background-color:rgba(0,0,0,0.3)}.bg-black-4{background-color:rgba(0,0,0,0.4)}.bg-black-5{background-color:rgba(0,0,0,0.5)}.bg-black-6{background-color:rgba(0,0,0,0.6)}.bg-black-7{background-color:rgba(0,0,0,0.7)}.bg-black-8{background-color:rgba(0,0,0,0.8)}.bg-black-9{background-color:rgba(0,0,0,0.9)}.bg-indigo{background-color:#5b47fb}.bg-purple{background-color:#6f42c1}.bg-pink{background-color:#f10075}.bg-orange{background-color:#fd7e14}.bg-teal{background-color:#0cc}.bg-purple-dark{background-color:#59339d}.bd-transparent{border-color:transparent}.bd{border:1px solid #cdd4e0}.bd-t{border-top:1px solid #cdd4e0}.bd-r{border-right:1px solid #cdd4e0}.bd-b{border-bottom:1px solid #cdd4e0}.bd-l{border-left:1px solid #cdd4e0}.bd-y{border-top:1px solid #cdd4e0;border-bottom:1px solid #cdd4e0}.bd-x{border-left:1px solid #cdd4e0;border-right:1px solid #cdd4e0}.bd-0{border-width:0}.bd-1{border-width:1px}.bd-2{border-width:2px}.bd-3{border-width:3px}.bd-4{border-width:4px}.bd-5{border-width:5px}.bd-t-0{border-top:0}.bd-r-0{border-right:0}.bd-b-0{border-bottom:0}.bd-l-0{border-left:0}.bd-t-0-f{border-top:0 !important}.bd-r-0-f{border-right:0 !important}.bd-b-0-f{border-bottom:0 !important}.bd-l-0-f{border-left:0 !important}.bd-y-0{border-top-width:0;border-bottom-width:0}.bd-y-1{border-top-width:1px;border-bottom-width:1px}.bd-x-0{border-left-width:0;border-right-width:0}.bd-x-1{border-left-width:1px;border-right-width:1px}.bd-primary{border-color:#36f}.bd-success{border-color:#3bb001}.bd-warning{border-color:#ffc107}.bd-danger{border-color:#dc3545}.bd-info{border-color:#17a2b8}.bd-white{border-color:#fff}.bd-gray-100{border-color:#f4f5f8}.bd-gray-200{border-color:#e3e7ed}.bd-gray-300{border-color:#cdd4e0}.bd-gray-400{border-color:#b4bdce}.bd-gray-500{border-color:#97a3b9}.bd-gray-600{border-color:#7987a1}.bd-gray-700{border-color:#596882}.bd-gray-800{border-color:#3b4863}.bd-gray-900{border-color:#1c273c}.bd-white-1{border-color:rgba(255,255,255,0.1)}.bd-white-2{border-color:rgba(255,255,255,0.2)}.bd-white-3{border-color:rgba(255,255,255,0.3)}.bd-white-4{border-color:rgba(255,255,255,0.4)}.bd-white-5{border-color:rgba(255,255,255,0.5)}.bd-white-6{border-color:rgba(255,255,255,0.6)}.bd-white-7{border-color:rgba(255,255,255,0.7)}.bd-white-8{border-color:rgba(255,255,255,0.8)}.rounded-5{border-radius:5px}.rounded-10{border-radius:10px}.rounded-20{border-radius:20px}.rounded-30{border-radius:30px}.rounded-40{border-radius:40px}.rounded-50{border-radius:50px}.bd-dashed{border-style:dashed}.bd-dotted{border-style:dotted}@media (min-width: 480px){.bd-xs{border:1px solid #cdd4e0}.bd-xs-t{border-top:1px solid #cdd4e0}.bd-xs-r{border-right:1px solid #cdd4e0}.bd-xs-b{border-bottom:1px solid #cdd4e0}.bd-xs-l{border-left:1px solid #cdd4e0}.bd-xs-y{border-top:1px solid #cdd4e0;border-bottom:1px solid #cdd4e0}.bd-xs-x{border-left:1px solid #cdd4e0;border-right:1px solid #cdd4e0}}@media (min-width: 576px){.bd-sm{border:1px solid #cdd4e0}.bd-sm-t{border-top:1px solid #cdd4e0}.bd-sm-r{border-right:1px solid #cdd4e0}.bd-sm-b{border-bottom:1px solid #cdd4e0}.bd-sm-l{border-left:1px solid #cdd4e0}.bd-sm-y{border-top:1px solid #cdd4e0;border-bottom:1px solid #cdd4e0}.bd-sm-x{border-left:1px solid #cdd4e0;border-right:1px solid #cdd4e0}}@media (min-width: 768px){.bd-md{border:1px solid #cdd4e0}.bd-md-t{border-top:1px solid #cdd4e0}.bd-md-r{border-right:1px solid #cdd4e0}.bd-md-b{border-bottom:1px solid #cdd4e0}.bd-md-l{border-left:1px solid #cdd4e0}.bd-md-y{border-top:1px solid #cdd4e0;border-bottom:1px solid #cdd4e0}.bd-md-x{border-left:1px solid #cdd4e0;border-right:1px solid #cdd4e0}}@media (min-width: 992px){.bd-lg{border:1px solid #cdd4e0}.bd-lg-t{border-top:1px solid #cdd4e0}.bd-lg-r{border-right:1px solid #cdd4e0}.bd-lg-b{border-bottom:1px solid #cdd4e0}.bd-lg-l{border-left:1px solid #cdd4e0}.bd-lg-y{border-top:1px solid #cdd4e0;border-bottom:1px solid #cdd4e0}.bd-lg-x{border-left:1px solid #cdd4e0;border-right:1px solid #cdd4e0}}@media (min-width: 1200px){.bd-xl{border:1px solid #cdd4e0}.bd-xl-t{border-top:1px solid #cdd4e0}.bd-xl-r{border-right:1px solid #cdd4e0}.bd-xl-b{border-bottom:1px solid #cdd4e0}.bd-xl-l{border-left:1px solid #cdd4e0}.bd-xl-y{border-top:1px solid #cdd4e0;border-bottom:1px solid #cdd4e0}.bd-xl-x{border-left:1px solid #cdd4e0;border-right:1px solid #cdd4e0}}.ht-5{height:5px}.ht-5p{height:5%}.mx-ht-5p{max-height:5%}.mn-ht-5p{min-height:5%}.ht-5-f{height:5px !important}.ht-5p-f{height:5% !important}.ht-10{height:10px}.ht-10p{height:10%}.mx-ht-10p{max-height:10%}.mn-ht-10p{min-height:10%}.ht-10-f{height:10px !important}.ht-10p-f{height:10% !important}.ht-15{height:15px}.ht-15p{height:15%}.mx-ht-15p{max-height:15%}.mn-ht-15p{min-height:15%}.ht-15-f{height:15px !important}.ht-15p-f{height:15% !important}.ht-20{height:20px}.ht-20p{height:20%}.mx-ht-20p{max-height:20%}.mn-ht-20p{min-height:20%}.ht-20-f{height:20px !important}.ht-20p-f{height:20% !important}.ht-25{height:25px}.ht-25p{height:25%}.mx-ht-25p{max-height:25%}.mn-ht-25p{min-height:25%}.ht-25-f{height:25px !important}.ht-25p-f{height:25% !important}.ht-30{height:30px}.ht-30p{height:30%}.mx-ht-30p{max-height:30%}.mn-ht-30p{min-height:30%}.ht-30-f{height:30px !important}.ht-30p-f{height:30% !important}.ht-35{height:35px}.ht-35p{height:35%}.mx-ht-35p{max-height:35%}.mn-ht-35p{min-height:35%}.ht-35-f{height:35px !important}.ht-35p-f{height:35% !important}.ht-40{height:40px}.ht-40p{height:40%}.mx-ht-40p{max-height:40%}.mn-ht-40p{min-height:40%}.ht-40-f{height:40px !important}.ht-40p-f{height:40% !important}.ht-45{height:45px}.ht-45p{height:45%}.mx-ht-45p{max-height:45%}.mn-ht-45p{min-height:45%}.ht-45-f{height:45px !important}.ht-45p-f{height:45% !important}.ht-50{height:50px}.ht-50p{height:50%}.mx-ht-50p{max-height:50%}.mn-ht-50p{min-height:50%}.ht-50-f{height:50px !important}.ht-50p-f{height:50% !important}.ht-55{height:55px}.ht-55p{height:55%}.mx-ht-55p{max-height:55%}.mn-ht-55p{min-height:55%}.ht-55-f{height:55px !important}.ht-55p-f{height:55% !important}.ht-60{height:60px}.ht-60p{height:60%}.mx-ht-60p{max-height:60%}.mn-ht-60p{min-height:60%}.ht-60-f{height:60px !important}.ht-60p-f{height:60% !important}.ht-65{height:65px}.ht-65p{height:65%}.mx-ht-65p{max-height:65%}.mn-ht-65p{min-height:65%}.ht-65-f{height:65px !important}.ht-65p-f{height:65% !important}.ht-70{height:70px}.ht-70p{height:70%}.mx-ht-70p{max-height:70%}.mn-ht-70p{min-height:70%}.ht-70-f{height:70px !important}.ht-70p-f{height:70% !important}.ht-75{height:75px}.ht-75p{height:75%}.mx-ht-75p{max-height:75%}.mn-ht-75p{min-height:75%}.ht-75-f{height:75px !important}.ht-75p-f{height:75% !important}.ht-80{height:80px}.ht-80p{height:80%}.mx-ht-80p{max-height:80%}.mn-ht-80p{min-height:80%}.ht-80-f{height:80px !important}.ht-80p-f{height:80% !important}.ht-85{height:85px}.ht-85p{height:85%}.mx-ht-85p{max-height:85%}.mn-ht-85p{min-height:85%}.ht-85-f{height:85px !important}.ht-85p-f{height:85% !important}.ht-90{height:90px}.ht-90p{height:90%}.mx-ht-90p{max-height:90%}.mn-ht-90p{min-height:90%}.ht-90-f{height:90px !important}.ht-90p-f{height:90% !important}.ht-95{height:95px}.ht-95p{height:95%}.mx-ht-95p{max-height:95%}.mn-ht-95p{min-height:95%}.ht-95-f{height:95px !important}.ht-95p-f{height:95% !important}.ht-100{height:100px}.ht-100p{height:100%}.mx-ht-100p{max-height:100%}.mn-ht-100p{min-height:100%}.ht-100-f{height:100px !important}.ht-100p-f{height:100% !important}.ht-150{height:150px}.ht-200{height:200px}.ht-250{height:250px}.ht-300{height:300px}.ht-350{height:350px}.ht-400{height:400px}.ht-450{height:450px}.ht-500{height:500px}.ht-550{height:550px}.ht-600{height:600px}.ht-650{height:650px}.ht-700{height:700px}.ht-750{height:750px}.ht-800{height:800px}.ht-100v{height:100vh}.ht-1{height:1px}.ht-2{height:2px}.ht-3{height:3px}.ht-4{height:4px}.ht-6{height:6px}.ht-7{height:7px}.ht-8{height:8px}.ht-9{height:9px}.ht-auto{height:auto}.ht-16{height:16px}.ht-32{height:32px}.ht-36{height:36px}.ht-48{height:48px}.ht-64{height:64px}.ht-72{height:72px}.ht-115{height:115px}.ht-120{height:120px}.ht-160{height:160px}@media (min-width: 480px){.ht-xs-5{height:5px}.ht-xs-5p{height:5%}.mx-ht-xs-5p{max-height:5%}.mn-ht-xs-5p{min-height:5%}.ht-xs-5-f{height:5px !important}.ht-xs-5p-f{height:5% !important}.ht-xs-10{height:10px}.ht-xs-10p{height:10%}.mx-ht-xs-10p{max-height:10%}.mn-ht-xs-10p{min-height:10%}.ht-xs-10-f{height:10px !important}.ht-xs-10p-f{height:10% !important}.ht-xs-15{height:15px}.ht-xs-15p{height:15%}.mx-ht-xs-15p{max-height:15%}.mn-ht-xs-15p{min-height:15%}.ht-xs-15-f{height:15px !important}.ht-xs-15p-f{height:15% !important}.ht-xs-20{height:20px}.ht-xs-20p{height:20%}.mx-ht-xs-20p{max-height:20%}.mn-ht-xs-20p{min-height:20%}.ht-xs-20-f{height:20px !important}.ht-xs-20p-f{height:20% !important}.ht-xs-25{height:25px}.ht-xs-25p{height:25%}.mx-ht-xs-25p{max-height:25%}.mn-ht-xs-25p{min-height:25%}.ht-xs-25-f{height:25px !important}.ht-xs-25p-f{height:25% !important}.ht-xs-30{height:30px}.ht-xs-30p{height:30%}.mx-ht-xs-30p{max-height:30%}.mn-ht-xs-30p{min-height:30%}.ht-xs-30-f{height:30px !important}.ht-xs-30p-f{height:30% !important}.ht-xs-35{height:35px}.ht-xs-35p{height:35%}.mx-ht-xs-35p{max-height:35%}.mn-ht-xs-35p{min-height:35%}.ht-xs-35-f{height:35px !important}.ht-xs-35p-f{height:35% !important}.ht-xs-40{height:40px}.ht-xs-40p{height:40%}.mx-ht-xs-40p{max-height:40%}.mn-ht-xs-40p{min-height:40%}.ht-xs-40-f{height:40px !important}.ht-xs-40p-f{height:40% !important}.ht-xs-45{height:45px}.ht-xs-45p{height:45%}.mx-ht-xs-45p{max-height:45%}.mn-ht-xs-45p{min-height:45%}.ht-xs-45-f{height:45px !important}.ht-xs-45p-f{height:45% !important}.ht-xs-50{height:50px}.ht-xs-50p{height:50%}.mx-ht-xs-50p{max-height:50%}.mn-ht-xs-50p{min-height:50%}.ht-xs-50-f{height:50px !important}.ht-xs-50p-f{height:50% !important}.ht-xs-55{height:55px}.ht-xs-55p{height:55%}.mx-ht-xs-55p{max-height:55%}.mn-ht-xs-55p{min-height:55%}.ht-xs-55-f{height:55px !important}.ht-xs-55p-f{height:55% !important}.ht-xs-60{height:60px}.ht-xs-60p{height:60%}.mx-ht-xs-60p{max-height:60%}.mn-ht-xs-60p{min-height:60%}.ht-xs-60-f{height:60px !important}.ht-xs-60p-f{height:60% !important}.ht-xs-65{height:65px}.ht-xs-65p{height:65%}.mx-ht-xs-65p{max-height:65%}.mn-ht-xs-65p{min-height:65%}.ht-xs-65-f{height:65px !important}.ht-xs-65p-f{height:65% !important}.ht-xs-70{height:70px}.ht-xs-70p{height:70%}.mx-ht-xs-70p{max-height:70%}.mn-ht-xs-70p{min-height:70%}.ht-xs-70-f{height:70px !important}.ht-xs-70p-f{height:70% !important}.ht-xs-75{height:75px}.ht-xs-75p{height:75%}.mx-ht-xs-75p{max-height:75%}.mn-ht-xs-75p{min-height:75%}.ht-xs-75-f{height:75px !important}.ht-xs-75p-f{height:75% !important}.ht-xs-80{height:80px}.ht-xs-80p{height:80%}.mx-ht-xs-80p{max-height:80%}.mn-ht-xs-80p{min-height:80%}.ht-xs-80-f{height:80px !important}.ht-xs-80p-f{height:80% !important}.ht-xs-85{height:85px}.ht-xs-85p{height:85%}.mx-ht-xs-85p{max-height:85%}.mn-ht-xs-85p{min-height:85%}.ht-xs-85-f{height:85px !important}.ht-xs-85p-f{height:85% !important}.ht-xs-90{height:90px}.ht-xs-90p{height:90%}.mx-ht-xs-90p{max-height:90%}.mn-ht-xs-90p{min-height:90%}.ht-xs-90-f{height:90px !important}.ht-xs-90p-f{height:90% !important}.ht-xs-95{height:95px}.ht-xs-95p{height:95%}.mx-ht-xs-95p{max-height:95%}.mn-ht-xs-95p{min-height:95%}.ht-xs-95-f{height:95px !important}.ht-xs-95p-f{height:95% !important}.ht-xs-100{height:100px}.ht-xs-100p{height:100%}.mx-ht-xs-100p{max-height:100%}.mn-ht-xs-100p{min-height:100%}.ht-xs-100-f{height:100px !important}.ht-xs-100p-f{height:100% !important}.ht-xs-150{height:150px}.ht-xs-150p{height:150%}.mx-ht-xs-150p{max-height:150%}.mn-ht-xs-150p{min-height:150%}.ht-xs-150-f{height:150px !important}.ht-xs-150p-f{height:150% !important}.ht-xs-200{height:200px}.ht-xs-200p{height:200%}.mx-ht-xs-200p{max-height:200%}.mn-ht-xs-200p{min-height:200%}.ht-xs-200-f{height:200px !important}.ht-xs-200p-f{height:200% !important}.ht-xs-250{height:250px}.ht-xs-250p{height:250%}.mx-ht-xs-250p{max-height:250%}.mn-ht-xs-250p{min-height:250%}.ht-xs-250-f{height:250px !important}.ht-xs-250p-f{height:250% !important}.ht-xs-300{height:300px}.ht-xs-300p{height:300%}.mx-ht-xs-300p{max-height:300%}.mn-ht-xs-300p{min-height:300%}.ht-xs-300-f{height:300px !important}.ht-xs-300p-f{height:300% !important}.ht-xs-350{height:350px}.ht-xs-350p{height:350%}.mx-ht-xs-350p{max-height:350%}.mn-ht-xs-350p{min-height:350%}.ht-xs-350-f{height:350px !important}.ht-xs-350p-f{height:350% !important}.ht-xs-400{height:400px}.ht-xs-400p{height:400%}.mx-ht-xs-400p{max-height:400%}.mn-ht-xs-400p{min-height:400%}.ht-xs-400-f{height:400px !important}.ht-xs-400p-f{height:400% !important}.ht-xs-450{height:450px}.ht-xs-450p{height:450%}.mx-ht-xs-450p{max-height:450%}.mn-ht-xs-450p{min-height:450%}.ht-xs-450-f{height:450px !important}.ht-xs-450p-f{height:450% !important}.ht-xs-500{height:500px}.ht-xs-500p{height:500%}.mx-ht-xs-500p{max-height:500%}.mn-ht-xs-500p{min-height:500%}.ht-xs-500-f{height:500px !important}.ht-xs-500p-f{height:500% !important}.ht-xs-550{height:550px}.ht-xs-550p{height:550%}.mx-ht-xs-550p{max-height:550%}.mn-ht-xs-550p{min-height:550%}.ht-xs-550-f{height:550px !important}.ht-xs-550p-f{height:550% !important}.ht-xs-600{height:600px}.ht-xs-600p{height:600%}.mx-ht-xs-600p{max-height:600%}.mn-ht-xs-600p{min-height:600%}.ht-xs-600-f{height:600px !important}.ht-xs-600p-f{height:600% !important}.ht-xs-650{height:650px}.ht-xs-650p{height:650%}.mx-ht-xs-650p{max-height:650%}.mn-ht-xs-650p{min-height:650%}.ht-xs-650-f{height:650px !important}.ht-xs-650p-f{height:650% !important}.ht-xs-700{height:700px}.ht-xs-700p{height:700%}.mx-ht-xs-700p{max-height:700%}.mn-ht-xs-700p{min-height:700%}.ht-xs-700-f{height:700px !important}.ht-xs-700p-f{height:700% !important}.ht-xs-750{height:750px}.ht-xs-750p{height:750%}.mx-ht-xs-750p{max-height:750%}.mn-ht-xs-750p{min-height:750%}.ht-xs-750-f{height:750px !important}.ht-xs-750p-f{height:750% !important}.ht-xs-800{height:800px}.ht-xs-800p{height:800%}.mx-ht-xs-800p{max-height:800%}.mn-ht-xs-800p{min-height:800%}.ht-xs-800-f{height:800px !important}.ht-xs-800p-f{height:800% !important}.ht-xs-850{height:850px}.ht-xs-850p{height:850%}.mx-ht-xs-850p{max-height:850%}.mn-ht-xs-850p{min-height:850%}.ht-xs-850-f{height:850px !important}.ht-xs-850p-f{height:850% !important}.ht-xs-100v{height:100vh}}@media (min-width: 576px){.ht-sm-5{height:5px}.ht-sm-5p{height:5%}.mx-ht-sm-5p{max-height:5%}.mn-ht-sm-5p{min-height:5%}.ht-sm-5-f{height:5px !important}.ht-sm-5p-f{height:5% !important}.ht-sm-10{height:10px}.ht-sm-10p{height:10%}.mx-ht-sm-10p{max-height:10%}.mn-ht-sm-10p{min-height:10%}.ht-sm-10-f{height:10px !important}.ht-sm-10p-f{height:10% !important}.ht-sm-15{height:15px}.ht-sm-15p{height:15%}.mx-ht-sm-15p{max-height:15%}.mn-ht-sm-15p{min-height:15%}.ht-sm-15-f{height:15px !important}.ht-sm-15p-f{height:15% !important}.ht-sm-20{height:20px}.ht-sm-20p{height:20%}.mx-ht-sm-20p{max-height:20%}.mn-ht-sm-20p{min-height:20%}.ht-sm-20-f{height:20px !important}.ht-sm-20p-f{height:20% !important}.ht-sm-25{height:25px}.ht-sm-25p{height:25%}.mx-ht-sm-25p{max-height:25%}.mn-ht-sm-25p{min-height:25%}.ht-sm-25-f{height:25px !important}.ht-sm-25p-f{height:25% !important}.ht-sm-30{height:30px}.ht-sm-30p{height:30%}.mx-ht-sm-30p{max-height:30%}.mn-ht-sm-30p{min-height:30%}.ht-sm-30-f{height:30px !important}.ht-sm-30p-f{height:30% !important}.ht-sm-35{height:35px}.ht-sm-35p{height:35%}.mx-ht-sm-35p{max-height:35%}.mn-ht-sm-35p{min-height:35%}.ht-sm-35-f{height:35px !important}.ht-sm-35p-f{height:35% !important}.ht-sm-40{height:40px}.ht-sm-40p{height:40%}.mx-ht-sm-40p{max-height:40%}.mn-ht-sm-40p{min-height:40%}.ht-sm-40-f{height:40px !important}.ht-sm-40p-f{height:40% !important}.ht-sm-45{height:45px}.ht-sm-45p{height:45%}.mx-ht-sm-45p{max-height:45%}.mn-ht-sm-45p{min-height:45%}.ht-sm-45-f{height:45px !important}.ht-sm-45p-f{height:45% !important}.ht-sm-50{height:50px}.ht-sm-50p{height:50%}.mx-ht-sm-50p{max-height:50%}.mn-ht-sm-50p{min-height:50%}.ht-sm-50-f{height:50px !important}.ht-sm-50p-f{height:50% !important}.ht-sm-55{height:55px}.ht-sm-55p{height:55%}.mx-ht-sm-55p{max-height:55%}.mn-ht-sm-55p{min-height:55%}.ht-sm-55-f{height:55px !important}.ht-sm-55p-f{height:55% !important}.ht-sm-60{height:60px}.ht-sm-60p{height:60%}.mx-ht-sm-60p{max-height:60%}.mn-ht-sm-60p{min-height:60%}.ht-sm-60-f{height:60px !important}.ht-sm-60p-f{height:60% !important}.ht-sm-65{height:65px}.ht-sm-65p{height:65%}.mx-ht-sm-65p{max-height:65%}.mn-ht-sm-65p{min-height:65%}.ht-sm-65-f{height:65px !important}.ht-sm-65p-f{height:65% !important}.ht-sm-70{height:70px}.ht-sm-70p{height:70%}.mx-ht-sm-70p{max-height:70%}.mn-ht-sm-70p{min-height:70%}.ht-sm-70-f{height:70px !important}.ht-sm-70p-f{height:70% !important}.ht-sm-75{height:75px}.ht-sm-75p{height:75%}.mx-ht-sm-75p{max-height:75%}.mn-ht-sm-75p{min-height:75%}.ht-sm-75-f{height:75px !important}.ht-sm-75p-f{height:75% !important}.ht-sm-80{height:80px}.ht-sm-80p{height:80%}.mx-ht-sm-80p{max-height:80%}.mn-ht-sm-80p{min-height:80%}.ht-sm-80-f{height:80px !important}.ht-sm-80p-f{height:80% !important}.ht-sm-85{height:85px}.ht-sm-85p{height:85%}.mx-ht-sm-85p{max-height:85%}.mn-ht-sm-85p{min-height:85%}.ht-sm-85-f{height:85px !important}.ht-sm-85p-f{height:85% !important}.ht-sm-90{height:90px}.ht-sm-90p{height:90%}.mx-ht-sm-90p{max-height:90%}.mn-ht-sm-90p{min-height:90%}.ht-sm-90-f{height:90px !important}.ht-sm-90p-f{height:90% !important}.ht-sm-95{height:95px}.ht-sm-95p{height:95%}.mx-ht-sm-95p{max-height:95%}.mn-ht-sm-95p{min-height:95%}.ht-sm-95-f{height:95px !important}.ht-sm-95p-f{height:95% !important}.ht-sm-100{height:100px}.ht-sm-100p{height:100%}.mx-ht-sm-100p{max-height:100%}.mn-ht-sm-100p{min-height:100%}.ht-sm-100-f{height:100px !important}.ht-sm-100p-f{height:100% !important}.ht-sm-150{height:150px}.ht-sm-150p{height:150%}.mx-ht-sm-150p{max-height:150%}.mn-ht-sm-150p{min-height:150%}.ht-sm-150-f{height:150px !important}.ht-sm-150p-f{height:150% !important}.ht-sm-200{height:200px}.ht-sm-200p{height:200%}.mx-ht-sm-200p{max-height:200%}.mn-ht-sm-200p{min-height:200%}.ht-sm-200-f{height:200px !important}.ht-sm-200p-f{height:200% !important}.ht-sm-250{height:250px}.ht-sm-250p{height:250%}.mx-ht-sm-250p{max-height:250%}.mn-ht-sm-250p{min-height:250%}.ht-sm-250-f{height:250px !important}.ht-sm-250p-f{height:250% !important}.ht-sm-300{height:300px}.ht-sm-300p{height:300%}.mx-ht-sm-300p{max-height:300%}.mn-ht-sm-300p{min-height:300%}.ht-sm-300-f{height:300px !important}.ht-sm-300p-f{height:300% !important}.ht-sm-350{height:350px}.ht-sm-350p{height:350%}.mx-ht-sm-350p{max-height:350%}.mn-ht-sm-350p{min-height:350%}.ht-sm-350-f{height:350px !important}.ht-sm-350p-f{height:350% !important}.ht-sm-400{height:400px}.ht-sm-400p{height:400%}.mx-ht-sm-400p{max-height:400%}.mn-ht-sm-400p{min-height:400%}.ht-sm-400-f{height:400px !important}.ht-sm-400p-f{height:400% !important}.ht-sm-450{height:450px}.ht-sm-450p{height:450%}.mx-ht-sm-450p{max-height:450%}.mn-ht-sm-450p{min-height:450%}.ht-sm-450-f{height:450px !important}.ht-sm-450p-f{height:450% !important}.ht-sm-500{height:500px}.ht-sm-500p{height:500%}.mx-ht-sm-500p{max-height:500%}.mn-ht-sm-500p{min-height:500%}.ht-sm-500-f{height:500px !important}.ht-sm-500p-f{height:500% !important}.ht-sm-550{height:550px}.ht-sm-550p{height:550%}.mx-ht-sm-550p{max-height:550%}.mn-ht-sm-550p{min-height:550%}.ht-sm-550-f{height:550px !important}.ht-sm-550p-f{height:550% !important}.ht-sm-600{height:600px}.ht-sm-600p{height:600%}.mx-ht-sm-600p{max-height:600%}.mn-ht-sm-600p{min-height:600%}.ht-sm-600-f{height:600px !important}.ht-sm-600p-f{height:600% !important}.ht-sm-650{height:650px}.ht-sm-650p{height:650%}.mx-ht-sm-650p{max-height:650%}.mn-ht-sm-650p{min-height:650%}.ht-sm-650-f{height:650px !important}.ht-sm-650p-f{height:650% !important}.ht-sm-700{height:700px}.ht-sm-700p{height:700%}.mx-ht-sm-700p{max-height:700%}.mn-ht-sm-700p{min-height:700%}.ht-sm-700-f{height:700px !important}.ht-sm-700p-f{height:700% !important}.ht-sm-750{height:750px}.ht-sm-750p{height:750%}.mx-ht-sm-750p{max-height:750%}.mn-ht-sm-750p{min-height:750%}.ht-sm-750-f{height:750px !important}.ht-sm-750p-f{height:750% !important}.ht-sm-800{height:800px}.ht-sm-800p{height:800%}.mx-ht-sm-800p{max-height:800%}.mn-ht-sm-800p{min-height:800%}.ht-sm-800-f{height:800px !important}.ht-sm-800p-f{height:800% !important}.ht-sm-850{height:850px}.ht-sm-850p{height:850%}.mx-ht-sm-850p{max-height:850%}.mn-ht-sm-850p{min-height:850%}.ht-sm-850-f{height:850px !important}.ht-sm-850p-f{height:850% !important}.ht-sm-100v{height:100vh}}@media (min-width: 768px){.ht-md-5{height:5px}.ht-md-5p{height:5%}.mx-ht-md-5p{max-height:5%}.mn-ht-md-5p{min-height:5%}.ht-md-5-f{height:5px !important}.ht-md-5p-f{height:5% !important}.ht-md-10{height:10px}.ht-md-10p{height:10%}.mx-ht-md-10p{max-height:10%}.mn-ht-md-10p{min-height:10%}.ht-md-10-f{height:10px !important}.ht-md-10p-f{height:10% !important}.ht-md-15{height:15px}.ht-md-15p{height:15%}.mx-ht-md-15p{max-height:15%}.mn-ht-md-15p{min-height:15%}.ht-md-15-f{height:15px !important}.ht-md-15p-f{height:15% !important}.ht-md-20{height:20px}.ht-md-20p{height:20%}.mx-ht-md-20p{max-height:20%}.mn-ht-md-20p{min-height:20%}.ht-md-20-f{height:20px !important}.ht-md-20p-f{height:20% !important}.ht-md-25{height:25px}.ht-md-25p{height:25%}.mx-ht-md-25p{max-height:25%}.mn-ht-md-25p{min-height:25%}.ht-md-25-f{height:25px !important}.ht-md-25p-f{height:25% !important}.ht-md-30{height:30px}.ht-md-30p{height:30%}.mx-ht-md-30p{max-height:30%}.mn-ht-md-30p{min-height:30%}.ht-md-30-f{height:30px !important}.ht-md-30p-f{height:30% !important}.ht-md-35{height:35px}.ht-md-35p{height:35%}.mx-ht-md-35p{max-height:35%}.mn-ht-md-35p{min-height:35%}.ht-md-35-f{height:35px !important}.ht-md-35p-f{height:35% !important}.ht-md-40{height:40px}.ht-md-40p{height:40%}.mx-ht-md-40p{max-height:40%}.mn-ht-md-40p{min-height:40%}.ht-md-40-f{height:40px !important}.ht-md-40p-f{height:40% !important}.ht-md-45{height:45px}.ht-md-45p{height:45%}.mx-ht-md-45p{max-height:45%}.mn-ht-md-45p{min-height:45%}.ht-md-45-f{height:45px !important}.ht-md-45p-f{height:45% !important}.ht-md-50{height:50px}.ht-md-50p{height:50%}.mx-ht-md-50p{max-height:50%}.mn-ht-md-50p{min-height:50%}.ht-md-50-f{height:50px !important}.ht-md-50p-f{height:50% !important}.ht-md-55{height:55px}.ht-md-55p{height:55%}.mx-ht-md-55p{max-height:55%}.mn-ht-md-55p{min-height:55%}.ht-md-55-f{height:55px !important}.ht-md-55p-f{height:55% !important}.ht-md-60{height:60px}.ht-md-60p{height:60%}.mx-ht-md-60p{max-height:60%}.mn-ht-md-60p{min-height:60%}.ht-md-60-f{height:60px !important}.ht-md-60p-f{height:60% !important}.ht-md-65{height:65px}.ht-md-65p{height:65%}.mx-ht-md-65p{max-height:65%}.mn-ht-md-65p{min-height:65%}.ht-md-65-f{height:65px !important}.ht-md-65p-f{height:65% !important}.ht-md-70{height:70px}.ht-md-70p{height:70%}.mx-ht-md-70p{max-height:70%}.mn-ht-md-70p{min-height:70%}.ht-md-70-f{height:70px !important}.ht-md-70p-f{height:70% !important}.ht-md-75{height:75px}.ht-md-75p{height:75%}.mx-ht-md-75p{max-height:75%}.mn-ht-md-75p{min-height:75%}.ht-md-75-f{height:75px !important}.ht-md-75p-f{height:75% !important}.ht-md-80{height:80px}.ht-md-80p{height:80%}.mx-ht-md-80p{max-height:80%}.mn-ht-md-80p{min-height:80%}.ht-md-80-f{height:80px !important}.ht-md-80p-f{height:80% !important}.ht-md-85{height:85px}.ht-md-85p{height:85%}.mx-ht-md-85p{max-height:85%}.mn-ht-md-85p{min-height:85%}.ht-md-85-f{height:85px !important}.ht-md-85p-f{height:85% !important}.ht-md-90{height:90px}.ht-md-90p{height:90%}.mx-ht-md-90p{max-height:90%}.mn-ht-md-90p{min-height:90%}.ht-md-90-f{height:90px !important}.ht-md-90p-f{height:90% !important}.ht-md-95{height:95px}.ht-md-95p{height:95%}.mx-ht-md-95p{max-height:95%}.mn-ht-md-95p{min-height:95%}.ht-md-95-f{height:95px !important}.ht-md-95p-f{height:95% !important}.ht-md-100{height:100px}.ht-md-100p{height:100%}.mx-ht-md-100p{max-height:100%}.mn-ht-md-100p{min-height:100%}.ht-md-100-f{height:100px !important}.ht-md-100p-f{height:100% !important}.ht-md-150{height:150px}.ht-md-150p{height:150%}.mx-ht-md-150p{max-height:150%}.mn-ht-md-150p{min-height:150%}.ht-md-150-f{height:150px !important}.ht-md-150p-f{height:150% !important}.ht-md-200{height:200px}.ht-md-200p{height:200%}.mx-ht-md-200p{max-height:200%}.mn-ht-md-200p{min-height:200%}.ht-md-200-f{height:200px !important}.ht-md-200p-f{height:200% !important}.ht-md-250{height:250px}.ht-md-250p{height:250%}.mx-ht-md-250p{max-height:250%}.mn-ht-md-250p{min-height:250%}.ht-md-250-f{height:250px !important}.ht-md-250p-f{height:250% !important}.ht-md-300{height:300px}.ht-md-300p{height:300%}.mx-ht-md-300p{max-height:300%}.mn-ht-md-300p{min-height:300%}.ht-md-300-f{height:300px !important}.ht-md-300p-f{height:300% !important}.ht-md-350{height:350px}.ht-md-350p{height:350%}.mx-ht-md-350p{max-height:350%}.mn-ht-md-350p{min-height:350%}.ht-md-350-f{height:350px !important}.ht-md-350p-f{height:350% !important}.ht-md-400{height:400px}.ht-md-400p{height:400%}.mx-ht-md-400p{max-height:400%}.mn-ht-md-400p{min-height:400%}.ht-md-400-f{height:400px !important}.ht-md-400p-f{height:400% !important}.ht-md-450{height:450px}.ht-md-450p{height:450%}.mx-ht-md-450p{max-height:450%}.mn-ht-md-450p{min-height:450%}.ht-md-450-f{height:450px !important}.ht-md-450p-f{height:450% !important}.ht-md-500{height:500px}.ht-md-500p{height:500%}.mx-ht-md-500p{max-height:500%}.mn-ht-md-500p{min-height:500%}.ht-md-500-f{height:500px !important}.ht-md-500p-f{height:500% !important}.ht-md-550{height:550px}.ht-md-550p{height:550%}.mx-ht-md-550p{max-height:550%}.mn-ht-md-550p{min-height:550%}.ht-md-550-f{height:550px !important}.ht-md-550p-f{height:550% !important}.ht-md-600{height:600px}.ht-md-600p{height:600%}.mx-ht-md-600p{max-height:600%}.mn-ht-md-600p{min-height:600%}.ht-md-600-f{height:600px !important}.ht-md-600p-f{height:600% !important}.ht-md-650{height:650px}.ht-md-650p{height:650%}.mx-ht-md-650p{max-height:650%}.mn-ht-md-650p{min-height:650%}.ht-md-650-f{height:650px !important}.ht-md-650p-f{height:650% !important}.ht-md-700{height:700px}.ht-md-700p{height:700%}.mx-ht-md-700p{max-height:700%}.mn-ht-md-700p{min-height:700%}.ht-md-700-f{height:700px !important}.ht-md-700p-f{height:700% !important}.ht-md-750{height:750px}.ht-md-750p{height:750%}.mx-ht-md-750p{max-height:750%}.mn-ht-md-750p{min-height:750%}.ht-md-750-f{height:750px !important}.ht-md-750p-f{height:750% !important}.ht-md-800{height:800px}.ht-md-800p{height:800%}.mx-ht-md-800p{max-height:800%}.mn-ht-md-800p{min-height:800%}.ht-md-800-f{height:800px !important}.ht-md-800p-f{height:800% !important}.ht-md-850{height:850px}.ht-md-850p{height:850%}.mx-ht-md-850p{max-height:850%}.mn-ht-md-850p{min-height:850%}.ht-md-850-f{height:850px !important}.ht-md-850p-f{height:850% !important}.ht-md-100v{height:100vh}}@media (min-width: 992px){.ht-lg-5{height:5px}.ht-lg-5p{height:5%}.mx-ht-lg-5p{max-height:5%}.mn-ht-lg-5p{min-height:5%}.ht-lg-5-f{height:5px !important}.ht-lg-5p-f{height:5% !important}.ht-lg-10{height:10px}.ht-lg-10p{height:10%}.mx-ht-lg-10p{max-height:10%}.mn-ht-lg-10p{min-height:10%}.ht-lg-10-f{height:10px !important}.ht-lg-10p-f{height:10% !important}.ht-lg-15{height:15px}.ht-lg-15p{height:15%}.mx-ht-lg-15p{max-height:15%}.mn-ht-lg-15p{min-height:15%}.ht-lg-15-f{height:15px !important}.ht-lg-15p-f{height:15% !important}.ht-lg-20{height:20px}.ht-lg-20p{height:20%}.mx-ht-lg-20p{max-height:20%}.mn-ht-lg-20p{min-height:20%}.ht-lg-20-f{height:20px !important}.ht-lg-20p-f{height:20% !important}.ht-lg-25{height:25px}.ht-lg-25p{height:25%}.mx-ht-lg-25p{max-height:25%}.mn-ht-lg-25p{min-height:25%}.ht-lg-25-f{height:25px !important}.ht-lg-25p-f{height:25% !important}.ht-lg-30{height:30px}.ht-lg-30p{height:30%}.mx-ht-lg-30p{max-height:30%}.mn-ht-lg-30p{min-height:30%}.ht-lg-30-f{height:30px !important}.ht-lg-30p-f{height:30% !important}.ht-lg-35{height:35px}.ht-lg-35p{height:35%}.mx-ht-lg-35p{max-height:35%}.mn-ht-lg-35p{min-height:35%}.ht-lg-35-f{height:35px !important}.ht-lg-35p-f{height:35% !important}.ht-lg-40{height:40px}.ht-lg-40p{height:40%}.mx-ht-lg-40p{max-height:40%}.mn-ht-lg-40p{min-height:40%}.ht-lg-40-f{height:40px !important}.ht-lg-40p-f{height:40% !important}.ht-lg-45{height:45px}.ht-lg-45p{height:45%}.mx-ht-lg-45p{max-height:45%}.mn-ht-lg-45p{min-height:45%}.ht-lg-45-f{height:45px !important}.ht-lg-45p-f{height:45% !important}.ht-lg-50{height:50px}.ht-lg-50p{height:50%}.mx-ht-lg-50p{max-height:50%}.mn-ht-lg-50p{min-height:50%}.ht-lg-50-f{height:50px !important}.ht-lg-50p-f{height:50% !important}.ht-lg-55{height:55px}.ht-lg-55p{height:55%}.mx-ht-lg-55p{max-height:55%}.mn-ht-lg-55p{min-height:55%}.ht-lg-55-f{height:55px !important}.ht-lg-55p-f{height:55% !important}.ht-lg-60{height:60px}.ht-lg-60p{height:60%}.mx-ht-lg-60p{max-height:60%}.mn-ht-lg-60p{min-height:60%}.ht-lg-60-f{height:60px !important}.ht-lg-60p-f{height:60% !important}.ht-lg-65{height:65px}.ht-lg-65p{height:65%}.mx-ht-lg-65p{max-height:65%}.mn-ht-lg-65p{min-height:65%}.ht-lg-65-f{height:65px !important}.ht-lg-65p-f{height:65% !important}.ht-lg-70{height:70px}.ht-lg-70p{height:70%}.mx-ht-lg-70p{max-height:70%}.mn-ht-lg-70p{min-height:70%}.ht-lg-70-f{height:70px !important}.ht-lg-70p-f{height:70% !important}.ht-lg-75{height:75px}.ht-lg-75p{height:75%}.mx-ht-lg-75p{max-height:75%}.mn-ht-lg-75p{min-height:75%}.ht-lg-75-f{height:75px !important}.ht-lg-75p-f{height:75% !important}.ht-lg-80{height:80px}.ht-lg-80p{height:80%}.mx-ht-lg-80p{max-height:80%}.mn-ht-lg-80p{min-height:80%}.ht-lg-80-f{height:80px !important}.ht-lg-80p-f{height:80% !important}.ht-lg-85{height:85px}.ht-lg-85p{height:85%}.mx-ht-lg-85p{max-height:85%}.mn-ht-lg-85p{min-height:85%}.ht-lg-85-f{height:85px !important}.ht-lg-85p-f{height:85% !important}.ht-lg-90{height:90px}.ht-lg-90p{height:90%}.mx-ht-lg-90p{max-height:90%}.mn-ht-lg-90p{min-height:90%}.ht-lg-90-f{height:90px !important}.ht-lg-90p-f{height:90% !important}.ht-lg-95{height:95px}.ht-lg-95p{height:95%}.mx-ht-lg-95p{max-height:95%}.mn-ht-lg-95p{min-height:95%}.ht-lg-95-f{height:95px !important}.ht-lg-95p-f{height:95% !important}.ht-lg-100{height:100px}.ht-lg-100p{height:100%}.mx-ht-lg-100p{max-height:100%}.mn-ht-lg-100p{min-height:100%}.ht-lg-100-f{height:100px !important}.ht-lg-100p-f{height:100% !important}.ht-lg-150{height:150px}.ht-lg-150p{height:150%}.mx-ht-lg-150p{max-height:150%}.mn-ht-lg-150p{min-height:150%}.ht-lg-150-f{height:150px !important}.ht-lg-150p-f{height:150% !important}.ht-lg-200{height:200px}.ht-lg-200p{height:200%}.mx-ht-lg-200p{max-height:200%}.mn-ht-lg-200p{min-height:200%}.ht-lg-200-f{height:200px !important}.ht-lg-200p-f{height:200% !important}.ht-lg-250{height:250px}.ht-lg-250p{height:250%}.mx-ht-lg-250p{max-height:250%}.mn-ht-lg-250p{min-height:250%}.ht-lg-250-f{height:250px !important}.ht-lg-250p-f{height:250% !important}.ht-lg-300{height:300px}.ht-lg-300p{height:300%}.mx-ht-lg-300p{max-height:300%}.mn-ht-lg-300p{min-height:300%}.ht-lg-300-f{height:300px !important}.ht-lg-300p-f{height:300% !important}.ht-lg-350{height:350px}.ht-lg-350p{height:350%}.mx-ht-lg-350p{max-height:350%}.mn-ht-lg-350p{min-height:350%}.ht-lg-350-f{height:350px !important}.ht-lg-350p-f{height:350% !important}.ht-lg-400{height:400px}.ht-lg-400p{height:400%}.mx-ht-lg-400p{max-height:400%}.mn-ht-lg-400p{min-height:400%}.ht-lg-400-f{height:400px !important}.ht-lg-400p-f{height:400% !important}.ht-lg-450{height:450px}.ht-lg-450p{height:450%}.mx-ht-lg-450p{max-height:450%}.mn-ht-lg-450p{min-height:450%}.ht-lg-450-f{height:450px !important}.ht-lg-450p-f{height:450% !important}.ht-lg-500{height:500px}.ht-lg-500p{height:500%}.mx-ht-lg-500p{max-height:500%}.mn-ht-lg-500p{min-height:500%}.ht-lg-500-f{height:500px !important}.ht-lg-500p-f{height:500% !important}.ht-lg-550{height:550px}.ht-lg-550p{height:550%}.mx-ht-lg-550p{max-height:550%}.mn-ht-lg-550p{min-height:550%}.ht-lg-550-f{height:550px !important}.ht-lg-550p-f{height:550% !important}.ht-lg-600{height:600px}.ht-lg-600p{height:600%}.mx-ht-lg-600p{max-height:600%}.mn-ht-lg-600p{min-height:600%}.ht-lg-600-f{height:600px !important}.ht-lg-600p-f{height:600% !important}.ht-lg-650{height:650px}.ht-lg-650p{height:650%}.mx-ht-lg-650p{max-height:650%}.mn-ht-lg-650p{min-height:650%}.ht-lg-650-f{height:650px !important}.ht-lg-650p-f{height:650% !important}.ht-lg-700{height:700px}.ht-lg-700p{height:700%}.mx-ht-lg-700p{max-height:700%}.mn-ht-lg-700p{min-height:700%}.ht-lg-700-f{height:700px !important}.ht-lg-700p-f{height:700% !important}.ht-lg-750{height:750px}.ht-lg-750p{height:750%}.mx-ht-lg-750p{max-height:750%}.mn-ht-lg-750p{min-height:750%}.ht-lg-750-f{height:750px !important}.ht-lg-750p-f{height:750% !important}.ht-lg-800{height:800px}.ht-lg-800p{height:800%}.mx-ht-lg-800p{max-height:800%}.mn-ht-lg-800p{min-height:800%}.ht-lg-800-f{height:800px !important}.ht-lg-800p-f{height:800% !important}.ht-lg-850{height:850px}.ht-lg-850p{height:850%}.mx-ht-lg-850p{max-height:850%}.mn-ht-lg-850p{min-height:850%}.ht-lg-850-f{height:850px !important}.ht-lg-850p-f{height:850% !important}.ht-lg-100v{height:100vh}}@media (min-width: 1200px){.ht-xl-5{height:5px}.ht-xl-5p{height:5%}.mx-ht-xl-5p{max-height:5%}.mn-ht-xl-5p{min-height:5%}.ht-xl-5-f{height:5px !important}.ht-xl-5p-f{height:5% !important}.ht-xl-10{height:10px}.ht-xl-10p{height:10%}.mx-ht-xl-10p{max-height:10%}.mn-ht-xl-10p{min-height:10%}.ht-xl-10-f{height:10px !important}.ht-xl-10p-f{height:10% !important}.ht-xl-15{height:15px}.ht-xl-15p{height:15%}.mx-ht-xl-15p{max-height:15%}.mn-ht-xl-15p{min-height:15%}.ht-xl-15-f{height:15px !important}.ht-xl-15p-f{height:15% !important}.ht-xl-20{height:20px}.ht-xl-20p{height:20%}.mx-ht-xl-20p{max-height:20%}.mn-ht-xl-20p{min-height:20%}.ht-xl-20-f{height:20px !important}.ht-xl-20p-f{height:20% !important}.ht-xl-25{height:25px}.ht-xl-25p{height:25%}.mx-ht-xl-25p{max-height:25%}.mn-ht-xl-25p{min-height:25%}.ht-xl-25-f{height:25px !important}.ht-xl-25p-f{height:25% !important}.ht-xl-30{height:30px}.ht-xl-30p{height:30%}.mx-ht-xl-30p{max-height:30%}.mn-ht-xl-30p{min-height:30%}.ht-xl-30-f{height:30px !important}.ht-xl-30p-f{height:30% !important}.ht-xl-35{height:35px}.ht-xl-35p{height:35%}.mx-ht-xl-35p{max-height:35%}.mn-ht-xl-35p{min-height:35%}.ht-xl-35-f{height:35px !important}.ht-xl-35p-f{height:35% !important}.ht-xl-40{height:40px}.ht-xl-40p{height:40%}.mx-ht-xl-40p{max-height:40%}.mn-ht-xl-40p{min-height:40%}.ht-xl-40-f{height:40px !important}.ht-xl-40p-f{height:40% !important}.ht-xl-45{height:45px}.ht-xl-45p{height:45%}.mx-ht-xl-45p{max-height:45%}.mn-ht-xl-45p{min-height:45%}.ht-xl-45-f{height:45px !important}.ht-xl-45p-f{height:45% !important}.ht-xl-50{height:50px}.ht-xl-50p{height:50%}.mx-ht-xl-50p{max-height:50%}.mn-ht-xl-50p{min-height:50%}.ht-xl-50-f{height:50px !important}.ht-xl-50p-f{height:50% !important}.ht-xl-55{height:55px}.ht-xl-55p{height:55%}.mx-ht-xl-55p{max-height:55%}.mn-ht-xl-55p{min-height:55%}.ht-xl-55-f{height:55px !important}.ht-xl-55p-f{height:55% !important}.ht-xl-60{height:60px}.ht-xl-60p{height:60%}.mx-ht-xl-60p{max-height:60%}.mn-ht-xl-60p{min-height:60%}.ht-xl-60-f{height:60px !important}.ht-xl-60p-f{height:60% !important}.ht-xl-65{height:65px}.ht-xl-65p{height:65%}.mx-ht-xl-65p{max-height:65%}.mn-ht-xl-65p{min-height:65%}.ht-xl-65-f{height:65px !important}.ht-xl-65p-f{height:65% !important}.ht-xl-70{height:70px}.ht-xl-70p{height:70%}.mx-ht-xl-70p{max-height:70%}.mn-ht-xl-70p{min-height:70%}.ht-xl-70-f{height:70px !important}.ht-xl-70p-f{height:70% !important}.ht-xl-75{height:75px}.ht-xl-75p{height:75%}.mx-ht-xl-75p{max-height:75%}.mn-ht-xl-75p{min-height:75%}.ht-xl-75-f{height:75px !important}.ht-xl-75p-f{height:75% !important}.ht-xl-80{height:80px}.ht-xl-80p{height:80%}.mx-ht-xl-80p{max-height:80%}.mn-ht-xl-80p{min-height:80%}.ht-xl-80-f{height:80px !important}.ht-xl-80p-f{height:80% !important}.ht-xl-85{height:85px}.ht-xl-85p{height:85%}.mx-ht-xl-85p{max-height:85%}.mn-ht-xl-85p{min-height:85%}.ht-xl-85-f{height:85px !important}.ht-xl-85p-f{height:85% !important}.ht-xl-90{height:90px}.ht-xl-90p{height:90%}.mx-ht-xl-90p{max-height:90%}.mn-ht-xl-90p{min-height:90%}.ht-xl-90-f{height:90px !important}.ht-xl-90p-f{height:90% !important}.ht-xl-95{height:95px}.ht-xl-95p{height:95%}.mx-ht-xl-95p{max-height:95%}.mn-ht-xl-95p{min-height:95%}.ht-xl-95-f{height:95px !important}.ht-xl-95p-f{height:95% !important}.ht-xl-100{height:100px}.ht-xl-100p{height:100%}.mx-ht-xl-100p{max-height:100%}.mn-ht-xl-100p{min-height:100%}.ht-xl-100-f{height:100px !important}.ht-xl-100p-f{height:100% !important}.ht-xl-150{height:150px}.ht-xl-150p{height:150%}.mx-ht-xl-150p{max-height:150%}.mn-ht-xl-150p{min-height:150%}.ht-xl-150-f{height:150px !important}.ht-xl-150p-f{height:150% !important}.ht-xl-200{height:200px}.ht-xl-200p{height:200%}.mx-ht-xl-200p{max-height:200%}.mn-ht-xl-200p{min-height:200%}.ht-xl-200-f{height:200px !important}.ht-xl-200p-f{height:200% !important}.ht-xl-250{height:250px}.ht-xl-250p{height:250%}.mx-ht-xl-250p{max-height:250%}.mn-ht-xl-250p{min-height:250%}.ht-xl-250-f{height:250px !important}.ht-xl-250p-f{height:250% !important}.ht-xl-300{height:300px}.ht-xl-300p{height:300%}.mx-ht-xl-300p{max-height:300%}.mn-ht-xl-300p{min-height:300%}.ht-xl-300-f{height:300px !important}.ht-xl-300p-f{height:300% !important}.ht-xl-350{height:350px}.ht-xl-350p{height:350%}.mx-ht-xl-350p{max-height:350%}.mn-ht-xl-350p{min-height:350%}.ht-xl-350-f{height:350px !important}.ht-xl-350p-f{height:350% !important}.ht-xl-400{height:400px}.ht-xl-400p{height:400%}.mx-ht-xl-400p{max-height:400%}.mn-ht-xl-400p{min-height:400%}.ht-xl-400-f{height:400px !important}.ht-xl-400p-f{height:400% !important}.ht-xl-450{height:450px}.ht-xl-450p{height:450%}.mx-ht-xl-450p{max-height:450%}.mn-ht-xl-450p{min-height:450%}.ht-xl-450-f{height:450px !important}.ht-xl-450p-f{height:450% !important}.ht-xl-500{height:500px}.ht-xl-500p{height:500%}.mx-ht-xl-500p{max-height:500%}.mn-ht-xl-500p{min-height:500%}.ht-xl-500-f{height:500px !important}.ht-xl-500p-f{height:500% !important}.ht-xl-550{height:550px}.ht-xl-550p{height:550%}.mx-ht-xl-550p{max-height:550%}.mn-ht-xl-550p{min-height:550%}.ht-xl-550-f{height:550px !important}.ht-xl-550p-f{height:550% !important}.ht-xl-600{height:600px}.ht-xl-600p{height:600%}.mx-ht-xl-600p{max-height:600%}.mn-ht-xl-600p{min-height:600%}.ht-xl-600-f{height:600px !important}.ht-xl-600p-f{height:600% !important}.ht-xl-650{height:650px}.ht-xl-650p{height:650%}.mx-ht-xl-650p{max-height:650%}.mn-ht-xl-650p{min-height:650%}.ht-xl-650-f{height:650px !important}.ht-xl-650p-f{height:650% !important}.ht-xl-700{height:700px}.ht-xl-700p{height:700%}.mx-ht-xl-700p{max-height:700%}.mn-ht-xl-700p{min-height:700%}.ht-xl-700-f{height:700px !important}.ht-xl-700p-f{height:700% !important}.ht-xl-750{height:750px}.ht-xl-750p{height:750%}.mx-ht-xl-750p{max-height:750%}.mn-ht-xl-750p{min-height:750%}.ht-xl-750-f{height:750px !important}.ht-xl-750p-f{height:750% !important}.ht-xl-800{height:800px}.ht-xl-800p{height:800%}.mx-ht-xl-800p{max-height:800%}.mn-ht-xl-800p{min-height:800%}.ht-xl-800-f{height:800px !important}.ht-xl-800p-f{height:800% !important}.ht-xl-850{height:850px}.ht-xl-850p{height:850%}.mx-ht-xl-850p{max-height:850%}.mn-ht-xl-850p{min-height:850%}.ht-xl-850-f{height:850px !important}.ht-xl-850p-f{height:850% !important}.ht-xl-100v{height:100vh}}.mg-0{margin:0px}.mg-0-f{margin:0px !important}.mg-y-0{margin-top:0px;margin-bottom:0px}.mg-y-0-f{margin-top:0px !important;margin-bottom:0px !important}.mg-x-0{margin-left:0px;margin-right:0px}.mg-x-0-f{margin-left:0px !important;margin-right:0px !important}.mg-t-0{margin-top:0px}.mg-r-0{margin-right:0px}.mg-b-0{margin-bottom:0px}.mg-l-0{margin-left:0px}.mg-t-0-f{margin-top:0px !important}.mg-r-0-f{margin-right:0px !important}.mg-b-0-f{margin-bottom:0px !important}.mg-l-0-f{margin-left:0px !important}.mg-1{margin:1px}.mg-1-f{margin:1px !important}.mg-y-1{margin-top:1px;margin-bottom:1px}.mg-y-1-f{margin-top:1px !important;margin-bottom:1px !important}.mg-x-1{margin-left:1px;margin-right:1px}.mg-x-1-f{margin-left:1px !important;margin-right:1px !important}.mg-t-1{margin-top:1px}.mg-r-1{margin-right:1px}.mg-b-1{margin-bottom:1px}.mg-l-1{margin-left:1px}.mg-t-1-f{margin-top:1px !important}.mg-r-1-f{margin-right:1px !important}.mg-b-1-f{margin-bottom:1px !important}.mg-l-1-f{margin-left:1px !important}.mg-2{margin:2px}.mg-2-f{margin:2px !important}.mg-y-2{margin-top:2px;margin-bottom:2px}.mg-y-2-f{margin-top:2px !important;margin-bottom:2px !important}.mg-x-2{margin-left:2px;margin-right:2px}.mg-x-2-f{margin-left:2px !important;margin-right:2px !important}.mg-t-2{margin-top:2px}.mg-r-2{margin-right:2px}.mg-b-2{margin-bottom:2px}.mg-l-2{margin-left:2px}.mg-t-2-f{margin-top:2px !important}.mg-r-2-f{margin-right:2px !important}.mg-b-2-f{margin-bottom:2px !important}.mg-l-2-f{margin-left:2px !important}.mg-3{margin:3px}.mg-3-f{margin:3px !important}.mg-y-3{margin-top:3px;margin-bottom:3px}.mg-y-3-f{margin-top:3px !important;margin-bottom:3px !important}.mg-x-3{margin-left:3px;margin-right:3px}.mg-x-3-f{margin-left:3px !important;margin-right:3px !important}.mg-t-3{margin-top:3px}.mg-r-3{margin-right:3px}.mg-b-3{margin-bottom:3px}.mg-l-3{margin-left:3px}.mg-t-3-f{margin-top:3px !important}.mg-r-3-f{margin-right:3px !important}.mg-b-3-f{margin-bottom:3px !important}.mg-l-3-f{margin-left:3px !important}.mg-4{margin:4px}.mg-4-f{margin:4px !important}.mg-y-4{margin-top:4px;margin-bottom:4px}.mg-y-4-f{margin-top:4px !important;margin-bottom:4px !important}.mg-x-4{margin-left:4px;margin-right:4px}.mg-x-4-f{margin-left:4px !important;margin-right:4px !important}.mg-t-4{margin-top:4px}.mg-r-4{margin-right:4px}.mg-b-4{margin-bottom:4px}.mg-l-4{margin-left:4px}.mg-t-4-f{margin-top:4px !important}.mg-r-4-f{margin-right:4px !important}.mg-b-4-f{margin-bottom:4px !important}.mg-l-4-f{margin-left:4px !important}.mg-5{margin:5px}.mg-5-f{margin:5px !important}.mg-y-5{margin-top:5px;margin-bottom:5px}.mg-y-5-f{margin-top:5px !important;margin-bottom:5px !important}.mg-x-5{margin-left:5px;margin-right:5px}.mg-x-5-f{margin-left:5px !important;margin-right:5px !important}.mg-t-5{margin-top:5px}.mg-r-5{margin-right:5px}.mg-b-5{margin-bottom:5px}.mg-l-5{margin-left:5px}.mg-t-5-f{margin-top:5px !important}.mg-r-5-f{margin-right:5px !important}.mg-b-5-f{margin-bottom:5px !important}.mg-l-5-f{margin-left:5px !important}.mg-6{margin:6px}.mg-6-f{margin:6px !important}.mg-y-6{margin-top:6px;margin-bottom:6px}.mg-y-6-f{margin-top:6px !important;margin-bottom:6px !important}.mg-x-6{margin-left:6px;margin-right:6px}.mg-x-6-f{margin-left:6px !important;margin-right:6px !important}.mg-t-6{margin-top:6px}.mg-r-6{margin-right:6px}.mg-b-6{margin-bottom:6px}.mg-l-6{margin-left:6px}.mg-t-6-f{margin-top:6px !important}.mg-r-6-f{margin-right:6px !important}.mg-b-6-f{margin-bottom:6px !important}.mg-l-6-f{margin-left:6px !important}.mg-7{margin:7px}.mg-7-f{margin:7px !important}.mg-y-7{margin-top:7px;margin-bottom:7px}.mg-y-7-f{margin-top:7px !important;margin-bottom:7px !important}.mg-x-7{margin-left:7px;margin-right:7px}.mg-x-7-f{margin-left:7px !important;margin-right:7px !important}.mg-t-7{margin-top:7px}.mg-r-7{margin-right:7px}.mg-b-7{margin-bottom:7px}.mg-l-7{margin-left:7px}.mg-t-7-f{margin-top:7px !important}.mg-r-7-f{margin-right:7px !important}.mg-b-7-f{margin-bottom:7px !important}.mg-l-7-f{margin-left:7px !important}.mg-8{margin:8px}.mg-8-f{margin:8px !important}.mg-y-8{margin-top:8px;margin-bottom:8px}.mg-y-8-f{margin-top:8px !important;margin-bottom:8px !important}.mg-x-8{margin-left:8px;margin-right:8px}.mg-x-8-f{margin-left:8px !important;margin-right:8px !important}.mg-t-8{margin-top:8px}.mg-r-8{margin-right:8px}.mg-b-8{margin-bottom:8px}.mg-l-8{margin-left:8px}.mg-t-8-f{margin-top:8px !important}.mg-r-8-f{margin-right:8px !important}.mg-b-8-f{margin-bottom:8px !important}.mg-l-8-f{margin-left:8px !important}.mg-9{margin:9px}.mg-9-f{margin:9px !important}.mg-y-9{margin-top:9px;margin-bottom:9px}.mg-y-9-f{margin-top:9px !important;margin-bottom:9px !important}.mg-x-9{margin-left:9px;margin-right:9px}.mg-x-9-f{margin-left:9px !important;margin-right:9px !important}.mg-t-9{margin-top:9px}.mg-r-9{margin-right:9px}.mg-b-9{margin-bottom:9px}.mg-l-9{margin-left:9px}.mg-t-9-f{margin-top:9px !important}.mg-r-9-f{margin-right:9px !important}.mg-b-9-f{margin-bottom:9px !important}.mg-l-9-f{margin-left:9px !important}.mg-10{margin:10px}.mg-10-f{margin:10px !important}.mg-y-10{margin-top:10px;margin-bottom:10px}.mg-y-10-f{margin-top:10px !important;margin-bottom:10px !important}.mg-x-10{margin-left:10px;margin-right:10px}.mg-x-10-f{margin-left:10px !important;margin-right:10px !important}.mg-t-10{margin-top:10px}.mg-r-10{margin-right:10px}.mg-b-10{margin-bottom:10px}.mg-l-10{margin-left:10px}.mg-t-10-f{margin-top:10px !important}.mg-r-10-f{margin-right:10px !important}.mg-b-10-f{margin-bottom:10px !important}.mg-l-10-f{margin-left:10px !important}.mg-15{margin:15px}.mg-15-f{margin:15px !important}.mg-y-15{margin-top:15px;margin-bottom:15px}.mg-y-15-f{margin-top:15px !important;margin-bottom:15px !important}.mg-x-15{margin-left:15px;margin-right:15px}.mg-x-15-f{margin-left:15px !important;margin-right:15px !important}.mg-t-15{margin-top:15px}.mg-r-15{margin-right:15px}.mg-b-15{margin-bottom:15px}.mg-l-15{margin-left:15px}.mg-t-15-f{margin-top:15px !important}.mg-r-15-f{margin-right:15px !important}.mg-b-15-f{margin-bottom:15px !important}.mg-l-15-f{margin-left:15px !important}.mg-20{margin:20px}.mg-20-f{margin:20px !important}.mg-y-20{margin-top:20px;margin-bottom:20px}.mg-y-20-f{margin-top:20px !important;margin-bottom:20px !important}.mg-x-20{margin-left:20px;margin-right:20px}.mg-x-20-f{margin-left:20px !important;margin-right:20px !important}.mg-t-20{margin-top:20px}.mg-r-20{margin-right:20px}.mg-b-20{margin-bottom:20px}.mg-l-20{margin-left:20px}.mg-t-20-f{margin-top:20px !important}.mg-r-20-f{margin-right:20px !important}.mg-b-20-f{margin-bottom:20px !important}.mg-l-20-f{margin-left:20px !important}.mg-25{margin:25px}.mg-25-f{margin:25px !important}.mg-y-25{margin-top:25px;margin-bottom:25px}.mg-y-25-f{margin-top:25px !important;margin-bottom:25px !important}.mg-x-25{margin-left:25px;margin-right:25px}.mg-x-25-f{margin-left:25px !important;margin-right:25px !important}.mg-t-25{margin-top:25px}.mg-r-25{margin-right:25px}.mg-b-25{margin-bottom:25px}.mg-l-25{margin-left:25px}.mg-t-25-f{margin-top:25px !important}.mg-r-25-f{margin-right:25px !important}.mg-b-25-f{margin-bottom:25px !important}.mg-l-25-f{margin-left:25px !important}.mg-30{margin:30px}.mg-30-f{margin:30px !important}.mg-y-30{margin-top:30px;margin-bottom:30px}.mg-y-30-f{margin-top:30px !important;margin-bottom:30px !important}.mg-x-30{margin-left:30px;margin-right:30px}.mg-x-30-f{margin-left:30px !important;margin-right:30px !important}.mg-t-30{margin-top:30px}.mg-r-30{margin-right:30px}.mg-b-30{margin-bottom:30px}.mg-l-30{margin-left:30px}.mg-t-30-f{margin-top:30px !important}.mg-r-30-f{margin-right:30px !important}.mg-b-30-f{margin-bottom:30px !important}.mg-l-30-f{margin-left:30px !important}.mg-35{margin:35px}.mg-35-f{margin:35px !important}.mg-y-35{margin-top:35px;margin-bottom:35px}.mg-y-35-f{margin-top:35px !important;margin-bottom:35px !important}.mg-x-35{margin-left:35px;margin-right:35px}.mg-x-35-f{margin-left:35px !important;margin-right:35px !important}.mg-t-35{margin-top:35px}.mg-r-35{margin-right:35px}.mg-b-35{margin-bottom:35px}.mg-l-35{margin-left:35px}.mg-t-35-f{margin-top:35px !important}.mg-r-35-f{margin-right:35px !important}.mg-b-35-f{margin-bottom:35px !important}.mg-l-35-f{margin-left:35px !important}.mg-40{margin:40px}.mg-40-f{margin:40px !important}.mg-y-40{margin-top:40px;margin-bottom:40px}.mg-y-40-f{margin-top:40px !important;margin-bottom:40px !important}.mg-x-40{margin-left:40px;margin-right:40px}.mg-x-40-f{margin-left:40px !important;margin-right:40px !important}.mg-t-40{margin-top:40px}.mg-r-40{margin-right:40px}.mg-b-40{margin-bottom:40px}.mg-l-40{margin-left:40px}.mg-t-40-f{margin-top:40px !important}.mg-r-40-f{margin-right:40px !important}.mg-b-40-f{margin-bottom:40px !important}.mg-l-40-f{margin-left:40px !important}.mg-45{margin:45px}.mg-45-f{margin:45px !important}.mg-y-45{margin-top:45px;margin-bottom:45px}.mg-y-45-f{margin-top:45px !important;margin-bottom:45px !important}.mg-x-45{margin-left:45px;margin-right:45px}.mg-x-45-f{margin-left:45px !important;margin-right:45px !important}.mg-t-45{margin-top:45px}.mg-r-45{margin-right:45px}.mg-b-45{margin-bottom:45px}.mg-l-45{margin-left:45px}.mg-t-45-f{margin-top:45px !important}.mg-r-45-f{margin-right:45px !important}.mg-b-45-f{margin-bottom:45px !important}.mg-l-45-f{margin-left:45px !important}.mg-50{margin:50px}.mg-50-f{margin:50px !important}.mg-y-50{margin-top:50px;margin-bottom:50px}.mg-y-50-f{margin-top:50px !important;margin-bottom:50px !important}.mg-x-50{margin-left:50px;margin-right:50px}.mg-x-50-f{margin-left:50px !important;margin-right:50px !important}.mg-t-50{margin-top:50px}.mg-r-50{margin-right:50px}.mg-b-50{margin-bottom:50px}.mg-l-50{margin-left:50px}.mg-t-50-f{margin-top:50px !important}.mg-r-50-f{margin-right:50px !important}.mg-b-50-f{margin-bottom:50px !important}.mg-l-50-f{margin-left:50px !important}.mg-55{margin:55px}.mg-55-f{margin:55px !important}.mg-y-55{margin-top:55px;margin-bottom:55px}.mg-y-55-f{margin-top:55px !important;margin-bottom:55px !important}.mg-x-55{margin-left:55px;margin-right:55px}.mg-x-55-f{margin-left:55px !important;margin-right:55px !important}.mg-t-55{margin-top:55px}.mg-r-55{margin-right:55px}.mg-b-55{margin-bottom:55px}.mg-l-55{margin-left:55px}.mg-t-55-f{margin-top:55px !important}.mg-r-55-f{margin-right:55px !important}.mg-b-55-f{margin-bottom:55px !important}.mg-l-55-f{margin-left:55px !important}.mg-60{margin:60px}.mg-60-f{margin:60px !important}.mg-y-60{margin-top:60px;margin-bottom:60px}.mg-y-60-f{margin-top:60px !important;margin-bottom:60px !important}.mg-x-60{margin-left:60px;margin-right:60px}.mg-x-60-f{margin-left:60px !important;margin-right:60px !important}.mg-t-60{margin-top:60px}.mg-r-60{margin-right:60px}.mg-b-60{margin-bottom:60px}.mg-l-60{margin-left:60px}.mg-t-60-f{margin-top:60px !important}.mg-r-60-f{margin-right:60px !important}.mg-b-60-f{margin-bottom:60px !important}.mg-l-60-f{margin-left:60px !important}.mg-65{margin:65px}.mg-65-f{margin:65px !important}.mg-y-65{margin-top:65px;margin-bottom:65px}.mg-y-65-f{margin-top:65px !important;margin-bottom:65px !important}.mg-x-65{margin-left:65px;margin-right:65px}.mg-x-65-f{margin-left:65px !important;margin-right:65px !important}.mg-t-65{margin-top:65px}.mg-r-65{margin-right:65px}.mg-b-65{margin-bottom:65px}.mg-l-65{margin-left:65px}.mg-t-65-f{margin-top:65px !important}.mg-r-65-f{margin-right:65px !important}.mg-b-65-f{margin-bottom:65px !important}.mg-l-65-f{margin-left:65px !important}.mg-70{margin:70px}.mg-70-f{margin:70px !important}.mg-y-70{margin-top:70px;margin-bottom:70px}.mg-y-70-f{margin-top:70px !important;margin-bottom:70px !important}.mg-x-70{margin-left:70px;margin-right:70px}.mg-x-70-f{margin-left:70px !important;margin-right:70px !important}.mg-t-70{margin-top:70px}.mg-r-70{margin-right:70px}.mg-b-70{margin-bottom:70px}.mg-l-70{margin-left:70px}.mg-t-70-f{margin-top:70px !important}.mg-r-70-f{margin-right:70px !important}.mg-b-70-f{margin-bottom:70px !important}.mg-l-70-f{margin-left:70px !important}.mg-75{margin:75px}.mg-75-f{margin:75px !important}.mg-y-75{margin-top:75px;margin-bottom:75px}.mg-y-75-f{margin-top:75px !important;margin-bottom:75px !important}.mg-x-75{margin-left:75px;margin-right:75px}.mg-x-75-f{margin-left:75px !important;margin-right:75px !important}.mg-t-75{margin-top:75px}.mg-r-75{margin-right:75px}.mg-b-75{margin-bottom:75px}.mg-l-75{margin-left:75px}.mg-t-75-f{margin-top:75px !important}.mg-r-75-f{margin-right:75px !important}.mg-b-75-f{margin-bottom:75px !important}.mg-l-75-f{margin-left:75px !important}.mg-80{margin:80px}.mg-80-f{margin:80px !important}.mg-y-80{margin-top:80px;margin-bottom:80px}.mg-y-80-f{margin-top:80px !important;margin-bottom:80px !important}.mg-x-80{margin-left:80px;margin-right:80px}.mg-x-80-f{margin-left:80px !important;margin-right:80px !important}.mg-t-80{margin-top:80px}.mg-r-80{margin-right:80px}.mg-b-80{margin-bottom:80px}.mg-l-80{margin-left:80px}.mg-t-80-f{margin-top:80px !important}.mg-r-80-f{margin-right:80px !important}.mg-b-80-f{margin-bottom:80px !important}.mg-l-80-f{margin-left:80px !important}.mg-85{margin:85px}.mg-85-f{margin:85px !important}.mg-y-85{margin-top:85px;margin-bottom:85px}.mg-y-85-f{margin-top:85px !important;margin-bottom:85px !important}.mg-x-85{margin-left:85px;margin-right:85px}.mg-x-85-f{margin-left:85px !important;margin-right:85px !important}.mg-t-85{margin-top:85px}.mg-r-85{margin-right:85px}.mg-b-85{margin-bottom:85px}.mg-l-85{margin-left:85px}.mg-t-85-f{margin-top:85px !important}.mg-r-85-f{margin-right:85px !important}.mg-b-85-f{margin-bottom:85px !important}.mg-l-85-f{margin-left:85px !important}.mg-90{margin:90px}.mg-90-f{margin:90px !important}.mg-y-90{margin-top:90px;margin-bottom:90px}.mg-y-90-f{margin-top:90px !important;margin-bottom:90px !important}.mg-x-90{margin-left:90px;margin-right:90px}.mg-x-90-f{margin-left:90px !important;margin-right:90px !important}.mg-t-90{margin-top:90px}.mg-r-90{margin-right:90px}.mg-b-90{margin-bottom:90px}.mg-l-90{margin-left:90px}.mg-t-90-f{margin-top:90px !important}.mg-r-90-f{margin-right:90px !important}.mg-b-90-f{margin-bottom:90px !important}.mg-l-90-f{margin-left:90px !important}.mg-95{margin:95px}.mg-95-f{margin:95px !important}.mg-y-95{margin-top:95px;margin-bottom:95px}.mg-y-95-f{margin-top:95px !important;margin-bottom:95px !important}.mg-x-95{margin-left:95px;margin-right:95px}.mg-x-95-f{margin-left:95px !important;margin-right:95px !important}.mg-t-95{margin-top:95px}.mg-r-95{margin-right:95px}.mg-b-95{margin-bottom:95px}.mg-l-95{margin-left:95px}.mg-t-95-f{margin-top:95px !important}.mg-r-95-f{margin-right:95px !important}.mg-b-95-f{margin-bottom:95px !important}.mg-l-95-f{margin-left:95px !important}.mg-100{margin:100px}.mg-100-f{margin:100px !important}.mg-y-100{margin-top:100px;margin-bottom:100px}.mg-y-100-f{margin-top:100px !important;margin-bottom:100px !important}.mg-x-100{margin-left:100px;margin-right:100px}.mg-x-100-f{margin-left:100px !important;margin-right:100px !important}.mg-t-100{margin-top:100px}.mg-r-100{margin-right:100px}.mg-b-100{margin-bottom:100px}.mg-l-100{margin-left:100px}.mg-t-100-f{margin-top:100px !important}.mg-r-100-f{margin-right:100px !important}.mg-b-100-f{margin-bottom:100px !important}.mg-l-100-f{margin-left:100px !important}.mg-105{margin:105px}.mg-105-f{margin:105px !important}.mg-y-105{margin-top:105px;margin-bottom:105px}.mg-y-105-f{margin-top:105px !important;margin-bottom:105px !important}.mg-x-105{margin-left:105px;margin-right:105px}.mg-x-105-f{margin-left:105px !important;margin-right:105px !important}.mg-t-105{margin-top:105px}.mg-r-105{margin-right:105px}.mg-b-105{margin-bottom:105px}.mg-l-105{margin-left:105px}.mg-t-105-f{margin-top:105px !important}.mg-r-105-f{margin-right:105px !important}.mg-b-105-f{margin-bottom:105px !important}.mg-l-105-f{margin-left:105px !important}.mg-110{margin:110px}.mg-110-f{margin:110px !important}.mg-y-110{margin-top:110px;margin-bottom:110px}.mg-y-110-f{margin-top:110px !important;margin-bottom:110px !important}.mg-x-110{margin-left:110px;margin-right:110px}.mg-x-110-f{margin-left:110px !important;margin-right:110px !important}.mg-t-110{margin-top:110px}.mg-r-110{margin-right:110px}.mg-b-110{margin-bottom:110px}.mg-l-110{margin-left:110px}.mg-t-110-f{margin-top:110px !important}.mg-r-110-f{margin-right:110px !important}.mg-b-110-f{margin-bottom:110px !important}.mg-l-110-f{margin-left:110px !important}.mg-115{margin:115px}.mg-115-f{margin:115px !important}.mg-y-115{margin-top:115px;margin-bottom:115px}.mg-y-115-f{margin-top:115px !important;margin-bottom:115px !important}.mg-x-115{margin-left:115px;margin-right:115px}.mg-x-115-f{margin-left:115px !important;margin-right:115px !important}.mg-t-115{margin-top:115px}.mg-r-115{margin-right:115px}.mg-b-115{margin-bottom:115px}.mg-l-115{margin-left:115px}.mg-t-115-f{margin-top:115px !important}.mg-r-115-f{margin-right:115px !important}.mg-b-115-f{margin-bottom:115px !important}.mg-l-115-f{margin-left:115px !important}.mg-120{margin:120px}.mg-120-f{margin:120px !important}.mg-y-120{margin-top:120px;margin-bottom:120px}.mg-y-120-f{margin-top:120px !important;margin-bottom:120px !important}.mg-x-120{margin-left:120px;margin-right:120px}.mg-x-120-f{margin-left:120px !important;margin-right:120px !important}.mg-t-120{margin-top:120px}.mg-r-120{margin-right:120px}.mg-b-120{margin-bottom:120px}.mg-l-120{margin-left:120px}.mg-t-120-f{margin-top:120px !important}.mg-r-120-f{margin-right:120px !important}.mg-b-120-f{margin-bottom:120px !important}.mg-l-120-f{margin-left:120px !important}.mg-t-auto{margin-top:auto}.mg-r-auto{margin-right:auto}.mg-b-auto{margin-bottom:auto}.mg-l-auto{margin-left:auto}.mg-x-auto{margin:auto}@media (min-width: 480px){.mg-xs-0{margin:0px}.mg-xs-0-f{margin:0px !important}.mg-xs-y-0{margin-top:0px;margin-bottom:0px}.mg-xs-y-0-f{margin-top:0px !important;margin-bottom:0px !important}.mg-xs-x-0{margin-left:0px;margin-right:0px}.mg-xs-x-0-f{margin-left:0px !important;margin-right:0px !important}.mg-xs-t-0{margin-top:0px}.mg-xs-r-0{margin-right:0px}.mg-xs-b-0{margin-bottom:0px}.mg-xs-l-0{margin-left:0px}.mg-xs-t-0-f{margin-top:0px !important}.mg-xs-r-0-f{margin-right:0px !important}.mg-xs-b-0-f{margin-bottom:0px !important}.mg-xs-l-0-f{margin-left:0px !important}.mg-xs-1{margin:1px}.mg-xs-1-f{margin:1px !important}.mg-xs-y-1{margin-top:1px;margin-bottom:1px}.mg-xs-y-1-f{margin-top:1px !important;margin-bottom:1px !important}.mg-xs-x-1{margin-left:1px;margin-right:1px}.mg-xs-x-1-f{margin-left:1px !important;margin-right:1px !important}.mg-xs-t-1{margin-top:1px}.mg-xs-r-1{margin-right:1px}.mg-xs-b-1{margin-bottom:1px}.mg-xs-l-1{margin-left:1px}.mg-xs-t-1-f{margin-top:1px !important}.mg-xs-r-1-f{margin-right:1px !important}.mg-xs-b-1-f{margin-bottom:1px !important}.mg-xs-l-1-f{margin-left:1px !important}.mg-xs-2{margin:2px}.mg-xs-2-f{margin:2px !important}.mg-xs-y-2{margin-top:2px;margin-bottom:2px}.mg-xs-y-2-f{margin-top:2px !important;margin-bottom:2px !important}.mg-xs-x-2{margin-left:2px;margin-right:2px}.mg-xs-x-2-f{margin-left:2px !important;margin-right:2px !important}.mg-xs-t-2{margin-top:2px}.mg-xs-r-2{margin-right:2px}.mg-xs-b-2{margin-bottom:2px}.mg-xs-l-2{margin-left:2px}.mg-xs-t-2-f{margin-top:2px !important}.mg-xs-r-2-f{margin-right:2px !important}.mg-xs-b-2-f{margin-bottom:2px !important}.mg-xs-l-2-f{margin-left:2px !important}.mg-xs-3{margin:3px}.mg-xs-3-f{margin:3px !important}.mg-xs-y-3{margin-top:3px;margin-bottom:3px}.mg-xs-y-3-f{margin-top:3px !important;margin-bottom:3px !important}.mg-xs-x-3{margin-left:3px;margin-right:3px}.mg-xs-x-3-f{margin-left:3px !important;margin-right:3px !important}.mg-xs-t-3{margin-top:3px}.mg-xs-r-3{margin-right:3px}.mg-xs-b-3{margin-bottom:3px}.mg-xs-l-3{margin-left:3px}.mg-xs-t-3-f{margin-top:3px !important}.mg-xs-r-3-f{margin-right:3px !important}.mg-xs-b-3-f{margin-bottom:3px !important}.mg-xs-l-3-f{margin-left:3px !important}.mg-xs-4{margin:4px}.mg-xs-4-f{margin:4px !important}.mg-xs-y-4{margin-top:4px;margin-bottom:4px}.mg-xs-y-4-f{margin-top:4px !important;margin-bottom:4px !important}.mg-xs-x-4{margin-left:4px;margin-right:4px}.mg-xs-x-4-f{margin-left:4px !important;margin-right:4px !important}.mg-xs-t-4{margin-top:4px}.mg-xs-r-4{margin-right:4px}.mg-xs-b-4{margin-bottom:4px}.mg-xs-l-4{margin-left:4px}.mg-xs-t-4-f{margin-top:4px !important}.mg-xs-r-4-f{margin-right:4px !important}.mg-xs-b-4-f{margin-bottom:4px !important}.mg-xs-l-4-f{margin-left:4px !important}.mg-xs-5{margin:5px}.mg-xs-5-f{margin:5px !important}.mg-xs-y-5{margin-top:5px;margin-bottom:5px}.mg-xs-y-5-f{margin-top:5px !important;margin-bottom:5px !important}.mg-xs-x-5{margin-left:5px;margin-right:5px}.mg-xs-x-5-f{margin-left:5px !important;margin-right:5px !important}.mg-xs-t-5{margin-top:5px}.mg-xs-r-5{margin-right:5px}.mg-xs-b-5{margin-bottom:5px}.mg-xs-l-5{margin-left:5px}.mg-xs-t-5-f{margin-top:5px !important}.mg-xs-r-5-f{margin-right:5px !important}.mg-xs-b-5-f{margin-bottom:5px !important}.mg-xs-l-5-f{margin-left:5px !important}.mg-xs-6{margin:6px}.mg-xs-6-f{margin:6px !important}.mg-xs-y-6{margin-top:6px;margin-bottom:6px}.mg-xs-y-6-f{margin-top:6px !important;margin-bottom:6px !important}.mg-xs-x-6{margin-left:6px;margin-right:6px}.mg-xs-x-6-f{margin-left:6px !important;margin-right:6px !important}.mg-xs-t-6{margin-top:6px}.mg-xs-r-6{margin-right:6px}.mg-xs-b-6{margin-bottom:6px}.mg-xs-l-6{margin-left:6px}.mg-xs-t-6-f{margin-top:6px !important}.mg-xs-r-6-f{margin-right:6px !important}.mg-xs-b-6-f{margin-bottom:6px !important}.mg-xs-l-6-f{margin-left:6px !important}.mg-xs-7{margin:7px}.mg-xs-7-f{margin:7px !important}.mg-xs-y-7{margin-top:7px;margin-bottom:7px}.mg-xs-y-7-f{margin-top:7px !important;margin-bottom:7px !important}.mg-xs-x-7{margin-left:7px;margin-right:7px}.mg-xs-x-7-f{margin-left:7px !important;margin-right:7px !important}.mg-xs-t-7{margin-top:7px}.mg-xs-r-7{margin-right:7px}.mg-xs-b-7{margin-bottom:7px}.mg-xs-l-7{margin-left:7px}.mg-xs-t-7-f{margin-top:7px !important}.mg-xs-r-7-f{margin-right:7px !important}.mg-xs-b-7-f{margin-bottom:7px !important}.mg-xs-l-7-f{margin-left:7px !important}.mg-xs-8{margin:8px}.mg-xs-8-f{margin:8px !important}.mg-xs-y-8{margin-top:8px;margin-bottom:8px}.mg-xs-y-8-f{margin-top:8px !important;margin-bottom:8px !important}.mg-xs-x-8{margin-left:8px;margin-right:8px}.mg-xs-x-8-f{margin-left:8px !important;margin-right:8px !important}.mg-xs-t-8{margin-top:8px}.mg-xs-r-8{margin-right:8px}.mg-xs-b-8{margin-bottom:8px}.mg-xs-l-8{margin-left:8px}.mg-xs-t-8-f{margin-top:8px !important}.mg-xs-r-8-f{margin-right:8px !important}.mg-xs-b-8-f{margin-bottom:8px !important}.mg-xs-l-8-f{margin-left:8px !important}.mg-xs-9{margin:9px}.mg-xs-9-f{margin:9px !important}.mg-xs-y-9{margin-top:9px;margin-bottom:9px}.mg-xs-y-9-f{margin-top:9px !important;margin-bottom:9px !important}.mg-xs-x-9{margin-left:9px;margin-right:9px}.mg-xs-x-9-f{margin-left:9px !important;margin-right:9px !important}.mg-xs-t-9{margin-top:9px}.mg-xs-r-9{margin-right:9px}.mg-xs-b-9{margin-bottom:9px}.mg-xs-l-9{margin-left:9px}.mg-xs-t-9-f{margin-top:9px !important}.mg-xs-r-9-f{margin-right:9px !important}.mg-xs-b-9-f{margin-bottom:9px !important}.mg-xs-l-9-f{margin-left:9px !important}.mg-xs-10{margin:10px}.mg-xs-10-f{margin:10px !important}.mg-xs-y-10{margin-top:10px;margin-bottom:10px}.mg-xs-y-10-f{margin-top:10px !important;margin-bottom:10px !important}.mg-xs-x-10{margin-left:10px;margin-right:10px}.mg-xs-x-10-f{margin-left:10px !important;margin-right:10px !important}.mg-xs-t-10{margin-top:10px}.mg-xs-r-10{margin-right:10px}.mg-xs-b-10{margin-bottom:10px}.mg-xs-l-10{margin-left:10px}.mg-xs-t-10-f{margin-top:10px !important}.mg-xs-r-10-f{margin-right:10px !important}.mg-xs-b-10-f{margin-bottom:10px !important}.mg-xs-l-10-f{margin-left:10px !important}.mg-xs-15{margin:15px}.mg-xs-15-f{margin:15px !important}.mg-xs-y-15{margin-top:15px;margin-bottom:15px}.mg-xs-y-15-f{margin-top:15px !important;margin-bottom:15px !important}.mg-xs-x-15{margin-left:15px;margin-right:15px}.mg-xs-x-15-f{margin-left:15px !important;margin-right:15px !important}.mg-xs-t-15{margin-top:15px}.mg-xs-r-15{margin-right:15px}.mg-xs-b-15{margin-bottom:15px}.mg-xs-l-15{margin-left:15px}.mg-xs-t-15-f{margin-top:15px !important}.mg-xs-r-15-f{margin-right:15px !important}.mg-xs-b-15-f{margin-bottom:15px !important}.mg-xs-l-15-f{margin-left:15px !important}.mg-xs-20{margin:20px}.mg-xs-20-f{margin:20px !important}.mg-xs-y-20{margin-top:20px;margin-bottom:20px}.mg-xs-y-20-f{margin-top:20px !important;margin-bottom:20px !important}.mg-xs-x-20{margin-left:20px;margin-right:20px}.mg-xs-x-20-f{margin-left:20px !important;margin-right:20px !important}.mg-xs-t-20{margin-top:20px}.mg-xs-r-20{margin-right:20px}.mg-xs-b-20{margin-bottom:20px}.mg-xs-l-20{margin-left:20px}.mg-xs-t-20-f{margin-top:20px !important}.mg-xs-r-20-f{margin-right:20px !important}.mg-xs-b-20-f{margin-bottom:20px !important}.mg-xs-l-20-f{margin-left:20px !important}.mg-xs-25{margin:25px}.mg-xs-25-f{margin:25px !important}.mg-xs-y-25{margin-top:25px;margin-bottom:25px}.mg-xs-y-25-f{margin-top:25px !important;margin-bottom:25px !important}.mg-xs-x-25{margin-left:25px;margin-right:25px}.mg-xs-x-25-f{margin-left:25px !important;margin-right:25px !important}.mg-xs-t-25{margin-top:25px}.mg-xs-r-25{margin-right:25px}.mg-xs-b-25{margin-bottom:25px}.mg-xs-l-25{margin-left:25px}.mg-xs-t-25-f{margin-top:25px !important}.mg-xs-r-25-f{margin-right:25px !important}.mg-xs-b-25-f{margin-bottom:25px !important}.mg-xs-l-25-f{margin-left:25px !important}.mg-xs-30{margin:30px}.mg-xs-30-f{margin:30px !important}.mg-xs-y-30{margin-top:30px;margin-bottom:30px}.mg-xs-y-30-f{margin-top:30px !important;margin-bottom:30px !important}.mg-xs-x-30{margin-left:30px;margin-right:30px}.mg-xs-x-30-f{margin-left:30px !important;margin-right:30px !important}.mg-xs-t-30{margin-top:30px}.mg-xs-r-30{margin-right:30px}.mg-xs-b-30{margin-bottom:30px}.mg-xs-l-30{margin-left:30px}.mg-xs-t-30-f{margin-top:30px !important}.mg-xs-r-30-f{margin-right:30px !important}.mg-xs-b-30-f{margin-bottom:30px !important}.mg-xs-l-30-f{margin-left:30px !important}.mg-xs-35{margin:35px}.mg-xs-35-f{margin:35px !important}.mg-xs-y-35{margin-top:35px;margin-bottom:35px}.mg-xs-y-35-f{margin-top:35px !important;margin-bottom:35px !important}.mg-xs-x-35{margin-left:35px;margin-right:35px}.mg-xs-x-35-f{margin-left:35px !important;margin-right:35px !important}.mg-xs-t-35{margin-top:35px}.mg-xs-r-35{margin-right:35px}.mg-xs-b-35{margin-bottom:35px}.mg-xs-l-35{margin-left:35px}.mg-xs-t-35-f{margin-top:35px !important}.mg-xs-r-35-f{margin-right:35px !important}.mg-xs-b-35-f{margin-bottom:35px !important}.mg-xs-l-35-f{margin-left:35px !important}.mg-xs-40{margin:40px}.mg-xs-40-f{margin:40px !important}.mg-xs-y-40{margin-top:40px;margin-bottom:40px}.mg-xs-y-40-f{margin-top:40px !important;margin-bottom:40px !important}.mg-xs-x-40{margin-left:40px;margin-right:40px}.mg-xs-x-40-f{margin-left:40px !important;margin-right:40px !important}.mg-xs-t-40{margin-top:40px}.mg-xs-r-40{margin-right:40px}.mg-xs-b-40{margin-bottom:40px}.mg-xs-l-40{margin-left:40px}.mg-xs-t-40-f{margin-top:40px !important}.mg-xs-r-40-f{margin-right:40px !important}.mg-xs-b-40-f{margin-bottom:40px !important}.mg-xs-l-40-f{margin-left:40px !important}.mg-xs-45{margin:45px}.mg-xs-45-f{margin:45px !important}.mg-xs-y-45{margin-top:45px;margin-bottom:45px}.mg-xs-y-45-f{margin-top:45px !important;margin-bottom:45px !important}.mg-xs-x-45{margin-left:45px;margin-right:45px}.mg-xs-x-45-f{margin-left:45px !important;margin-right:45px !important}.mg-xs-t-45{margin-top:45px}.mg-xs-r-45{margin-right:45px}.mg-xs-b-45{margin-bottom:45px}.mg-xs-l-45{margin-left:45px}.mg-xs-t-45-f{margin-top:45px !important}.mg-xs-r-45-f{margin-right:45px !important}.mg-xs-b-45-f{margin-bottom:45px !important}.mg-xs-l-45-f{margin-left:45px !important}.mg-xs-50{margin:50px}.mg-xs-50-f{margin:50px !important}.mg-xs-y-50{margin-top:50px;margin-bottom:50px}.mg-xs-y-50-f{margin-top:50px !important;margin-bottom:50px !important}.mg-xs-x-50{margin-left:50px;margin-right:50px}.mg-xs-x-50-f{margin-left:50px !important;margin-right:50px !important}.mg-xs-t-50{margin-top:50px}.mg-xs-r-50{margin-right:50px}.mg-xs-b-50{margin-bottom:50px}.mg-xs-l-50{margin-left:50px}.mg-xs-t-50-f{margin-top:50px !important}.mg-xs-r-50-f{margin-right:50px !important}.mg-xs-b-50-f{margin-bottom:50px !important}.mg-xs-l-50-f{margin-left:50px !important}.mg-xs-55{margin:55px}.mg-xs-55-f{margin:55px !important}.mg-xs-y-55{margin-top:55px;margin-bottom:55px}.mg-xs-y-55-f{margin-top:55px !important;margin-bottom:55px !important}.mg-xs-x-55{margin-left:55px;margin-right:55px}.mg-xs-x-55-f{margin-left:55px !important;margin-right:55px !important}.mg-xs-t-55{margin-top:55px}.mg-xs-r-55{margin-right:55px}.mg-xs-b-55{margin-bottom:55px}.mg-xs-l-55{margin-left:55px}.mg-xs-t-55-f{margin-top:55px !important}.mg-xs-r-55-f{margin-right:55px !important}.mg-xs-b-55-f{margin-bottom:55px !important}.mg-xs-l-55-f{margin-left:55px !important}.mg-xs-60{margin:60px}.mg-xs-60-f{margin:60px !important}.mg-xs-y-60{margin-top:60px;margin-bottom:60px}.mg-xs-y-60-f{margin-top:60px !important;margin-bottom:60px !important}.mg-xs-x-60{margin-left:60px;margin-right:60px}.mg-xs-x-60-f{margin-left:60px !important;margin-right:60px !important}.mg-xs-t-60{margin-top:60px}.mg-xs-r-60{margin-right:60px}.mg-xs-b-60{margin-bottom:60px}.mg-xs-l-60{margin-left:60px}.mg-xs-t-60-f{margin-top:60px !important}.mg-xs-r-60-f{margin-right:60px !important}.mg-xs-b-60-f{margin-bottom:60px !important}.mg-xs-l-60-f{margin-left:60px !important}.mg-xs-65{margin:65px}.mg-xs-65-f{margin:65px !important}.mg-xs-y-65{margin-top:65px;margin-bottom:65px}.mg-xs-y-65-f{margin-top:65px !important;margin-bottom:65px !important}.mg-xs-x-65{margin-left:65px;margin-right:65px}.mg-xs-x-65-f{margin-left:65px !important;margin-right:65px !important}.mg-xs-t-65{margin-top:65px}.mg-xs-r-65{margin-right:65px}.mg-xs-b-65{margin-bottom:65px}.mg-xs-l-65{margin-left:65px}.mg-xs-t-65-f{margin-top:65px !important}.mg-xs-r-65-f{margin-right:65px !important}.mg-xs-b-65-f{margin-bottom:65px !important}.mg-xs-l-65-f{margin-left:65px !important}.mg-xs-70{margin:70px}.mg-xs-70-f{margin:70px !important}.mg-xs-y-70{margin-top:70px;margin-bottom:70px}.mg-xs-y-70-f{margin-top:70px !important;margin-bottom:70px !important}.mg-xs-x-70{margin-left:70px;margin-right:70px}.mg-xs-x-70-f{margin-left:70px !important;margin-right:70px !important}.mg-xs-t-70{margin-top:70px}.mg-xs-r-70{margin-right:70px}.mg-xs-b-70{margin-bottom:70px}.mg-xs-l-70{margin-left:70px}.mg-xs-t-70-f{margin-top:70px !important}.mg-xs-r-70-f{margin-right:70px !important}.mg-xs-b-70-f{margin-bottom:70px !important}.mg-xs-l-70-f{margin-left:70px !important}.mg-xs-75{margin:75px}.mg-xs-75-f{margin:75px !important}.mg-xs-y-75{margin-top:75px;margin-bottom:75px}.mg-xs-y-75-f{margin-top:75px !important;margin-bottom:75px !important}.mg-xs-x-75{margin-left:75px;margin-right:75px}.mg-xs-x-75-f{margin-left:75px !important;margin-right:75px !important}.mg-xs-t-75{margin-top:75px}.mg-xs-r-75{margin-right:75px}.mg-xs-b-75{margin-bottom:75px}.mg-xs-l-75{margin-left:75px}.mg-xs-t-75-f{margin-top:75px !important}.mg-xs-r-75-f{margin-right:75px !important}.mg-xs-b-75-f{margin-bottom:75px !important}.mg-xs-l-75-f{margin-left:75px !important}.mg-xs-80{margin:80px}.mg-xs-80-f{margin:80px !important}.mg-xs-y-80{margin-top:80px;margin-bottom:80px}.mg-xs-y-80-f{margin-top:80px !important;margin-bottom:80px !important}.mg-xs-x-80{margin-left:80px;margin-right:80px}.mg-xs-x-80-f{margin-left:80px !important;margin-right:80px !important}.mg-xs-t-80{margin-top:80px}.mg-xs-r-80{margin-right:80px}.mg-xs-b-80{margin-bottom:80px}.mg-xs-l-80{margin-left:80px}.mg-xs-t-80-f{margin-top:80px !important}.mg-xs-r-80-f{margin-right:80px !important}.mg-xs-b-80-f{margin-bottom:80px !important}.mg-xs-l-80-f{margin-left:80px !important}.mg-xs-85{margin:85px}.mg-xs-85-f{margin:85px !important}.mg-xs-y-85{margin-top:85px;margin-bottom:85px}.mg-xs-y-85-f{margin-top:85px !important;margin-bottom:85px !important}.mg-xs-x-85{margin-left:85px;margin-right:85px}.mg-xs-x-85-f{margin-left:85px !important;margin-right:85px !important}.mg-xs-t-85{margin-top:85px}.mg-xs-r-85{margin-right:85px}.mg-xs-b-85{margin-bottom:85px}.mg-xs-l-85{margin-left:85px}.mg-xs-t-85-f{margin-top:85px !important}.mg-xs-r-85-f{margin-right:85px !important}.mg-xs-b-85-f{margin-bottom:85px !important}.mg-xs-l-85-f{margin-left:85px !important}.mg-xs-90{margin:90px}.mg-xs-90-f{margin:90px !important}.mg-xs-y-90{margin-top:90px;margin-bottom:90px}.mg-xs-y-90-f{margin-top:90px !important;margin-bottom:90px !important}.mg-xs-x-90{margin-left:90px;margin-right:90px}.mg-xs-x-90-f{margin-left:90px !important;margin-right:90px !important}.mg-xs-t-90{margin-top:90px}.mg-xs-r-90{margin-right:90px}.mg-xs-b-90{margin-bottom:90px}.mg-xs-l-90{margin-left:90px}.mg-xs-t-90-f{margin-top:90px !important}.mg-xs-r-90-f{margin-right:90px !important}.mg-xs-b-90-f{margin-bottom:90px !important}.mg-xs-l-90-f{margin-left:90px !important}.mg-xs-95{margin:95px}.mg-xs-95-f{margin:95px !important}.mg-xs-y-95{margin-top:95px;margin-bottom:95px}.mg-xs-y-95-f{margin-top:95px !important;margin-bottom:95px !important}.mg-xs-x-95{margin-left:95px;margin-right:95px}.mg-xs-x-95-f{margin-left:95px !important;margin-right:95px !important}.mg-xs-t-95{margin-top:95px}.mg-xs-r-95{margin-right:95px}.mg-xs-b-95{margin-bottom:95px}.mg-xs-l-95{margin-left:95px}.mg-xs-t-95-f{margin-top:95px !important}.mg-xs-r-95-f{margin-right:95px !important}.mg-xs-b-95-f{margin-bottom:95px !important}.mg-xs-l-95-f{margin-left:95px !important}.mg-xs-100{margin:100px}.mg-xs-100-f{margin:100px !important}.mg-xs-y-100{margin-top:100px;margin-bottom:100px}.mg-xs-y-100-f{margin-top:100px !important;margin-bottom:100px !important}.mg-xs-x-100{margin-left:100px;margin-right:100px}.mg-xs-x-100-f{margin-left:100px !important;margin-right:100px !important}.mg-xs-t-100{margin-top:100px}.mg-xs-r-100{margin-right:100px}.mg-xs-b-100{margin-bottom:100px}.mg-xs-l-100{margin-left:100px}.mg-xs-t-100-f{margin-top:100px !important}.mg-xs-r-100-f{margin-right:100px !important}.mg-xs-b-100-f{margin-bottom:100px !important}.mg-xs-l-100-f{margin-left:100px !important}.mg-xs-t-auto{margin-top:auto}.mg-xs-r-auto{margin-right:auto}.mg-xs-b-auto{margin-bottom:auto}.mg-xs-l-auto{margin-left:auto}.mg-xs-auto{margin:auto}.mg-xs-x-auto{margin-left:auto;margin-right:auto}}@media (min-width: 576px){.mg-sm-0{margin:0px}.mg-sm-0-f{margin:0px !important}.mg-sm-y-0{margin-top:0px;margin-bottom:0px}.mg-sm-y-0-f{margin-top:0px !important;margin-bottom:0px !important}.mg-sm-x-0{margin-left:0px;margin-right:0px}.mg-sm-x-0-f{margin-left:0px !important;margin-right:0px !important}.mg-sm-t-0{margin-top:0px}.mg-sm-r-0{margin-right:0px}.mg-sm-b-0{margin-bottom:0px}.mg-sm-l-0{margin-left:0px}.mg-sm-t-0-f{margin-top:0px !important}.mg-sm-r-0-f{margin-right:0px !important}.mg-sm-b-0-f{margin-bottom:0px !important}.mg-sm-l-0-f{margin-left:0px !important}.mg-sm-1{margin:1px}.mg-sm-1-f{margin:1px !important}.mg-sm-y-1{margin-top:1px;margin-bottom:1px}.mg-sm-y-1-f{margin-top:1px !important;margin-bottom:1px !important}.mg-sm-x-1{margin-left:1px;margin-right:1px}.mg-sm-x-1-f{margin-left:1px !important;margin-right:1px !important}.mg-sm-t-1{margin-top:1px}.mg-sm-r-1{margin-right:1px}.mg-sm-b-1{margin-bottom:1px}.mg-sm-l-1{margin-left:1px}.mg-sm-t-1-f{margin-top:1px !important}.mg-sm-r-1-f{margin-right:1px !important}.mg-sm-b-1-f{margin-bottom:1px !important}.mg-sm-l-1-f{margin-left:1px !important}.mg-sm-2{margin:2px}.mg-sm-2-f{margin:2px !important}.mg-sm-y-2{margin-top:2px;margin-bottom:2px}.mg-sm-y-2-f{margin-top:2px !important;margin-bottom:2px !important}.mg-sm-x-2{margin-left:2px;margin-right:2px}.mg-sm-x-2-f{margin-left:2px !important;margin-right:2px !important}.mg-sm-t-2{margin-top:2px}.mg-sm-r-2{margin-right:2px}.mg-sm-b-2{margin-bottom:2px}.mg-sm-l-2{margin-left:2px}.mg-sm-t-2-f{margin-top:2px !important}.mg-sm-r-2-f{margin-right:2px !important}.mg-sm-b-2-f{margin-bottom:2px !important}.mg-sm-l-2-f{margin-left:2px !important}.mg-sm-3{margin:3px}.mg-sm-3-f{margin:3px !important}.mg-sm-y-3{margin-top:3px;margin-bottom:3px}.mg-sm-y-3-f{margin-top:3px !important;margin-bottom:3px !important}.mg-sm-x-3{margin-left:3px;margin-right:3px}.mg-sm-x-3-f{margin-left:3px !important;margin-right:3px !important}.mg-sm-t-3{margin-top:3px}.mg-sm-r-3{margin-right:3px}.mg-sm-b-3{margin-bottom:3px}.mg-sm-l-3{margin-left:3px}.mg-sm-t-3-f{margin-top:3px !important}.mg-sm-r-3-f{margin-right:3px !important}.mg-sm-b-3-f{margin-bottom:3px !important}.mg-sm-l-3-f{margin-left:3px !important}.mg-sm-4{margin:4px}.mg-sm-4-f{margin:4px !important}.mg-sm-y-4{margin-top:4px;margin-bottom:4px}.mg-sm-y-4-f{margin-top:4px !important;margin-bottom:4px !important}.mg-sm-x-4{margin-left:4px;margin-right:4px}.mg-sm-x-4-f{margin-left:4px !important;margin-right:4px !important}.mg-sm-t-4{margin-top:4px}.mg-sm-r-4{margin-right:4px}.mg-sm-b-4{margin-bottom:4px}.mg-sm-l-4{margin-left:4px}.mg-sm-t-4-f{margin-top:4px !important}.mg-sm-r-4-f{margin-right:4px !important}.mg-sm-b-4-f{margin-bottom:4px !important}.mg-sm-l-4-f{margin-left:4px !important}.mg-sm-5{margin:5px}.mg-sm-5-f{margin:5px !important}.mg-sm-y-5{margin-top:5px;margin-bottom:5px}.mg-sm-y-5-f{margin-top:5px !important;margin-bottom:5px !important}.mg-sm-x-5{margin-left:5px;margin-right:5px}.mg-sm-x-5-f{margin-left:5px !important;margin-right:5px !important}.mg-sm-t-5{margin-top:5px}.mg-sm-r-5{margin-right:5px}.mg-sm-b-5{margin-bottom:5px}.mg-sm-l-5{margin-left:5px}.mg-sm-t-5-f{margin-top:5px !important}.mg-sm-r-5-f{margin-right:5px !important}.mg-sm-b-5-f{margin-bottom:5px !important}.mg-sm-l-5-f{margin-left:5px !important}.mg-sm-6{margin:6px}.mg-sm-6-f{margin:6px !important}.mg-sm-y-6{margin-top:6px;margin-bottom:6px}.mg-sm-y-6-f{margin-top:6px !important;margin-bottom:6px !important}.mg-sm-x-6{margin-left:6px;margin-right:6px}.mg-sm-x-6-f{margin-left:6px !important;margin-right:6px !important}.mg-sm-t-6{margin-top:6px}.mg-sm-r-6{margin-right:6px}.mg-sm-b-6{margin-bottom:6px}.mg-sm-l-6{margin-left:6px}.mg-sm-t-6-f{margin-top:6px !important}.mg-sm-r-6-f{margin-right:6px !important}.mg-sm-b-6-f{margin-bottom:6px !important}.mg-sm-l-6-f{margin-left:6px !important}.mg-sm-7{margin:7px}.mg-sm-7-f{margin:7px !important}.mg-sm-y-7{margin-top:7px;margin-bottom:7px}.mg-sm-y-7-f{margin-top:7px !important;margin-bottom:7px !important}.mg-sm-x-7{margin-left:7px;margin-right:7px}.mg-sm-x-7-f{margin-left:7px !important;margin-right:7px !important}.mg-sm-t-7{margin-top:7px}.mg-sm-r-7{margin-right:7px}.mg-sm-b-7{margin-bottom:7px}.mg-sm-l-7{margin-left:7px}.mg-sm-t-7-f{margin-top:7px !important}.mg-sm-r-7-f{margin-right:7px !important}.mg-sm-b-7-f{margin-bottom:7px !important}.mg-sm-l-7-f{margin-left:7px !important}.mg-sm-8{margin:8px}.mg-sm-8-f{margin:8px !important}.mg-sm-y-8{margin-top:8px;margin-bottom:8px}.mg-sm-y-8-f{margin-top:8px !important;margin-bottom:8px !important}.mg-sm-x-8{margin-left:8px;margin-right:8px}.mg-sm-x-8-f{margin-left:8px !important;margin-right:8px !important}.mg-sm-t-8{margin-top:8px}.mg-sm-r-8{margin-right:8px}.mg-sm-b-8{margin-bottom:8px}.mg-sm-l-8{margin-left:8px}.mg-sm-t-8-f{margin-top:8px !important}.mg-sm-r-8-f{margin-right:8px !important}.mg-sm-b-8-f{margin-bottom:8px !important}.mg-sm-l-8-f{margin-left:8px !important}.mg-sm-9{margin:9px}.mg-sm-9-f{margin:9px !important}.mg-sm-y-9{margin-top:9px;margin-bottom:9px}.mg-sm-y-9-f{margin-top:9px !important;margin-bottom:9px !important}.mg-sm-x-9{margin-left:9px;margin-right:9px}.mg-sm-x-9-f{margin-left:9px !important;margin-right:9px !important}.mg-sm-t-9{margin-top:9px}.mg-sm-r-9{margin-right:9px}.mg-sm-b-9{margin-bottom:9px}.mg-sm-l-9{margin-left:9px}.mg-sm-t-9-f{margin-top:9px !important}.mg-sm-r-9-f{margin-right:9px !important}.mg-sm-b-9-f{margin-bottom:9px !important}.mg-sm-l-9-f{margin-left:9px !important}.mg-sm-10{margin:10px}.mg-sm-10-f{margin:10px !important}.mg-sm-y-10{margin-top:10px;margin-bottom:10px}.mg-sm-y-10-f{margin-top:10px !important;margin-bottom:10px !important}.mg-sm-x-10{margin-left:10px;margin-right:10px}.mg-sm-x-10-f{margin-left:10px !important;margin-right:10px !important}.mg-sm-t-10{margin-top:10px}.mg-sm-r-10{margin-right:10px}.mg-sm-b-10{margin-bottom:10px}.mg-sm-l-10{margin-left:10px}.mg-sm-t-10-f{margin-top:10px !important}.mg-sm-r-10-f{margin-right:10px !important}.mg-sm-b-10-f{margin-bottom:10px !important}.mg-sm-l-10-f{margin-left:10px !important}.mg-sm-15{margin:15px}.mg-sm-15-f{margin:15px !important}.mg-sm-y-15{margin-top:15px;margin-bottom:15px}.mg-sm-y-15-f{margin-top:15px !important;margin-bottom:15px !important}.mg-sm-x-15{margin-left:15px;margin-right:15px}.mg-sm-x-15-f{margin-left:15px !important;margin-right:15px !important}.mg-sm-t-15{margin-top:15px}.mg-sm-r-15{margin-right:15px}.mg-sm-b-15{margin-bottom:15px}.mg-sm-l-15{margin-left:15px}.mg-sm-t-15-f{margin-top:15px !important}.mg-sm-r-15-f{margin-right:15px !important}.mg-sm-b-15-f{margin-bottom:15px !important}.mg-sm-l-15-f{margin-left:15px !important}.mg-sm-20{margin:20px}.mg-sm-20-f{margin:20px !important}.mg-sm-y-20{margin-top:20px;margin-bottom:20px}.mg-sm-y-20-f{margin-top:20px !important;margin-bottom:20px !important}.mg-sm-x-20{margin-left:20px;margin-right:20px}.mg-sm-x-20-f{margin-left:20px !important;margin-right:20px !important}.mg-sm-t-20{margin-top:20px}.mg-sm-r-20{margin-right:20px}.mg-sm-b-20{margin-bottom:20px}.mg-sm-l-20{margin-left:20px}.mg-sm-t-20-f{margin-top:20px !important}.mg-sm-r-20-f{margin-right:20px !important}.mg-sm-b-20-f{margin-bottom:20px !important}.mg-sm-l-20-f{margin-left:20px !important}.mg-sm-25{margin:25px}.mg-sm-25-f{margin:25px !important}.mg-sm-y-25{margin-top:25px;margin-bottom:25px}.mg-sm-y-25-f{margin-top:25px !important;margin-bottom:25px !important}.mg-sm-x-25{margin-left:25px;margin-right:25px}.mg-sm-x-25-f{margin-left:25px !important;margin-right:25px !important}.mg-sm-t-25{margin-top:25px}.mg-sm-r-25{margin-right:25px}.mg-sm-b-25{margin-bottom:25px}.mg-sm-l-25{margin-left:25px}.mg-sm-t-25-f{margin-top:25px !important}.mg-sm-r-25-f{margin-right:25px !important}.mg-sm-b-25-f{margin-bottom:25px !important}.mg-sm-l-25-f{margin-left:25px !important}.mg-sm-30{margin:30px}.mg-sm-30-f{margin:30px !important}.mg-sm-y-30{margin-top:30px;margin-bottom:30px}.mg-sm-y-30-f{margin-top:30px !important;margin-bottom:30px !important}.mg-sm-x-30{margin-left:30px;margin-right:30px}.mg-sm-x-30-f{margin-left:30px !important;margin-right:30px !important}.mg-sm-t-30{margin-top:30px}.mg-sm-r-30{margin-right:30px}.mg-sm-b-30{margin-bottom:30px}.mg-sm-l-30{margin-left:30px}.mg-sm-t-30-f{margin-top:30px !important}.mg-sm-r-30-f{margin-right:30px !important}.mg-sm-b-30-f{margin-bottom:30px !important}.mg-sm-l-30-f{margin-left:30px !important}.mg-sm-35{margin:35px}.mg-sm-35-f{margin:35px !important}.mg-sm-y-35{margin-top:35px;margin-bottom:35px}.mg-sm-y-35-f{margin-top:35px !important;margin-bottom:35px !important}.mg-sm-x-35{margin-left:35px;margin-right:35px}.mg-sm-x-35-f{margin-left:35px !important;margin-right:35px !important}.mg-sm-t-35{margin-top:35px}.mg-sm-r-35{margin-right:35px}.mg-sm-b-35{margin-bottom:35px}.mg-sm-l-35{margin-left:35px}.mg-sm-t-35-f{margin-top:35px !important}.mg-sm-r-35-f{margin-right:35px !important}.mg-sm-b-35-f{margin-bottom:35px !important}.mg-sm-l-35-f{margin-left:35px !important}.mg-sm-40{margin:40px}.mg-sm-40-f{margin:40px !important}.mg-sm-y-40{margin-top:40px;margin-bottom:40px}.mg-sm-y-40-f{margin-top:40px !important;margin-bottom:40px !important}.mg-sm-x-40{margin-left:40px;margin-right:40px}.mg-sm-x-40-f{margin-left:40px !important;margin-right:40px !important}.mg-sm-t-40{margin-top:40px}.mg-sm-r-40{margin-right:40px}.mg-sm-b-40{margin-bottom:40px}.mg-sm-l-40{margin-left:40px}.mg-sm-t-40-f{margin-top:40px !important}.mg-sm-r-40-f{margin-right:40px !important}.mg-sm-b-40-f{margin-bottom:40px !important}.mg-sm-l-40-f{margin-left:40px !important}.mg-sm-45{margin:45px}.mg-sm-45-f{margin:45px !important}.mg-sm-y-45{margin-top:45px;margin-bottom:45px}.mg-sm-y-45-f{margin-top:45px !important;margin-bottom:45px !important}.mg-sm-x-45{margin-left:45px;margin-right:45px}.mg-sm-x-45-f{margin-left:45px !important;margin-right:45px !important}.mg-sm-t-45{margin-top:45px}.mg-sm-r-45{margin-right:45px}.mg-sm-b-45{margin-bottom:45px}.mg-sm-l-45{margin-left:45px}.mg-sm-t-45-f{margin-top:45px !important}.mg-sm-r-45-f{margin-right:45px !important}.mg-sm-b-45-f{margin-bottom:45px !important}.mg-sm-l-45-f{margin-left:45px !important}.mg-sm-50{margin:50px}.mg-sm-50-f{margin:50px !important}.mg-sm-y-50{margin-top:50px;margin-bottom:50px}.mg-sm-y-50-f{margin-top:50px !important;margin-bottom:50px !important}.mg-sm-x-50{margin-left:50px;margin-right:50px}.mg-sm-x-50-f{margin-left:50px !important;margin-right:50px !important}.mg-sm-t-50{margin-top:50px}.mg-sm-r-50{margin-right:50px}.mg-sm-b-50{margin-bottom:50px}.mg-sm-l-50{margin-left:50px}.mg-sm-t-50-f{margin-top:50px !important}.mg-sm-r-50-f{margin-right:50px !important}.mg-sm-b-50-f{margin-bottom:50px !important}.mg-sm-l-50-f{margin-left:50px !important}.mg-sm-55{margin:55px}.mg-sm-55-f{margin:55px !important}.mg-sm-y-55{margin-top:55px;margin-bottom:55px}.mg-sm-y-55-f{margin-top:55px !important;margin-bottom:55px !important}.mg-sm-x-55{margin-left:55px;margin-right:55px}.mg-sm-x-55-f{margin-left:55px !important;margin-right:55px !important}.mg-sm-t-55{margin-top:55px}.mg-sm-r-55{margin-right:55px}.mg-sm-b-55{margin-bottom:55px}.mg-sm-l-55{margin-left:55px}.mg-sm-t-55-f{margin-top:55px !important}.mg-sm-r-55-f{margin-right:55px !important}.mg-sm-b-55-f{margin-bottom:55px !important}.mg-sm-l-55-f{margin-left:55px !important}.mg-sm-60{margin:60px}.mg-sm-60-f{margin:60px !important}.mg-sm-y-60{margin-top:60px;margin-bottom:60px}.mg-sm-y-60-f{margin-top:60px !important;margin-bottom:60px !important}.mg-sm-x-60{margin-left:60px;margin-right:60px}.mg-sm-x-60-f{margin-left:60px !important;margin-right:60px !important}.mg-sm-t-60{margin-top:60px}.mg-sm-r-60{margin-right:60px}.mg-sm-b-60{margin-bottom:60px}.mg-sm-l-60{margin-left:60px}.mg-sm-t-60-f{margin-top:60px !important}.mg-sm-r-60-f{margin-right:60px !important}.mg-sm-b-60-f{margin-bottom:60px !important}.mg-sm-l-60-f{margin-left:60px !important}.mg-sm-65{margin:65px}.mg-sm-65-f{margin:65px !important}.mg-sm-y-65{margin-top:65px;margin-bottom:65px}.mg-sm-y-65-f{margin-top:65px !important;margin-bottom:65px !important}.mg-sm-x-65{margin-left:65px;margin-right:65px}.mg-sm-x-65-f{margin-left:65px !important;margin-right:65px !important}.mg-sm-t-65{margin-top:65px}.mg-sm-r-65{margin-right:65px}.mg-sm-b-65{margin-bottom:65px}.mg-sm-l-65{margin-left:65px}.mg-sm-t-65-f{margin-top:65px !important}.mg-sm-r-65-f{margin-right:65px !important}.mg-sm-b-65-f{margin-bottom:65px !important}.mg-sm-l-65-f{margin-left:65px !important}.mg-sm-70{margin:70px}.mg-sm-70-f{margin:70px !important}.mg-sm-y-70{margin-top:70px;margin-bottom:70px}.mg-sm-y-70-f{margin-top:70px !important;margin-bottom:70px !important}.mg-sm-x-70{margin-left:70px;margin-right:70px}.mg-sm-x-70-f{margin-left:70px !important;margin-right:70px !important}.mg-sm-t-70{margin-top:70px}.mg-sm-r-70{margin-right:70px}.mg-sm-b-70{margin-bottom:70px}.mg-sm-l-70{margin-left:70px}.mg-sm-t-70-f{margin-top:70px !important}.mg-sm-r-70-f{margin-right:70px !important}.mg-sm-b-70-f{margin-bottom:70px !important}.mg-sm-l-70-f{margin-left:70px !important}.mg-sm-75{margin:75px}.mg-sm-75-f{margin:75px !important}.mg-sm-y-75{margin-top:75px;margin-bottom:75px}.mg-sm-y-75-f{margin-top:75px !important;margin-bottom:75px !important}.mg-sm-x-75{margin-left:75px;margin-right:75px}.mg-sm-x-75-f{margin-left:75px !important;margin-right:75px !important}.mg-sm-t-75{margin-top:75px}.mg-sm-r-75{margin-right:75px}.mg-sm-b-75{margin-bottom:75px}.mg-sm-l-75{margin-left:75px}.mg-sm-t-75-f{margin-top:75px !important}.mg-sm-r-75-f{margin-right:75px !important}.mg-sm-b-75-f{margin-bottom:75px !important}.mg-sm-l-75-f{margin-left:75px !important}.mg-sm-80{margin:80px}.mg-sm-80-f{margin:80px !important}.mg-sm-y-80{margin-top:80px;margin-bottom:80px}.mg-sm-y-80-f{margin-top:80px !important;margin-bottom:80px !important}.mg-sm-x-80{margin-left:80px;margin-right:80px}.mg-sm-x-80-f{margin-left:80px !important;margin-right:80px !important}.mg-sm-t-80{margin-top:80px}.mg-sm-r-80{margin-right:80px}.mg-sm-b-80{margin-bottom:80px}.mg-sm-l-80{margin-left:80px}.mg-sm-t-80-f{margin-top:80px !important}.mg-sm-r-80-f{margin-right:80px !important}.mg-sm-b-80-f{margin-bottom:80px !important}.mg-sm-l-80-f{margin-left:80px !important}.mg-sm-85{margin:85px}.mg-sm-85-f{margin:85px !important}.mg-sm-y-85{margin-top:85px;margin-bottom:85px}.mg-sm-y-85-f{margin-top:85px !important;margin-bottom:85px !important}.mg-sm-x-85{margin-left:85px;margin-right:85px}.mg-sm-x-85-f{margin-left:85px !important;margin-right:85px !important}.mg-sm-t-85{margin-top:85px}.mg-sm-r-85{margin-right:85px}.mg-sm-b-85{margin-bottom:85px}.mg-sm-l-85{margin-left:85px}.mg-sm-t-85-f{margin-top:85px !important}.mg-sm-r-85-f{margin-right:85px !important}.mg-sm-b-85-f{margin-bottom:85px !important}.mg-sm-l-85-f{margin-left:85px !important}.mg-sm-90{margin:90px}.mg-sm-90-f{margin:90px !important}.mg-sm-y-90{margin-top:90px;margin-bottom:90px}.mg-sm-y-90-f{margin-top:90px !important;margin-bottom:90px !important}.mg-sm-x-90{margin-left:90px;margin-right:90px}.mg-sm-x-90-f{margin-left:90px !important;margin-right:90px !important}.mg-sm-t-90{margin-top:90px}.mg-sm-r-90{margin-right:90px}.mg-sm-b-90{margin-bottom:90px}.mg-sm-l-90{margin-left:90px}.mg-sm-t-90-f{margin-top:90px !important}.mg-sm-r-90-f{margin-right:90px !important}.mg-sm-b-90-f{margin-bottom:90px !important}.mg-sm-l-90-f{margin-left:90px !important}.mg-sm-95{margin:95px}.mg-sm-95-f{margin:95px !important}.mg-sm-y-95{margin-top:95px;margin-bottom:95px}.mg-sm-y-95-f{margin-top:95px !important;margin-bottom:95px !important}.mg-sm-x-95{margin-left:95px;margin-right:95px}.mg-sm-x-95-f{margin-left:95px !important;margin-right:95px !important}.mg-sm-t-95{margin-top:95px}.mg-sm-r-95{margin-right:95px}.mg-sm-b-95{margin-bottom:95px}.mg-sm-l-95{margin-left:95px}.mg-sm-t-95-f{margin-top:95px !important}.mg-sm-r-95-f{margin-right:95px !important}.mg-sm-b-95-f{margin-bottom:95px !important}.mg-sm-l-95-f{margin-left:95px !important}.mg-sm-100{margin:100px}.mg-sm-100-f{margin:100px !important}.mg-sm-y-100{margin-top:100px;margin-bottom:100px}.mg-sm-y-100-f{margin-top:100px !important;margin-bottom:100px !important}.mg-sm-x-100{margin-left:100px;margin-right:100px}.mg-sm-x-100-f{margin-left:100px !important;margin-right:100px !important}.mg-sm-t-100{margin-top:100px}.mg-sm-r-100{margin-right:100px}.mg-sm-b-100{margin-bottom:100px}.mg-sm-l-100{margin-left:100px}.mg-sm-t-100-f{margin-top:100px !important}.mg-sm-r-100-f{margin-right:100px !important}.mg-sm-b-100-f{margin-bottom:100px !important}.mg-sm-l-100-f{margin-left:100px !important}.mg-sm-t-auto{margin-top:auto}.mg-sm-r-auto{margin-right:auto}.mg-sm-b-auto{margin-bottom:auto}.mg-sm-l-auto{margin-left:auto}.mg-sm-auto{margin:auto}.mg-sm-x-auto{margin-left:auto;margin-right:auto}}@media (min-width: 768px){.mg-md-0{margin:0px}.mg-md-0-f{margin:0px !important}.mg-md-y-0{margin-top:0px;margin-bottom:0px}.mg-md-y-0-f{margin-top:0px !important;margin-bottom:0px !important}.mg-md-x-0{margin-left:0px;margin-right:0px}.mg-md-x-0-f{margin-left:0px !important;margin-right:0px !important}.mg-md-t-0{margin-top:0px}.mg-md-r-0{margin-right:0px}.mg-md-b-0{margin-bottom:0px}.mg-md-l-0{margin-left:0px}.mg-md-t-0-f{margin-top:0px !important}.mg-md-r-0-f{margin-right:0px !important}.mg-md-b-0-f{margin-bottom:0px !important}.mg-md-l-0-f{margin-left:0px !important}.mg-md-1{margin:1px}.mg-md-1-f{margin:1px !important}.mg-md-y-1{margin-top:1px;margin-bottom:1px}.mg-md-y-1-f{margin-top:1px !important;margin-bottom:1px !important}.mg-md-x-1{margin-left:1px;margin-right:1px}.mg-md-x-1-f{margin-left:1px !important;margin-right:1px !important}.mg-md-t-1{margin-top:1px}.mg-md-r-1{margin-right:1px}.mg-md-b-1{margin-bottom:1px}.mg-md-l-1{margin-left:1px}.mg-md-t-1-f{margin-top:1px !important}.mg-md-r-1-f{margin-right:1px !important}.mg-md-b-1-f{margin-bottom:1px !important}.mg-md-l-1-f{margin-left:1px !important}.mg-md-2{margin:2px}.mg-md-2-f{margin:2px !important}.mg-md-y-2{margin-top:2px;margin-bottom:2px}.mg-md-y-2-f{margin-top:2px !important;margin-bottom:2px !important}.mg-md-x-2{margin-left:2px;margin-right:2px}.mg-md-x-2-f{margin-left:2px !important;margin-right:2px !important}.mg-md-t-2{margin-top:2px}.mg-md-r-2{margin-right:2px}.mg-md-b-2{margin-bottom:2px}.mg-md-l-2{margin-left:2px}.mg-md-t-2-f{margin-top:2px !important}.mg-md-r-2-f{margin-right:2px !important}.mg-md-b-2-f{margin-bottom:2px !important}.mg-md-l-2-f{margin-left:2px !important}.mg-md-3{margin:3px}.mg-md-3-f{margin:3px !important}.mg-md-y-3{margin-top:3px;margin-bottom:3px}.mg-md-y-3-f{margin-top:3px !important;margin-bottom:3px !important}.mg-md-x-3{margin-left:3px;margin-right:3px}.mg-md-x-3-f{margin-left:3px !important;margin-right:3px !important}.mg-md-t-3{margin-top:3px}.mg-md-r-3{margin-right:3px}.mg-md-b-3{margin-bottom:3px}.mg-md-l-3{margin-left:3px}.mg-md-t-3-f{margin-top:3px !important}.mg-md-r-3-f{margin-right:3px !important}.mg-md-b-3-f{margin-bottom:3px !important}.mg-md-l-3-f{margin-left:3px !important}.mg-md-4{margin:4px}.mg-md-4-f{margin:4px !important}.mg-md-y-4{margin-top:4px;margin-bottom:4px}.mg-md-y-4-f{margin-top:4px !important;margin-bottom:4px !important}.mg-md-x-4{margin-left:4px;margin-right:4px}.mg-md-x-4-f{margin-left:4px !important;margin-right:4px !important}.mg-md-t-4{margin-top:4px}.mg-md-r-4{margin-right:4px}.mg-md-b-4{margin-bottom:4px}.mg-md-l-4{margin-left:4px}.mg-md-t-4-f{margin-top:4px !important}.mg-md-r-4-f{margin-right:4px !important}.mg-md-b-4-f{margin-bottom:4px !important}.mg-md-l-4-f{margin-left:4px !important}.mg-md-5{margin:5px}.mg-md-5-f{margin:5px !important}.mg-md-y-5{margin-top:5px;margin-bottom:5px}.mg-md-y-5-f{margin-top:5px !important;margin-bottom:5px !important}.mg-md-x-5{margin-left:5px;margin-right:5px}.mg-md-x-5-f{margin-left:5px !important;margin-right:5px !important}.mg-md-t-5{margin-top:5px}.mg-md-r-5{margin-right:5px}.mg-md-b-5{margin-bottom:5px}.mg-md-l-5{margin-left:5px}.mg-md-t-5-f{margin-top:5px !important}.mg-md-r-5-f{margin-right:5px !important}.mg-md-b-5-f{margin-bottom:5px !important}.mg-md-l-5-f{margin-left:5px !important}.mg-md-6{margin:6px}.mg-md-6-f{margin:6px !important}.mg-md-y-6{margin-top:6px;margin-bottom:6px}.mg-md-y-6-f{margin-top:6px !important;margin-bottom:6px !important}.mg-md-x-6{margin-left:6px;margin-right:6px}.mg-md-x-6-f{margin-left:6px !important;margin-right:6px !important}.mg-md-t-6{margin-top:6px}.mg-md-r-6{margin-right:6px}.mg-md-b-6{margin-bottom:6px}.mg-md-l-6{margin-left:6px}.mg-md-t-6-f{margin-top:6px !important}.mg-md-r-6-f{margin-right:6px !important}.mg-md-b-6-f{margin-bottom:6px !important}.mg-md-l-6-f{margin-left:6px !important}.mg-md-7{margin:7px}.mg-md-7-f{margin:7px !important}.mg-md-y-7{margin-top:7px;margin-bottom:7px}.mg-md-y-7-f{margin-top:7px !important;margin-bottom:7px !important}.mg-md-x-7{margin-left:7px;margin-right:7px}.mg-md-x-7-f{margin-left:7px !important;margin-right:7px !important}.mg-md-t-7{margin-top:7px}.mg-md-r-7{margin-right:7px}.mg-md-b-7{margin-bottom:7px}.mg-md-l-7{margin-left:7px}.mg-md-t-7-f{margin-top:7px !important}.mg-md-r-7-f{margin-right:7px !important}.mg-md-b-7-f{margin-bottom:7px !important}.mg-md-l-7-f{margin-left:7px !important}.mg-md-8{margin:8px}.mg-md-8-f{margin:8px !important}.mg-md-y-8{margin-top:8px;margin-bottom:8px}.mg-md-y-8-f{margin-top:8px !important;margin-bottom:8px !important}.mg-md-x-8{margin-left:8px;margin-right:8px}.mg-md-x-8-f{margin-left:8px !important;margin-right:8px !important}.mg-md-t-8{margin-top:8px}.mg-md-r-8{margin-right:8px}.mg-md-b-8{margin-bottom:8px}.mg-md-l-8{margin-left:8px}.mg-md-t-8-f{margin-top:8px !important}.mg-md-r-8-f{margin-right:8px !important}.mg-md-b-8-f{margin-bottom:8px !important}.mg-md-l-8-f{margin-left:8px !important}.mg-md-9{margin:9px}.mg-md-9-f{margin:9px !important}.mg-md-y-9{margin-top:9px;margin-bottom:9px}.mg-md-y-9-f{margin-top:9px !important;margin-bottom:9px !important}.mg-md-x-9{margin-left:9px;margin-right:9px}.mg-md-x-9-f{margin-left:9px !important;margin-right:9px !important}.mg-md-t-9{margin-top:9px}.mg-md-r-9{margin-right:9px}.mg-md-b-9{margin-bottom:9px}.mg-md-l-9{margin-left:9px}.mg-md-t-9-f{margin-top:9px !important}.mg-md-r-9-f{margin-right:9px !important}.mg-md-b-9-f{margin-bottom:9px !important}.mg-md-l-9-f{margin-left:9px !important}.mg-md-10{margin:10px}.mg-md-10-f{margin:10px !important}.mg-md-y-10{margin-top:10px;margin-bottom:10px}.mg-md-y-10-f{margin-top:10px !important;margin-bottom:10px !important}.mg-md-x-10{margin-left:10px;margin-right:10px}.mg-md-x-10-f{margin-left:10px !important;margin-right:10px !important}.mg-md-t-10{margin-top:10px}.mg-md-r-10{margin-right:10px}.mg-md-b-10{margin-bottom:10px}.mg-md-l-10{margin-left:10px}.mg-md-t-10-f{margin-top:10px !important}.mg-md-r-10-f{margin-right:10px !important}.mg-md-b-10-f{margin-bottom:10px !important}.mg-md-l-10-f{margin-left:10px !important}.mg-md-15{margin:15px}.mg-md-15-f{margin:15px !important}.mg-md-y-15{margin-top:15px;margin-bottom:15px}.mg-md-y-15-f{margin-top:15px !important;margin-bottom:15px !important}.mg-md-x-15{margin-left:15px;margin-right:15px}.mg-md-x-15-f{margin-left:15px !important;margin-right:15px !important}.mg-md-t-15{margin-top:15px}.mg-md-r-15{margin-right:15px}.mg-md-b-15{margin-bottom:15px}.mg-md-l-15{margin-left:15px}.mg-md-t-15-f{margin-top:15px !important}.mg-md-r-15-f{margin-right:15px !important}.mg-md-b-15-f{margin-bottom:15px !important}.mg-md-l-15-f{margin-left:15px !important}.mg-md-20{margin:20px}.mg-md-20-f{margin:20px !important}.mg-md-y-20{margin-top:20px;margin-bottom:20px}.mg-md-y-20-f{margin-top:20px !important;margin-bottom:20px !important}.mg-md-x-20{margin-left:20px;margin-right:20px}.mg-md-x-20-f{margin-left:20px !important;margin-right:20px !important}.mg-md-t-20{margin-top:20px}.mg-md-r-20{margin-right:20px}.mg-md-b-20{margin-bottom:20px}.mg-md-l-20{margin-left:20px}.mg-md-t-20-f{margin-top:20px !important}.mg-md-r-20-f{margin-right:20px !important}.mg-md-b-20-f{margin-bottom:20px !important}.mg-md-l-20-f{margin-left:20px !important}.mg-md-25{margin:25px}.mg-md-25-f{margin:25px !important}.mg-md-y-25{margin-top:25px;margin-bottom:25px}.mg-md-y-25-f{margin-top:25px !important;margin-bottom:25px !important}.mg-md-x-25{margin-left:25px;margin-right:25px}.mg-md-x-25-f{margin-left:25px !important;margin-right:25px !important}.mg-md-t-25{margin-top:25px}.mg-md-r-25{margin-right:25px}.mg-md-b-25{margin-bottom:25px}.mg-md-l-25{margin-left:25px}.mg-md-t-25-f{margin-top:25px !important}.mg-md-r-25-f{margin-right:25px !important}.mg-md-b-25-f{margin-bottom:25px !important}.mg-md-l-25-f{margin-left:25px !important}.mg-md-30{margin:30px}.mg-md-30-f{margin:30px !important}.mg-md-y-30{margin-top:30px;margin-bottom:30px}.mg-md-y-30-f{margin-top:30px !important;margin-bottom:30px !important}.mg-md-x-30{margin-left:30px;margin-right:30px}.mg-md-x-30-f{margin-left:30px !important;margin-right:30px !important}.mg-md-t-30{margin-top:30px}.mg-md-r-30{margin-right:30px}.mg-md-b-30{margin-bottom:30px}.mg-md-l-30{margin-left:30px}.mg-md-t-30-f{margin-top:30px !important}.mg-md-r-30-f{margin-right:30px !important}.mg-md-b-30-f{margin-bottom:30px !important}.mg-md-l-30-f{margin-left:30px !important}.mg-md-35{margin:35px}.mg-md-35-f{margin:35px !important}.mg-md-y-35{margin-top:35px;margin-bottom:35px}.mg-md-y-35-f{margin-top:35px !important;margin-bottom:35px !important}.mg-md-x-35{margin-left:35px;margin-right:35px}.mg-md-x-35-f{margin-left:35px !important;margin-right:35px !important}.mg-md-t-35{margin-top:35px}.mg-md-r-35{margin-right:35px}.mg-md-b-35{margin-bottom:35px}.mg-md-l-35{margin-left:35px}.mg-md-t-35-f{margin-top:35px !important}.mg-md-r-35-f{margin-right:35px !important}.mg-md-b-35-f{margin-bottom:35px !important}.mg-md-l-35-f{margin-left:35px !important}.mg-md-40{margin:40px}.mg-md-40-f{margin:40px !important}.mg-md-y-40{margin-top:40px;margin-bottom:40px}.mg-md-y-40-f{margin-top:40px !important;margin-bottom:40px !important}.mg-md-x-40{margin-left:40px;margin-right:40px}.mg-md-x-40-f{margin-left:40px !important;margin-right:40px !important}.mg-md-t-40{margin-top:40px}.mg-md-r-40{margin-right:40px}.mg-md-b-40{margin-bottom:40px}.mg-md-l-40{margin-left:40px}.mg-md-t-40-f{margin-top:40px !important}.mg-md-r-40-f{margin-right:40px !important}.mg-md-b-40-f{margin-bottom:40px !important}.mg-md-l-40-f{margin-left:40px !important}.mg-md-45{margin:45px}.mg-md-45-f{margin:45px !important}.mg-md-y-45{margin-top:45px;margin-bottom:45px}.mg-md-y-45-f{margin-top:45px !important;margin-bottom:45px !important}.mg-md-x-45{margin-left:45px;margin-right:45px}.mg-md-x-45-f{margin-left:45px !important;margin-right:45px !important}.mg-md-t-45{margin-top:45px}.mg-md-r-45{margin-right:45px}.mg-md-b-45{margin-bottom:45px}.mg-md-l-45{margin-left:45px}.mg-md-t-45-f{margin-top:45px !important}.mg-md-r-45-f{margin-right:45px !important}.mg-md-b-45-f{margin-bottom:45px !important}.mg-md-l-45-f{margin-left:45px !important}.mg-md-50{margin:50px}.mg-md-50-f{margin:50px !important}.mg-md-y-50{margin-top:50px;margin-bottom:50px}.mg-md-y-50-f{margin-top:50px !important;margin-bottom:50px !important}.mg-md-x-50{margin-left:50px;margin-right:50px}.mg-md-x-50-f{margin-left:50px !important;margin-right:50px !important}.mg-md-t-50{margin-top:50px}.mg-md-r-50{margin-right:50px}.mg-md-b-50{margin-bottom:50px}.mg-md-l-50{margin-left:50px}.mg-md-t-50-f{margin-top:50px !important}.mg-md-r-50-f{margin-right:50px !important}.mg-md-b-50-f{margin-bottom:50px !important}.mg-md-l-50-f{margin-left:50px !important}.mg-md-55{margin:55px}.mg-md-55-f{margin:55px !important}.mg-md-y-55{margin-top:55px;margin-bottom:55px}.mg-md-y-55-f{margin-top:55px !important;margin-bottom:55px !important}.mg-md-x-55{margin-left:55px;margin-right:55px}.mg-md-x-55-f{margin-left:55px !important;margin-right:55px !important}.mg-md-t-55{margin-top:55px}.mg-md-r-55{margin-right:55px}.mg-md-b-55{margin-bottom:55px}.mg-md-l-55{margin-left:55px}.mg-md-t-55-f{margin-top:55px !important}.mg-md-r-55-f{margin-right:55px !important}.mg-md-b-55-f{margin-bottom:55px !important}.mg-md-l-55-f{margin-left:55px !important}.mg-md-60{margin:60px}.mg-md-60-f{margin:60px !important}.mg-md-y-60{margin-top:60px;margin-bottom:60px}.mg-md-y-60-f{margin-top:60px !important;margin-bottom:60px !important}.mg-md-x-60{margin-left:60px;margin-right:60px}.mg-md-x-60-f{margin-left:60px !important;margin-right:60px !important}.mg-md-t-60{margin-top:60px}.mg-md-r-60{margin-right:60px}.mg-md-b-60{margin-bottom:60px}.mg-md-l-60{margin-left:60px}.mg-md-t-60-f{margin-top:60px !important}.mg-md-r-60-f{margin-right:60px !important}.mg-md-b-60-f{margin-bottom:60px !important}.mg-md-l-60-f{margin-left:60px !important}.mg-md-65{margin:65px}.mg-md-65-f{margin:65px !important}.mg-md-y-65{margin-top:65px;margin-bottom:65px}.mg-md-y-65-f{margin-top:65px !important;margin-bottom:65px !important}.mg-md-x-65{margin-left:65px;margin-right:65px}.mg-md-x-65-f{margin-left:65px !important;margin-right:65px !important}.mg-md-t-65{margin-top:65px}.mg-md-r-65{margin-right:65px}.mg-md-b-65{margin-bottom:65px}.mg-md-l-65{margin-left:65px}.mg-md-t-65-f{margin-top:65px !important}.mg-md-r-65-f{margin-right:65px !important}.mg-md-b-65-f{margin-bottom:65px !important}.mg-md-l-65-f{margin-left:65px !important}.mg-md-70{margin:70px}.mg-md-70-f{margin:70px !important}.mg-md-y-70{margin-top:70px;margin-bottom:70px}.mg-md-y-70-f{margin-top:70px !important;margin-bottom:70px !important}.mg-md-x-70{margin-left:70px;margin-right:70px}.mg-md-x-70-f{margin-left:70px !important;margin-right:70px !important}.mg-md-t-70{margin-top:70px}.mg-md-r-70{margin-right:70px}.mg-md-b-70{margin-bottom:70px}.mg-md-l-70{margin-left:70px}.mg-md-t-70-f{margin-top:70px !important}.mg-md-r-70-f{margin-right:70px !important}.mg-md-b-70-f{margin-bottom:70px !important}.mg-md-l-70-f{margin-left:70px !important}.mg-md-75{margin:75px}.mg-md-75-f{margin:75px !important}.mg-md-y-75{margin-top:75px;margin-bottom:75px}.mg-md-y-75-f{margin-top:75px !important;margin-bottom:75px !important}.mg-md-x-75{margin-left:75px;margin-right:75px}.mg-md-x-75-f{margin-left:75px !important;margin-right:75px !important}.mg-md-t-75{margin-top:75px}.mg-md-r-75{margin-right:75px}.mg-md-b-75{margin-bottom:75px}.mg-md-l-75{margin-left:75px}.mg-md-t-75-f{margin-top:75px !important}.mg-md-r-75-f{margin-right:75px !important}.mg-md-b-75-f{margin-bottom:75px !important}.mg-md-l-75-f{margin-left:75px !important}.mg-md-80{margin:80px}.mg-md-80-f{margin:80px !important}.mg-md-y-80{margin-top:80px;margin-bottom:80px}.mg-md-y-80-f{margin-top:80px !important;margin-bottom:80px !important}.mg-md-x-80{margin-left:80px;margin-right:80px}.mg-md-x-80-f{margin-left:80px !important;margin-right:80px !important}.mg-md-t-80{margin-top:80px}.mg-md-r-80{margin-right:80px}.mg-md-b-80{margin-bottom:80px}.mg-md-l-80{margin-left:80px}.mg-md-t-80-f{margin-top:80px !important}.mg-md-r-80-f{margin-right:80px !important}.mg-md-b-80-f{margin-bottom:80px !important}.mg-md-l-80-f{margin-left:80px !important}.mg-md-85{margin:85px}.mg-md-85-f{margin:85px !important}.mg-md-y-85{margin-top:85px;margin-bottom:85px}.mg-md-y-85-f{margin-top:85px !important;margin-bottom:85px !important}.mg-md-x-85{margin-left:85px;margin-right:85px}.mg-md-x-85-f{margin-left:85px !important;margin-right:85px !important}.mg-md-t-85{margin-top:85px}.mg-md-r-85{margin-right:85px}.mg-md-b-85{margin-bottom:85px}.mg-md-l-85{margin-left:85px}.mg-md-t-85-f{margin-top:85px !important}.mg-md-r-85-f{margin-right:85px !important}.mg-md-b-85-f{margin-bottom:85px !important}.mg-md-l-85-f{margin-left:85px !important}.mg-md-90{margin:90px}.mg-md-90-f{margin:90px !important}.mg-md-y-90{margin-top:90px;margin-bottom:90px}.mg-md-y-90-f{margin-top:90px !important;margin-bottom:90px !important}.mg-md-x-90{margin-left:90px;margin-right:90px}.mg-md-x-90-f{margin-left:90px !important;margin-right:90px !important}.mg-md-t-90{margin-top:90px}.mg-md-r-90{margin-right:90px}.mg-md-b-90{margin-bottom:90px}.mg-md-l-90{margin-left:90px}.mg-md-t-90-f{margin-top:90px !important}.mg-md-r-90-f{margin-right:90px !important}.mg-md-b-90-f{margin-bottom:90px !important}.mg-md-l-90-f{margin-left:90px !important}.mg-md-95{margin:95px}.mg-md-95-f{margin:95px !important}.mg-md-y-95{margin-top:95px;margin-bottom:95px}.mg-md-y-95-f{margin-top:95px !important;margin-bottom:95px !important}.mg-md-x-95{margin-left:95px;margin-right:95px}.mg-md-x-95-f{margin-left:95px !important;margin-right:95px !important}.mg-md-t-95{margin-top:95px}.mg-md-r-95{margin-right:95px}.mg-md-b-95{margin-bottom:95px}.mg-md-l-95{margin-left:95px}.mg-md-t-95-f{margin-top:95px !important}.mg-md-r-95-f{margin-right:95px !important}.mg-md-b-95-f{margin-bottom:95px !important}.mg-md-l-95-f{margin-left:95px !important}.mg-md-100{margin:100px}.mg-md-100-f{margin:100px !important}.mg-md-y-100{margin-top:100px;margin-bottom:100px}.mg-md-y-100-f{margin-top:100px !important;margin-bottom:100px !important}.mg-md-x-100{margin-left:100px;margin-right:100px}.mg-md-x-100-f{margin-left:100px !important;margin-right:100px !important}.mg-md-t-100{margin-top:100px}.mg-md-r-100{margin-right:100px}.mg-md-b-100{margin-bottom:100px}.mg-md-l-100{margin-left:100px}.mg-md-t-100-f{margin-top:100px !important}.mg-md-r-100-f{margin-right:100px !important}.mg-md-b-100-f{margin-bottom:100px !important}.mg-md-l-100-f{margin-left:100px !important}.mg-md-t-auto{margin-top:auto}.mg-md-r-auto{margin-right:auto}.mg-md-b-auto{margin-bottom:auto}.mg-md-l-auto{margin-left:auto}.mg-md-auto{margin:auto}.mg-md-x-auto{margin-left:auto;margin-right:auto}}@media (min-width: 992px){.mg-lg-0{margin:0px}.mg-lg-0-f{margin:0px !important}.mg-lg-y-0{margin-top:0px;margin-bottom:0px}.mg-lg-y-0-f{margin-top:0px !important;margin-bottom:0px !important}.mg-lg-x-0{margin-left:0px;margin-right:0px}.mg-lg-x-0-f{margin-left:0px !important;margin-right:0px !important}.mg-lg-t-0{margin-top:0px}.mg-lg-r-0{margin-right:0px}.mg-lg-b-0{margin-bottom:0px}.mg-lg-l-0{margin-left:0px}.mg-lg-t-0-f{margin-top:0px !important}.mg-lg-r-0-f{margin-right:0px !important}.mg-lg-b-0-f{margin-bottom:0px !important}.mg-lg-l-0-f{margin-left:0px !important}.mg-lg-1{margin:1px}.mg-lg-1-f{margin:1px !important}.mg-lg-y-1{margin-top:1px;margin-bottom:1px}.mg-lg-y-1-f{margin-top:1px !important;margin-bottom:1px !important}.mg-lg-x-1{margin-left:1px;margin-right:1px}.mg-lg-x-1-f{margin-left:1px !important;margin-right:1px !important}.mg-lg-t-1{margin-top:1px}.mg-lg-r-1{margin-right:1px}.mg-lg-b-1{margin-bottom:1px}.mg-lg-l-1{margin-left:1px}.mg-lg-t-1-f{margin-top:1px !important}.mg-lg-r-1-f{margin-right:1px !important}.mg-lg-b-1-f{margin-bottom:1px !important}.mg-lg-l-1-f{margin-left:1px !important}.mg-lg-2{margin:2px}.mg-lg-2-f{margin:2px !important}.mg-lg-y-2{margin-top:2px;margin-bottom:2px}.mg-lg-y-2-f{margin-top:2px !important;margin-bottom:2px !important}.mg-lg-x-2{margin-left:2px;margin-right:2px}.mg-lg-x-2-f{margin-left:2px !important;margin-right:2px !important}.mg-lg-t-2{margin-top:2px}.mg-lg-r-2{margin-right:2px}.mg-lg-b-2{margin-bottom:2px}.mg-lg-l-2{margin-left:2px}.mg-lg-t-2-f{margin-top:2px !important}.mg-lg-r-2-f{margin-right:2px !important}.mg-lg-b-2-f{margin-bottom:2px !important}.mg-lg-l-2-f{margin-left:2px !important}.mg-lg-3{margin:3px}.mg-lg-3-f{margin:3px !important}.mg-lg-y-3{margin-top:3px;margin-bottom:3px}.mg-lg-y-3-f{margin-top:3px !important;margin-bottom:3px !important}.mg-lg-x-3{margin-left:3px;margin-right:3px}.mg-lg-x-3-f{margin-left:3px !important;margin-right:3px !important}.mg-lg-t-3{margin-top:3px}.mg-lg-r-3{margin-right:3px}.mg-lg-b-3{margin-bottom:3px}.mg-lg-l-3{margin-left:3px}.mg-lg-t-3-f{margin-top:3px !important}.mg-lg-r-3-f{margin-right:3px !important}.mg-lg-b-3-f{margin-bottom:3px !important}.mg-lg-l-3-f{margin-left:3px !important}.mg-lg-4{margin:4px}.mg-lg-4-f{margin:4px !important}.mg-lg-y-4{margin-top:4px;margin-bottom:4px}.mg-lg-y-4-f{margin-top:4px !important;margin-bottom:4px !important}.mg-lg-x-4{margin-left:4px;margin-right:4px}.mg-lg-x-4-f{margin-left:4px !important;margin-right:4px !important}.mg-lg-t-4{margin-top:4px}.mg-lg-r-4{margin-right:4px}.mg-lg-b-4{margin-bottom:4px}.mg-lg-l-4{margin-left:4px}.mg-lg-t-4-f{margin-top:4px !important}.mg-lg-r-4-f{margin-right:4px !important}.mg-lg-b-4-f{margin-bottom:4px !important}.mg-lg-l-4-f{margin-left:4px !important}.mg-lg-5{margin:5px}.mg-lg-5-f{margin:5px !important}.mg-lg-y-5{margin-top:5px;margin-bottom:5px}.mg-lg-y-5-f{margin-top:5px !important;margin-bottom:5px !important}.mg-lg-x-5{margin-left:5px;margin-right:5px}.mg-lg-x-5-f{margin-left:5px !important;margin-right:5px !important}.mg-lg-t-5{margin-top:5px}.mg-lg-r-5{margin-right:5px}.mg-lg-b-5{margin-bottom:5px}.mg-lg-l-5{margin-left:5px}.mg-lg-t-5-f{margin-top:5px !important}.mg-lg-r-5-f{margin-right:5px !important}.mg-lg-b-5-f{margin-bottom:5px !important}.mg-lg-l-5-f{margin-left:5px !important}.mg-lg-6{margin:6px}.mg-lg-6-f{margin:6px !important}.mg-lg-y-6{margin-top:6px;margin-bottom:6px}.mg-lg-y-6-f{margin-top:6px !important;margin-bottom:6px !important}.mg-lg-x-6{margin-left:6px;margin-right:6px}.mg-lg-x-6-f{margin-left:6px !important;margin-right:6px !important}.mg-lg-t-6{margin-top:6px}.mg-lg-r-6{margin-right:6px}.mg-lg-b-6{margin-bottom:6px}.mg-lg-l-6{margin-left:6px}.mg-lg-t-6-f{margin-top:6px !important}.mg-lg-r-6-f{margin-right:6px !important}.mg-lg-b-6-f{margin-bottom:6px !important}.mg-lg-l-6-f{margin-left:6px !important}.mg-lg-7{margin:7px}.mg-lg-7-f{margin:7px !important}.mg-lg-y-7{margin-top:7px;margin-bottom:7px}.mg-lg-y-7-f{margin-top:7px !important;margin-bottom:7px !important}.mg-lg-x-7{margin-left:7px;margin-right:7px}.mg-lg-x-7-f{margin-left:7px !important;margin-right:7px !important}.mg-lg-t-7{margin-top:7px}.mg-lg-r-7{margin-right:7px}.mg-lg-b-7{margin-bottom:7px}.mg-lg-l-7{margin-left:7px}.mg-lg-t-7-f{margin-top:7px !important}.mg-lg-r-7-f{margin-right:7px !important}.mg-lg-b-7-f{margin-bottom:7px !important}.mg-lg-l-7-f{margin-left:7px !important}.mg-lg-8{margin:8px}.mg-lg-8-f{margin:8px !important}.mg-lg-y-8{margin-top:8px;margin-bottom:8px}.mg-lg-y-8-f{margin-top:8px !important;margin-bottom:8px !important}.mg-lg-x-8{margin-left:8px;margin-right:8px}.mg-lg-x-8-f{margin-left:8px !important;margin-right:8px !important}.mg-lg-t-8{margin-top:8px}.mg-lg-r-8{margin-right:8px}.mg-lg-b-8{margin-bottom:8px}.mg-lg-l-8{margin-left:8px}.mg-lg-t-8-f{margin-top:8px !important}.mg-lg-r-8-f{margin-right:8px !important}.mg-lg-b-8-f{margin-bottom:8px !important}.mg-lg-l-8-f{margin-left:8px !important}.mg-lg-9{margin:9px}.mg-lg-9-f{margin:9px !important}.mg-lg-y-9{margin-top:9px;margin-bottom:9px}.mg-lg-y-9-f{margin-top:9px !important;margin-bottom:9px !important}.mg-lg-x-9{margin-left:9px;margin-right:9px}.mg-lg-x-9-f{margin-left:9px !important;margin-right:9px !important}.mg-lg-t-9{margin-top:9px}.mg-lg-r-9{margin-right:9px}.mg-lg-b-9{margin-bottom:9px}.mg-lg-l-9{margin-left:9px}.mg-lg-t-9-f{margin-top:9px !important}.mg-lg-r-9-f{margin-right:9px !important}.mg-lg-b-9-f{margin-bottom:9px !important}.mg-lg-l-9-f{margin-left:9px !important}.mg-lg-10{margin:10px}.mg-lg-10-f{margin:10px !important}.mg-lg-y-10{margin-top:10px;margin-bottom:10px}.mg-lg-y-10-f{margin-top:10px !important;margin-bottom:10px !important}.mg-lg-x-10{margin-left:10px;margin-right:10px}.mg-lg-x-10-f{margin-left:10px !important;margin-right:10px !important}.mg-lg-t-10{margin-top:10px}.mg-lg-r-10{margin-right:10px}.mg-lg-b-10{margin-bottom:10px}.mg-lg-l-10{margin-left:10px}.mg-lg-t-10-f{margin-top:10px !important}.mg-lg-r-10-f{margin-right:10px !important}.mg-lg-b-10-f{margin-bottom:10px !important}.mg-lg-l-10-f{margin-left:10px !important}.mg-lg-15{margin:15px}.mg-lg-15-f{margin:15px !important}.mg-lg-y-15{margin-top:15px;margin-bottom:15px}.mg-lg-y-15-f{margin-top:15px !important;margin-bottom:15px !important}.mg-lg-x-15{margin-left:15px;margin-right:15px}.mg-lg-x-15-f{margin-left:15px !important;margin-right:15px !important}.mg-lg-t-15{margin-top:15px}.mg-lg-r-15{margin-right:15px}.mg-lg-b-15{margin-bottom:15px}.mg-lg-l-15{margin-left:15px}.mg-lg-t-15-f{margin-top:15px !important}.mg-lg-r-15-f{margin-right:15px !important}.mg-lg-b-15-f{margin-bottom:15px !important}.mg-lg-l-15-f{margin-left:15px !important}.mg-lg-20{margin:20px}.mg-lg-20-f{margin:20px !important}.mg-lg-y-20{margin-top:20px;margin-bottom:20px}.mg-lg-y-20-f{margin-top:20px !important;margin-bottom:20px !important}.mg-lg-x-20{margin-left:20px;margin-right:20px}.mg-lg-x-20-f{margin-left:20px !important;margin-right:20px !important}.mg-lg-t-20{margin-top:20px}.mg-lg-r-20{margin-right:20px}.mg-lg-b-20{margin-bottom:20px}.mg-lg-l-20{margin-left:20px}.mg-lg-t-20-f{margin-top:20px !important}.mg-lg-r-20-f{margin-right:20px !important}.mg-lg-b-20-f{margin-bottom:20px !important}.mg-lg-l-20-f{margin-left:20px !important}.mg-lg-25{margin:25px}.mg-lg-25-f{margin:25px !important}.mg-lg-y-25{margin-top:25px;margin-bottom:25px}.mg-lg-y-25-f{margin-top:25px !important;margin-bottom:25px !important}.mg-lg-x-25{margin-left:25px;margin-right:25px}.mg-lg-x-25-f{margin-left:25px !important;margin-right:25px !important}.mg-lg-t-25{margin-top:25px}.mg-lg-r-25{margin-right:25px}.mg-lg-b-25{margin-bottom:25px}.mg-lg-l-25{margin-left:25px}.mg-lg-t-25-f{margin-top:25px !important}.mg-lg-r-25-f{margin-right:25px !important}.mg-lg-b-25-f{margin-bottom:25px !important}.mg-lg-l-25-f{margin-left:25px !important}.mg-lg-30{margin:30px}.mg-lg-30-f{margin:30px !important}.mg-lg-y-30{margin-top:30px;margin-bottom:30px}.mg-lg-y-30-f{margin-top:30px !important;margin-bottom:30px !important}.mg-lg-x-30{margin-left:30px;margin-right:30px}.mg-lg-x-30-f{margin-left:30px !important;margin-right:30px !important}.mg-lg-t-30{margin-top:30px}.mg-lg-r-30{margin-right:30px}.mg-lg-b-30{margin-bottom:30px}.mg-lg-l-30{margin-left:30px}.mg-lg-t-30-f{margin-top:30px !important}.mg-lg-r-30-f{margin-right:30px !important}.mg-lg-b-30-f{margin-bottom:30px !important}.mg-lg-l-30-f{margin-left:30px !important}.mg-lg-35{margin:35px}.mg-lg-35-f{margin:35px !important}.mg-lg-y-35{margin-top:35px;margin-bottom:35px}.mg-lg-y-35-f{margin-top:35px !important;margin-bottom:35px !important}.mg-lg-x-35{margin-left:35px;margin-right:35px}.mg-lg-x-35-f{margin-left:35px !important;margin-right:35px !important}.mg-lg-t-35{margin-top:35px}.mg-lg-r-35{margin-right:35px}.mg-lg-b-35{margin-bottom:35px}.mg-lg-l-35{margin-left:35px}.mg-lg-t-35-f{margin-top:35px !important}.mg-lg-r-35-f{margin-right:35px !important}.mg-lg-b-35-f{margin-bottom:35px !important}.mg-lg-l-35-f{margin-left:35px !important}.mg-lg-40{margin:40px}.mg-lg-40-f{margin:40px !important}.mg-lg-y-40{margin-top:40px;margin-bottom:40px}.mg-lg-y-40-f{margin-top:40px !important;margin-bottom:40px !important}.mg-lg-x-40{margin-left:40px;margin-right:40px}.mg-lg-x-40-f{margin-left:40px !important;margin-right:40px !important}.mg-lg-t-40{margin-top:40px}.mg-lg-r-40{margin-right:40px}.mg-lg-b-40{margin-bottom:40px}.mg-lg-l-40{margin-left:40px}.mg-lg-t-40-f{margin-top:40px !important}.mg-lg-r-40-f{margin-right:40px !important}.mg-lg-b-40-f{margin-bottom:40px !important}.mg-lg-l-40-f{margin-left:40px !important}.mg-lg-45{margin:45px}.mg-lg-45-f{margin:45px !important}.mg-lg-y-45{margin-top:45px;margin-bottom:45px}.mg-lg-y-45-f{margin-top:45px !important;margin-bottom:45px !important}.mg-lg-x-45{margin-left:45px;margin-right:45px}.mg-lg-x-45-f{margin-left:45px !important;margin-right:45px !important}.mg-lg-t-45{margin-top:45px}.mg-lg-r-45{margin-right:45px}.mg-lg-b-45{margin-bottom:45px}.mg-lg-l-45{margin-left:45px}.mg-lg-t-45-f{margin-top:45px !important}.mg-lg-r-45-f{margin-right:45px !important}.mg-lg-b-45-f{margin-bottom:45px !important}.mg-lg-l-45-f{margin-left:45px !important}.mg-lg-50{margin:50px}.mg-lg-50-f{margin:50px !important}.mg-lg-y-50{margin-top:50px;margin-bottom:50px}.mg-lg-y-50-f{margin-top:50px !important;margin-bottom:50px !important}.mg-lg-x-50{margin-left:50px;margin-right:50px}.mg-lg-x-50-f{margin-left:50px !important;margin-right:50px !important}.mg-lg-t-50{margin-top:50px}.mg-lg-r-50{margin-right:50px}.mg-lg-b-50{margin-bottom:50px}.mg-lg-l-50{margin-left:50px}.mg-lg-t-50-f{margin-top:50px !important}.mg-lg-r-50-f{margin-right:50px !important}.mg-lg-b-50-f{margin-bottom:50px !important}.mg-lg-l-50-f{margin-left:50px !important}.mg-lg-55{margin:55px}.mg-lg-55-f{margin:55px !important}.mg-lg-y-55{margin-top:55px;margin-bottom:55px}.mg-lg-y-55-f{margin-top:55px !important;margin-bottom:55px !important}.mg-lg-x-55{margin-left:55px;margin-right:55px}.mg-lg-x-55-f{margin-left:55px !important;margin-right:55px !important}.mg-lg-t-55{margin-top:55px}.mg-lg-r-55{margin-right:55px}.mg-lg-b-55{margin-bottom:55px}.mg-lg-l-55{margin-left:55px}.mg-lg-t-55-f{margin-top:55px !important}.mg-lg-r-55-f{margin-right:55px !important}.mg-lg-b-55-f{margin-bottom:55px !important}.mg-lg-l-55-f{margin-left:55px !important}.mg-lg-60{margin:60px}.mg-lg-60-f{margin:60px !important}.mg-lg-y-60{margin-top:60px;margin-bottom:60px}.mg-lg-y-60-f{margin-top:60px !important;margin-bottom:60px !important}.mg-lg-x-60{margin-left:60px;margin-right:60px}.mg-lg-x-60-f{margin-left:60px !important;margin-right:60px !important}.mg-lg-t-60{margin-top:60px}.mg-lg-r-60{margin-right:60px}.mg-lg-b-60{margin-bottom:60px}.mg-lg-l-60{margin-left:60px}.mg-lg-t-60-f{margin-top:60px !important}.mg-lg-r-60-f{margin-right:60px !important}.mg-lg-b-60-f{margin-bottom:60px !important}.mg-lg-l-60-f{margin-left:60px !important}.mg-lg-65{margin:65px}.mg-lg-65-f{margin:65px !important}.mg-lg-y-65{margin-top:65px;margin-bottom:65px}.mg-lg-y-65-f{margin-top:65px !important;margin-bottom:65px !important}.mg-lg-x-65{margin-left:65px;margin-right:65px}.mg-lg-x-65-f{margin-left:65px !important;margin-right:65px !important}.mg-lg-t-65{margin-top:65px}.mg-lg-r-65{margin-right:65px}.mg-lg-b-65{margin-bottom:65px}.mg-lg-l-65{margin-left:65px}.mg-lg-t-65-f{margin-top:65px !important}.mg-lg-r-65-f{margin-right:65px !important}.mg-lg-b-65-f{margin-bottom:65px !important}.mg-lg-l-65-f{margin-left:65px !important}.mg-lg-70{margin:70px}.mg-lg-70-f{margin:70px !important}.mg-lg-y-70{margin-top:70px;margin-bottom:70px}.mg-lg-y-70-f{margin-top:70px !important;margin-bottom:70px !important}.mg-lg-x-70{margin-left:70px;margin-right:70px}.mg-lg-x-70-f{margin-left:70px !important;margin-right:70px !important}.mg-lg-t-70{margin-top:70px}.mg-lg-r-70{margin-right:70px}.mg-lg-b-70{margin-bottom:70px}.mg-lg-l-70{margin-left:70px}.mg-lg-t-70-f{margin-top:70px !important}.mg-lg-r-70-f{margin-right:70px !important}.mg-lg-b-70-f{margin-bottom:70px !important}.mg-lg-l-70-f{margin-left:70px !important}.mg-lg-75{margin:75px}.mg-lg-75-f{margin:75px !important}.mg-lg-y-75{margin-top:75px;margin-bottom:75px}.mg-lg-y-75-f{margin-top:75px !important;margin-bottom:75px !important}.mg-lg-x-75{margin-left:75px;margin-right:75px}.mg-lg-x-75-f{margin-left:75px !important;margin-right:75px !important}.mg-lg-t-75{margin-top:75px}.mg-lg-r-75{margin-right:75px}.mg-lg-b-75{margin-bottom:75px}.mg-lg-l-75{margin-left:75px}.mg-lg-t-75-f{margin-top:75px !important}.mg-lg-r-75-f{margin-right:75px !important}.mg-lg-b-75-f{margin-bottom:75px !important}.mg-lg-l-75-f{margin-left:75px !important}.mg-lg-80{margin:80px}.mg-lg-80-f{margin:80px !important}.mg-lg-y-80{margin-top:80px;margin-bottom:80px}.mg-lg-y-80-f{margin-top:80px !important;margin-bottom:80px !important}.mg-lg-x-80{margin-left:80px;margin-right:80px}.mg-lg-x-80-f{margin-left:80px !important;margin-right:80px !important}.mg-lg-t-80{margin-top:80px}.mg-lg-r-80{margin-right:80px}.mg-lg-b-80{margin-bottom:80px}.mg-lg-l-80{margin-left:80px}.mg-lg-t-80-f{margin-top:80px !important}.mg-lg-r-80-f{margin-right:80px !important}.mg-lg-b-80-f{margin-bottom:80px !important}.mg-lg-l-80-f{margin-left:80px !important}.mg-lg-85{margin:85px}.mg-lg-85-f{margin:85px !important}.mg-lg-y-85{margin-top:85px;margin-bottom:85px}.mg-lg-y-85-f{margin-top:85px !important;margin-bottom:85px !important}.mg-lg-x-85{margin-left:85px;margin-right:85px}.mg-lg-x-85-f{margin-left:85px !important;margin-right:85px !important}.mg-lg-t-85{margin-top:85px}.mg-lg-r-85{margin-right:85px}.mg-lg-b-85{margin-bottom:85px}.mg-lg-l-85{margin-left:85px}.mg-lg-t-85-f{margin-top:85px !important}.mg-lg-r-85-f{margin-right:85px !important}.mg-lg-b-85-f{margin-bottom:85px !important}.mg-lg-l-85-f{margin-left:85px !important}.mg-lg-90{margin:90px}.mg-lg-90-f{margin:90px !important}.mg-lg-y-90{margin-top:90px;margin-bottom:90px}.mg-lg-y-90-f{margin-top:90px !important;margin-bottom:90px !important}.mg-lg-x-90{margin-left:90px;margin-right:90px}.mg-lg-x-90-f{margin-left:90px !important;margin-right:90px !important}.mg-lg-t-90{margin-top:90px}.mg-lg-r-90{margin-right:90px}.mg-lg-b-90{margin-bottom:90px}.mg-lg-l-90{margin-left:90px}.mg-lg-t-90-f{margin-top:90px !important}.mg-lg-r-90-f{margin-right:90px !important}.mg-lg-b-90-f{margin-bottom:90px !important}.mg-lg-l-90-f{margin-left:90px !important}.mg-lg-95{margin:95px}.mg-lg-95-f{margin:95px !important}.mg-lg-y-95{margin-top:95px;margin-bottom:95px}.mg-lg-y-95-f{margin-top:95px !important;margin-bottom:95px !important}.mg-lg-x-95{margin-left:95px;margin-right:95px}.mg-lg-x-95-f{margin-left:95px !important;margin-right:95px !important}.mg-lg-t-95{margin-top:95px}.mg-lg-r-95{margin-right:95px}.mg-lg-b-95{margin-bottom:95px}.mg-lg-l-95{margin-left:95px}.mg-lg-t-95-f{margin-top:95px !important}.mg-lg-r-95-f{margin-right:95px !important}.mg-lg-b-95-f{margin-bottom:95px !important}.mg-lg-l-95-f{margin-left:95px !important}.mg-lg-100{margin:100px}.mg-lg-100-f{margin:100px !important}.mg-lg-y-100{margin-top:100px;margin-bottom:100px}.mg-lg-y-100-f{margin-top:100px !important;margin-bottom:100px !important}.mg-lg-x-100{margin-left:100px;margin-right:100px}.mg-lg-x-100-f{margin-left:100px !important;margin-right:100px !important}.mg-lg-t-100{margin-top:100px}.mg-lg-r-100{margin-right:100px}.mg-lg-b-100{margin-bottom:100px}.mg-lg-l-100{margin-left:100px}.mg-lg-t-100-f{margin-top:100px !important}.mg-lg-r-100-f{margin-right:100px !important}.mg-lg-b-100-f{margin-bottom:100px !important}.mg-lg-l-100-f{margin-left:100px !important}.mg-lg-t-auto{margin-top:auto}.mg-lg-r-auto{margin-right:auto}.mg-lg-b-auto{margin-bottom:auto}.mg-lg-l-auto{margin-left:auto}.mg-lg-auto{margin:auto}.mg-lg-x-auto{margin-left:auto;margin-right:auto}}@media (min-width: 1200px){.mg-xl-0{margin:0px}.mg-xl-0-f{margin:0px !important}.mg-xl-y-0{margin-top:0px;margin-bottom:0px}.mg-xl-y-0-f{margin-top:0px !important;margin-bottom:0px !important}.mg-xl-x-0{margin-left:0px;margin-right:0px}.mg-xl-x-0-f{margin-left:0px !important;margin-right:0px !important}.mg-xl-t-0{margin-top:0px}.mg-xl-r-0{margin-right:0px}.mg-xl-b-0{margin-bottom:0px}.mg-xl-l-0{margin-left:0px}.mg-xl-t-0-f{margin-top:0px !important}.mg-xl-r-0-f{margin-right:0px !important}.mg-xl-b-0-f{margin-bottom:0px !important}.mg-xl-l-0-f{margin-left:0px !important}.mg-xl-1{margin:1px}.mg-xl-1-f{margin:1px !important}.mg-xl-y-1{margin-top:1px;margin-bottom:1px}.mg-xl-y-1-f{margin-top:1px !important;margin-bottom:1px !important}.mg-xl-x-1{margin-left:1px;margin-right:1px}.mg-xl-x-1-f{margin-left:1px !important;margin-right:1px !important}.mg-xl-t-1{margin-top:1px}.mg-xl-r-1{margin-right:1px}.mg-xl-b-1{margin-bottom:1px}.mg-xl-l-1{margin-left:1px}.mg-xl-t-1-f{margin-top:1px !important}.mg-xl-r-1-f{margin-right:1px !important}.mg-xl-b-1-f{margin-bottom:1px !important}.mg-xl-l-1-f{margin-left:1px !important}.mg-xl-2{margin:2px}.mg-xl-2-f{margin:2px !important}.mg-xl-y-2{margin-top:2px;margin-bottom:2px}.mg-xl-y-2-f{margin-top:2px !important;margin-bottom:2px !important}.mg-xl-x-2{margin-left:2px;margin-right:2px}.mg-xl-x-2-f{margin-left:2px !important;margin-right:2px !important}.mg-xl-t-2{margin-top:2px}.mg-xl-r-2{margin-right:2px}.mg-xl-b-2{margin-bottom:2px}.mg-xl-l-2{margin-left:2px}.mg-xl-t-2-f{margin-top:2px !important}.mg-xl-r-2-f{margin-right:2px !important}.mg-xl-b-2-f{margin-bottom:2px !important}.mg-xl-l-2-f{margin-left:2px !important}.mg-xl-3{margin:3px}.mg-xl-3-f{margin:3px !important}.mg-xl-y-3{margin-top:3px;margin-bottom:3px}.mg-xl-y-3-f{margin-top:3px !important;margin-bottom:3px !important}.mg-xl-x-3{margin-left:3px;margin-right:3px}.mg-xl-x-3-f{margin-left:3px !important;margin-right:3px !important}.mg-xl-t-3{margin-top:3px}.mg-xl-r-3{margin-right:3px}.mg-xl-b-3{margin-bottom:3px}.mg-xl-l-3{margin-left:3px}.mg-xl-t-3-f{margin-top:3px !important}.mg-xl-r-3-f{margin-right:3px !important}.mg-xl-b-3-f{margin-bottom:3px !important}.mg-xl-l-3-f{margin-left:3px !important}.mg-xl-4{margin:4px}.mg-xl-4-f{margin:4px !important}.mg-xl-y-4{margin-top:4px;margin-bottom:4px}.mg-xl-y-4-f{margin-top:4px !important;margin-bottom:4px !important}.mg-xl-x-4{margin-left:4px;margin-right:4px}.mg-xl-x-4-f{margin-left:4px !important;margin-right:4px !important}.mg-xl-t-4{margin-top:4px}.mg-xl-r-4{margin-right:4px}.mg-xl-b-4{margin-bottom:4px}.mg-xl-l-4{margin-left:4px}.mg-xl-t-4-f{margin-top:4px !important}.mg-xl-r-4-f{margin-right:4px !important}.mg-xl-b-4-f{margin-bottom:4px !important}.mg-xl-l-4-f{margin-left:4px !important}.mg-xl-5{margin:5px}.mg-xl-5-f{margin:5px !important}.mg-xl-y-5{margin-top:5px;margin-bottom:5px}.mg-xl-y-5-f{margin-top:5px !important;margin-bottom:5px !important}.mg-xl-x-5{margin-left:5px;margin-right:5px}.mg-xl-x-5-f{margin-left:5px !important;margin-right:5px !important}.mg-xl-t-5{margin-top:5px}.mg-xl-r-5{margin-right:5px}.mg-xl-b-5{margin-bottom:5px}.mg-xl-l-5{margin-left:5px}.mg-xl-t-5-f{margin-top:5px !important}.mg-xl-r-5-f{margin-right:5px !important}.mg-xl-b-5-f{margin-bottom:5px !important}.mg-xl-l-5-f{margin-left:5px !important}.mg-xl-6{margin:6px}.mg-xl-6-f{margin:6px !important}.mg-xl-y-6{margin-top:6px;margin-bottom:6px}.mg-xl-y-6-f{margin-top:6px !important;margin-bottom:6px !important}.mg-xl-x-6{margin-left:6px;margin-right:6px}.mg-xl-x-6-f{margin-left:6px !important;margin-right:6px !important}.mg-xl-t-6{margin-top:6px}.mg-xl-r-6{margin-right:6px}.mg-xl-b-6{margin-bottom:6px}.mg-xl-l-6{margin-left:6px}.mg-xl-t-6-f{margin-top:6px !important}.mg-xl-r-6-f{margin-right:6px !important}.mg-xl-b-6-f{margin-bottom:6px !important}.mg-xl-l-6-f{margin-left:6px !important}.mg-xl-7{margin:7px}.mg-xl-7-f{margin:7px !important}.mg-xl-y-7{margin-top:7px;margin-bottom:7px}.mg-xl-y-7-f{margin-top:7px !important;margin-bottom:7px !important}.mg-xl-x-7{margin-left:7px;margin-right:7px}.mg-xl-x-7-f{margin-left:7px !important;margin-right:7px !important}.mg-xl-t-7{margin-top:7px}.mg-xl-r-7{margin-right:7px}.mg-xl-b-7{margin-bottom:7px}.mg-xl-l-7{margin-left:7px}.mg-xl-t-7-f{margin-top:7px !important}.mg-xl-r-7-f{margin-right:7px !important}.mg-xl-b-7-f{margin-bottom:7px !important}.mg-xl-l-7-f{margin-left:7px !important}.mg-xl-8{margin:8px}.mg-xl-8-f{margin:8px !important}.mg-xl-y-8{margin-top:8px;margin-bottom:8px}.mg-xl-y-8-f{margin-top:8px !important;margin-bottom:8px !important}.mg-xl-x-8{margin-left:8px;margin-right:8px}.mg-xl-x-8-f{margin-left:8px !important;margin-right:8px !important}.mg-xl-t-8{margin-top:8px}.mg-xl-r-8{margin-right:8px}.mg-xl-b-8{margin-bottom:8px}.mg-xl-l-8{margin-left:8px}.mg-xl-t-8-f{margin-top:8px !important}.mg-xl-r-8-f{margin-right:8px !important}.mg-xl-b-8-f{margin-bottom:8px !important}.mg-xl-l-8-f{margin-left:8px !important}.mg-xl-9{margin:9px}.mg-xl-9-f{margin:9px !important}.mg-xl-y-9{margin-top:9px;margin-bottom:9px}.mg-xl-y-9-f{margin-top:9px !important;margin-bottom:9px !important}.mg-xl-x-9{margin-left:9px;margin-right:9px}.mg-xl-x-9-f{margin-left:9px !important;margin-right:9px !important}.mg-xl-t-9{margin-top:9px}.mg-xl-r-9{margin-right:9px}.mg-xl-b-9{margin-bottom:9px}.mg-xl-l-9{margin-left:9px}.mg-xl-t-9-f{margin-top:9px !important}.mg-xl-r-9-f{margin-right:9px !important}.mg-xl-b-9-f{margin-bottom:9px !important}.mg-xl-l-9-f{margin-left:9px !important}.mg-xl-10{margin:10px}.mg-xl-10-f{margin:10px !important}.mg-xl-y-10{margin-top:10px;margin-bottom:10px}.mg-xl-y-10-f{margin-top:10px !important;margin-bottom:10px !important}.mg-xl-x-10{margin-left:10px;margin-right:10px}.mg-xl-x-10-f{margin-left:10px !important;margin-right:10px !important}.mg-xl-t-10{margin-top:10px}.mg-xl-r-10{margin-right:10px}.mg-xl-b-10{margin-bottom:10px}.mg-xl-l-10{margin-left:10px}.mg-xl-t-10-f{margin-top:10px !important}.mg-xl-r-10-f{margin-right:10px !important}.mg-xl-b-10-f{margin-bottom:10px !important}.mg-xl-l-10-f{margin-left:10px !important}.mg-xl-15{margin:15px}.mg-xl-15-f{margin:15px !important}.mg-xl-y-15{margin-top:15px;margin-bottom:15px}.mg-xl-y-15-f{margin-top:15px !important;margin-bottom:15px !important}.mg-xl-x-15{margin-left:15px;margin-right:15px}.mg-xl-x-15-f{margin-left:15px !important;margin-right:15px !important}.mg-xl-t-15{margin-top:15px}.mg-xl-r-15{margin-right:15px}.mg-xl-b-15{margin-bottom:15px}.mg-xl-l-15{margin-left:15px}.mg-xl-t-15-f{margin-top:15px !important}.mg-xl-r-15-f{margin-right:15px !important}.mg-xl-b-15-f{margin-bottom:15px !important}.mg-xl-l-15-f{margin-left:15px !important}.mg-xl-20{margin:20px}.mg-xl-20-f{margin:20px !important}.mg-xl-y-20{margin-top:20px;margin-bottom:20px}.mg-xl-y-20-f{margin-top:20px !important;margin-bottom:20px !important}.mg-xl-x-20{margin-left:20px;margin-right:20px}.mg-xl-x-20-f{margin-left:20px !important;margin-right:20px !important}.mg-xl-t-20{margin-top:20px}.mg-xl-r-20{margin-right:20px}.mg-xl-b-20{margin-bottom:20px}.mg-xl-l-20{margin-left:20px}.mg-xl-t-20-f{margin-top:20px !important}.mg-xl-r-20-f{margin-right:20px !important}.mg-xl-b-20-f{margin-bottom:20px !important}.mg-xl-l-20-f{margin-left:20px !important}.mg-xl-25{margin:25px}.mg-xl-25-f{margin:25px !important}.mg-xl-y-25{margin-top:25px;margin-bottom:25px}.mg-xl-y-25-f{margin-top:25px !important;margin-bottom:25px !important}.mg-xl-x-25{margin-left:25px;margin-right:25px}.mg-xl-x-25-f{margin-left:25px !important;margin-right:25px !important}.mg-xl-t-25{margin-top:25px}.mg-xl-r-25{margin-right:25px}.mg-xl-b-25{margin-bottom:25px}.mg-xl-l-25{margin-left:25px}.mg-xl-t-25-f{margin-top:25px !important}.mg-xl-r-25-f{margin-right:25px !important}.mg-xl-b-25-f{margin-bottom:25px !important}.mg-xl-l-25-f{margin-left:25px !important}.mg-xl-30{margin:30px}.mg-xl-30-f{margin:30px !important}.mg-xl-y-30{margin-top:30px;margin-bottom:30px}.mg-xl-y-30-f{margin-top:30px !important;margin-bottom:30px !important}.mg-xl-x-30{margin-left:30px;margin-right:30px}.mg-xl-x-30-f{margin-left:30px !important;margin-right:30px !important}.mg-xl-t-30{margin-top:30px}.mg-xl-r-30{margin-right:30px}.mg-xl-b-30{margin-bottom:30px}.mg-xl-l-30{margin-left:30px}.mg-xl-t-30-f{margin-top:30px !important}.mg-xl-r-30-f{margin-right:30px !important}.mg-xl-b-30-f{margin-bottom:30px !important}.mg-xl-l-30-f{margin-left:30px !important}.mg-xl-35{margin:35px}.mg-xl-35-f{margin:35px !important}.mg-xl-y-35{margin-top:35px;margin-bottom:35px}.mg-xl-y-35-f{margin-top:35px !important;margin-bottom:35px !important}.mg-xl-x-35{margin-left:35px;margin-right:35px}.mg-xl-x-35-f{margin-left:35px !important;margin-right:35px !important}.mg-xl-t-35{margin-top:35px}.mg-xl-r-35{margin-right:35px}.mg-xl-b-35{margin-bottom:35px}.mg-xl-l-35{margin-left:35px}.mg-xl-t-35-f{margin-top:35px !important}.mg-xl-r-35-f{margin-right:35px !important}.mg-xl-b-35-f{margin-bottom:35px !important}.mg-xl-l-35-f{margin-left:35px !important}.mg-xl-40{margin:40px}.mg-xl-40-f{margin:40px !important}.mg-xl-y-40{margin-top:40px;margin-bottom:40px}.mg-xl-y-40-f{margin-top:40px !important;margin-bottom:40px !important}.mg-xl-x-40{margin-left:40px;margin-right:40px}.mg-xl-x-40-f{margin-left:40px !important;margin-right:40px !important}.mg-xl-t-40{margin-top:40px}.mg-xl-r-40{margin-right:40px}.mg-xl-b-40{margin-bottom:40px}.mg-xl-l-40{margin-left:40px}.mg-xl-t-40-f{margin-top:40px !important}.mg-xl-r-40-f{margin-right:40px !important}.mg-xl-b-40-f{margin-bottom:40px !important}.mg-xl-l-40-f{margin-left:40px !important}.mg-xl-45{margin:45px}.mg-xl-45-f{margin:45px !important}.mg-xl-y-45{margin-top:45px;margin-bottom:45px}.mg-xl-y-45-f{margin-top:45px !important;margin-bottom:45px !important}.mg-xl-x-45{margin-left:45px;margin-right:45px}.mg-xl-x-45-f{margin-left:45px !important;margin-right:45px !important}.mg-xl-t-45{margin-top:45px}.mg-xl-r-45{margin-right:45px}.mg-xl-b-45{margin-bottom:45px}.mg-xl-l-45{margin-left:45px}.mg-xl-t-45-f{margin-top:45px !important}.mg-xl-r-45-f{margin-right:45px !important}.mg-xl-b-45-f{margin-bottom:45px !important}.mg-xl-l-45-f{margin-left:45px !important}.mg-xl-50{margin:50px}.mg-xl-50-f{margin:50px !important}.mg-xl-y-50{margin-top:50px;margin-bottom:50px}.mg-xl-y-50-f{margin-top:50px !important;margin-bottom:50px !important}.mg-xl-x-50{margin-left:50px;margin-right:50px}.mg-xl-x-50-f{margin-left:50px !important;margin-right:50px !important}.mg-xl-t-50{margin-top:50px}.mg-xl-r-50{margin-right:50px}.mg-xl-b-50{margin-bottom:50px}.mg-xl-l-50{margin-left:50px}.mg-xl-t-50-f{margin-top:50px !important}.mg-xl-r-50-f{margin-right:50px !important}.mg-xl-b-50-f{margin-bottom:50px !important}.mg-xl-l-50-f{margin-left:50px !important}.mg-xl-55{margin:55px}.mg-xl-55-f{margin:55px !important}.mg-xl-y-55{margin-top:55px;margin-bottom:55px}.mg-xl-y-55-f{margin-top:55px !important;margin-bottom:55px !important}.mg-xl-x-55{margin-left:55px;margin-right:55px}.mg-xl-x-55-f{margin-left:55px !important;margin-right:55px !important}.mg-xl-t-55{margin-top:55px}.mg-xl-r-55{margin-right:55px}.mg-xl-b-55{margin-bottom:55px}.mg-xl-l-55{margin-left:55px}.mg-xl-t-55-f{margin-top:55px !important}.mg-xl-r-55-f{margin-right:55px !important}.mg-xl-b-55-f{margin-bottom:55px !important}.mg-xl-l-55-f{margin-left:55px !important}.mg-xl-60{margin:60px}.mg-xl-60-f{margin:60px !important}.mg-xl-y-60{margin-top:60px;margin-bottom:60px}.mg-xl-y-60-f{margin-top:60px !important;margin-bottom:60px !important}.mg-xl-x-60{margin-left:60px;margin-right:60px}.mg-xl-x-60-f{margin-left:60px !important;margin-right:60px !important}.mg-xl-t-60{margin-top:60px}.mg-xl-r-60{margin-right:60px}.mg-xl-b-60{margin-bottom:60px}.mg-xl-l-60{margin-left:60px}.mg-xl-t-60-f{margin-top:60px !important}.mg-xl-r-60-f{margin-right:60px !important}.mg-xl-b-60-f{margin-bottom:60px !important}.mg-xl-l-60-f{margin-left:60px !important}.mg-xl-65{margin:65px}.mg-xl-65-f{margin:65px !important}.mg-xl-y-65{margin-top:65px;margin-bottom:65px}.mg-xl-y-65-f{margin-top:65px !important;margin-bottom:65px !important}.mg-xl-x-65{margin-left:65px;margin-right:65px}.mg-xl-x-65-f{margin-left:65px !important;margin-right:65px !important}.mg-xl-t-65{margin-top:65px}.mg-xl-r-65{margin-right:65px}.mg-xl-b-65{margin-bottom:65px}.mg-xl-l-65{margin-left:65px}.mg-xl-t-65-f{margin-top:65px !important}.mg-xl-r-65-f{margin-right:65px !important}.mg-xl-b-65-f{margin-bottom:65px !important}.mg-xl-l-65-f{margin-left:65px !important}.mg-xl-70{margin:70px}.mg-xl-70-f{margin:70px !important}.mg-xl-y-70{margin-top:70px;margin-bottom:70px}.mg-xl-y-70-f{margin-top:70px !important;margin-bottom:70px !important}.mg-xl-x-70{margin-left:70px;margin-right:70px}.mg-xl-x-70-f{margin-left:70px !important;margin-right:70px !important}.mg-xl-t-70{margin-top:70px}.mg-xl-r-70{margin-right:70px}.mg-xl-b-70{margin-bottom:70px}.mg-xl-l-70{margin-left:70px}.mg-xl-t-70-f{margin-top:70px !important}.mg-xl-r-70-f{margin-right:70px !important}.mg-xl-b-70-f{margin-bottom:70px !important}.mg-xl-l-70-f{margin-left:70px !important}.mg-xl-75{margin:75px}.mg-xl-75-f{margin:75px !important}.mg-xl-y-75{margin-top:75px;margin-bottom:75px}.mg-xl-y-75-f{margin-top:75px !important;margin-bottom:75px !important}.mg-xl-x-75{margin-left:75px;margin-right:75px}.mg-xl-x-75-f{margin-left:75px !important;margin-right:75px !important}.mg-xl-t-75{margin-top:75px}.mg-xl-r-75{margin-right:75px}.mg-xl-b-75{margin-bottom:75px}.mg-xl-l-75{margin-left:75px}.mg-xl-t-75-f{margin-top:75px !important}.mg-xl-r-75-f{margin-right:75px !important}.mg-xl-b-75-f{margin-bottom:75px !important}.mg-xl-l-75-f{margin-left:75px !important}.mg-xl-80{margin:80px}.mg-xl-80-f{margin:80px !important}.mg-xl-y-80{margin-top:80px;margin-bottom:80px}.mg-xl-y-80-f{margin-top:80px !important;margin-bottom:80px !important}.mg-xl-x-80{margin-left:80px;margin-right:80px}.mg-xl-x-80-f{margin-left:80px !important;margin-right:80px !important}.mg-xl-t-80{margin-top:80px}.mg-xl-r-80{margin-right:80px}.mg-xl-b-80{margin-bottom:80px}.mg-xl-l-80{margin-left:80px}.mg-xl-t-80-f{margin-top:80px !important}.mg-xl-r-80-f{margin-right:80px !important}.mg-xl-b-80-f{margin-bottom:80px !important}.mg-xl-l-80-f{margin-left:80px !important}.mg-xl-85{margin:85px}.mg-xl-85-f{margin:85px !important}.mg-xl-y-85{margin-top:85px;margin-bottom:85px}.mg-xl-y-85-f{margin-top:85px !important;margin-bottom:85px !important}.mg-xl-x-85{margin-left:85px;margin-right:85px}.mg-xl-x-85-f{margin-left:85px !important;margin-right:85px !important}.mg-xl-t-85{margin-top:85px}.mg-xl-r-85{margin-right:85px}.mg-xl-b-85{margin-bottom:85px}.mg-xl-l-85{margin-left:85px}.mg-xl-t-85-f{margin-top:85px !important}.mg-xl-r-85-f{margin-right:85px !important}.mg-xl-b-85-f{margin-bottom:85px !important}.mg-xl-l-85-f{margin-left:85px !important}.mg-xl-90{margin:90px}.mg-xl-90-f{margin:90px !important}.mg-xl-y-90{margin-top:90px;margin-bottom:90px}.mg-xl-y-90-f{margin-top:90px !important;margin-bottom:90px !important}.mg-xl-x-90{margin-left:90px;margin-right:90px}.mg-xl-x-90-f{margin-left:90px !important;margin-right:90px !important}.mg-xl-t-90{margin-top:90px}.mg-xl-r-90{margin-right:90px}.mg-xl-b-90{margin-bottom:90px}.mg-xl-l-90{margin-left:90px}.mg-xl-t-90-f{margin-top:90px !important}.mg-xl-r-90-f{margin-right:90px !important}.mg-xl-b-90-f{margin-bottom:90px !important}.mg-xl-l-90-f{margin-left:90px !important}.mg-xl-95{margin:95px}.mg-xl-95-f{margin:95px !important}.mg-xl-y-95{margin-top:95px;margin-bottom:95px}.mg-xl-y-95-f{margin-top:95px !important;margin-bottom:95px !important}.mg-xl-x-95{margin-left:95px;margin-right:95px}.mg-xl-x-95-f{margin-left:95px !important;margin-right:95px !important}.mg-xl-t-95{margin-top:95px}.mg-xl-r-95{margin-right:95px}.mg-xl-b-95{margin-bottom:95px}.mg-xl-l-95{margin-left:95px}.mg-xl-t-95-f{margin-top:95px !important}.mg-xl-r-95-f{margin-right:95px !important}.mg-xl-b-95-f{margin-bottom:95px !important}.mg-xl-l-95-f{margin-left:95px !important}.mg-xl-100{margin:100px}.mg-xl-100-f{margin:100px !important}.mg-xl-y-100{margin-top:100px;margin-bottom:100px}.mg-xl-y-100-f{margin-top:100px !important;margin-bottom:100px !important}.mg-xl-x-100{margin-left:100px;margin-right:100px}.mg-xl-x-100-f{margin-left:100px !important;margin-right:100px !important}.mg-xl-t-100{margin-top:100px}.mg-xl-r-100{margin-right:100px}.mg-xl-b-100{margin-bottom:100px}.mg-xl-l-100{margin-left:100px}.mg-xl-t-100-f{margin-top:100px !important}.mg-xl-r-100-f{margin-right:100px !important}.mg-xl-b-100-f{margin-bottom:100px !important}.mg-xl-l-100-f{margin-left:100px !important}.mg-xl-t-auto{margin-top:auto}.mg-xl-r-auto{margin-right:auto}.mg-xl-b-auto{margin-bottom:auto}.mg-xl-l-auto{margin-left:auto}.mg-xl-auto{margin:auto}.mg-xl-x-auto{margin-left:auto;margin-right:auto}}.op-0{opacity:0}.op-0-f{opacity:0 !important}.op-1{opacity:.1}.op-1-f{opacity:.1 !important}.op-2{opacity:.2}.op-2-f{opacity:.2 !important}.op-3{opacity:.3}.op-3-f{opacity:.3 !important}.op-4{opacity:.4}.op-4-f{opacity:.4 !important}.op-5{opacity:.5}.op-5-f{opacity:.5 !important}.op-6{opacity:.6}.op-6-f{opacity:.6 !important}.op-7{opacity:.7}.op-7-f{opacity:.7 !important}.op-8{opacity:.8}.op-8-f{opacity:.8 !important}.op-9{opacity:.9}.op-9-f{opacity:.9 !important}.opacity-1{opacity:1}.shadow-base{box-shadow:0 0 2px 2px rgba(28,39,60,0.03)}.shadow-1{box-shadow:0 0 7px 7px rgba(28,39,60,0.1)}.shadow-2{box-shadow:0 0 30px rgba(28,39,60,0.08)}.shadow-none{box-shadow:none}.overflow-y-auto{overflow-y:auto}.overflow-hidden{overflow:hidden}.flex-1{flex:1}.flex-0{flex:0}.img-fit-cover{width:100%;height:100%;object-fit:cover}@media (min-width: 480px){.op-xs-0{opacity:0}.op-xs-0-f{opacity:0 !important}.op-xs-1{opacity:.1}.op-xs-1-f{opacity:.1 !important}.op-xs-2{opacity:.2}.op-xs-2-f{opacity:.2 !important}.op-xs-3{opacity:.3}.op-xs-3-f{opacity:.3 !important}.op-xs-4{opacity:.4}.op-xs-4-f{opacity:.4 !important}.op-xs-5{opacity:.5}.op-xs-5-f{opacity:.5 !important}.op-xs-6{opacity:.6}.op-xs-6-f{opacity:.6 !important}.op-xs-7{opacity:.7}.op-xs-7-f{opacity:.7 !important}.op-xs-8{opacity:.8}.op-xs-8-f{opacity:.8 !important}.op-xs-9{opacity:.9}.op-xs-9-f{opacity:.9 !important}}@media (min-width: 576px){.op-sm-0{opacity:0}.op-sm-0-f{opacity:0 !important}.op-sm-1{opacity:.1}.op-sm-1-f{opacity:.1 !important}.op-sm-2{opacity:.2}.op-sm-2-f{opacity:.2 !important}.op-sm-3{opacity:.3}.op-sm-3-f{opacity:.3 !important}.op-sm-4{opacity:.4}.op-sm-4-f{opacity:.4 !important}.op-sm-5{opacity:.5}.op-sm-5-f{opacity:.5 !important}.op-sm-6{opacity:.6}.op-sm-6-f{opacity:.6 !important}.op-sm-7{opacity:.7}.op-sm-7-f{opacity:.7 !important}.op-sm-8{opacity:.8}.op-sm-8-f{opacity:.8 !important}.op-sm-9{opacity:.9}.op-sm-9-f{opacity:.9 !important}}@media (min-width: 768px){.op-md-0{opacity:0}.op-md-0-f{opacity:0 !important}.op-md-1{opacity:.1}.op-md-1-f{opacity:.1 !important}.op-md-2{opacity:.2}.op-md-2-f{opacity:.2 !important}.op-md-3{opacity:.3}.op-md-3-f{opacity:.3 !important}.op-md-4{opacity:.4}.op-md-4-f{opacity:.4 !important}.op-md-5{opacity:.5}.op-md-5-f{opacity:.5 !important}.op-md-6{opacity:.6}.op-md-6-f{opacity:.6 !important}.op-md-7{opacity:.7}.op-md-7-f{opacity:.7 !important}.op-md-8{opacity:.8}.op-md-8-f{opacity:.8 !important}.op-md-9{opacity:.9}.op-md-9-f{opacity:.9 !important}}@media (min-width: 992px){.op-lg-0{opacity:0}.op-lg-0-f{opacity:0 !important}.op-lg-1{opacity:.1}.op-lg-1-f{opacity:.1 !important}.op-lg-2{opacity:.2}.op-lg-2-f{opacity:.2 !important}.op-lg-3{opacity:.3}.op-lg-3-f{opacity:.3 !important}.op-lg-4{opacity:.4}.op-lg-4-f{opacity:.4 !important}.op-lg-5{opacity:.5}.op-lg-5-f{opacity:.5 !important}.op-lg-6{opacity:.6}.op-lg-6-f{opacity:.6 !important}.op-lg-7{opacity:.7}.op-lg-7-f{opacity:.7 !important}.op-lg-8{opacity:.8}.op-lg-8-f{opacity:.8 !important}.op-lg-9{opacity:.9}.op-lg-9-f{opacity:.9 !important}}@media (min-width: 1200px){.op-xl-0{opacity:0}.op-xl-0-f{opacity:0 !important}.op-xl-1{opacity:.1}.op-xl-1-f{opacity:.1 !important}.op-xl-2{opacity:.2}.op-xl-2-f{opacity:.2 !important}.op-xl-3{opacity:.3}.op-xl-3-f{opacity:.3 !important}.op-xl-4{opacity:.4}.op-xl-4-f{opacity:.4 !important}.op-xl-5{opacity:.5}.op-xl-5-f{opacity:.5 !important}.op-xl-6{opacity:.6}.op-xl-6-f{opacity:.6 !important}.op-xl-7{opacity:.7}.op-xl-7-f{opacity:.7 !important}.op-xl-8{opacity:.8}.op-xl-8-f{opacity:.8 !important}.op-xl-9{opacity:.9}.op-xl-9-f{opacity:.9 !important}}.pd-0{padding:0px}.pd-0-f{padding:0px !important}.pd-y-0{padding-top:0px;padding-bottom:0px}.pd-y-0-f{padding-top:0px !important;padding-bottom:0px !important}.pd-x-0{padding-left:0px;padding-right:0px}.pd-x-0-f{padding-left:0px !important;padding-right:0px !important}.pd-t-0{padding-top:0px}.pd-r-0{padding-right:0px}.pd-b-0{padding-bottom:0px}.pd-l-0{padding-left:0px}.pd-t-0-f{padding-top:0px !important}.pd-r-0-f{padding-right:0px !important}.pd-b-0-f{padding-bottom:0px !important}.pd-l-0-f{padding-left:0px !important}.pd-1{padding:1px}.pd-1-f{padding:1px !important}.pd-y-1{padding-top:1px;padding-bottom:1px}.pd-y-1-f{padding-top:1px !important;padding-bottom:1px !important}.pd-x-1{padding-left:1px;padding-right:1px}.pd-x-1-f{padding-left:1px !important;padding-right:1px !important}.pd-t-1{padding-top:1px}.pd-r-1{padding-right:1px}.pd-b-1{padding-bottom:1px}.pd-l-1{padding-left:1px}.pd-t-1-f{padding-top:1px !important}.pd-r-1-f{padding-right:1px !important}.pd-b-1-f{padding-bottom:1px !important}.pd-l-1-f{padding-left:1px !important}.pd-2{padding:2px}.pd-2-f{padding:2px !important}.pd-y-2{padding-top:2px;padding-bottom:2px}.pd-y-2-f{padding-top:2px !important;padding-bottom:2px !important}.pd-x-2{padding-left:2px;padding-right:2px}.pd-x-2-f{padding-left:2px !important;padding-right:2px !important}.pd-t-2{padding-top:2px}.pd-r-2{padding-right:2px}.pd-b-2{padding-bottom:2px}.pd-l-2{padding-left:2px}.pd-t-2-f{padding-top:2px !important}.pd-r-2-f{padding-right:2px !important}.pd-b-2-f{padding-bottom:2px !important}.pd-l-2-f{padding-left:2px !important}.pd-3{padding:3px}.pd-3-f{padding:3px !important}.pd-y-3{padding-top:3px;padding-bottom:3px}.pd-y-3-f{padding-top:3px !important;padding-bottom:3px !important}.pd-x-3{padding-left:3px;padding-right:3px}.pd-x-3-f{padding-left:3px !important;padding-right:3px !important}.pd-t-3{padding-top:3px}.pd-r-3{padding-right:3px}.pd-b-3{padding-bottom:3px}.pd-l-3{padding-left:3px}.pd-t-3-f{padding-top:3px !important}.pd-r-3-f{padding-right:3px !important}.pd-b-3-f{padding-bottom:3px !important}.pd-l-3-f{padding-left:3px !important}.pd-4{padding:4px}.pd-4-f{padding:4px !important}.pd-y-4{padding-top:4px;padding-bottom:4px}.pd-y-4-f{padding-top:4px !important;padding-bottom:4px !important}.pd-x-4{padding-left:4px;padding-right:4px}.pd-x-4-f{padding-left:4px !important;padding-right:4px !important}.pd-t-4{padding-top:4px}.pd-r-4{padding-right:4px}.pd-b-4{padding-bottom:4px}.pd-l-4{padding-left:4px}.pd-t-4-f{padding-top:4px !important}.pd-r-4-f{padding-right:4px !important}.pd-b-4-f{padding-bottom:4px !important}.pd-l-4-f{padding-left:4px !important}.pd-5{padding:5px}.pd-5-f{padding:5px !important}.pd-y-5{padding-top:5px;padding-bottom:5px}.pd-y-5-f{padding-top:5px !important;padding-bottom:5px !important}.pd-x-5{padding-left:5px;padding-right:5px}.pd-x-5-f{padding-left:5px !important;padding-right:5px !important}.pd-t-5{padding-top:5px}.pd-r-5{padding-right:5px}.pd-b-5{padding-bottom:5px}.pd-l-5{padding-left:5px}.pd-t-5-f{padding-top:5px !important}.pd-r-5-f{padding-right:5px !important}.pd-b-5-f{padding-bottom:5px !important}.pd-l-5-f{padding-left:5px !important}.pd-6{padding:6px}.pd-6-f{padding:6px !important}.pd-y-6{padding-top:6px;padding-bottom:6px}.pd-y-6-f{padding-top:6px !important;padding-bottom:6px !important}.pd-x-6{padding-left:6px;padding-right:6px}.pd-x-6-f{padding-left:6px !important;padding-right:6px !important}.pd-t-6{padding-top:6px}.pd-r-6{padding-right:6px}.pd-b-6{padding-bottom:6px}.pd-l-6{padding-left:6px}.pd-t-6-f{padding-top:6px !important}.pd-r-6-f{padding-right:6px !important}.pd-b-6-f{padding-bottom:6px !important}.pd-l-6-f{padding-left:6px !important}.pd-7{padding:7px}.pd-7-f{padding:7px !important}.pd-y-7{padding-top:7px;padding-bottom:7px}.pd-y-7-f{padding-top:7px !important;padding-bottom:7px !important}.pd-x-7{padding-left:7px;padding-right:7px}.pd-x-7-f{padding-left:7px !important;padding-right:7px !important}.pd-t-7{padding-top:7px}.pd-r-7{padding-right:7px}.pd-b-7{padding-bottom:7px}.pd-l-7{padding-left:7px}.pd-t-7-f{padding-top:7px !important}.pd-r-7-f{padding-right:7px !important}.pd-b-7-f{padding-bottom:7px !important}.pd-l-7-f{padding-left:7px !important}.pd-8{padding:8px}.pd-8-f{padding:8px !important}.pd-y-8{padding-top:8px;padding-bottom:8px}.pd-y-8-f{padding-top:8px !important;padding-bottom:8px !important}.pd-x-8{padding-left:8px;padding-right:8px}.pd-x-8-f{padding-left:8px !important;padding-right:8px !important}.pd-t-8{padding-top:8px}.pd-r-8{padding-right:8px}.pd-b-8{padding-bottom:8px}.pd-l-8{padding-left:8px}.pd-t-8-f{padding-top:8px !important}.pd-r-8-f{padding-right:8px !important}.pd-b-8-f{padding-bottom:8px !important}.pd-l-8-f{padding-left:8px !important}.pd-9{padding:9px}.pd-9-f{padding:9px !important}.pd-y-9{padding-top:9px;padding-bottom:9px}.pd-y-9-f{padding-top:9px !important;padding-bottom:9px !important}.pd-x-9{padding-left:9px;padding-right:9px}.pd-x-9-f{padding-left:9px !important;padding-right:9px !important}.pd-t-9{padding-top:9px}.pd-r-9{padding-right:9px}.pd-b-9{padding-bottom:9px}.pd-l-9{padding-left:9px}.pd-t-9-f{padding-top:9px !important}.pd-r-9-f{padding-right:9px !important}.pd-b-9-f{padding-bottom:9px !important}.pd-l-9-f{padding-left:9px !important}.pd-10{padding:10px}.pd-10-f{padding:10px !important}.pd-y-10{padding-top:10px;padding-bottom:10px}.pd-y-10-f{padding-top:10px !important;padding-bottom:10px !important}.pd-x-10{padding-left:10px;padding-right:10px}.pd-x-10-f{padding-left:10px !important;padding-right:10px !important}.pd-t-10{padding-top:10px}.pd-r-10{padding-right:10px}.pd-b-10{padding-bottom:10px}.pd-l-10{padding-left:10px}.pd-t-10-f{padding-top:10px !important}.pd-r-10-f{padding-right:10px !important}.pd-b-10-f{padding-bottom:10px !important}.pd-l-10-f{padding-left:10px !important}.pd-15{padding:15px}.pd-15-f{padding:15px !important}.pd-y-15{padding-top:15px;padding-bottom:15px}.pd-y-15-f{padding-top:15px !important;padding-bottom:15px !important}.pd-x-15{padding-left:15px;padding-right:15px}.pd-x-15-f{padding-left:15px !important;padding-right:15px !important}.pd-t-15{padding-top:15px}.pd-r-15{padding-right:15px}.pd-b-15{padding-bottom:15px}.pd-l-15{padding-left:15px}.pd-t-15-f{padding-top:15px !important}.pd-r-15-f{padding-right:15px !important}.pd-b-15-f{padding-bottom:15px !important}.pd-l-15-f{padding-left:15px !important}.pd-20{padding:20px}.pd-20-f{padding:20px !important}.pd-y-20{padding-top:20px;padding-bottom:20px}.pd-y-20-f{padding-top:20px !important;padding-bottom:20px !important}.pd-x-20{padding-left:20px;padding-right:20px}.pd-x-20-f{padding-left:20px !important;padding-right:20px !important}.pd-t-20{padding-top:20px}.pd-r-20{padding-right:20px}.pd-b-20{padding-bottom:20px}.pd-l-20{padding-left:20px}.pd-t-20-f{padding-top:20px !important}.pd-r-20-f{padding-right:20px !important}.pd-b-20-f{padding-bottom:20px !important}.pd-l-20-f{padding-left:20px !important}.pd-25{padding:25px}.pd-25-f{padding:25px !important}.pd-y-25{padding-top:25px;padding-bottom:25px}.pd-y-25-f{padding-top:25px !important;padding-bottom:25px !important}.pd-x-25{padding-left:25px;padding-right:25px}.pd-x-25-f{padding-left:25px !important;padding-right:25px !important}.pd-t-25{padding-top:25px}.pd-r-25{padding-right:25px}.pd-b-25{padding-bottom:25px}.pd-l-25{padding-left:25px}.pd-t-25-f{padding-top:25px !important}.pd-r-25-f{padding-right:25px !important}.pd-b-25-f{padding-bottom:25px !important}.pd-l-25-f{padding-left:25px !important}.pd-30{padding:30px}.pd-30-f{padding:30px !important}.pd-y-30{padding-top:30px;padding-bottom:30px}.pd-y-30-f{padding-top:30px !important;padding-bottom:30px !important}.pd-x-30{padding-left:30px;padding-right:30px}.pd-x-30-f{padding-left:30px !important;padding-right:30px !important}.pd-t-30{padding-top:30px}.pd-r-30{padding-right:30px}.pd-b-30{padding-bottom:30px}.pd-l-30{padding-left:30px}.pd-t-30-f{padding-top:30px !important}.pd-r-30-f{padding-right:30px !important}.pd-b-30-f{padding-bottom:30px !important}.pd-l-30-f{padding-left:30px !important}.pd-35{padding:35px}.pd-35-f{padding:35px !important}.pd-y-35{padding-top:35px;padding-bottom:35px}.pd-y-35-f{padding-top:35px !important;padding-bottom:35px !important}.pd-x-35{padding-left:35px;padding-right:35px}.pd-x-35-f{padding-left:35px !important;padding-right:35px !important}.pd-t-35{padding-top:35px}.pd-r-35{padding-right:35px}.pd-b-35{padding-bottom:35px}.pd-l-35{padding-left:35px}.pd-t-35-f{padding-top:35px !important}.pd-r-35-f{padding-right:35px !important}.pd-b-35-f{padding-bottom:35px !important}.pd-l-35-f{padding-left:35px !important}.pd-40{padding:40px}.pd-40-f{padding:40px !important}.pd-y-40{padding-top:40px;padding-bottom:40px}.pd-y-40-f{padding-top:40px !important;padding-bottom:40px !important}.pd-x-40{padding-left:40px;padding-right:40px}.pd-x-40-f{padding-left:40px !important;padding-right:40px !important}.pd-t-40{padding-top:40px}.pd-r-40{padding-right:40px}.pd-b-40{padding-bottom:40px}.pd-l-40{padding-left:40px}.pd-t-40-f{padding-top:40px !important}.pd-r-40-f{padding-right:40px !important}.pd-b-40-f{padding-bottom:40px !important}.pd-l-40-f{padding-left:40px !important}.pd-45{padding:45px}.pd-45-f{padding:45px !important}.pd-y-45{padding-top:45px;padding-bottom:45px}.pd-y-45-f{padding-top:45px !important;padding-bottom:45px !important}.pd-x-45{padding-left:45px;padding-right:45px}.pd-x-45-f{padding-left:45px !important;padding-right:45px !important}.pd-t-45{padding-top:45px}.pd-r-45{padding-right:45px}.pd-b-45{padding-bottom:45px}.pd-l-45{padding-left:45px}.pd-t-45-f{padding-top:45px !important}.pd-r-45-f{padding-right:45px !important}.pd-b-45-f{padding-bottom:45px !important}.pd-l-45-f{padding-left:45px !important}.pd-50{padding:50px}.pd-50-f{padding:50px !important}.pd-y-50{padding-top:50px;padding-bottom:50px}.pd-y-50-f{padding-top:50px !important;padding-bottom:50px !important}.pd-x-50{padding-left:50px;padding-right:50px}.pd-x-50-f{padding-left:50px !important;padding-right:50px !important}.pd-t-50{padding-top:50px}.pd-r-50{padding-right:50px}.pd-b-50{padding-bottom:50px}.pd-l-50{padding-left:50px}.pd-t-50-f{padding-top:50px !important}.pd-r-50-f{padding-right:50px !important}.pd-b-50-f{padding-bottom:50px !important}.pd-l-50-f{padding-left:50px !important}.pd-55{padding:55px}.pd-55-f{padding:55px !important}.pd-y-55{padding-top:55px;padding-bottom:55px}.pd-y-55-f{padding-top:55px !important;padding-bottom:55px !important}.pd-x-55{padding-left:55px;padding-right:55px}.pd-x-55-f{padding-left:55px !important;padding-right:55px !important}.pd-t-55{padding-top:55px}.pd-r-55{padding-right:55px}.pd-b-55{padding-bottom:55px}.pd-l-55{padding-left:55px}.pd-t-55-f{padding-top:55px !important}.pd-r-55-f{padding-right:55px !important}.pd-b-55-f{padding-bottom:55px !important}.pd-l-55-f{padding-left:55px !important}.pd-60{padding:60px}.pd-60-f{padding:60px !important}.pd-y-60{padding-top:60px;padding-bottom:60px}.pd-y-60-f{padding-top:60px !important;padding-bottom:60px !important}.pd-x-60{padding-left:60px;padding-right:60px}.pd-x-60-f{padding-left:60px !important;padding-right:60px !important}.pd-t-60{padding-top:60px}.pd-r-60{padding-right:60px}.pd-b-60{padding-bottom:60px}.pd-l-60{padding-left:60px}.pd-t-60-f{padding-top:60px !important}.pd-r-60-f{padding-right:60px !important}.pd-b-60-f{padding-bottom:60px !important}.pd-l-60-f{padding-left:60px !important}.pd-65{padding:65px}.pd-65-f{padding:65px !important}.pd-y-65{padding-top:65px;padding-bottom:65px}.pd-y-65-f{padding-top:65px !important;padding-bottom:65px !important}.pd-x-65{padding-left:65px;padding-right:65px}.pd-x-65-f{padding-left:65px !important;padding-right:65px !important}.pd-t-65{padding-top:65px}.pd-r-65{padding-right:65px}.pd-b-65{padding-bottom:65px}.pd-l-65{padding-left:65px}.pd-t-65-f{padding-top:65px !important}.pd-r-65-f{padding-right:65px !important}.pd-b-65-f{padding-bottom:65px !important}.pd-l-65-f{padding-left:65px !important}.pd-70{padding:70px}.pd-70-f{padding:70px !important}.pd-y-70{padding-top:70px;padding-bottom:70px}.pd-y-70-f{padding-top:70px !important;padding-bottom:70px !important}.pd-x-70{padding-left:70px;padding-right:70px}.pd-x-70-f{padding-left:70px !important;padding-right:70px !important}.pd-t-70{padding-top:70px}.pd-r-70{padding-right:70px}.pd-b-70{padding-bottom:70px}.pd-l-70{padding-left:70px}.pd-t-70-f{padding-top:70px !important}.pd-r-70-f{padding-right:70px !important}.pd-b-70-f{padding-bottom:70px !important}.pd-l-70-f{padding-left:70px !important}.pd-75{padding:75px}.pd-75-f{padding:75px !important}.pd-y-75{padding-top:75px;padding-bottom:75px}.pd-y-75-f{padding-top:75px !important;padding-bottom:75px !important}.pd-x-75{padding-left:75px;padding-right:75px}.pd-x-75-f{padding-left:75px !important;padding-right:75px !important}.pd-t-75{padding-top:75px}.pd-r-75{padding-right:75px}.pd-b-75{padding-bottom:75px}.pd-l-75{padding-left:75px}.pd-t-75-f{padding-top:75px !important}.pd-r-75-f{padding-right:75px !important}.pd-b-75-f{padding-bottom:75px !important}.pd-l-75-f{padding-left:75px !important}.pd-80{padding:80px}.pd-80-f{padding:80px !important}.pd-y-80{padding-top:80px;padding-bottom:80px}.pd-y-80-f{padding-top:80px !important;padding-bottom:80px !important}.pd-x-80{padding-left:80px;padding-right:80px}.pd-x-80-f{padding-left:80px !important;padding-right:80px !important}.pd-t-80{padding-top:80px}.pd-r-80{padding-right:80px}.pd-b-80{padding-bottom:80px}.pd-l-80{padding-left:80px}.pd-t-80-f{padding-top:80px !important}.pd-r-80-f{padding-right:80px !important}.pd-b-80-f{padding-bottom:80px !important}.pd-l-80-f{padding-left:80px !important}.pd-85{padding:85px}.pd-85-f{padding:85px !important}.pd-y-85{padding-top:85px;padding-bottom:85px}.pd-y-85-f{padding-top:85px !important;padding-bottom:85px !important}.pd-x-85{padding-left:85px;padding-right:85px}.pd-x-85-f{padding-left:85px !important;padding-right:85px !important}.pd-t-85{padding-top:85px}.pd-r-85{padding-right:85px}.pd-b-85{padding-bottom:85px}.pd-l-85{padding-left:85px}.pd-t-85-f{padding-top:85px !important}.pd-r-85-f{padding-right:85px !important}.pd-b-85-f{padding-bottom:85px !important}.pd-l-85-f{padding-left:85px !important}.pd-90{padding:90px}.pd-90-f{padding:90px !important}.pd-y-90{padding-top:90px;padding-bottom:90px}.pd-y-90-f{padding-top:90px !important;padding-bottom:90px !important}.pd-x-90{padding-left:90px;padding-right:90px}.pd-x-90-f{padding-left:90px !important;padding-right:90px !important}.pd-t-90{padding-top:90px}.pd-r-90{padding-right:90px}.pd-b-90{padding-bottom:90px}.pd-l-90{padding-left:90px}.pd-t-90-f{padding-top:90px !important}.pd-r-90-f{padding-right:90px !important}.pd-b-90-f{padding-bottom:90px !important}.pd-l-90-f{padding-left:90px !important}.pd-95{padding:95px}.pd-95-f{padding:95px !important}.pd-y-95{padding-top:95px;padding-bottom:95px}.pd-y-95-f{padding-top:95px !important;padding-bottom:95px !important}.pd-x-95{padding-left:95px;padding-right:95px}.pd-x-95-f{padding-left:95px !important;padding-right:95px !important}.pd-t-95{padding-top:95px}.pd-r-95{padding-right:95px}.pd-b-95{padding-bottom:95px}.pd-l-95{padding-left:95px}.pd-t-95-f{padding-top:95px !important}.pd-r-95-f{padding-right:95px !important}.pd-b-95-f{padding-bottom:95px !important}.pd-l-95-f{padding-left:95px !important}.pd-100{padding:100px}.pd-100-f{padding:100px !important}.pd-y-100{padding-top:100px;padding-bottom:100px}.pd-y-100-f{padding-top:100px !important;padding-bottom:100px !important}.pd-x-100{padding-left:100px;padding-right:100px}.pd-x-100-f{padding-left:100px !important;padding-right:100px !important}.pd-t-100{padding-top:100px}.pd-r-100{padding-right:100px}.pd-b-100{padding-bottom:100px}.pd-l-100{padding-left:100px}.pd-t-100-f{padding-top:100px !important}.pd-r-100-f{padding-right:100px !important}.pd-b-100-f{padding-bottom:100px !important}.pd-l-100-f{padding-left:100px !important}.pd-110{padding:110px}.pd-110-f{padding:110px !important}.pd-y-110{padding-top:110px;padding-bottom:110px}.pd-y-110-f{padding-top:110px !important;padding-bottom:110px !important}.pd-x-110{padding-left:110px;padding-right:110px}.pd-x-110-f{padding-left:110px !important;padding-right:110px !important}.pd-t-110{padding-top:110px}.pd-r-110{padding-right:110px}.pd-b-110{padding-bottom:110px}.pd-l-110{padding-left:110px}.pd-t-110-f{padding-top:110px !important}.pd-r-110-f{padding-right:110px !important}.pd-b-110-f{padding-bottom:110px !important}.pd-l-110-f{padding-left:110px !important}.pd-120{padding:120px}.pd-120-f{padding:120px !important}.pd-y-120{padding-top:120px;padding-bottom:120px}.pd-y-120-f{padding-top:120px !important;padding-bottom:120px !important}.pd-x-120{padding-left:120px;padding-right:120px}.pd-x-120-f{padding-left:120px !important;padding-right:120px !important}.pd-t-120{padding-top:120px}.pd-r-120{padding-right:120px}.pd-b-120{padding-bottom:120px}.pd-l-120{padding-left:120px}.pd-t-120-f{padding-top:120px !important}.pd-r-120-f{padding-right:120px !important}.pd-b-120-f{padding-bottom:120px !important}.pd-l-120-f{padding-left:120px !important}.pd-130{padding:130px}.pd-130-f{padding:130px !important}.pd-y-130{padding-top:130px;padding-bottom:130px}.pd-y-130-f{padding-top:130px !important;padding-bottom:130px !important}.pd-x-130{padding-left:130px;padding-right:130px}.pd-x-130-f{padding-left:130px !important;padding-right:130px !important}.pd-t-130{padding-top:130px}.pd-r-130{padding-right:130px}.pd-b-130{padding-bottom:130px}.pd-l-130{padding-left:130px}.pd-t-130-f{padding-top:130px !important}.pd-r-130-f{padding-right:130px !important}.pd-b-130-f{padding-bottom:130px !important}.pd-l-130-f{padding-left:130px !important}.pd-140{padding:140px}.pd-140-f{padding:140px !important}.pd-y-140{padding-top:140px;padding-bottom:140px}.pd-y-140-f{padding-top:140px !important;padding-bottom:140px !important}.pd-x-140{padding-left:140px;padding-right:140px}.pd-x-140-f{padding-left:140px !important;padding-right:140px !important}.pd-t-140{padding-top:140px}.pd-r-140{padding-right:140px}.pd-b-140{padding-bottom:140px}.pd-l-140{padding-left:140px}.pd-t-140-f{padding-top:140px !important}.pd-r-140-f{padding-right:140px !important}.pd-b-140-f{padding-bottom:140px !important}.pd-l-140-f{padding-left:140px !important}.pd-150{padding:150px}.pd-150-f{padding:150px !important}.pd-y-150{padding-top:150px;padding-bottom:150px}.pd-y-150-f{padding-top:150px !important;padding-bottom:150px !important}.pd-x-150{padding-left:150px;padding-right:150px}.pd-x-150-f{padding-left:150px !important;padding-right:150px !important}.pd-t-150{padding-top:150px}.pd-r-150{padding-right:150px}.pd-b-150{padding-bottom:150px}.pd-l-150{padding-left:150px}.pd-t-150-f{padding-top:150px !important}.pd-r-150-f{padding-right:150px !important}.pd-b-150-f{padding-bottom:150px !important}.pd-l-150-f{padding-left:150px !important}.pd-160{padding:160px}.pd-160-f{padding:160px !important}.pd-y-160{padding-top:160px;padding-bottom:160px}.pd-y-160-f{padding-top:160px !important;padding-bottom:160px !important}.pd-x-160{padding-left:160px;padding-right:160px}.pd-x-160-f{padding-left:160px !important;padding-right:160px !important}.pd-t-160{padding-top:160px}.pd-r-160{padding-right:160px}.pd-b-160{padding-bottom:160px}.pd-l-160{padding-left:160px}.pd-t-160-f{padding-top:160px !important}.pd-r-160-f{padding-right:160px !important}.pd-b-160-f{padding-bottom:160px !important}.pd-l-160-f{padding-left:160px !important}.pd-170{padding:170px}.pd-170-f{padding:170px !important}.pd-y-170{padding-top:170px;padding-bottom:170px}.pd-y-170-f{padding-top:170px !important;padding-bottom:170px !important}.pd-x-170{padding-left:170px;padding-right:170px}.pd-x-170-f{padding-left:170px !important;padding-right:170px !important}.pd-t-170{padding-top:170px}.pd-r-170{padding-right:170px}.pd-b-170{padding-bottom:170px}.pd-l-170{padding-left:170px}.pd-t-170-f{padding-top:170px !important}.pd-r-170-f{padding-right:170px !important}.pd-b-170-f{padding-bottom:170px !important}.pd-l-170-f{padding-left:170px !important}.pd-180{padding:180px}.pd-180-f{padding:180px !important}.pd-y-180{padding-top:180px;padding-bottom:180px}.pd-y-180-f{padding-top:180px !important;padding-bottom:180px !important}.pd-x-180{padding-left:180px;padding-right:180px}.pd-x-180-f{padding-left:180px !important;padding-right:180px !important}.pd-t-180{padding-top:180px}.pd-r-180{padding-right:180px}.pd-b-180{padding-bottom:180px}.pd-l-180{padding-left:180px}.pd-t-180-f{padding-top:180px !important}.pd-r-180-f{padding-right:180px !important}.pd-b-180-f{padding-bottom:180px !important}.pd-l-180-f{padding-left:180px !important}.pd-190{padding:190px}.pd-190-f{padding:190px !important}.pd-y-190{padding-top:190px;padding-bottom:190px}.pd-y-190-f{padding-top:190px !important;padding-bottom:190px !important}.pd-x-190{padding-left:190px;padding-right:190px}.pd-x-190-f{padding-left:190px !important;padding-right:190px !important}.pd-t-190{padding-top:190px}.pd-r-190{padding-right:190px}.pd-b-190{padding-bottom:190px}.pd-l-190{padding-left:190px}.pd-t-190-f{padding-top:190px !important}.pd-r-190-f{padding-right:190px !important}.pd-b-190-f{padding-bottom:190px !important}.pd-l-190-f{padding-left:190px !important}.pd-200{padding:200px}.pd-200-f{padding:200px !important}.pd-y-200{padding-top:200px;padding-bottom:200px}.pd-y-200-f{padding-top:200px !important;padding-bottom:200px !important}.pd-x-200{padding-left:200px;padding-right:200px}.pd-x-200-f{padding-left:200px !important;padding-right:200px !important}.pd-t-200{padding-top:200px}.pd-r-200{padding-right:200px}.pd-b-200{padding-bottom:200px}.pd-l-200{padding-left:200px}.pd-t-200-f{padding-top:200px !important}.pd-r-200-f{padding-right:200px !important}.pd-b-200-f{padding-bottom:200px !important}.pd-l-200-f{padding-left:200px !important}@media (min-width: 480px){.pd-xs-0{padding:0px}.pd-xs-0-f{padding:0px !important}.pd-xs-y-0{padding-top:0px;padding-bottom:0px}.pd-xs-y-0-f{padding-top:0px !important;padding-bottom:0px !important}.pd-xs-x-0{padding-left:0px;padding-right:0px}.pd-xs-x-0-f{padding-left:0px !important;padding-right:0px !important}.pd-xs-t-0{padding-top:0px}.pd-xs-r-0{padding-right:0px}.pd-xs-b-0{padding-bottom:0px}.pd-xs-l-0{padding-left:0px}.pd-xs-t-0-f{padding-top:0px !important}.pd-xs-r-0-f{padding-right:0px !important}.pd-xs-b-0-f{padding-bottom:0px !important}.pd-xs-l-0-f{padding-left:0px !important}.pd-xs-1{padding:1px}.pd-xs-1-f{padding:1px !important}.pd-xs-y-1{padding-top:1px;padding-bottom:1px}.pd-xs-y-1-f{padding-top:1px !important;padding-bottom:1px !important}.pd-xs-x-1{padding-left:1px;padding-right:1px}.pd-xs-x-1-f{padding-left:1px !important;padding-right:1px !important}.pd-xs-t-1{padding-top:1px}.pd-xs-r-1{padding-right:1px}.pd-xs-b-1{padding-bottom:1px}.pd-xs-l-1{padding-left:1px}.pd-xs-t-1-f{padding-top:1px !important}.pd-xs-r-1-f{padding-right:1px !important}.pd-xs-b-1-f{padding-bottom:1px !important}.pd-xs-l-1-f{padding-left:1px !important}.pd-xs-2{padding:2px}.pd-xs-2-f{padding:2px !important}.pd-xs-y-2{padding-top:2px;padding-bottom:2px}.pd-xs-y-2-f{padding-top:2px !important;padding-bottom:2px !important}.pd-xs-x-2{padding-left:2px;padding-right:2px}.pd-xs-x-2-f{padding-left:2px !important;padding-right:2px !important}.pd-xs-t-2{padding-top:2px}.pd-xs-r-2{padding-right:2px}.pd-xs-b-2{padding-bottom:2px}.pd-xs-l-2{padding-left:2px}.pd-xs-t-2-f{padding-top:2px !important}.pd-xs-r-2-f{padding-right:2px !important}.pd-xs-b-2-f{padding-bottom:2px !important}.pd-xs-l-2-f{padding-left:2px !important}.pd-xs-3{padding:3px}.pd-xs-3-f{padding:3px !important}.pd-xs-y-3{padding-top:3px;padding-bottom:3px}.pd-xs-y-3-f{padding-top:3px !important;padding-bottom:3px !important}.pd-xs-x-3{padding-left:3px;padding-right:3px}.pd-xs-x-3-f{padding-left:3px !important;padding-right:3px !important}.pd-xs-t-3{padding-top:3px}.pd-xs-r-3{padding-right:3px}.pd-xs-b-3{padding-bottom:3px}.pd-xs-l-3{padding-left:3px}.pd-xs-t-3-f{padding-top:3px !important}.pd-xs-r-3-f{padding-right:3px !important}.pd-xs-b-3-f{padding-bottom:3px !important}.pd-xs-l-3-f{padding-left:3px !important}.pd-xs-4{padding:4px}.pd-xs-4-f{padding:4px !important}.pd-xs-y-4{padding-top:4px;padding-bottom:4px}.pd-xs-y-4-f{padding-top:4px !important;padding-bottom:4px !important}.pd-xs-x-4{padding-left:4px;padding-right:4px}.pd-xs-x-4-f{padding-left:4px !important;padding-right:4px !important}.pd-xs-t-4{padding-top:4px}.pd-xs-r-4{padding-right:4px}.pd-xs-b-4{padding-bottom:4px}.pd-xs-l-4{padding-left:4px}.pd-xs-t-4-f{padding-top:4px !important}.pd-xs-r-4-f{padding-right:4px !important}.pd-xs-b-4-f{padding-bottom:4px !important}.pd-xs-l-4-f{padding-left:4px !important}.pd-xs-5{padding:5px}.pd-xs-5-f{padding:5px !important}.pd-xs-y-5{padding-top:5px;padding-bottom:5px}.pd-xs-y-5-f{padding-top:5px !important;padding-bottom:5px !important}.pd-xs-x-5{padding-left:5px;padding-right:5px}.pd-xs-x-5-f{padding-left:5px !important;padding-right:5px !important}.pd-xs-t-5{padding-top:5px}.pd-xs-r-5{padding-right:5px}.pd-xs-b-5{padding-bottom:5px}.pd-xs-l-5{padding-left:5px}.pd-xs-t-5-f{padding-top:5px !important}.pd-xs-r-5-f{padding-right:5px !important}.pd-xs-b-5-f{padding-bottom:5px !important}.pd-xs-l-5-f{padding-left:5px !important}.pd-xs-6{padding:6px}.pd-xs-6-f{padding:6px !important}.pd-xs-y-6{padding-top:6px;padding-bottom:6px}.pd-xs-y-6-f{padding-top:6px !important;padding-bottom:6px !important}.pd-xs-x-6{padding-left:6px;padding-right:6px}.pd-xs-x-6-f{padding-left:6px !important;padding-right:6px !important}.pd-xs-t-6{padding-top:6px}.pd-xs-r-6{padding-right:6px}.pd-xs-b-6{padding-bottom:6px}.pd-xs-l-6{padding-left:6px}.pd-xs-t-6-f{padding-top:6px !important}.pd-xs-r-6-f{padding-right:6px !important}.pd-xs-b-6-f{padding-bottom:6px !important}.pd-xs-l-6-f{padding-left:6px !important}.pd-xs-7{padding:7px}.pd-xs-7-f{padding:7px !important}.pd-xs-y-7{padding-top:7px;padding-bottom:7px}.pd-xs-y-7-f{padding-top:7px !important;padding-bottom:7px !important}.pd-xs-x-7{padding-left:7px;padding-right:7px}.pd-xs-x-7-f{padding-left:7px !important;padding-right:7px !important}.pd-xs-t-7{padding-top:7px}.pd-xs-r-7{padding-right:7px}.pd-xs-b-7{padding-bottom:7px}.pd-xs-l-7{padding-left:7px}.pd-xs-t-7-f{padding-top:7px !important}.pd-xs-r-7-f{padding-right:7px !important}.pd-xs-b-7-f{padding-bottom:7px !important}.pd-xs-l-7-f{padding-left:7px !important}.pd-xs-8{padding:8px}.pd-xs-8-f{padding:8px !important}.pd-xs-y-8{padding-top:8px;padding-bottom:8px}.pd-xs-y-8-f{padding-top:8px !important;padding-bottom:8px !important}.pd-xs-x-8{padding-left:8px;padding-right:8px}.pd-xs-x-8-f{padding-left:8px !important;padding-right:8px !important}.pd-xs-t-8{padding-top:8px}.pd-xs-r-8{padding-right:8px}.pd-xs-b-8{padding-bottom:8px}.pd-xs-l-8{padding-left:8px}.pd-xs-t-8-f{padding-top:8px !important}.pd-xs-r-8-f{padding-right:8px !important}.pd-xs-b-8-f{padding-bottom:8px !important}.pd-xs-l-8-f{padding-left:8px !important}.pd-xs-9{padding:9px}.pd-xs-9-f{padding:9px !important}.pd-xs-y-9{padding-top:9px;padding-bottom:9px}.pd-xs-y-9-f{padding-top:9px !important;padding-bottom:9px !important}.pd-xs-x-9{padding-left:9px;padding-right:9px}.pd-xs-x-9-f{padding-left:9px !important;padding-right:9px !important}.pd-xs-t-9{padding-top:9px}.pd-xs-r-9{padding-right:9px}.pd-xs-b-9{padding-bottom:9px}.pd-xs-l-9{padding-left:9px}.pd-xs-t-9-f{padding-top:9px !important}.pd-xs-r-9-f{padding-right:9px !important}.pd-xs-b-9-f{padding-bottom:9px !important}.pd-xs-l-9-f{padding-left:9px !important}.pd-xs-10{padding:10px}.pd-xs-10-f{padding:10px !important}.pd-xs-y-10{padding-top:10px;padding-bottom:10px}.pd-xs-y-10-f{padding-top:10px !important;padding-bottom:10px !important}.pd-xs-x-10{padding-left:10px;padding-right:10px}.pd-xs-x-10-f{padding-left:10px !important;padding-right:10px !important}.pd-xs-t-10{padding-top:10px}.pd-xs-r-10{padding-right:10px}.pd-xs-b-10{padding-bottom:10px}.pd-xs-l-10{padding-left:10px}.pd-xs-t-10-f{padding-top:10px !important}.pd-xs-r-10-f{padding-right:10px !important}.pd-xs-b-10-f{padding-bottom:10px !important}.pd-xs-l-10-f{padding-left:10px !important}.pd-xs-15{padding:15px}.pd-xs-15-f{padding:15px !important}.pd-xs-y-15{padding-top:15px;padding-bottom:15px}.pd-xs-y-15-f{padding-top:15px !important;padding-bottom:15px !important}.pd-xs-x-15{padding-left:15px;padding-right:15px}.pd-xs-x-15-f{padding-left:15px !important;padding-right:15px !important}.pd-xs-t-15{padding-top:15px}.pd-xs-r-15{padding-right:15px}.pd-xs-b-15{padding-bottom:15px}.pd-xs-l-15{padding-left:15px}.pd-xs-t-15-f{padding-top:15px !important}.pd-xs-r-15-f{padding-right:15px !important}.pd-xs-b-15-f{padding-bottom:15px !important}.pd-xs-l-15-f{padding-left:15px !important}.pd-xs-20{padding:20px}.pd-xs-20-f{padding:20px !important}.pd-xs-y-20{padding-top:20px;padding-bottom:20px}.pd-xs-y-20-f{padding-top:20px !important;padding-bottom:20px !important}.pd-xs-x-20{padding-left:20px;padding-right:20px}.pd-xs-x-20-f{padding-left:20px !important;padding-right:20px !important}.pd-xs-t-20{padding-top:20px}.pd-xs-r-20{padding-right:20px}.pd-xs-b-20{padding-bottom:20px}.pd-xs-l-20{padding-left:20px}.pd-xs-t-20-f{padding-top:20px !important}.pd-xs-r-20-f{padding-right:20px !important}.pd-xs-b-20-f{padding-bottom:20px !important}.pd-xs-l-20-f{padding-left:20px !important}.pd-xs-25{padding:25px}.pd-xs-25-f{padding:25px !important}.pd-xs-y-25{padding-top:25px;padding-bottom:25px}.pd-xs-y-25-f{padding-top:25px !important;padding-bottom:25px !important}.pd-xs-x-25{padding-left:25px;padding-right:25px}.pd-xs-x-25-f{padding-left:25px !important;padding-right:25px !important}.pd-xs-t-25{padding-top:25px}.pd-xs-r-25{padding-right:25px}.pd-xs-b-25{padding-bottom:25px}.pd-xs-l-25{padding-left:25px}.pd-xs-t-25-f{padding-top:25px !important}.pd-xs-r-25-f{padding-right:25px !important}.pd-xs-b-25-f{padding-bottom:25px !important}.pd-xs-l-25-f{padding-left:25px !important}.pd-xs-30{padding:30px}.pd-xs-30-f{padding:30px !important}.pd-xs-y-30{padding-top:30px;padding-bottom:30px}.pd-xs-y-30-f{padding-top:30px !important;padding-bottom:30px !important}.pd-xs-x-30{padding-left:30px;padding-right:30px}.pd-xs-x-30-f{padding-left:30px !important;padding-right:30px !important}.pd-xs-t-30{padding-top:30px}.pd-xs-r-30{padding-right:30px}.pd-xs-b-30{padding-bottom:30px}.pd-xs-l-30{padding-left:30px}.pd-xs-t-30-f{padding-top:30px !important}.pd-xs-r-30-f{padding-right:30px !important}.pd-xs-b-30-f{padding-bottom:30px !important}.pd-xs-l-30-f{padding-left:30px !important}.pd-xs-35{padding:35px}.pd-xs-35-f{padding:35px !important}.pd-xs-y-35{padding-top:35px;padding-bottom:35px}.pd-xs-y-35-f{padding-top:35px !important;padding-bottom:35px !important}.pd-xs-x-35{padding-left:35px;padding-right:35px}.pd-xs-x-35-f{padding-left:35px !important;padding-right:35px !important}.pd-xs-t-35{padding-top:35px}.pd-xs-r-35{padding-right:35px}.pd-xs-b-35{padding-bottom:35px}.pd-xs-l-35{padding-left:35px}.pd-xs-t-35-f{padding-top:35px !important}.pd-xs-r-35-f{padding-right:35px !important}.pd-xs-b-35-f{padding-bottom:35px !important}.pd-xs-l-35-f{padding-left:35px !important}.pd-xs-40{padding:40px}.pd-xs-40-f{padding:40px !important}.pd-xs-y-40{padding-top:40px;padding-bottom:40px}.pd-xs-y-40-f{padding-top:40px !important;padding-bottom:40px !important}.pd-xs-x-40{padding-left:40px;padding-right:40px}.pd-xs-x-40-f{padding-left:40px !important;padding-right:40px !important}.pd-xs-t-40{padding-top:40px}.pd-xs-r-40{padding-right:40px}.pd-xs-b-40{padding-bottom:40px}.pd-xs-l-40{padding-left:40px}.pd-xs-t-40-f{padding-top:40px !important}.pd-xs-r-40-f{padding-right:40px !important}.pd-xs-b-40-f{padding-bottom:40px !important}.pd-xs-l-40-f{padding-left:40px !important}.pd-xs-45{padding:45px}.pd-xs-45-f{padding:45px !important}.pd-xs-y-45{padding-top:45px;padding-bottom:45px}.pd-xs-y-45-f{padding-top:45px !important;padding-bottom:45px !important}.pd-xs-x-45{padding-left:45px;padding-right:45px}.pd-xs-x-45-f{padding-left:45px !important;padding-right:45px !important}.pd-xs-t-45{padding-top:45px}.pd-xs-r-45{padding-right:45px}.pd-xs-b-45{padding-bottom:45px}.pd-xs-l-45{padding-left:45px}.pd-xs-t-45-f{padding-top:45px !important}.pd-xs-r-45-f{padding-right:45px !important}.pd-xs-b-45-f{padding-bottom:45px !important}.pd-xs-l-45-f{padding-left:45px !important}.pd-xs-50{padding:50px}.pd-xs-50-f{padding:50px !important}.pd-xs-y-50{padding-top:50px;padding-bottom:50px}.pd-xs-y-50-f{padding-top:50px !important;padding-bottom:50px !important}.pd-xs-x-50{padding-left:50px;padding-right:50px}.pd-xs-x-50-f{padding-left:50px !important;padding-right:50px !important}.pd-xs-t-50{padding-top:50px}.pd-xs-r-50{padding-right:50px}.pd-xs-b-50{padding-bottom:50px}.pd-xs-l-50{padding-left:50px}.pd-xs-t-50-f{padding-top:50px !important}.pd-xs-r-50-f{padding-right:50px !important}.pd-xs-b-50-f{padding-bottom:50px !important}.pd-xs-l-50-f{padding-left:50px !important}.pd-xs-55{padding:55px}.pd-xs-55-f{padding:55px !important}.pd-xs-y-55{padding-top:55px;padding-bottom:55px}.pd-xs-y-55-f{padding-top:55px !important;padding-bottom:55px !important}.pd-xs-x-55{padding-left:55px;padding-right:55px}.pd-xs-x-55-f{padding-left:55px !important;padding-right:55px !important}.pd-xs-t-55{padding-top:55px}.pd-xs-r-55{padding-right:55px}.pd-xs-b-55{padding-bottom:55px}.pd-xs-l-55{padding-left:55px}.pd-xs-t-55-f{padding-top:55px !important}.pd-xs-r-55-f{padding-right:55px !important}.pd-xs-b-55-f{padding-bottom:55px !important}.pd-xs-l-55-f{padding-left:55px !important}.pd-xs-60{padding:60px}.pd-xs-60-f{padding:60px !important}.pd-xs-y-60{padding-top:60px;padding-bottom:60px}.pd-xs-y-60-f{padding-top:60px !important;padding-bottom:60px !important}.pd-xs-x-60{padding-left:60px;padding-right:60px}.pd-xs-x-60-f{padding-left:60px !important;padding-right:60px !important}.pd-xs-t-60{padding-top:60px}.pd-xs-r-60{padding-right:60px}.pd-xs-b-60{padding-bottom:60px}.pd-xs-l-60{padding-left:60px}.pd-xs-t-60-f{padding-top:60px !important}.pd-xs-r-60-f{padding-right:60px !important}.pd-xs-b-60-f{padding-bottom:60px !important}.pd-xs-l-60-f{padding-left:60px !important}.pd-xs-65{padding:65px}.pd-xs-65-f{padding:65px !important}.pd-xs-y-65{padding-top:65px;padding-bottom:65px}.pd-xs-y-65-f{padding-top:65px !important;padding-bottom:65px !important}.pd-xs-x-65{padding-left:65px;padding-right:65px}.pd-xs-x-65-f{padding-left:65px !important;padding-right:65px !important}.pd-xs-t-65{padding-top:65px}.pd-xs-r-65{padding-right:65px}.pd-xs-b-65{padding-bottom:65px}.pd-xs-l-65{padding-left:65px}.pd-xs-t-65-f{padding-top:65px !important}.pd-xs-r-65-f{padding-right:65px !important}.pd-xs-b-65-f{padding-bottom:65px !important}.pd-xs-l-65-f{padding-left:65px !important}.pd-xs-70{padding:70px}.pd-xs-70-f{padding:70px !important}.pd-xs-y-70{padding-top:70px;padding-bottom:70px}.pd-xs-y-70-f{padding-top:70px !important;padding-bottom:70px !important}.pd-xs-x-70{padding-left:70px;padding-right:70px}.pd-xs-x-70-f{padding-left:70px !important;padding-right:70px !important}.pd-xs-t-70{padding-top:70px}.pd-xs-r-70{padding-right:70px}.pd-xs-b-70{padding-bottom:70px}.pd-xs-l-70{padding-left:70px}.pd-xs-t-70-f{padding-top:70px !important}.pd-xs-r-70-f{padding-right:70px !important}.pd-xs-b-70-f{padding-bottom:70px !important}.pd-xs-l-70-f{padding-left:70px !important}.pd-xs-75{padding:75px}.pd-xs-75-f{padding:75px !important}.pd-xs-y-75{padding-top:75px;padding-bottom:75px}.pd-xs-y-75-f{padding-top:75px !important;padding-bottom:75px !important}.pd-xs-x-75{padding-left:75px;padding-right:75px}.pd-xs-x-75-f{padding-left:75px !important;padding-right:75px !important}.pd-xs-t-75{padding-top:75px}.pd-xs-r-75{padding-right:75px}.pd-xs-b-75{padding-bottom:75px}.pd-xs-l-75{padding-left:75px}.pd-xs-t-75-f{padding-top:75px !important}.pd-xs-r-75-f{padding-right:75px !important}.pd-xs-b-75-f{padding-bottom:75px !important}.pd-xs-l-75-f{padding-left:75px !important}.pd-xs-80{padding:80px}.pd-xs-80-f{padding:80px !important}.pd-xs-y-80{padding-top:80px;padding-bottom:80px}.pd-xs-y-80-f{padding-top:80px !important;padding-bottom:80px !important}.pd-xs-x-80{padding-left:80px;padding-right:80px}.pd-xs-x-80-f{padding-left:80px !important;padding-right:80px !important}.pd-xs-t-80{padding-top:80px}.pd-xs-r-80{padding-right:80px}.pd-xs-b-80{padding-bottom:80px}.pd-xs-l-80{padding-left:80px}.pd-xs-t-80-f{padding-top:80px !important}.pd-xs-r-80-f{padding-right:80px !important}.pd-xs-b-80-f{padding-bottom:80px !important}.pd-xs-l-80-f{padding-left:80px !important}.pd-xs-85{padding:85px}.pd-xs-85-f{padding:85px !important}.pd-xs-y-85{padding-top:85px;padding-bottom:85px}.pd-xs-y-85-f{padding-top:85px !important;padding-bottom:85px !important}.pd-xs-x-85{padding-left:85px;padding-right:85px}.pd-xs-x-85-f{padding-left:85px !important;padding-right:85px !important}.pd-xs-t-85{padding-top:85px}.pd-xs-r-85{padding-right:85px}.pd-xs-b-85{padding-bottom:85px}.pd-xs-l-85{padding-left:85px}.pd-xs-t-85-f{padding-top:85px !important}.pd-xs-r-85-f{padding-right:85px !important}.pd-xs-b-85-f{padding-bottom:85px !important}.pd-xs-l-85-f{padding-left:85px !important}.pd-xs-90{padding:90px}.pd-xs-90-f{padding:90px !important}.pd-xs-y-90{padding-top:90px;padding-bottom:90px}.pd-xs-y-90-f{padding-top:90px !important;padding-bottom:90px !important}.pd-xs-x-90{padding-left:90px;padding-right:90px}.pd-xs-x-90-f{padding-left:90px !important;padding-right:90px !important}.pd-xs-t-90{padding-top:90px}.pd-xs-r-90{padding-right:90px}.pd-xs-b-90{padding-bottom:90px}.pd-xs-l-90{padding-left:90px}.pd-xs-t-90-f{padding-top:90px !important}.pd-xs-r-90-f{padding-right:90px !important}.pd-xs-b-90-f{padding-bottom:90px !important}.pd-xs-l-90-f{padding-left:90px !important}.pd-xs-95{padding:95px}.pd-xs-95-f{padding:95px !important}.pd-xs-y-95{padding-top:95px;padding-bottom:95px}.pd-xs-y-95-f{padding-top:95px !important;padding-bottom:95px !important}.pd-xs-x-95{padding-left:95px;padding-right:95px}.pd-xs-x-95-f{padding-left:95px !important;padding-right:95px !important}.pd-xs-t-95{padding-top:95px}.pd-xs-r-95{padding-right:95px}.pd-xs-b-95{padding-bottom:95px}.pd-xs-l-95{padding-left:95px}.pd-xs-t-95-f{padding-top:95px !important}.pd-xs-r-95-f{padding-right:95px !important}.pd-xs-b-95-f{padding-bottom:95px !important}.pd-xs-l-95-f{padding-left:95px !important}.pd-xs-100{padding:100px}.pd-xs-100-f{padding:100px !important}.pd-xs-y-100{padding-top:100px;padding-bottom:100px}.pd-xs-y-100-f{padding-top:100px !important;padding-bottom:100px !important}.pd-xs-x-100{padding-left:100px;padding-right:100px}.pd-xs-x-100-f{padding-left:100px !important;padding-right:100px !important}.pd-xs-t-100{padding-top:100px}.pd-xs-r-100{padding-right:100px}.pd-xs-b-100{padding-bottom:100px}.pd-xs-l-100{padding-left:100px}.pd-xs-t-100-f{padding-top:100px !important}.pd-xs-r-100-f{padding-right:100px !important}.pd-xs-b-100-f{padding-bottom:100px !important}.pd-xs-l-100-f{padding-left:100px !important}.pd-xs-110{padding:110px}.pd-xs-110-f{padding:110px !important}.pd-xs-y-110{padding-top:110px;padding-bottom:110px}.pd-xs-y-110-f{padding-top:110px !important;padding-bottom:110px !important}.pd-xs-x-110{padding-left:110px;padding-right:110px}.pd-xs-x-110-f{padding-left:110px !important;padding-right:110px !important}.pd-xs-t-110{padding-top:110px}.pd-xs-r-110{padding-right:110px}.pd-xs-b-110{padding-bottom:110px}.pd-xs-l-110{padding-left:110px}.pd-xs-t-110-f{padding-top:110px !important}.pd-xs-r-110-f{padding-right:110px !important}.pd-xs-b-110-f{padding-bottom:110px !important}.pd-xs-l-110-f{padding-left:110px !important}.pd-xs-120{padding:120px}.pd-xs-120-f{padding:120px !important}.pd-xs-y-120{padding-top:120px;padding-bottom:120px}.pd-xs-y-120-f{padding-top:120px !important;padding-bottom:120px !important}.pd-xs-x-120{padding-left:120px;padding-right:120px}.pd-xs-x-120-f{padding-left:120px !important;padding-right:120px !important}.pd-xs-t-120{padding-top:120px}.pd-xs-r-120{padding-right:120px}.pd-xs-b-120{padding-bottom:120px}.pd-xs-l-120{padding-left:120px}.pd-xs-t-120-f{padding-top:120px !important}.pd-xs-r-120-f{padding-right:120px !important}.pd-xs-b-120-f{padding-bottom:120px !important}.pd-xs-l-120-f{padding-left:120px !important}.pd-xs-130{padding:130px}.pd-xs-130-f{padding:130px !important}.pd-xs-y-130{padding-top:130px;padding-bottom:130px}.pd-xs-y-130-f{padding-top:130px !important;padding-bottom:130px !important}.pd-xs-x-130{padding-left:130px;padding-right:130px}.pd-xs-x-130-f{padding-left:130px !important;padding-right:130px !important}.pd-xs-t-130{padding-top:130px}.pd-xs-r-130{padding-right:130px}.pd-xs-b-130{padding-bottom:130px}.pd-xs-l-130{padding-left:130px}.pd-xs-t-130-f{padding-top:130px !important}.pd-xs-r-130-f{padding-right:130px !important}.pd-xs-b-130-f{padding-bottom:130px !important}.pd-xs-l-130-f{padding-left:130px !important}.pd-xs-140{padding:140px}.pd-xs-140-f{padding:140px !important}.pd-xs-y-140{padding-top:140px;padding-bottom:140px}.pd-xs-y-140-f{padding-top:140px !important;padding-bottom:140px !important}.pd-xs-x-140{padding-left:140px;padding-right:140px}.pd-xs-x-140-f{padding-left:140px !important;padding-right:140px !important}.pd-xs-t-140{padding-top:140px}.pd-xs-r-140{padding-right:140px}.pd-xs-b-140{padding-bottom:140px}.pd-xs-l-140{padding-left:140px}.pd-xs-t-140-f{padding-top:140px !important}.pd-xs-r-140-f{padding-right:140px !important}.pd-xs-b-140-f{padding-bottom:140px !important}.pd-xs-l-140-f{padding-left:140px !important}.pd-xs-150{padding:150px}.pd-xs-150-f{padding:150px !important}.pd-xs-y-150{padding-top:150px;padding-bottom:150px}.pd-xs-y-150-f{padding-top:150px !important;padding-bottom:150px !important}.pd-xs-x-150{padding-left:150px;padding-right:150px}.pd-xs-x-150-f{padding-left:150px !important;padding-right:150px !important}.pd-xs-t-150{padding-top:150px}.pd-xs-r-150{padding-right:150px}.pd-xs-b-150{padding-bottom:150px}.pd-xs-l-150{padding-left:150px}.pd-xs-t-150-f{padding-top:150px !important}.pd-xs-r-150-f{padding-right:150px !important}.pd-xs-b-150-f{padding-bottom:150px !important}.pd-xs-l-150-f{padding-left:150px !important}.pd-xs-160{padding:160px}.pd-xs-160-f{padding:160px !important}.pd-xs-y-160{padding-top:160px;padding-bottom:160px}.pd-xs-y-160-f{padding-top:160px !important;padding-bottom:160px !important}.pd-xs-x-160{padding-left:160px;padding-right:160px}.pd-xs-x-160-f{padding-left:160px !important;padding-right:160px !important}.pd-xs-t-160{padding-top:160px}.pd-xs-r-160{padding-right:160px}.pd-xs-b-160{padding-bottom:160px}.pd-xs-l-160{padding-left:160px}.pd-xs-t-160-f{padding-top:160px !important}.pd-xs-r-160-f{padding-right:160px !important}.pd-xs-b-160-f{padding-bottom:160px !important}.pd-xs-l-160-f{padding-left:160px !important}.pd-xs-170{padding:170px}.pd-xs-170-f{padding:170px !important}.pd-xs-y-170{padding-top:170px;padding-bottom:170px}.pd-xs-y-170-f{padding-top:170px !important;padding-bottom:170px !important}.pd-xs-x-170{padding-left:170px;padding-right:170px}.pd-xs-x-170-f{padding-left:170px !important;padding-right:170px !important}.pd-xs-t-170{padding-top:170px}.pd-xs-r-170{padding-right:170px}.pd-xs-b-170{padding-bottom:170px}.pd-xs-l-170{padding-left:170px}.pd-xs-t-170-f{padding-top:170px !important}.pd-xs-r-170-f{padding-right:170px !important}.pd-xs-b-170-f{padding-bottom:170px !important}.pd-xs-l-170-f{padding-left:170px !important}.pd-xs-180{padding:180px}.pd-xs-180-f{padding:180px !important}.pd-xs-y-180{padding-top:180px;padding-bottom:180px}.pd-xs-y-180-f{padding-top:180px !important;padding-bottom:180px !important}.pd-xs-x-180{padding-left:180px;padding-right:180px}.pd-xs-x-180-f{padding-left:180px !important;padding-right:180px !important}.pd-xs-t-180{padding-top:180px}.pd-xs-r-180{padding-right:180px}.pd-xs-b-180{padding-bottom:180px}.pd-xs-l-180{padding-left:180px}.pd-xs-t-180-f{padding-top:180px !important}.pd-xs-r-180-f{padding-right:180px !important}.pd-xs-b-180-f{padding-bottom:180px !important}.pd-xs-l-180-f{padding-left:180px !important}.pd-xs-190{padding:190px}.pd-xs-190-f{padding:190px !important}.pd-xs-y-190{padding-top:190px;padding-bottom:190px}.pd-xs-y-190-f{padding-top:190px !important;padding-bottom:190px !important}.pd-xs-x-190{padding-left:190px;padding-right:190px}.pd-xs-x-190-f{padding-left:190px !important;padding-right:190px !important}.pd-xs-t-190{padding-top:190px}.pd-xs-r-190{padding-right:190px}.pd-xs-b-190{padding-bottom:190px}.pd-xs-l-190{padding-left:190px}.pd-xs-t-190-f{padding-top:190px !important}.pd-xs-r-190-f{padding-right:190px !important}.pd-xs-b-190-f{padding-bottom:190px !important}.pd-xs-l-190-f{padding-left:190px !important}.pd-xs-200{padding:200px}.pd-xs-200-f{padding:200px !important}.pd-xs-y-200{padding-top:200px;padding-bottom:200px}.pd-xs-y-200-f{padding-top:200px !important;padding-bottom:200px !important}.pd-xs-x-200{padding-left:200px;padding-right:200px}.pd-xs-x-200-f{padding-left:200px !important;padding-right:200px !important}.pd-xs-t-200{padding-top:200px}.pd-xs-r-200{padding-right:200px}.pd-xs-b-200{padding-bottom:200px}.pd-xs-l-200{padding-left:200px}.pd-xs-t-200-f{padding-top:200px !important}.pd-xs-r-200-f{padding-right:200px !important}.pd-xs-b-200-f{padding-bottom:200px !important}.pd-xs-l-200-f{padding-left:200px !important}}@media (min-width: 576px){.pd-sm-0{padding:0px}.pd-sm-0-f{padding:0px !important}.pd-sm-y-0{padding-top:0px;padding-bottom:0px}.pd-sm-y-0-f{padding-top:0px !important;padding-bottom:0px !important}.pd-sm-x-0{padding-left:0px;padding-right:0px}.pd-sm-x-0-f{padding-left:0px !important;padding-right:0px !important}.pd-sm-t-0{padding-top:0px}.pd-sm-r-0{padding-right:0px}.pd-sm-b-0{padding-bottom:0px}.pd-sm-l-0{padding-left:0px}.pd-sm-t-0-f{padding-top:0px !important}.pd-sm-r-0-f{padding-right:0px !important}.pd-sm-b-0-f{padding-bottom:0px !important}.pd-sm-l-0-f{padding-left:0px !important}.pd-sm-1{padding:1px}.pd-sm-1-f{padding:1px !important}.pd-sm-y-1{padding-top:1px;padding-bottom:1px}.pd-sm-y-1-f{padding-top:1px !important;padding-bottom:1px !important}.pd-sm-x-1{padding-left:1px;padding-right:1px}.pd-sm-x-1-f{padding-left:1px !important;padding-right:1px !important}.pd-sm-t-1{padding-top:1px}.pd-sm-r-1{padding-right:1px}.pd-sm-b-1{padding-bottom:1px}.pd-sm-l-1{padding-left:1px}.pd-sm-t-1-f{padding-top:1px !important}.pd-sm-r-1-f{padding-right:1px !important}.pd-sm-b-1-f{padding-bottom:1px !important}.pd-sm-l-1-f{padding-left:1px !important}.pd-sm-2{padding:2px}.pd-sm-2-f{padding:2px !important}.pd-sm-y-2{padding-top:2px;padding-bottom:2px}.pd-sm-y-2-f{padding-top:2px !important;padding-bottom:2px !important}.pd-sm-x-2{padding-left:2px;padding-right:2px}.pd-sm-x-2-f{padding-left:2px !important;padding-right:2px !important}.pd-sm-t-2{padding-top:2px}.pd-sm-r-2{padding-right:2px}.pd-sm-b-2{padding-bottom:2px}.pd-sm-l-2{padding-left:2px}.pd-sm-t-2-f{padding-top:2px !important}.pd-sm-r-2-f{padding-right:2px !important}.pd-sm-b-2-f{padding-bottom:2px !important}.pd-sm-l-2-f{padding-left:2px !important}.pd-sm-3{padding:3px}.pd-sm-3-f{padding:3px !important}.pd-sm-y-3{padding-top:3px;padding-bottom:3px}.pd-sm-y-3-f{padding-top:3px !important;padding-bottom:3px !important}.pd-sm-x-3{padding-left:3px;padding-right:3px}.pd-sm-x-3-f{padding-left:3px !important;padding-right:3px !important}.pd-sm-t-3{padding-top:3px}.pd-sm-r-3{padding-right:3px}.pd-sm-b-3{padding-bottom:3px}.pd-sm-l-3{padding-left:3px}.pd-sm-t-3-f{padding-top:3px !important}.pd-sm-r-3-f{padding-right:3px !important}.pd-sm-b-3-f{padding-bottom:3px !important}.pd-sm-l-3-f{padding-left:3px !important}.pd-sm-4{padding:4px}.pd-sm-4-f{padding:4px !important}.pd-sm-y-4{padding-top:4px;padding-bottom:4px}.pd-sm-y-4-f{padding-top:4px !important;padding-bottom:4px !important}.pd-sm-x-4{padding-left:4px;padding-right:4px}.pd-sm-x-4-f{padding-left:4px !important;padding-right:4px !important}.pd-sm-t-4{padding-top:4px}.pd-sm-r-4{padding-right:4px}.pd-sm-b-4{padding-bottom:4px}.pd-sm-l-4{padding-left:4px}.pd-sm-t-4-f{padding-top:4px !important}.pd-sm-r-4-f{padding-right:4px !important}.pd-sm-b-4-f{padding-bottom:4px !important}.pd-sm-l-4-f{padding-left:4px !important}.pd-sm-5{padding:5px}.pd-sm-5-f{padding:5px !important}.pd-sm-y-5{padding-top:5px;padding-bottom:5px}.pd-sm-y-5-f{padding-top:5px !important;padding-bottom:5px !important}.pd-sm-x-5{padding-left:5px;padding-right:5px}.pd-sm-x-5-f{padding-left:5px !important;padding-right:5px !important}.pd-sm-t-5{padding-top:5px}.pd-sm-r-5{padding-right:5px}.pd-sm-b-5{padding-bottom:5px}.pd-sm-l-5{padding-left:5px}.pd-sm-t-5-f{padding-top:5px !important}.pd-sm-r-5-f{padding-right:5px !important}.pd-sm-b-5-f{padding-bottom:5px !important}.pd-sm-l-5-f{padding-left:5px !important}.pd-sm-6{padding:6px}.pd-sm-6-f{padding:6px !important}.pd-sm-y-6{padding-top:6px;padding-bottom:6px}.pd-sm-y-6-f{padding-top:6px !important;padding-bottom:6px !important}.pd-sm-x-6{padding-left:6px;padding-right:6px}.pd-sm-x-6-f{padding-left:6px !important;padding-right:6px !important}.pd-sm-t-6{padding-top:6px}.pd-sm-r-6{padding-right:6px}.pd-sm-b-6{padding-bottom:6px}.pd-sm-l-6{padding-left:6px}.pd-sm-t-6-f{padding-top:6px !important}.pd-sm-r-6-f{padding-right:6px !important}.pd-sm-b-6-f{padding-bottom:6px !important}.pd-sm-l-6-f{padding-left:6px !important}.pd-sm-7{padding:7px}.pd-sm-7-f{padding:7px !important}.pd-sm-y-7{padding-top:7px;padding-bottom:7px}.pd-sm-y-7-f{padding-top:7px !important;padding-bottom:7px !important}.pd-sm-x-7{padding-left:7px;padding-right:7px}.pd-sm-x-7-f{padding-left:7px !important;padding-right:7px !important}.pd-sm-t-7{padding-top:7px}.pd-sm-r-7{padding-right:7px}.pd-sm-b-7{padding-bottom:7px}.pd-sm-l-7{padding-left:7px}.pd-sm-t-7-f{padding-top:7px !important}.pd-sm-r-7-f{padding-right:7px !important}.pd-sm-b-7-f{padding-bottom:7px !important}.pd-sm-l-7-f{padding-left:7px !important}.pd-sm-8{padding:8px}.pd-sm-8-f{padding:8px !important}.pd-sm-y-8{padding-top:8px;padding-bottom:8px}.pd-sm-y-8-f{padding-top:8px !important;padding-bottom:8px !important}.pd-sm-x-8{padding-left:8px;padding-right:8px}.pd-sm-x-8-f{padding-left:8px !important;padding-right:8px !important}.pd-sm-t-8{padding-top:8px}.pd-sm-r-8{padding-right:8px}.pd-sm-b-8{padding-bottom:8px}.pd-sm-l-8{padding-left:8px}.pd-sm-t-8-f{padding-top:8px !important}.pd-sm-r-8-f{padding-right:8px !important}.pd-sm-b-8-f{padding-bottom:8px !important}.pd-sm-l-8-f{padding-left:8px !important}.pd-sm-9{padding:9px}.pd-sm-9-f{padding:9px !important}.pd-sm-y-9{padding-top:9px;padding-bottom:9px}.pd-sm-y-9-f{padding-top:9px !important;padding-bottom:9px !important}.pd-sm-x-9{padding-left:9px;padding-right:9px}.pd-sm-x-9-f{padding-left:9px !important;padding-right:9px !important}.pd-sm-t-9{padding-top:9px}.pd-sm-r-9{padding-right:9px}.pd-sm-b-9{padding-bottom:9px}.pd-sm-l-9{padding-left:9px}.pd-sm-t-9-f{padding-top:9px !important}.pd-sm-r-9-f{padding-right:9px !important}.pd-sm-b-9-f{padding-bottom:9px !important}.pd-sm-l-9-f{padding-left:9px !important}.pd-sm-10{padding:10px}.pd-sm-10-f{padding:10px !important}.pd-sm-y-10{padding-top:10px;padding-bottom:10px}.pd-sm-y-10-f{padding-top:10px !important;padding-bottom:10px !important}.pd-sm-x-10{padding-left:10px;padding-right:10px}.pd-sm-x-10-f{padding-left:10px !important;padding-right:10px !important}.pd-sm-t-10{padding-top:10px}.pd-sm-r-10{padding-right:10px}.pd-sm-b-10{padding-bottom:10px}.pd-sm-l-10{padding-left:10px}.pd-sm-t-10-f{padding-top:10px !important}.pd-sm-r-10-f{padding-right:10px !important}.pd-sm-b-10-f{padding-bottom:10px !important}.pd-sm-l-10-f{padding-left:10px !important}.pd-sm-15{padding:15px}.pd-sm-15-f{padding:15px !important}.pd-sm-y-15{padding-top:15px;padding-bottom:15px}.pd-sm-y-15-f{padding-top:15px !important;padding-bottom:15px !important}.pd-sm-x-15{padding-left:15px;padding-right:15px}.pd-sm-x-15-f{padding-left:15px !important;padding-right:15px !important}.pd-sm-t-15{padding-top:15px}.pd-sm-r-15{padding-right:15px}.pd-sm-b-15{padding-bottom:15px}.pd-sm-l-15{padding-left:15px}.pd-sm-t-15-f{padding-top:15px !important}.pd-sm-r-15-f{padding-right:15px !important}.pd-sm-b-15-f{padding-bottom:15px !important}.pd-sm-l-15-f{padding-left:15px !important}.pd-sm-20{padding:20px}.pd-sm-20-f{padding:20px !important}.pd-sm-y-20{padding-top:20px;padding-bottom:20px}.pd-sm-y-20-f{padding-top:20px !important;padding-bottom:20px !important}.pd-sm-x-20{padding-left:20px;padding-right:20px}.pd-sm-x-20-f{padding-left:20px !important;padding-right:20px !important}.pd-sm-t-20{padding-top:20px}.pd-sm-r-20{padding-right:20px}.pd-sm-b-20{padding-bottom:20px}.pd-sm-l-20{padding-left:20px}.pd-sm-t-20-f{padding-top:20px !important}.pd-sm-r-20-f{padding-right:20px !important}.pd-sm-b-20-f{padding-bottom:20px !important}.pd-sm-l-20-f{padding-left:20px !important}.pd-sm-25{padding:25px}.pd-sm-25-f{padding:25px !important}.pd-sm-y-25{padding-top:25px;padding-bottom:25px}.pd-sm-y-25-f{padding-top:25px !important;padding-bottom:25px !important}.pd-sm-x-25{padding-left:25px;padding-right:25px}.pd-sm-x-25-f{padding-left:25px !important;padding-right:25px !important}.pd-sm-t-25{padding-top:25px}.pd-sm-r-25{padding-right:25px}.pd-sm-b-25{padding-bottom:25px}.pd-sm-l-25{padding-left:25px}.pd-sm-t-25-f{padding-top:25px !important}.pd-sm-r-25-f{padding-right:25px !important}.pd-sm-b-25-f{padding-bottom:25px !important}.pd-sm-l-25-f{padding-left:25px !important}.pd-sm-30{padding:30px}.pd-sm-30-f{padding:30px !important}.pd-sm-y-30{padding-top:30px;padding-bottom:30px}.pd-sm-y-30-f{padding-top:30px !important;padding-bottom:30px !important}.pd-sm-x-30{padding-left:30px;padding-right:30px}.pd-sm-x-30-f{padding-left:30px !important;padding-right:30px !important}.pd-sm-t-30{padding-top:30px}.pd-sm-r-30{padding-right:30px}.pd-sm-b-30{padding-bottom:30px}.pd-sm-l-30{padding-left:30px}.pd-sm-t-30-f{padding-top:30px !important}.pd-sm-r-30-f{padding-right:30px !important}.pd-sm-b-30-f{padding-bottom:30px !important}.pd-sm-l-30-f{padding-left:30px !important}.pd-sm-35{padding:35px}.pd-sm-35-f{padding:35px !important}.pd-sm-y-35{padding-top:35px;padding-bottom:35px}.pd-sm-y-35-f{padding-top:35px !important;padding-bottom:35px !important}.pd-sm-x-35{padding-left:35px;padding-right:35px}.pd-sm-x-35-f{padding-left:35px !important;padding-right:35px !important}.pd-sm-t-35{padding-top:35px}.pd-sm-r-35{padding-right:35px}.pd-sm-b-35{padding-bottom:35px}.pd-sm-l-35{padding-left:35px}.pd-sm-t-35-f{padding-top:35px !important}.pd-sm-r-35-f{padding-right:35px !important}.pd-sm-b-35-f{padding-bottom:35px !important}.pd-sm-l-35-f{padding-left:35px !important}.pd-sm-40{padding:40px}.pd-sm-40-f{padding:40px !important}.pd-sm-y-40{padding-top:40px;padding-bottom:40px}.pd-sm-y-40-f{padding-top:40px !important;padding-bottom:40px !important}.pd-sm-x-40{padding-left:40px;padding-right:40px}.pd-sm-x-40-f{padding-left:40px !important;padding-right:40px !important}.pd-sm-t-40{padding-top:40px}.pd-sm-r-40{padding-right:40px}.pd-sm-b-40{padding-bottom:40px}.pd-sm-l-40{padding-left:40px}.pd-sm-t-40-f{padding-top:40px !important}.pd-sm-r-40-f{padding-right:40px !important}.pd-sm-b-40-f{padding-bottom:40px !important}.pd-sm-l-40-f{padding-left:40px !important}.pd-sm-45{padding:45px}.pd-sm-45-f{padding:45px !important}.pd-sm-y-45{padding-top:45px;padding-bottom:45px}.pd-sm-y-45-f{padding-top:45px !important;padding-bottom:45px !important}.pd-sm-x-45{padding-left:45px;padding-right:45px}.pd-sm-x-45-f{padding-left:45px !important;padding-right:45px !important}.pd-sm-t-45{padding-top:45px}.pd-sm-r-45{padding-right:45px}.pd-sm-b-45{padding-bottom:45px}.pd-sm-l-45{padding-left:45px}.pd-sm-t-45-f{padding-top:45px !important}.pd-sm-r-45-f{padding-right:45px !important}.pd-sm-b-45-f{padding-bottom:45px !important}.pd-sm-l-45-f{padding-left:45px !important}.pd-sm-50{padding:50px}.pd-sm-50-f{padding:50px !important}.pd-sm-y-50{padding-top:50px;padding-bottom:50px}.pd-sm-y-50-f{padding-top:50px !important;padding-bottom:50px !important}.pd-sm-x-50{padding-left:50px;padding-right:50px}.pd-sm-x-50-f{padding-left:50px !important;padding-right:50px !important}.pd-sm-t-50{padding-top:50px}.pd-sm-r-50{padding-right:50px}.pd-sm-b-50{padding-bottom:50px}.pd-sm-l-50{padding-left:50px}.pd-sm-t-50-f{padding-top:50px !important}.pd-sm-r-50-f{padding-right:50px !important}.pd-sm-b-50-f{padding-bottom:50px !important}.pd-sm-l-50-f{padding-left:50px !important}.pd-sm-55{padding:55px}.pd-sm-55-f{padding:55px !important}.pd-sm-y-55{padding-top:55px;padding-bottom:55px}.pd-sm-y-55-f{padding-top:55px !important;padding-bottom:55px !important}.pd-sm-x-55{padding-left:55px;padding-right:55px}.pd-sm-x-55-f{padding-left:55px !important;padding-right:55px !important}.pd-sm-t-55{padding-top:55px}.pd-sm-r-55{padding-right:55px}.pd-sm-b-55{padding-bottom:55px}.pd-sm-l-55{padding-left:55px}.pd-sm-t-55-f{padding-top:55px !important}.pd-sm-r-55-f{padding-right:55px !important}.pd-sm-b-55-f{padding-bottom:55px !important}.pd-sm-l-55-f{padding-left:55px !important}.pd-sm-60{padding:60px}.pd-sm-60-f{padding:60px !important}.pd-sm-y-60{padding-top:60px;padding-bottom:60px}.pd-sm-y-60-f{padding-top:60px !important;padding-bottom:60px !important}.pd-sm-x-60{padding-left:60px;padding-right:60px}.pd-sm-x-60-f{padding-left:60px !important;padding-right:60px !important}.pd-sm-t-60{padding-top:60px}.pd-sm-r-60{padding-right:60px}.pd-sm-b-60{padding-bottom:60px}.pd-sm-l-60{padding-left:60px}.pd-sm-t-60-f{padding-top:60px !important}.pd-sm-r-60-f{padding-right:60px !important}.pd-sm-b-60-f{padding-bottom:60px !important}.pd-sm-l-60-f{padding-left:60px !important}.pd-sm-65{padding:65px}.pd-sm-65-f{padding:65px !important}.pd-sm-y-65{padding-top:65px;padding-bottom:65px}.pd-sm-y-65-f{padding-top:65px !important;padding-bottom:65px !important}.pd-sm-x-65{padding-left:65px;padding-right:65px}.pd-sm-x-65-f{padding-left:65px !important;padding-right:65px !important}.pd-sm-t-65{padding-top:65px}.pd-sm-r-65{padding-right:65px}.pd-sm-b-65{padding-bottom:65px}.pd-sm-l-65{padding-left:65px}.pd-sm-t-65-f{padding-top:65px !important}.pd-sm-r-65-f{padding-right:65px !important}.pd-sm-b-65-f{padding-bottom:65px !important}.pd-sm-l-65-f{padding-left:65px !important}.pd-sm-70{padding:70px}.pd-sm-70-f{padding:70px !important}.pd-sm-y-70{padding-top:70px;padding-bottom:70px}.pd-sm-y-70-f{padding-top:70px !important;padding-bottom:70px !important}.pd-sm-x-70{padding-left:70px;padding-right:70px}.pd-sm-x-70-f{padding-left:70px !important;padding-right:70px !important}.pd-sm-t-70{padding-top:70px}.pd-sm-r-70{padding-right:70px}.pd-sm-b-70{padding-bottom:70px}.pd-sm-l-70{padding-left:70px}.pd-sm-t-70-f{padding-top:70px !important}.pd-sm-r-70-f{padding-right:70px !important}.pd-sm-b-70-f{padding-bottom:70px !important}.pd-sm-l-70-f{padding-left:70px !important}.pd-sm-75{padding:75px}.pd-sm-75-f{padding:75px !important}.pd-sm-y-75{padding-top:75px;padding-bottom:75px}.pd-sm-y-75-f{padding-top:75px !important;padding-bottom:75px !important}.pd-sm-x-75{padding-left:75px;padding-right:75px}.pd-sm-x-75-f{padding-left:75px !important;padding-right:75px !important}.pd-sm-t-75{padding-top:75px}.pd-sm-r-75{padding-right:75px}.pd-sm-b-75{padding-bottom:75px}.pd-sm-l-75{padding-left:75px}.pd-sm-t-75-f{padding-top:75px !important}.pd-sm-r-75-f{padding-right:75px !important}.pd-sm-b-75-f{padding-bottom:75px !important}.pd-sm-l-75-f{padding-left:75px !important}.pd-sm-80{padding:80px}.pd-sm-80-f{padding:80px !important}.pd-sm-y-80{padding-top:80px;padding-bottom:80px}.pd-sm-y-80-f{padding-top:80px !important;padding-bottom:80px !important}.pd-sm-x-80{padding-left:80px;padding-right:80px}.pd-sm-x-80-f{padding-left:80px !important;padding-right:80px !important}.pd-sm-t-80{padding-top:80px}.pd-sm-r-80{padding-right:80px}.pd-sm-b-80{padding-bottom:80px}.pd-sm-l-80{padding-left:80px}.pd-sm-t-80-f{padding-top:80px !important}.pd-sm-r-80-f{padding-right:80px !important}.pd-sm-b-80-f{padding-bottom:80px !important}.pd-sm-l-80-f{padding-left:80px !important}.pd-sm-85{padding:85px}.pd-sm-85-f{padding:85px !important}.pd-sm-y-85{padding-top:85px;padding-bottom:85px}.pd-sm-y-85-f{padding-top:85px !important;padding-bottom:85px !important}.pd-sm-x-85{padding-left:85px;padding-right:85px}.pd-sm-x-85-f{padding-left:85px !important;padding-right:85px !important}.pd-sm-t-85{padding-top:85px}.pd-sm-r-85{padding-right:85px}.pd-sm-b-85{padding-bottom:85px}.pd-sm-l-85{padding-left:85px}.pd-sm-t-85-f{padding-top:85px !important}.pd-sm-r-85-f{padding-right:85px !important}.pd-sm-b-85-f{padding-bottom:85px !important}.pd-sm-l-85-f{padding-left:85px !important}.pd-sm-90{padding:90px}.pd-sm-90-f{padding:90px !important}.pd-sm-y-90{padding-top:90px;padding-bottom:90px}.pd-sm-y-90-f{padding-top:90px !important;padding-bottom:90px !important}.pd-sm-x-90{padding-left:90px;padding-right:90px}.pd-sm-x-90-f{padding-left:90px !important;padding-right:90px !important}.pd-sm-t-90{padding-top:90px}.pd-sm-r-90{padding-right:90px}.pd-sm-b-90{padding-bottom:90px}.pd-sm-l-90{padding-left:90px}.pd-sm-t-90-f{padding-top:90px !important}.pd-sm-r-90-f{padding-right:90px !important}.pd-sm-b-90-f{padding-bottom:90px !important}.pd-sm-l-90-f{padding-left:90px !important}.pd-sm-95{padding:95px}.pd-sm-95-f{padding:95px !important}.pd-sm-y-95{padding-top:95px;padding-bottom:95px}.pd-sm-y-95-f{padding-top:95px !important;padding-bottom:95px !important}.pd-sm-x-95{padding-left:95px;padding-right:95px}.pd-sm-x-95-f{padding-left:95px !important;padding-right:95px !important}.pd-sm-t-95{padding-top:95px}.pd-sm-r-95{padding-right:95px}.pd-sm-b-95{padding-bottom:95px}.pd-sm-l-95{padding-left:95px}.pd-sm-t-95-f{padding-top:95px !important}.pd-sm-r-95-f{padding-right:95px !important}.pd-sm-b-95-f{padding-bottom:95px !important}.pd-sm-l-95-f{padding-left:95px !important}.pd-sm-100{padding:100px}.pd-sm-100-f{padding:100px !important}.pd-sm-y-100{padding-top:100px;padding-bottom:100px}.pd-sm-y-100-f{padding-top:100px !important;padding-bottom:100px !important}.pd-sm-x-100{padding-left:100px;padding-right:100px}.pd-sm-x-100-f{padding-left:100px !important;padding-right:100px !important}.pd-sm-t-100{padding-top:100px}.pd-sm-r-100{padding-right:100px}.pd-sm-b-100{padding-bottom:100px}.pd-sm-l-100{padding-left:100px}.pd-sm-t-100-f{padding-top:100px !important}.pd-sm-r-100-f{padding-right:100px !important}.pd-sm-b-100-f{padding-bottom:100px !important}.pd-sm-l-100-f{padding-left:100px !important}.pd-sm-110{padding:110px}.pd-sm-110-f{padding:110px !important}.pd-sm-y-110{padding-top:110px;padding-bottom:110px}.pd-sm-y-110-f{padding-top:110px !important;padding-bottom:110px !important}.pd-sm-x-110{padding-left:110px;padding-right:110px}.pd-sm-x-110-f{padding-left:110px !important;padding-right:110px !important}.pd-sm-t-110{padding-top:110px}.pd-sm-r-110{padding-right:110px}.pd-sm-b-110{padding-bottom:110px}.pd-sm-l-110{padding-left:110px}.pd-sm-t-110-f{padding-top:110px !important}.pd-sm-r-110-f{padding-right:110px !important}.pd-sm-b-110-f{padding-bottom:110px !important}.pd-sm-l-110-f{padding-left:110px !important}.pd-sm-120{padding:120px}.pd-sm-120-f{padding:120px !important}.pd-sm-y-120{padding-top:120px;padding-bottom:120px}.pd-sm-y-120-f{padding-top:120px !important;padding-bottom:120px !important}.pd-sm-x-120{padding-left:120px;padding-right:120px}.pd-sm-x-120-f{padding-left:120px !important;padding-right:120px !important}.pd-sm-t-120{padding-top:120px}.pd-sm-r-120{padding-right:120px}.pd-sm-b-120{padding-bottom:120px}.pd-sm-l-120{padding-left:120px}.pd-sm-t-120-f{padding-top:120px !important}.pd-sm-r-120-f{padding-right:120px !important}.pd-sm-b-120-f{padding-bottom:120px !important}.pd-sm-l-120-f{padding-left:120px !important}.pd-sm-130{padding:130px}.pd-sm-130-f{padding:130px !important}.pd-sm-y-130{padding-top:130px;padding-bottom:130px}.pd-sm-y-130-f{padding-top:130px !important;padding-bottom:130px !important}.pd-sm-x-130{padding-left:130px;padding-right:130px}.pd-sm-x-130-f{padding-left:130px !important;padding-right:130px !important}.pd-sm-t-130{padding-top:130px}.pd-sm-r-130{padding-right:130px}.pd-sm-b-130{padding-bottom:130px}.pd-sm-l-130{padding-left:130px}.pd-sm-t-130-f{padding-top:130px !important}.pd-sm-r-130-f{padding-right:130px !important}.pd-sm-b-130-f{padding-bottom:130px !important}.pd-sm-l-130-f{padding-left:130px !important}.pd-sm-140{padding:140px}.pd-sm-140-f{padding:140px !important}.pd-sm-y-140{padding-top:140px;padding-bottom:140px}.pd-sm-y-140-f{padding-top:140px !important;padding-bottom:140px !important}.pd-sm-x-140{padding-left:140px;padding-right:140px}.pd-sm-x-140-f{padding-left:140px !important;padding-right:140px !important}.pd-sm-t-140{padding-top:140px}.pd-sm-r-140{padding-right:140px}.pd-sm-b-140{padding-bottom:140px}.pd-sm-l-140{padding-left:140px}.pd-sm-t-140-f{padding-top:140px !important}.pd-sm-r-140-f{padding-right:140px !important}.pd-sm-b-140-f{padding-bottom:140px !important}.pd-sm-l-140-f{padding-left:140px !important}.pd-sm-150{padding:150px}.pd-sm-150-f{padding:150px !important}.pd-sm-y-150{padding-top:150px;padding-bottom:150px}.pd-sm-y-150-f{padding-top:150px !important;padding-bottom:150px !important}.pd-sm-x-150{padding-left:150px;padding-right:150px}.pd-sm-x-150-f{padding-left:150px !important;padding-right:150px !important}.pd-sm-t-150{padding-top:150px}.pd-sm-r-150{padding-right:150px}.pd-sm-b-150{padding-bottom:150px}.pd-sm-l-150{padding-left:150px}.pd-sm-t-150-f{padding-top:150px !important}.pd-sm-r-150-f{padding-right:150px !important}.pd-sm-b-150-f{padding-bottom:150px !important}.pd-sm-l-150-f{padding-left:150px !important}.pd-sm-160{padding:160px}.pd-sm-160-f{padding:160px !important}.pd-sm-y-160{padding-top:160px;padding-bottom:160px}.pd-sm-y-160-f{padding-top:160px !important;padding-bottom:160px !important}.pd-sm-x-160{padding-left:160px;padding-right:160px}.pd-sm-x-160-f{padding-left:160px !important;padding-right:160px !important}.pd-sm-t-160{padding-top:160px}.pd-sm-r-160{padding-right:160px}.pd-sm-b-160{padding-bottom:160px}.pd-sm-l-160{padding-left:160px}.pd-sm-t-160-f{padding-top:160px !important}.pd-sm-r-160-f{padding-right:160px !important}.pd-sm-b-160-f{padding-bottom:160px !important}.pd-sm-l-160-f{padding-left:160px !important}.pd-sm-170{padding:170px}.pd-sm-170-f{padding:170px !important}.pd-sm-y-170{padding-top:170px;padding-bottom:170px}.pd-sm-y-170-f{padding-top:170px !important;padding-bottom:170px !important}.pd-sm-x-170{padding-left:170px;padding-right:170px}.pd-sm-x-170-f{padding-left:170px !important;padding-right:170px !important}.pd-sm-t-170{padding-top:170px}.pd-sm-r-170{padding-right:170px}.pd-sm-b-170{padding-bottom:170px}.pd-sm-l-170{padding-left:170px}.pd-sm-t-170-f{padding-top:170px !important}.pd-sm-r-170-f{padding-right:170px !important}.pd-sm-b-170-f{padding-bottom:170px !important}.pd-sm-l-170-f{padding-left:170px !important}.pd-sm-180{padding:180px}.pd-sm-180-f{padding:180px !important}.pd-sm-y-180{padding-top:180px;padding-bottom:180px}.pd-sm-y-180-f{padding-top:180px !important;padding-bottom:180px !important}.pd-sm-x-180{padding-left:180px;padding-right:180px}.pd-sm-x-180-f{padding-left:180px !important;padding-right:180px !important}.pd-sm-t-180{padding-top:180px}.pd-sm-r-180{padding-right:180px}.pd-sm-b-180{padding-bottom:180px}.pd-sm-l-180{padding-left:180px}.pd-sm-t-180-f{padding-top:180px !important}.pd-sm-r-180-f{padding-right:180px !important}.pd-sm-b-180-f{padding-bottom:180px !important}.pd-sm-l-180-f{padding-left:180px !important}.pd-sm-190{padding:190px}.pd-sm-190-f{padding:190px !important}.pd-sm-y-190{padding-top:190px;padding-bottom:190px}.pd-sm-y-190-f{padding-top:190px !important;padding-bottom:190px !important}.pd-sm-x-190{padding-left:190px;padding-right:190px}.pd-sm-x-190-f{padding-left:190px !important;padding-right:190px !important}.pd-sm-t-190{padding-top:190px}.pd-sm-r-190{padding-right:190px}.pd-sm-b-190{padding-bottom:190px}.pd-sm-l-190{padding-left:190px}.pd-sm-t-190-f{padding-top:190px !important}.pd-sm-r-190-f{padding-right:190px !important}.pd-sm-b-190-f{padding-bottom:190px !important}.pd-sm-l-190-f{padding-left:190px !important}.pd-sm-200{padding:200px}.pd-sm-200-f{padding:200px !important}.pd-sm-y-200{padding-top:200px;padding-bottom:200px}.pd-sm-y-200-f{padding-top:200px !important;padding-bottom:200px !important}.pd-sm-x-200{padding-left:200px;padding-right:200px}.pd-sm-x-200-f{padding-left:200px !important;padding-right:200px !important}.pd-sm-t-200{padding-top:200px}.pd-sm-r-200{padding-right:200px}.pd-sm-b-200{padding-bottom:200px}.pd-sm-l-200{padding-left:200px}.pd-sm-t-200-f{padding-top:200px !important}.pd-sm-r-200-f{padding-right:200px !important}.pd-sm-b-200-f{padding-bottom:200px !important}.pd-sm-l-200-f{padding-left:200px !important}}@media (min-width: 768px){.pd-md-0{padding:0px}.pd-md-0-f{padding:0px !important}.pd-md-y-0{padding-top:0px;padding-bottom:0px}.pd-md-y-0-f{padding-top:0px !important;padding-bottom:0px !important}.pd-md-x-0{padding-left:0px;padding-right:0px}.pd-md-x-0-f{padding-left:0px !important;padding-right:0px !important}.pd-md-t-0{padding-top:0px}.pd-md-r-0{padding-right:0px}.pd-md-b-0{padding-bottom:0px}.pd-md-l-0{padding-left:0px}.pd-md-t-0-f{padding-top:0px !important}.pd-md-r-0-f{padding-right:0px !important}.pd-md-b-0-f{padding-bottom:0px !important}.pd-md-l-0-f{padding-left:0px !important}.pd-md-1{padding:1px}.pd-md-1-f{padding:1px !important}.pd-md-y-1{padding-top:1px;padding-bottom:1px}.pd-md-y-1-f{padding-top:1px !important;padding-bottom:1px !important}.pd-md-x-1{padding-left:1px;padding-right:1px}.pd-md-x-1-f{padding-left:1px !important;padding-right:1px !important}.pd-md-t-1{padding-top:1px}.pd-md-r-1{padding-right:1px}.pd-md-b-1{padding-bottom:1px}.pd-md-l-1{padding-left:1px}.pd-md-t-1-f{padding-top:1px !important}.pd-md-r-1-f{padding-right:1px !important}.pd-md-b-1-f{padding-bottom:1px !important}.pd-md-l-1-f{padding-left:1px !important}.pd-md-2{padding:2px}.pd-md-2-f{padding:2px !important}.pd-md-y-2{padding-top:2px;padding-bottom:2px}.pd-md-y-2-f{padding-top:2px !important;padding-bottom:2px !important}.pd-md-x-2{padding-left:2px;padding-right:2px}.pd-md-x-2-f{padding-left:2px !important;padding-right:2px !important}.pd-md-t-2{padding-top:2px}.pd-md-r-2{padding-right:2px}.pd-md-b-2{padding-bottom:2px}.pd-md-l-2{padding-left:2px}.pd-md-t-2-f{padding-top:2px !important}.pd-md-r-2-f{padding-right:2px !important}.pd-md-b-2-f{padding-bottom:2px !important}.pd-md-l-2-f{padding-left:2px !important}.pd-md-3{padding:3px}.pd-md-3-f{padding:3px !important}.pd-md-y-3{padding-top:3px;padding-bottom:3px}.pd-md-y-3-f{padding-top:3px !important;padding-bottom:3px !important}.pd-md-x-3{padding-left:3px;padding-right:3px}.pd-md-x-3-f{padding-left:3px !important;padding-right:3px !important}.pd-md-t-3{padding-top:3px}.pd-md-r-3{padding-right:3px}.pd-md-b-3{padding-bottom:3px}.pd-md-l-3{padding-left:3px}.pd-md-t-3-f{padding-top:3px !important}.pd-md-r-3-f{padding-right:3px !important}.pd-md-b-3-f{padding-bottom:3px !important}.pd-md-l-3-f{padding-left:3px !important}.pd-md-4{padding:4px}.pd-md-4-f{padding:4px !important}.pd-md-y-4{padding-top:4px;padding-bottom:4px}.pd-md-y-4-f{padding-top:4px !important;padding-bottom:4px !important}.pd-md-x-4{padding-left:4px;padding-right:4px}.pd-md-x-4-f{padding-left:4px !important;padding-right:4px !important}.pd-md-t-4{padding-top:4px}.pd-md-r-4{padding-right:4px}.pd-md-b-4{padding-bottom:4px}.pd-md-l-4{padding-left:4px}.pd-md-t-4-f{padding-top:4px !important}.pd-md-r-4-f{padding-right:4px !important}.pd-md-b-4-f{padding-bottom:4px !important}.pd-md-l-4-f{padding-left:4px !important}.pd-md-5{padding:5px}.pd-md-5-f{padding:5px !important}.pd-md-y-5{padding-top:5px;padding-bottom:5px}.pd-md-y-5-f{padding-top:5px !important;padding-bottom:5px !important}.pd-md-x-5{padding-left:5px;padding-right:5px}.pd-md-x-5-f{padding-left:5px !important;padding-right:5px !important}.pd-md-t-5{padding-top:5px}.pd-md-r-5{padding-right:5px}.pd-md-b-5{padding-bottom:5px}.pd-md-l-5{padding-left:5px}.pd-md-t-5-f{padding-top:5px !important}.pd-md-r-5-f{padding-right:5px !important}.pd-md-b-5-f{padding-bottom:5px !important}.pd-md-l-5-f{padding-left:5px !important}.pd-md-6{padding:6px}.pd-md-6-f{padding:6px !important}.pd-md-y-6{padding-top:6px;padding-bottom:6px}.pd-md-y-6-f{padding-top:6px !important;padding-bottom:6px !important}.pd-md-x-6{padding-left:6px;padding-right:6px}.pd-md-x-6-f{padding-left:6px !important;padding-right:6px !important}.pd-md-t-6{padding-top:6px}.pd-md-r-6{padding-right:6px}.pd-md-b-6{padding-bottom:6px}.pd-md-l-6{padding-left:6px}.pd-md-t-6-f{padding-top:6px !important}.pd-md-r-6-f{padding-right:6px !important}.pd-md-b-6-f{padding-bottom:6px !important}.pd-md-l-6-f{padding-left:6px !important}.pd-md-7{padding:7px}.pd-md-7-f{padding:7px !important}.pd-md-y-7{padding-top:7px;padding-bottom:7px}.pd-md-y-7-f{padding-top:7px !important;padding-bottom:7px !important}.pd-md-x-7{padding-left:7px;padding-right:7px}.pd-md-x-7-f{padding-left:7px !important;padding-right:7px !important}.pd-md-t-7{padding-top:7px}.pd-md-r-7{padding-right:7px}.pd-md-b-7{padding-bottom:7px}.pd-md-l-7{padding-left:7px}.pd-md-t-7-f{padding-top:7px !important}.pd-md-r-7-f{padding-right:7px !important}.pd-md-b-7-f{padding-bottom:7px !important}.pd-md-l-7-f{padding-left:7px !important}.pd-md-8{padding:8px}.pd-md-8-f{padding:8px !important}.pd-md-y-8{padding-top:8px;padding-bottom:8px}.pd-md-y-8-f{padding-top:8px !important;padding-bottom:8px !important}.pd-md-x-8{padding-left:8px;padding-right:8px}.pd-md-x-8-f{padding-left:8px !important;padding-right:8px !important}.pd-md-t-8{padding-top:8px}.pd-md-r-8{padding-right:8px}.pd-md-b-8{padding-bottom:8px}.pd-md-l-8{padding-left:8px}.pd-md-t-8-f{padding-top:8px !important}.pd-md-r-8-f{padding-right:8px !important}.pd-md-b-8-f{padding-bottom:8px !important}.pd-md-l-8-f{padding-left:8px !important}.pd-md-9{padding:9px}.pd-md-9-f{padding:9px !important}.pd-md-y-9{padding-top:9px;padding-bottom:9px}.pd-md-y-9-f{padding-top:9px !important;padding-bottom:9px !important}.pd-md-x-9{padding-left:9px;padding-right:9px}.pd-md-x-9-f{padding-left:9px !important;padding-right:9px !important}.pd-md-t-9{padding-top:9px}.pd-md-r-9{padding-right:9px}.pd-md-b-9{padding-bottom:9px}.pd-md-l-9{padding-left:9px}.pd-md-t-9-f{padding-top:9px !important}.pd-md-r-9-f{padding-right:9px !important}.pd-md-b-9-f{padding-bottom:9px !important}.pd-md-l-9-f{padding-left:9px !important}.pd-md-10{padding:10px}.pd-md-10-f{padding:10px !important}.pd-md-y-10{padding-top:10px;padding-bottom:10px}.pd-md-y-10-f{padding-top:10px !important;padding-bottom:10px !important}.pd-md-x-10{padding-left:10px;padding-right:10px}.pd-md-x-10-f{padding-left:10px !important;padding-right:10px !important}.pd-md-t-10{padding-top:10px}.pd-md-r-10{padding-right:10px}.pd-md-b-10{padding-bottom:10px}.pd-md-l-10{padding-left:10px}.pd-md-t-10-f{padding-top:10px !important}.pd-md-r-10-f{padding-right:10px !important}.pd-md-b-10-f{padding-bottom:10px !important}.pd-md-l-10-f{padding-left:10px !important}.pd-md-15{padding:15px}.pd-md-15-f{padding:15px !important}.pd-md-y-15{padding-top:15px;padding-bottom:15px}.pd-md-y-15-f{padding-top:15px !important;padding-bottom:15px !important}.pd-md-x-15{padding-left:15px;padding-right:15px}.pd-md-x-15-f{padding-left:15px !important;padding-right:15px !important}.pd-md-t-15{padding-top:15px}.pd-md-r-15{padding-right:15px}.pd-md-b-15{padding-bottom:15px}.pd-md-l-15{padding-left:15px}.pd-md-t-15-f{padding-top:15px !important}.pd-md-r-15-f{padding-right:15px !important}.pd-md-b-15-f{padding-bottom:15px !important}.pd-md-l-15-f{padding-left:15px !important}.pd-md-20{padding:20px}.pd-md-20-f{padding:20px !important}.pd-md-y-20{padding-top:20px;padding-bottom:20px}.pd-md-y-20-f{padding-top:20px !important;padding-bottom:20px !important}.pd-md-x-20{padding-left:20px;padding-right:20px}.pd-md-x-20-f{padding-left:20px !important;padding-right:20px !important}.pd-md-t-20{padding-top:20px}.pd-md-r-20{padding-right:20px}.pd-md-b-20{padding-bottom:20px}.pd-md-l-20{padding-left:20px}.pd-md-t-20-f{padding-top:20px !important}.pd-md-r-20-f{padding-right:20px !important}.pd-md-b-20-f{padding-bottom:20px !important}.pd-md-l-20-f{padding-left:20px !important}.pd-md-25{padding:25px}.pd-md-25-f{padding:25px !important}.pd-md-y-25{padding-top:25px;padding-bottom:25px}.pd-md-y-25-f{padding-top:25px !important;padding-bottom:25px !important}.pd-md-x-25{padding-left:25px;padding-right:25px}.pd-md-x-25-f{padding-left:25px !important;padding-right:25px !important}.pd-md-t-25{padding-top:25px}.pd-md-r-25{padding-right:25px}.pd-md-b-25{padding-bottom:25px}.pd-md-l-25{padding-left:25px}.pd-md-t-25-f{padding-top:25px !important}.pd-md-r-25-f{padding-right:25px !important}.pd-md-b-25-f{padding-bottom:25px !important}.pd-md-l-25-f{padding-left:25px !important}.pd-md-30{padding:30px}.pd-md-30-f{padding:30px !important}.pd-md-y-30{padding-top:30px;padding-bottom:30px}.pd-md-y-30-f{padding-top:30px !important;padding-bottom:30px !important}.pd-md-x-30{padding-left:30px;padding-right:30px}.pd-md-x-30-f{padding-left:30px !important;padding-right:30px !important}.pd-md-t-30{padding-top:30px}.pd-md-r-30{padding-right:30px}.pd-md-b-30{padding-bottom:30px}.pd-md-l-30{padding-left:30px}.pd-md-t-30-f{padding-top:30px !important}.pd-md-r-30-f{padding-right:30px !important}.pd-md-b-30-f{padding-bottom:30px !important}.pd-md-l-30-f{padding-left:30px !important}.pd-md-35{padding:35px}.pd-md-35-f{padding:35px !important}.pd-md-y-35{padding-top:35px;padding-bottom:35px}.pd-md-y-35-f{padding-top:35px !important;padding-bottom:35px !important}.pd-md-x-35{padding-left:35px;padding-right:35px}.pd-md-x-35-f{padding-left:35px !important;padding-right:35px !important}.pd-md-t-35{padding-top:35px}.pd-md-r-35{padding-right:35px}.pd-md-b-35{padding-bottom:35px}.pd-md-l-35{padding-left:35px}.pd-md-t-35-f{padding-top:35px !important}.pd-md-r-35-f{padding-right:35px !important}.pd-md-b-35-f{padding-bottom:35px !important}.pd-md-l-35-f{padding-left:35px !important}.pd-md-40{padding:40px}.pd-md-40-f{padding:40px !important}.pd-md-y-40{padding-top:40px;padding-bottom:40px}.pd-md-y-40-f{padding-top:40px !important;padding-bottom:40px !important}.pd-md-x-40{padding-left:40px;padding-right:40px}.pd-md-x-40-f{padding-left:40px !important;padding-right:40px !important}.pd-md-t-40{padding-top:40px}.pd-md-r-40{padding-right:40px}.pd-md-b-40{padding-bottom:40px}.pd-md-l-40{padding-left:40px}.pd-md-t-40-f{padding-top:40px !important}.pd-md-r-40-f{padding-right:40px !important}.pd-md-b-40-f{padding-bottom:40px !important}.pd-md-l-40-f{padding-left:40px !important}.pd-md-45{padding:45px}.pd-md-45-f{padding:45px !important}.pd-md-y-45{padding-top:45px;padding-bottom:45px}.pd-md-y-45-f{padding-top:45px !important;padding-bottom:45px !important}.pd-md-x-45{padding-left:45px;padding-right:45px}.pd-md-x-45-f{padding-left:45px !important;padding-right:45px !important}.pd-md-t-45{padding-top:45px}.pd-md-r-45{padding-right:45px}.pd-md-b-45{padding-bottom:45px}.pd-md-l-45{padding-left:45px}.pd-md-t-45-f{padding-top:45px !important}.pd-md-r-45-f{padding-right:45px !important}.pd-md-b-45-f{padding-bottom:45px !important}.pd-md-l-45-f{padding-left:45px !important}.pd-md-50{padding:50px}.pd-md-50-f{padding:50px !important}.pd-md-y-50{padding-top:50px;padding-bottom:50px}.pd-md-y-50-f{padding-top:50px !important;padding-bottom:50px !important}.pd-md-x-50{padding-left:50px;padding-right:50px}.pd-md-x-50-f{padding-left:50px !important;padding-right:50px !important}.pd-md-t-50{padding-top:50px}.pd-md-r-50{padding-right:50px}.pd-md-b-50{padding-bottom:50px}.pd-md-l-50{padding-left:50px}.pd-md-t-50-f{padding-top:50px !important}.pd-md-r-50-f{padding-right:50px !important}.pd-md-b-50-f{padding-bottom:50px !important}.pd-md-l-50-f{padding-left:50px !important}.pd-md-55{padding:55px}.pd-md-55-f{padding:55px !important}.pd-md-y-55{padding-top:55px;padding-bottom:55px}.pd-md-y-55-f{padding-top:55px !important;padding-bottom:55px !important}.pd-md-x-55{padding-left:55px;padding-right:55px}.pd-md-x-55-f{padding-left:55px !important;padding-right:55px !important}.pd-md-t-55{padding-top:55px}.pd-md-r-55{padding-right:55px}.pd-md-b-55{padding-bottom:55px}.pd-md-l-55{padding-left:55px}.pd-md-t-55-f{padding-top:55px !important}.pd-md-r-55-f{padding-right:55px !important}.pd-md-b-55-f{padding-bottom:55px !important}.pd-md-l-55-f{padding-left:55px !important}.pd-md-60{padding:60px}.pd-md-60-f{padding:60px !important}.pd-md-y-60{padding-top:60px;padding-bottom:60px}.pd-md-y-60-f{padding-top:60px !important;padding-bottom:60px !important}.pd-md-x-60{padding-left:60px;padding-right:60px}.pd-md-x-60-f{padding-left:60px !important;padding-right:60px !important}.pd-md-t-60{padding-top:60px}.pd-md-r-60{padding-right:60px}.pd-md-b-60{padding-bottom:60px}.pd-md-l-60{padding-left:60px}.pd-md-t-60-f{padding-top:60px !important}.pd-md-r-60-f{padding-right:60px !important}.pd-md-b-60-f{padding-bottom:60px !important}.pd-md-l-60-f{padding-left:60px !important}.pd-md-65{padding:65px}.pd-md-65-f{padding:65px !important}.pd-md-y-65{padding-top:65px;padding-bottom:65px}.pd-md-y-65-f{padding-top:65px !important;padding-bottom:65px !important}.pd-md-x-65{padding-left:65px;padding-right:65px}.pd-md-x-65-f{padding-left:65px !important;padding-right:65px !important}.pd-md-t-65{padding-top:65px}.pd-md-r-65{padding-right:65px}.pd-md-b-65{padding-bottom:65px}.pd-md-l-65{padding-left:65px}.pd-md-t-65-f{padding-top:65px !important}.pd-md-r-65-f{padding-right:65px !important}.pd-md-b-65-f{padding-bottom:65px !important}.pd-md-l-65-f{padding-left:65px !important}.pd-md-70{padding:70px}.pd-md-70-f{padding:70px !important}.pd-md-y-70{padding-top:70px;padding-bottom:70px}.pd-md-y-70-f{padding-top:70px !important;padding-bottom:70px !important}.pd-md-x-70{padding-left:70px;padding-right:70px}.pd-md-x-70-f{padding-left:70px !important;padding-right:70px !important}.pd-md-t-70{padding-top:70px}.pd-md-r-70{padding-right:70px}.pd-md-b-70{padding-bottom:70px}.pd-md-l-70{padding-left:70px}.pd-md-t-70-f{padding-top:70px !important}.pd-md-r-70-f{padding-right:70px !important}.pd-md-b-70-f{padding-bottom:70px !important}.pd-md-l-70-f{padding-left:70px !important}.pd-md-75{padding:75px}.pd-md-75-f{padding:75px !important}.pd-md-y-75{padding-top:75px;padding-bottom:75px}.pd-md-y-75-f{padding-top:75px !important;padding-bottom:75px !important}.pd-md-x-75{padding-left:75px;padding-right:75px}.pd-md-x-75-f{padding-left:75px !important;padding-right:75px !important}.pd-md-t-75{padding-top:75px}.pd-md-r-75{padding-right:75px}.pd-md-b-75{padding-bottom:75px}.pd-md-l-75{padding-left:75px}.pd-md-t-75-f{padding-top:75px !important}.pd-md-r-75-f{padding-right:75px !important}.pd-md-b-75-f{padding-bottom:75px !important}.pd-md-l-75-f{padding-left:75px !important}.pd-md-80{padding:80px}.pd-md-80-f{padding:80px !important}.pd-md-y-80{padding-top:80px;padding-bottom:80px}.pd-md-y-80-f{padding-top:80px !important;padding-bottom:80px !important}.pd-md-x-80{padding-left:80px;padding-right:80px}.pd-md-x-80-f{padding-left:80px !important;padding-right:80px !important}.pd-md-t-80{padding-top:80px}.pd-md-r-80{padding-right:80px}.pd-md-b-80{padding-bottom:80px}.pd-md-l-80{padding-left:80px}.pd-md-t-80-f{padding-top:80px !important}.pd-md-r-80-f{padding-right:80px !important}.pd-md-b-80-f{padding-bottom:80px !important}.pd-md-l-80-f{padding-left:80px !important}.pd-md-85{padding:85px}.pd-md-85-f{padding:85px !important}.pd-md-y-85{padding-top:85px;padding-bottom:85px}.pd-md-y-85-f{padding-top:85px !important;padding-bottom:85px !important}.pd-md-x-85{padding-left:85px;padding-right:85px}.pd-md-x-85-f{padding-left:85px !important;padding-right:85px !important}.pd-md-t-85{padding-top:85px}.pd-md-r-85{padding-right:85px}.pd-md-b-85{padding-bottom:85px}.pd-md-l-85{padding-left:85px}.pd-md-t-85-f{padding-top:85px !important}.pd-md-r-85-f{padding-right:85px !important}.pd-md-b-85-f{padding-bottom:85px !important}.pd-md-l-85-f{padding-left:85px !important}.pd-md-90{padding:90px}.pd-md-90-f{padding:90px !important}.pd-md-y-90{padding-top:90px;padding-bottom:90px}.pd-md-y-90-f{padding-top:90px !important;padding-bottom:90px !important}.pd-md-x-90{padding-left:90px;padding-right:90px}.pd-md-x-90-f{padding-left:90px !important;padding-right:90px !important}.pd-md-t-90{padding-top:90px}.pd-md-r-90{padding-right:90px}.pd-md-b-90{padding-bottom:90px}.pd-md-l-90{padding-left:90px}.pd-md-t-90-f{padding-top:90px !important}.pd-md-r-90-f{padding-right:90px !important}.pd-md-b-90-f{padding-bottom:90px !important}.pd-md-l-90-f{padding-left:90px !important}.pd-md-95{padding:95px}.pd-md-95-f{padding:95px !important}.pd-md-y-95{padding-top:95px;padding-bottom:95px}.pd-md-y-95-f{padding-top:95px !important;padding-bottom:95px !important}.pd-md-x-95{padding-left:95px;padding-right:95px}.pd-md-x-95-f{padding-left:95px !important;padding-right:95px !important}.pd-md-t-95{padding-top:95px}.pd-md-r-95{padding-right:95px}.pd-md-b-95{padding-bottom:95px}.pd-md-l-95{padding-left:95px}.pd-md-t-95-f{padding-top:95px !important}.pd-md-r-95-f{padding-right:95px !important}.pd-md-b-95-f{padding-bottom:95px !important}.pd-md-l-95-f{padding-left:95px !important}.pd-md-100{padding:100px}.pd-md-100-f{padding:100px !important}.pd-md-y-100{padding-top:100px;padding-bottom:100px}.pd-md-y-100-f{padding-top:100px !important;padding-bottom:100px !important}.pd-md-x-100{padding-left:100px;padding-right:100px}.pd-md-x-100-f{padding-left:100px !important;padding-right:100px !important}.pd-md-t-100{padding-top:100px}.pd-md-r-100{padding-right:100px}.pd-md-b-100{padding-bottom:100px}.pd-md-l-100{padding-left:100px}.pd-md-t-100-f{padding-top:100px !important}.pd-md-r-100-f{padding-right:100px !important}.pd-md-b-100-f{padding-bottom:100px !important}.pd-md-l-100-f{padding-left:100px !important}.pd-md-110{padding:110px}.pd-md-110-f{padding:110px !important}.pd-md-y-110{padding-top:110px;padding-bottom:110px}.pd-md-y-110-f{padding-top:110px !important;padding-bottom:110px !important}.pd-md-x-110{padding-left:110px;padding-right:110px}.pd-md-x-110-f{padding-left:110px !important;padding-right:110px !important}.pd-md-t-110{padding-top:110px}.pd-md-r-110{padding-right:110px}.pd-md-b-110{padding-bottom:110px}.pd-md-l-110{padding-left:110px}.pd-md-t-110-f{padding-top:110px !important}.pd-md-r-110-f{padding-right:110px !important}.pd-md-b-110-f{padding-bottom:110px !important}.pd-md-l-110-f{padding-left:110px !important}.pd-md-120{padding:120px}.pd-md-120-f{padding:120px !important}.pd-md-y-120{padding-top:120px;padding-bottom:120px}.pd-md-y-120-f{padding-top:120px !important;padding-bottom:120px !important}.pd-md-x-120{padding-left:120px;padding-right:120px}.pd-md-x-120-f{padding-left:120px !important;padding-right:120px !important}.pd-md-t-120{padding-top:120px}.pd-md-r-120{padding-right:120px}.pd-md-b-120{padding-bottom:120px}.pd-md-l-120{padding-left:120px}.pd-md-t-120-f{padding-top:120px !important}.pd-md-r-120-f{padding-right:120px !important}.pd-md-b-120-f{padding-bottom:120px !important}.pd-md-l-120-f{padding-left:120px !important}.pd-md-130{padding:130px}.pd-md-130-f{padding:130px !important}.pd-md-y-130{padding-top:130px;padding-bottom:130px}.pd-md-y-130-f{padding-top:130px !important;padding-bottom:130px !important}.pd-md-x-130{padding-left:130px;padding-right:130px}.pd-md-x-130-f{padding-left:130px !important;padding-right:130px !important}.pd-md-t-130{padding-top:130px}.pd-md-r-130{padding-right:130px}.pd-md-b-130{padding-bottom:130px}.pd-md-l-130{padding-left:130px}.pd-md-t-130-f{padding-top:130px !important}.pd-md-r-130-f{padding-right:130px !important}.pd-md-b-130-f{padding-bottom:130px !important}.pd-md-l-130-f{padding-left:130px !important}.pd-md-140{padding:140px}.pd-md-140-f{padding:140px !important}.pd-md-y-140{padding-top:140px;padding-bottom:140px}.pd-md-y-140-f{padding-top:140px !important;padding-bottom:140px !important}.pd-md-x-140{padding-left:140px;padding-right:140px}.pd-md-x-140-f{padding-left:140px !important;padding-right:140px !important}.pd-md-t-140{padding-top:140px}.pd-md-r-140{padding-right:140px}.pd-md-b-140{padding-bottom:140px}.pd-md-l-140{padding-left:140px}.pd-md-t-140-f{padding-top:140px !important}.pd-md-r-140-f{padding-right:140px !important}.pd-md-b-140-f{padding-bottom:140px !important}.pd-md-l-140-f{padding-left:140px !important}.pd-md-150{padding:150px}.pd-md-150-f{padding:150px !important}.pd-md-y-150{padding-top:150px;padding-bottom:150px}.pd-md-y-150-f{padding-top:150px !important;padding-bottom:150px !important}.pd-md-x-150{padding-left:150px;padding-right:150px}.pd-md-x-150-f{padding-left:150px !important;padding-right:150px !important}.pd-md-t-150{padding-top:150px}.pd-md-r-150{padding-right:150px}.pd-md-b-150{padding-bottom:150px}.pd-md-l-150{padding-left:150px}.pd-md-t-150-f{padding-top:150px !important}.pd-md-r-150-f{padding-right:150px !important}.pd-md-b-150-f{padding-bottom:150px !important}.pd-md-l-150-f{padding-left:150px !important}.pd-md-160{padding:160px}.pd-md-160-f{padding:160px !important}.pd-md-y-160{padding-top:160px;padding-bottom:160px}.pd-md-y-160-f{padding-top:160px !important;padding-bottom:160px !important}.pd-md-x-160{padding-left:160px;padding-right:160px}.pd-md-x-160-f{padding-left:160px !important;padding-right:160px !important}.pd-md-t-160{padding-top:160px}.pd-md-r-160{padding-right:160px}.pd-md-b-160{padding-bottom:160px}.pd-md-l-160{padding-left:160px}.pd-md-t-160-f{padding-top:160px !important}.pd-md-r-160-f{padding-right:160px !important}.pd-md-b-160-f{padding-bottom:160px !important}.pd-md-l-160-f{padding-left:160px !important}.pd-md-170{padding:170px}.pd-md-170-f{padding:170px !important}.pd-md-y-170{padding-top:170px;padding-bottom:170px}.pd-md-y-170-f{padding-top:170px !important;padding-bottom:170px !important}.pd-md-x-170{padding-left:170px;padding-right:170px}.pd-md-x-170-f{padding-left:170px !important;padding-right:170px !important}.pd-md-t-170{padding-top:170px}.pd-md-r-170{padding-right:170px}.pd-md-b-170{padding-bottom:170px}.pd-md-l-170{padding-left:170px}.pd-md-t-170-f{padding-top:170px !important}.pd-md-r-170-f{padding-right:170px !important}.pd-md-b-170-f{padding-bottom:170px !important}.pd-md-l-170-f{padding-left:170px !important}.pd-md-180{padding:180px}.pd-md-180-f{padding:180px !important}.pd-md-y-180{padding-top:180px;padding-bottom:180px}.pd-md-y-180-f{padding-top:180px !important;padding-bottom:180px !important}.pd-md-x-180{padding-left:180px;padding-right:180px}.pd-md-x-180-f{padding-left:180px !important;padding-right:180px !important}.pd-md-t-180{padding-top:180px}.pd-md-r-180{padding-right:180px}.pd-md-b-180{padding-bottom:180px}.pd-md-l-180{padding-left:180px}.pd-md-t-180-f{padding-top:180px !important}.pd-md-r-180-f{padding-right:180px !important}.pd-md-b-180-f{padding-bottom:180px !important}.pd-md-l-180-f{padding-left:180px !important}.pd-md-190{padding:190px}.pd-md-190-f{padding:190px !important}.pd-md-y-190{padding-top:190px;padding-bottom:190px}.pd-md-y-190-f{padding-top:190px !important;padding-bottom:190px !important}.pd-md-x-190{padding-left:190px;padding-right:190px}.pd-md-x-190-f{padding-left:190px !important;padding-right:190px !important}.pd-md-t-190{padding-top:190px}.pd-md-r-190{padding-right:190px}.pd-md-b-190{padding-bottom:190px}.pd-md-l-190{padding-left:190px}.pd-md-t-190-f{padding-top:190px !important}.pd-md-r-190-f{padding-right:190px !important}.pd-md-b-190-f{padding-bottom:190px !important}.pd-md-l-190-f{padding-left:190px !important}.pd-md-200{padding:200px}.pd-md-200-f{padding:200px !important}.pd-md-y-200{padding-top:200px;padding-bottom:200px}.pd-md-y-200-f{padding-top:200px !important;padding-bottom:200px !important}.pd-md-x-200{padding-left:200px;padding-right:200px}.pd-md-x-200-f{padding-left:200px !important;padding-right:200px !important}.pd-md-t-200{padding-top:200px}.pd-md-r-200{padding-right:200px}.pd-md-b-200{padding-bottom:200px}.pd-md-l-200{padding-left:200px}.pd-md-t-200-f{padding-top:200px !important}.pd-md-r-200-f{padding-right:200px !important}.pd-md-b-200-f{padding-bottom:200px !important}.pd-md-l-200-f{padding-left:200px !important}}@media (min-width: 992px){.pd-lg-0{padding:0px}.pd-lg-0-f{padding:0px !important}.pd-lg-y-0{padding-top:0px;padding-bottom:0px}.pd-lg-y-0-f{padding-top:0px !important;padding-bottom:0px !important}.pd-lg-x-0{padding-left:0px;padding-right:0px}.pd-lg-x-0-f{padding-left:0px !important;padding-right:0px !important}.pd-lg-t-0{padding-top:0px}.pd-lg-r-0{padding-right:0px}.pd-lg-b-0{padding-bottom:0px}.pd-lg-l-0{padding-left:0px}.pd-lg-t-0-f{padding-top:0px !important}.pd-lg-r-0-f{padding-right:0px !important}.pd-lg-b-0-f{padding-bottom:0px !important}.pd-lg-l-0-f{padding-left:0px !important}.pd-lg-1{padding:1px}.pd-lg-1-f{padding:1px !important}.pd-lg-y-1{padding-top:1px;padding-bottom:1px}.pd-lg-y-1-f{padding-top:1px !important;padding-bottom:1px !important}.pd-lg-x-1{padding-left:1px;padding-right:1px}.pd-lg-x-1-f{padding-left:1px !important;padding-right:1px !important}.pd-lg-t-1{padding-top:1px}.pd-lg-r-1{padding-right:1px}.pd-lg-b-1{padding-bottom:1px}.pd-lg-l-1{padding-left:1px}.pd-lg-t-1-f{padding-top:1px !important}.pd-lg-r-1-f{padding-right:1px !important}.pd-lg-b-1-f{padding-bottom:1px !important}.pd-lg-l-1-f{padding-left:1px !important}.pd-lg-2{padding:2px}.pd-lg-2-f{padding:2px !important}.pd-lg-y-2{padding-top:2px;padding-bottom:2px}.pd-lg-y-2-f{padding-top:2px !important;padding-bottom:2px !important}.pd-lg-x-2{padding-left:2px;padding-right:2px}.pd-lg-x-2-f{padding-left:2px !important;padding-right:2px !important}.pd-lg-t-2{padding-top:2px}.pd-lg-r-2{padding-right:2px}.pd-lg-b-2{padding-bottom:2px}.pd-lg-l-2{padding-left:2px}.pd-lg-t-2-f{padding-top:2px !important}.pd-lg-r-2-f{padding-right:2px !important}.pd-lg-b-2-f{padding-bottom:2px !important}.pd-lg-l-2-f{padding-left:2px !important}.pd-lg-3{padding:3px}.pd-lg-3-f{padding:3px !important}.pd-lg-y-3{padding-top:3px;padding-bottom:3px}.pd-lg-y-3-f{padding-top:3px !important;padding-bottom:3px !important}.pd-lg-x-3{padding-left:3px;padding-right:3px}.pd-lg-x-3-f{padding-left:3px !important;padding-right:3px !important}.pd-lg-t-3{padding-top:3px}.pd-lg-r-3{padding-right:3px}.pd-lg-b-3{padding-bottom:3px}.pd-lg-l-3{padding-left:3px}.pd-lg-t-3-f{padding-top:3px !important}.pd-lg-r-3-f{padding-right:3px !important}.pd-lg-b-3-f{padding-bottom:3px !important}.pd-lg-l-3-f{padding-left:3px !important}.pd-lg-4{padding:4px}.pd-lg-4-f{padding:4px !important}.pd-lg-y-4{padding-top:4px;padding-bottom:4px}.pd-lg-y-4-f{padding-top:4px !important;padding-bottom:4px !important}.pd-lg-x-4{padding-left:4px;padding-right:4px}.pd-lg-x-4-f{padding-left:4px !important;padding-right:4px !important}.pd-lg-t-4{padding-top:4px}.pd-lg-r-4{padding-right:4px}.pd-lg-b-4{padding-bottom:4px}.pd-lg-l-4{padding-left:4px}.pd-lg-t-4-f{padding-top:4px !important}.pd-lg-r-4-f{padding-right:4px !important}.pd-lg-b-4-f{padding-bottom:4px !important}.pd-lg-l-4-f{padding-left:4px !important}.pd-lg-5{padding:5px}.pd-lg-5-f{padding:5px !important}.pd-lg-y-5{padding-top:5px;padding-bottom:5px}.pd-lg-y-5-f{padding-top:5px !important;padding-bottom:5px !important}.pd-lg-x-5{padding-left:5px;padding-right:5px}.pd-lg-x-5-f{padding-left:5px !important;padding-right:5px !important}.pd-lg-t-5{padding-top:5px}.pd-lg-r-5{padding-right:5px}.pd-lg-b-5{padding-bottom:5px}.pd-lg-l-5{padding-left:5px}.pd-lg-t-5-f{padding-top:5px !important}.pd-lg-r-5-f{padding-right:5px !important}.pd-lg-b-5-f{padding-bottom:5px !important}.pd-lg-l-5-f{padding-left:5px !important}.pd-lg-6{padding:6px}.pd-lg-6-f{padding:6px !important}.pd-lg-y-6{padding-top:6px;padding-bottom:6px}.pd-lg-y-6-f{padding-top:6px !important;padding-bottom:6px !important}.pd-lg-x-6{padding-left:6px;padding-right:6px}.pd-lg-x-6-f{padding-left:6px !important;padding-right:6px !important}.pd-lg-t-6{padding-top:6px}.pd-lg-r-6{padding-right:6px}.pd-lg-b-6{padding-bottom:6px}.pd-lg-l-6{padding-left:6px}.pd-lg-t-6-f{padding-top:6px !important}.pd-lg-r-6-f{padding-right:6px !important}.pd-lg-b-6-f{padding-bottom:6px !important}.pd-lg-l-6-f{padding-left:6px !important}.pd-lg-7{padding:7px}.pd-lg-7-f{padding:7px !important}.pd-lg-y-7{padding-top:7px;padding-bottom:7px}.pd-lg-y-7-f{padding-top:7px !important;padding-bottom:7px !important}.pd-lg-x-7{padding-left:7px;padding-right:7px}.pd-lg-x-7-f{padding-left:7px !important;padding-right:7px !important}.pd-lg-t-7{padding-top:7px}.pd-lg-r-7{padding-right:7px}.pd-lg-b-7{padding-bottom:7px}.pd-lg-l-7{padding-left:7px}.pd-lg-t-7-f{padding-top:7px !important}.pd-lg-r-7-f{padding-right:7px !important}.pd-lg-b-7-f{padding-bottom:7px !important}.pd-lg-l-7-f{padding-left:7px !important}.pd-lg-8{padding:8px}.pd-lg-8-f{padding:8px !important}.pd-lg-y-8{padding-top:8px;padding-bottom:8px}.pd-lg-y-8-f{padding-top:8px !important;padding-bottom:8px !important}.pd-lg-x-8{padding-left:8px;padding-right:8px}.pd-lg-x-8-f{padding-left:8px !important;padding-right:8px !important}.pd-lg-t-8{padding-top:8px}.pd-lg-r-8{padding-right:8px}.pd-lg-b-8{padding-bottom:8px}.pd-lg-l-8{padding-left:8px}.pd-lg-t-8-f{padding-top:8px !important}.pd-lg-r-8-f{padding-right:8px !important}.pd-lg-b-8-f{padding-bottom:8px !important}.pd-lg-l-8-f{padding-left:8px !important}.pd-lg-9{padding:9px}.pd-lg-9-f{padding:9px !important}.pd-lg-y-9{padding-top:9px;padding-bottom:9px}.pd-lg-y-9-f{padding-top:9px !important;padding-bottom:9px !important}.pd-lg-x-9{padding-left:9px;padding-right:9px}.pd-lg-x-9-f{padding-left:9px !important;padding-right:9px !important}.pd-lg-t-9{padding-top:9px}.pd-lg-r-9{padding-right:9px}.pd-lg-b-9{padding-bottom:9px}.pd-lg-l-9{padding-left:9px}.pd-lg-t-9-f{padding-top:9px !important}.pd-lg-r-9-f{padding-right:9px !important}.pd-lg-b-9-f{padding-bottom:9px !important}.pd-lg-l-9-f{padding-left:9px !important}.pd-lg-10{padding:10px}.pd-lg-10-f{padding:10px !important}.pd-lg-y-10{padding-top:10px;padding-bottom:10px}.pd-lg-y-10-f{padding-top:10px !important;padding-bottom:10px !important}.pd-lg-x-10{padding-left:10px;padding-right:10px}.pd-lg-x-10-f{padding-left:10px !important;padding-right:10px !important}.pd-lg-t-10{padding-top:10px}.pd-lg-r-10{padding-right:10px}.pd-lg-b-10{padding-bottom:10px}.pd-lg-l-10{padding-left:10px}.pd-lg-t-10-f{padding-top:10px !important}.pd-lg-r-10-f{padding-right:10px !important}.pd-lg-b-10-f{padding-bottom:10px !important}.pd-lg-l-10-f{padding-left:10px !important}.pd-lg-15{padding:15px}.pd-lg-15-f{padding:15px !important}.pd-lg-y-15{padding-top:15px;padding-bottom:15px}.pd-lg-y-15-f{padding-top:15px !important;padding-bottom:15px !important}.pd-lg-x-15{padding-left:15px;padding-right:15px}.pd-lg-x-15-f{padding-left:15px !important;padding-right:15px !important}.pd-lg-t-15{padding-top:15px}.pd-lg-r-15{padding-right:15px}.pd-lg-b-15{padding-bottom:15px}.pd-lg-l-15{padding-left:15px}.pd-lg-t-15-f{padding-top:15px !important}.pd-lg-r-15-f{padding-right:15px !important}.pd-lg-b-15-f{padding-bottom:15px !important}.pd-lg-l-15-f{padding-left:15px !important}.pd-lg-20{padding:20px}.pd-lg-20-f{padding:20px !important}.pd-lg-y-20{padding-top:20px;padding-bottom:20px}.pd-lg-y-20-f{padding-top:20px !important;padding-bottom:20px !important}.pd-lg-x-20{padding-left:20px;padding-right:20px}.pd-lg-x-20-f{padding-left:20px !important;padding-right:20px !important}.pd-lg-t-20{padding-top:20px}.pd-lg-r-20{padding-right:20px}.pd-lg-b-20{padding-bottom:20px}.pd-lg-l-20{padding-left:20px}.pd-lg-t-20-f{padding-top:20px !important}.pd-lg-r-20-f{padding-right:20px !important}.pd-lg-b-20-f{padding-bottom:20px !important}.pd-lg-l-20-f{padding-left:20px !important}.pd-lg-25{padding:25px}.pd-lg-25-f{padding:25px !important}.pd-lg-y-25{padding-top:25px;padding-bottom:25px}.pd-lg-y-25-f{padding-top:25px !important;padding-bottom:25px !important}.pd-lg-x-25{padding-left:25px;padding-right:25px}.pd-lg-x-25-f{padding-left:25px !important;padding-right:25px !important}.pd-lg-t-25{padding-top:25px}.pd-lg-r-25{padding-right:25px}.pd-lg-b-25{padding-bottom:25px}.pd-lg-l-25{padding-left:25px}.pd-lg-t-25-f{padding-top:25px !important}.pd-lg-r-25-f{padding-right:25px !important}.pd-lg-b-25-f{padding-bottom:25px !important}.pd-lg-l-25-f{padding-left:25px !important}.pd-lg-30{padding:30px}.pd-lg-30-f{padding:30px !important}.pd-lg-y-30{padding-top:30px;padding-bottom:30px}.pd-lg-y-30-f{padding-top:30px !important;padding-bottom:30px !important}.pd-lg-x-30{padding-left:30px;padding-right:30px}.pd-lg-x-30-f{padding-left:30px !important;padding-right:30px !important}.pd-lg-t-30{padding-top:30px}.pd-lg-r-30{padding-right:30px}.pd-lg-b-30{padding-bottom:30px}.pd-lg-l-30{padding-left:30px}.pd-lg-t-30-f{padding-top:30px !important}.pd-lg-r-30-f{padding-right:30px !important}.pd-lg-b-30-f{padding-bottom:30px !important}.pd-lg-l-30-f{padding-left:30px !important}.pd-lg-35{padding:35px}.pd-lg-35-f{padding:35px !important}.pd-lg-y-35{padding-top:35px;padding-bottom:35px}.pd-lg-y-35-f{padding-top:35px !important;padding-bottom:35px !important}.pd-lg-x-35{padding-left:35px;padding-right:35px}.pd-lg-x-35-f{padding-left:35px !important;padding-right:35px !important}.pd-lg-t-35{padding-top:35px}.pd-lg-r-35{padding-right:35px}.pd-lg-b-35{padding-bottom:35px}.pd-lg-l-35{padding-left:35px}.pd-lg-t-35-f{padding-top:35px !important}.pd-lg-r-35-f{padding-right:35px !important}.pd-lg-b-35-f{padding-bottom:35px !important}.pd-lg-l-35-f{padding-left:35px !important}.pd-lg-40{padding:40px}.pd-lg-40-f{padding:40px !important}.pd-lg-y-40{padding-top:40px;padding-bottom:40px}.pd-lg-y-40-f{padding-top:40px !important;padding-bottom:40px !important}.pd-lg-x-40{padding-left:40px;padding-right:40px}.pd-lg-x-40-f{padding-left:40px !important;padding-right:40px !important}.pd-lg-t-40{padding-top:40px}.pd-lg-r-40{padding-right:40px}.pd-lg-b-40{padding-bottom:40px}.pd-lg-l-40{padding-left:40px}.pd-lg-t-40-f{padding-top:40px !important}.pd-lg-r-40-f{padding-right:40px !important}.pd-lg-b-40-f{padding-bottom:40px !important}.pd-lg-l-40-f{padding-left:40px !important}.pd-lg-45{padding:45px}.pd-lg-45-f{padding:45px !important}.pd-lg-y-45{padding-top:45px;padding-bottom:45px}.pd-lg-y-45-f{padding-top:45px !important;padding-bottom:45px !important}.pd-lg-x-45{padding-left:45px;padding-right:45px}.pd-lg-x-45-f{padding-left:45px !important;padding-right:45px !important}.pd-lg-t-45{padding-top:45px}.pd-lg-r-45{padding-right:45px}.pd-lg-b-45{padding-bottom:45px}.pd-lg-l-45{padding-left:45px}.pd-lg-t-45-f{padding-top:45px !important}.pd-lg-r-45-f{padding-right:45px !important}.pd-lg-b-45-f{padding-bottom:45px !important}.pd-lg-l-45-f{padding-left:45px !important}.pd-lg-50{padding:50px}.pd-lg-50-f{padding:50px !important}.pd-lg-y-50{padding-top:50px;padding-bottom:50px}.pd-lg-y-50-f{padding-top:50px !important;padding-bottom:50px !important}.pd-lg-x-50{padding-left:50px;padding-right:50px}.pd-lg-x-50-f{padding-left:50px !important;padding-right:50px !important}.pd-lg-t-50{padding-top:50px}.pd-lg-r-50{padding-right:50px}.pd-lg-b-50{padding-bottom:50px}.pd-lg-l-50{padding-left:50px}.pd-lg-t-50-f{padding-top:50px !important}.pd-lg-r-50-f{padding-right:50px !important}.pd-lg-b-50-f{padding-bottom:50px !important}.pd-lg-l-50-f{padding-left:50px !important}.pd-lg-55{padding:55px}.pd-lg-55-f{padding:55px !important}.pd-lg-y-55{padding-top:55px;padding-bottom:55px}.pd-lg-y-55-f{padding-top:55px !important;padding-bottom:55px !important}.pd-lg-x-55{padding-left:55px;padding-right:55px}.pd-lg-x-55-f{padding-left:55px !important;padding-right:55px !important}.pd-lg-t-55{padding-top:55px}.pd-lg-r-55{padding-right:55px}.pd-lg-b-55{padding-bottom:55px}.pd-lg-l-55{padding-left:55px}.pd-lg-t-55-f{padding-top:55px !important}.pd-lg-r-55-f{padding-right:55px !important}.pd-lg-b-55-f{padding-bottom:55px !important}.pd-lg-l-55-f{padding-left:55px !important}.pd-lg-60{padding:60px}.pd-lg-60-f{padding:60px !important}.pd-lg-y-60{padding-top:60px;padding-bottom:60px}.pd-lg-y-60-f{padding-top:60px !important;padding-bottom:60px !important}.pd-lg-x-60{padding-left:60px;padding-right:60px}.pd-lg-x-60-f{padding-left:60px !important;padding-right:60px !important}.pd-lg-t-60{padding-top:60px}.pd-lg-r-60{padding-right:60px}.pd-lg-b-60{padding-bottom:60px}.pd-lg-l-60{padding-left:60px}.pd-lg-t-60-f{padding-top:60px !important}.pd-lg-r-60-f{padding-right:60px !important}.pd-lg-b-60-f{padding-bottom:60px !important}.pd-lg-l-60-f{padding-left:60px !important}.pd-lg-65{padding:65px}.pd-lg-65-f{padding:65px !important}.pd-lg-y-65{padding-top:65px;padding-bottom:65px}.pd-lg-y-65-f{padding-top:65px !important;padding-bottom:65px !important}.pd-lg-x-65{padding-left:65px;padding-right:65px}.pd-lg-x-65-f{padding-left:65px !important;padding-right:65px !important}.pd-lg-t-65{padding-top:65px}.pd-lg-r-65{padding-right:65px}.pd-lg-b-65{padding-bottom:65px}.pd-lg-l-65{padding-left:65px}.pd-lg-t-65-f{padding-top:65px !important}.pd-lg-r-65-f{padding-right:65px !important}.pd-lg-b-65-f{padding-bottom:65px !important}.pd-lg-l-65-f{padding-left:65px !important}.pd-lg-70{padding:70px}.pd-lg-70-f{padding:70px !important}.pd-lg-y-70{padding-top:70px;padding-bottom:70px}.pd-lg-y-70-f{padding-top:70px !important;padding-bottom:70px !important}.pd-lg-x-70{padding-left:70px;padding-right:70px}.pd-lg-x-70-f{padding-left:70px !important;padding-right:70px !important}.pd-lg-t-70{padding-top:70px}.pd-lg-r-70{padding-right:70px}.pd-lg-b-70{padding-bottom:70px}.pd-lg-l-70{padding-left:70px}.pd-lg-t-70-f{padding-top:70px !important}.pd-lg-r-70-f{padding-right:70px !important}.pd-lg-b-70-f{padding-bottom:70px !important}.pd-lg-l-70-f{padding-left:70px !important}.pd-lg-75{padding:75px}.pd-lg-75-f{padding:75px !important}.pd-lg-y-75{padding-top:75px;padding-bottom:75px}.pd-lg-y-75-f{padding-top:75px !important;padding-bottom:75px !important}.pd-lg-x-75{padding-left:75px;padding-right:75px}.pd-lg-x-75-f{padding-left:75px !important;padding-right:75px !important}.pd-lg-t-75{padding-top:75px}.pd-lg-r-75{padding-right:75px}.pd-lg-b-75{padding-bottom:75px}.pd-lg-l-75{padding-left:75px}.pd-lg-t-75-f{padding-top:75px !important}.pd-lg-r-75-f{padding-right:75px !important}.pd-lg-b-75-f{padding-bottom:75px !important}.pd-lg-l-75-f{padding-left:75px !important}.pd-lg-80{padding:80px}.pd-lg-80-f{padding:80px !important}.pd-lg-y-80{padding-top:80px;padding-bottom:80px}.pd-lg-y-80-f{padding-top:80px !important;padding-bottom:80px !important}.pd-lg-x-80{padding-left:80px;padding-right:80px}.pd-lg-x-80-f{padding-left:80px !important;padding-right:80px !important}.pd-lg-t-80{padding-top:80px}.pd-lg-r-80{padding-right:80px}.pd-lg-b-80{padding-bottom:80px}.pd-lg-l-80{padding-left:80px}.pd-lg-t-80-f{padding-top:80px !important}.pd-lg-r-80-f{padding-right:80px !important}.pd-lg-b-80-f{padding-bottom:80px !important}.pd-lg-l-80-f{padding-left:80px !important}.pd-lg-85{padding:85px}.pd-lg-85-f{padding:85px !important}.pd-lg-y-85{padding-top:85px;padding-bottom:85px}.pd-lg-y-85-f{padding-top:85px !important;padding-bottom:85px !important}.pd-lg-x-85{padding-left:85px;padding-right:85px}.pd-lg-x-85-f{padding-left:85px !important;padding-right:85px !important}.pd-lg-t-85{padding-top:85px}.pd-lg-r-85{padding-right:85px}.pd-lg-b-85{padding-bottom:85px}.pd-lg-l-85{padding-left:85px}.pd-lg-t-85-f{padding-top:85px !important}.pd-lg-r-85-f{padding-right:85px !important}.pd-lg-b-85-f{padding-bottom:85px !important}.pd-lg-l-85-f{padding-left:85px !important}.pd-lg-90{padding:90px}.pd-lg-90-f{padding:90px !important}.pd-lg-y-90{padding-top:90px;padding-bottom:90px}.pd-lg-y-90-f{padding-top:90px !important;padding-bottom:90px !important}.pd-lg-x-90{padding-left:90px;padding-right:90px}.pd-lg-x-90-f{padding-left:90px !important;padding-right:90px !important}.pd-lg-t-90{padding-top:90px}.pd-lg-r-90{padding-right:90px}.pd-lg-b-90{padding-bottom:90px}.pd-lg-l-90{padding-left:90px}.pd-lg-t-90-f{padding-top:90px !important}.pd-lg-r-90-f{padding-right:90px !important}.pd-lg-b-90-f{padding-bottom:90px !important}.pd-lg-l-90-f{padding-left:90px !important}.pd-lg-95{padding:95px}.pd-lg-95-f{padding:95px !important}.pd-lg-y-95{padding-top:95px;padding-bottom:95px}.pd-lg-y-95-f{padding-top:95px !important;padding-bottom:95px !important}.pd-lg-x-95{padding-left:95px;padding-right:95px}.pd-lg-x-95-f{padding-left:95px !important;padding-right:95px !important}.pd-lg-t-95{padding-top:95px}.pd-lg-r-95{padding-right:95px}.pd-lg-b-95{padding-bottom:95px}.pd-lg-l-95{padding-left:95px}.pd-lg-t-95-f{padding-top:95px !important}.pd-lg-r-95-f{padding-right:95px !important}.pd-lg-b-95-f{padding-bottom:95px !important}.pd-lg-l-95-f{padding-left:95px !important}.pd-lg-100{padding:100px}.pd-lg-100-f{padding:100px !important}.pd-lg-y-100{padding-top:100px;padding-bottom:100px}.pd-lg-y-100-f{padding-top:100px !important;padding-bottom:100px !important}.pd-lg-x-100{padding-left:100px;padding-right:100px}.pd-lg-x-100-f{padding-left:100px !important;padding-right:100px !important}.pd-lg-t-100{padding-top:100px}.pd-lg-r-100{padding-right:100px}.pd-lg-b-100{padding-bottom:100px}.pd-lg-l-100{padding-left:100px}.pd-lg-t-100-f{padding-top:100px !important}.pd-lg-r-100-f{padding-right:100px !important}.pd-lg-b-100-f{padding-bottom:100px !important}.pd-lg-l-100-f{padding-left:100px !important}.pd-lg-110{padding:110px}.pd-lg-110-f{padding:110px !important}.pd-lg-y-110{padding-top:110px;padding-bottom:110px}.pd-lg-y-110-f{padding-top:110px !important;padding-bottom:110px !important}.pd-lg-x-110{padding-left:110px;padding-right:110px}.pd-lg-x-110-f{padding-left:110px !important;padding-right:110px !important}.pd-lg-t-110{padding-top:110px}.pd-lg-r-110{padding-right:110px}.pd-lg-b-110{padding-bottom:110px}.pd-lg-l-110{padding-left:110px}.pd-lg-t-110-f{padding-top:110px !important}.pd-lg-r-110-f{padding-right:110px !important}.pd-lg-b-110-f{padding-bottom:110px !important}.pd-lg-l-110-f{padding-left:110px !important}.pd-lg-120{padding:120px}.pd-lg-120-f{padding:120px !important}.pd-lg-y-120{padding-top:120px;padding-bottom:120px}.pd-lg-y-120-f{padding-top:120px !important;padding-bottom:120px !important}.pd-lg-x-120{padding-left:120px;padding-right:120px}.pd-lg-x-120-f{padding-left:120px !important;padding-right:120px !important}.pd-lg-t-120{padding-top:120px}.pd-lg-r-120{padding-right:120px}.pd-lg-b-120{padding-bottom:120px}.pd-lg-l-120{padding-left:120px}.pd-lg-t-120-f{padding-top:120px !important}.pd-lg-r-120-f{padding-right:120px !important}.pd-lg-b-120-f{padding-bottom:120px !important}.pd-lg-l-120-f{padding-left:120px !important}.pd-lg-130{padding:130px}.pd-lg-130-f{padding:130px !important}.pd-lg-y-130{padding-top:130px;padding-bottom:130px}.pd-lg-y-130-f{padding-top:130px !important;padding-bottom:130px !important}.pd-lg-x-130{padding-left:130px;padding-right:130px}.pd-lg-x-130-f{padding-left:130px !important;padding-right:130px !important}.pd-lg-t-130{padding-top:130px}.pd-lg-r-130{padding-right:130px}.pd-lg-b-130{padding-bottom:130px}.pd-lg-l-130{padding-left:130px}.pd-lg-t-130-f{padding-top:130px !important}.pd-lg-r-130-f{padding-right:130px !important}.pd-lg-b-130-f{padding-bottom:130px !important}.pd-lg-l-130-f{padding-left:130px !important}.pd-lg-140{padding:140px}.pd-lg-140-f{padding:140px !important}.pd-lg-y-140{padding-top:140px;padding-bottom:140px}.pd-lg-y-140-f{padding-top:140px !important;padding-bottom:140px !important}.pd-lg-x-140{padding-left:140px;padding-right:140px}.pd-lg-x-140-f{padding-left:140px !important;padding-right:140px !important}.pd-lg-t-140{padding-top:140px}.pd-lg-r-140{padding-right:140px}.pd-lg-b-140{padding-bottom:140px}.pd-lg-l-140{padding-left:140px}.pd-lg-t-140-f{padding-top:140px !important}.pd-lg-r-140-f{padding-right:140px !important}.pd-lg-b-140-f{padding-bottom:140px !important}.pd-lg-l-140-f{padding-left:140px !important}.pd-lg-150{padding:150px}.pd-lg-150-f{padding:150px !important}.pd-lg-y-150{padding-top:150px;padding-bottom:150px}.pd-lg-y-150-f{padding-top:150px !important;padding-bottom:150px !important}.pd-lg-x-150{padding-left:150px;padding-right:150px}.pd-lg-x-150-f{padding-left:150px !important;padding-right:150px !important}.pd-lg-t-150{padding-top:150px}.pd-lg-r-150{padding-right:150px}.pd-lg-b-150{padding-bottom:150px}.pd-lg-l-150{padding-left:150px}.pd-lg-t-150-f{padding-top:150px !important}.pd-lg-r-150-f{padding-right:150px !important}.pd-lg-b-150-f{padding-bottom:150px !important}.pd-lg-l-150-f{padding-left:150px !important}.pd-lg-160{padding:160px}.pd-lg-160-f{padding:160px !important}.pd-lg-y-160{padding-top:160px;padding-bottom:160px}.pd-lg-y-160-f{padding-top:160px !important;padding-bottom:160px !important}.pd-lg-x-160{padding-left:160px;padding-right:160px}.pd-lg-x-160-f{padding-left:160px !important;padding-right:160px !important}.pd-lg-t-160{padding-top:160px}.pd-lg-r-160{padding-right:160px}.pd-lg-b-160{padding-bottom:160px}.pd-lg-l-160{padding-left:160px}.pd-lg-t-160-f{padding-top:160px !important}.pd-lg-r-160-f{padding-right:160px !important}.pd-lg-b-160-f{padding-bottom:160px !important}.pd-lg-l-160-f{padding-left:160px !important}.pd-lg-170{padding:170px}.pd-lg-170-f{padding:170px !important}.pd-lg-y-170{padding-top:170px;padding-bottom:170px}.pd-lg-y-170-f{padding-top:170px !important;padding-bottom:170px !important}.pd-lg-x-170{padding-left:170px;padding-right:170px}.pd-lg-x-170-f{padding-left:170px !important;padding-right:170px !important}.pd-lg-t-170{padding-top:170px}.pd-lg-r-170{padding-right:170px}.pd-lg-b-170{padding-bottom:170px}.pd-lg-l-170{padding-left:170px}.pd-lg-t-170-f{padding-top:170px !important}.pd-lg-r-170-f{padding-right:170px !important}.pd-lg-b-170-f{padding-bottom:170px !important}.pd-lg-l-170-f{padding-left:170px !important}.pd-lg-180{padding:180px}.pd-lg-180-f{padding:180px !important}.pd-lg-y-180{padding-top:180px;padding-bottom:180px}.pd-lg-y-180-f{padding-top:180px !important;padding-bottom:180px !important}.pd-lg-x-180{padding-left:180px;padding-right:180px}.pd-lg-x-180-f{padding-left:180px !important;padding-right:180px !important}.pd-lg-t-180{padding-top:180px}.pd-lg-r-180{padding-right:180px}.pd-lg-b-180{padding-bottom:180px}.pd-lg-l-180{padding-left:180px}.pd-lg-t-180-f{padding-top:180px !important}.pd-lg-r-180-f{padding-right:180px !important}.pd-lg-b-180-f{padding-bottom:180px !important}.pd-lg-l-180-f{padding-left:180px !important}.pd-lg-190{padding:190px}.pd-lg-190-f{padding:190px !important}.pd-lg-y-190{padding-top:190px;padding-bottom:190px}.pd-lg-y-190-f{padding-top:190px !important;padding-bottom:190px !important}.pd-lg-x-190{padding-left:190px;padding-right:190px}.pd-lg-x-190-f{padding-left:190px !important;padding-right:190px !important}.pd-lg-t-190{padding-top:190px}.pd-lg-r-190{padding-right:190px}.pd-lg-b-190{padding-bottom:190px}.pd-lg-l-190{padding-left:190px}.pd-lg-t-190-f{padding-top:190px !important}.pd-lg-r-190-f{padding-right:190px !important}.pd-lg-b-190-f{padding-bottom:190px !important}.pd-lg-l-190-f{padding-left:190px !important}.pd-lg-200{padding:200px}.pd-lg-200-f{padding:200px !important}.pd-lg-y-200{padding-top:200px;padding-bottom:200px}.pd-lg-y-200-f{padding-top:200px !important;padding-bottom:200px !important}.pd-lg-x-200{padding-left:200px;padding-right:200px}.pd-lg-x-200-f{padding-left:200px !important;padding-right:200px !important}.pd-lg-t-200{padding-top:200px}.pd-lg-r-200{padding-right:200px}.pd-lg-b-200{padding-bottom:200px}.pd-lg-l-200{padding-left:200px}.pd-lg-t-200-f{padding-top:200px !important}.pd-lg-r-200-f{padding-right:200px !important}.pd-lg-b-200-f{padding-bottom:200px !important}.pd-lg-l-200-f{padding-left:200px !important}}@media (min-width: 1200px){.pd-xl-0{padding:0px}.pd-xl-0-f{padding:0px !important}.pd-xl-y-0{padding-top:0px;padding-bottom:0px}.pd-xl-y-0-f{padding-top:0px !important;padding-bottom:0px !important}.pd-xl-x-0{padding-left:0px;padding-right:0px}.pd-xl-x-0-f{padding-left:0px !important;padding-right:0px !important}.pd-xl-t-0{padding-top:0px}.pd-xl-r-0{padding-right:0px}.pd-xl-b-0{padding-bottom:0px}.pd-xl-l-0{padding-left:0px}.pd-xl-t-0-f{padding-top:0px !important}.pd-xl-r-0-f{padding-right:0px !important}.pd-xl-b-0-f{padding-bottom:0px !important}.pd-xl-l-0-f{padding-left:0px !important}.pd-xl-1{padding:1px}.pd-xl-1-f{padding:1px !important}.pd-xl-y-1{padding-top:1px;padding-bottom:1px}.pd-xl-y-1-f{padding-top:1px !important;padding-bottom:1px !important}.pd-xl-x-1{padding-left:1px;padding-right:1px}.pd-xl-x-1-f{padding-left:1px !important;padding-right:1px !important}.pd-xl-t-1{padding-top:1px}.pd-xl-r-1{padding-right:1px}.pd-xl-b-1{padding-bottom:1px}.pd-xl-l-1{padding-left:1px}.pd-xl-t-1-f{padding-top:1px !important}.pd-xl-r-1-f{padding-right:1px !important}.pd-xl-b-1-f{padding-bottom:1px !important}.pd-xl-l-1-f{padding-left:1px !important}.pd-xl-2{padding:2px}.pd-xl-2-f{padding:2px !important}.pd-xl-y-2{padding-top:2px;padding-bottom:2px}.pd-xl-y-2-f{padding-top:2px !important;padding-bottom:2px !important}.pd-xl-x-2{padding-left:2px;padding-right:2px}.pd-xl-x-2-f{padding-left:2px !important;padding-right:2px !important}.pd-xl-t-2{padding-top:2px}.pd-xl-r-2{padding-right:2px}.pd-xl-b-2{padding-bottom:2px}.pd-xl-l-2{padding-left:2px}.pd-xl-t-2-f{padding-top:2px !important}.pd-xl-r-2-f{padding-right:2px !important}.pd-xl-b-2-f{padding-bottom:2px !important}.pd-xl-l-2-f{padding-left:2px !important}.pd-xl-3{padding:3px}.pd-xl-3-f{padding:3px !important}.pd-xl-y-3{padding-top:3px;padding-bottom:3px}.pd-xl-y-3-f{padding-top:3px !important;padding-bottom:3px !important}.pd-xl-x-3{padding-left:3px;padding-right:3px}.pd-xl-x-3-f{padding-left:3px !important;padding-right:3px !important}.pd-xl-t-3{padding-top:3px}.pd-xl-r-3{padding-right:3px}.pd-xl-b-3{padding-bottom:3px}.pd-xl-l-3{padding-left:3px}.pd-xl-t-3-f{padding-top:3px !important}.pd-xl-r-3-f{padding-right:3px !important}.pd-xl-b-3-f{padding-bottom:3px !important}.pd-xl-l-3-f{padding-left:3px !important}.pd-xl-4{padding:4px}.pd-xl-4-f{padding:4px !important}.pd-xl-y-4{padding-top:4px;padding-bottom:4px}.pd-xl-y-4-f{padding-top:4px !important;padding-bottom:4px !important}.pd-xl-x-4{padding-left:4px;padding-right:4px}.pd-xl-x-4-f{padding-left:4px !important;padding-right:4px !important}.pd-xl-t-4{padding-top:4px}.pd-xl-r-4{padding-right:4px}.pd-xl-b-4{padding-bottom:4px}.pd-xl-l-4{padding-left:4px}.pd-xl-t-4-f{padding-top:4px !important}.pd-xl-r-4-f{padding-right:4px !important}.pd-xl-b-4-f{padding-bottom:4px !important}.pd-xl-l-4-f{padding-left:4px !important}.pd-xl-5{padding:5px}.pd-xl-5-f{padding:5px !important}.pd-xl-y-5{padding-top:5px;padding-bottom:5px}.pd-xl-y-5-f{padding-top:5px !important;padding-bottom:5px !important}.pd-xl-x-5{padding-left:5px;padding-right:5px}.pd-xl-x-5-f{padding-left:5px !important;padding-right:5px !important}.pd-xl-t-5{padding-top:5px}.pd-xl-r-5{padding-right:5px}.pd-xl-b-5{padding-bottom:5px}.pd-xl-l-5{padding-left:5px}.pd-xl-t-5-f{padding-top:5px !important}.pd-xl-r-5-f{padding-right:5px !important}.pd-xl-b-5-f{padding-bottom:5px !important}.pd-xl-l-5-f{padding-left:5px !important}.pd-xl-6{padding:6px}.pd-xl-6-f{padding:6px !important}.pd-xl-y-6{padding-top:6px;padding-bottom:6px}.pd-xl-y-6-f{padding-top:6px !important;padding-bottom:6px !important}.pd-xl-x-6{padding-left:6px;padding-right:6px}.pd-xl-x-6-f{padding-left:6px !important;padding-right:6px !important}.pd-xl-t-6{padding-top:6px}.pd-xl-r-6{padding-right:6px}.pd-xl-b-6{padding-bottom:6px}.pd-xl-l-6{padding-left:6px}.pd-xl-t-6-f{padding-top:6px !important}.pd-xl-r-6-f{padding-right:6px !important}.pd-xl-b-6-f{padding-bottom:6px !important}.pd-xl-l-6-f{padding-left:6px !important}.pd-xl-7{padding:7px}.pd-xl-7-f{padding:7px !important}.pd-xl-y-7{padding-top:7px;padding-bottom:7px}.pd-xl-y-7-f{padding-top:7px !important;padding-bottom:7px !important}.pd-xl-x-7{padding-left:7px;padding-right:7px}.pd-xl-x-7-f{padding-left:7px !important;padding-right:7px !important}.pd-xl-t-7{padding-top:7px}.pd-xl-r-7{padding-right:7px}.pd-xl-b-7{padding-bottom:7px}.pd-xl-l-7{padding-left:7px}.pd-xl-t-7-f{padding-top:7px !important}.pd-xl-r-7-f{padding-right:7px !important}.pd-xl-b-7-f{padding-bottom:7px !important}.pd-xl-l-7-f{padding-left:7px !important}.pd-xl-8{padding:8px}.pd-xl-8-f{padding:8px !important}.pd-xl-y-8{padding-top:8px;padding-bottom:8px}.pd-xl-y-8-f{padding-top:8px !important;padding-bottom:8px !important}.pd-xl-x-8{padding-left:8px;padding-right:8px}.pd-xl-x-8-f{padding-left:8px !important;padding-right:8px !important}.pd-xl-t-8{padding-top:8px}.pd-xl-r-8{padding-right:8px}.pd-xl-b-8{padding-bottom:8px}.pd-xl-l-8{padding-left:8px}.pd-xl-t-8-f{padding-top:8px !important}.pd-xl-r-8-f{padding-right:8px !important}.pd-xl-b-8-f{padding-bottom:8px !important}.pd-xl-l-8-f{padding-left:8px !important}.pd-xl-9{padding:9px}.pd-xl-9-f{padding:9px !important}.pd-xl-y-9{padding-top:9px;padding-bottom:9px}.pd-xl-y-9-f{padding-top:9px !important;padding-bottom:9px !important}.pd-xl-x-9{padding-left:9px;padding-right:9px}.pd-xl-x-9-f{padding-left:9px !important;padding-right:9px !important}.pd-xl-t-9{padding-top:9px}.pd-xl-r-9{padding-right:9px}.pd-xl-b-9{padding-bottom:9px}.pd-xl-l-9{padding-left:9px}.pd-xl-t-9-f{padding-top:9px !important}.pd-xl-r-9-f{padding-right:9px !important}.pd-xl-b-9-f{padding-bottom:9px !important}.pd-xl-l-9-f{padding-left:9px !important}.pd-xl-10{padding:10px}.pd-xl-10-f{padding:10px !important}.pd-xl-y-10{padding-top:10px;padding-bottom:10px}.pd-xl-y-10-f{padding-top:10px !important;padding-bottom:10px !important}.pd-xl-x-10{padding-left:10px;padding-right:10px}.pd-xl-x-10-f{padding-left:10px !important;padding-right:10px !important}.pd-xl-t-10{padding-top:10px}.pd-xl-r-10{padding-right:10px}.pd-xl-b-10{padding-bottom:10px}.pd-xl-l-10{padding-left:10px}.pd-xl-t-10-f{padding-top:10px !important}.pd-xl-r-10-f{padding-right:10px !important}.pd-xl-b-10-f{padding-bottom:10px !important}.pd-xl-l-10-f{padding-left:10px !important}.pd-xl-15{padding:15px}.pd-xl-15-f{padding:15px !important}.pd-xl-y-15{padding-top:15px;padding-bottom:15px}.pd-xl-y-15-f{padding-top:15px !important;padding-bottom:15px !important}.pd-xl-x-15{padding-left:15px;padding-right:15px}.pd-xl-x-15-f{padding-left:15px !important;padding-right:15px !important}.pd-xl-t-15{padding-top:15px}.pd-xl-r-15{padding-right:15px}.pd-xl-b-15{padding-bottom:15px}.pd-xl-l-15{padding-left:15px}.pd-xl-t-15-f{padding-top:15px !important}.pd-xl-r-15-f{padding-right:15px !important}.pd-xl-b-15-f{padding-bottom:15px !important}.pd-xl-l-15-f{padding-left:15px !important}.pd-xl-20{padding:20px}.pd-xl-20-f{padding:20px !important}.pd-xl-y-20{padding-top:20px;padding-bottom:20px}.pd-xl-y-20-f{padding-top:20px !important;padding-bottom:20px !important}.pd-xl-x-20{padding-left:20px;padding-right:20px}.pd-xl-x-20-f{padding-left:20px !important;padding-right:20px !important}.pd-xl-t-20{padding-top:20px}.pd-xl-r-20{padding-right:20px}.pd-xl-b-20{padding-bottom:20px}.pd-xl-l-20{padding-left:20px}.pd-xl-t-20-f{padding-top:20px !important}.pd-xl-r-20-f{padding-right:20px !important}.pd-xl-b-20-f{padding-bottom:20px !important}.pd-xl-l-20-f{padding-left:20px !important}.pd-xl-25{padding:25px}.pd-xl-25-f{padding:25px !important}.pd-xl-y-25{padding-top:25px;padding-bottom:25px}.pd-xl-y-25-f{padding-top:25px !important;padding-bottom:25px !important}.pd-xl-x-25{padding-left:25px;padding-right:25px}.pd-xl-x-25-f{padding-left:25px !important;padding-right:25px !important}.pd-xl-t-25{padding-top:25px}.pd-xl-r-25{padding-right:25px}.pd-xl-b-25{padding-bottom:25px}.pd-xl-l-25{padding-left:25px}.pd-xl-t-25-f{padding-top:25px !important}.pd-xl-r-25-f{padding-right:25px !important}.pd-xl-b-25-f{padding-bottom:25px !important}.pd-xl-l-25-f{padding-left:25px !important}.pd-xl-30{padding:30px}.pd-xl-30-f{padding:30px !important}.pd-xl-y-30{padding-top:30px;padding-bottom:30px}.pd-xl-y-30-f{padding-top:30px !important;padding-bottom:30px !important}.pd-xl-x-30{padding-left:30px;padding-right:30px}.pd-xl-x-30-f{padding-left:30px !important;padding-right:30px !important}.pd-xl-t-30{padding-top:30px}.pd-xl-r-30{padding-right:30px}.pd-xl-b-30{padding-bottom:30px}.pd-xl-l-30{padding-left:30px}.pd-xl-t-30-f{padding-top:30px !important}.pd-xl-r-30-f{padding-right:30px !important}.pd-xl-b-30-f{padding-bottom:30px !important}.pd-xl-l-30-f{padding-left:30px !important}.pd-xl-35{padding:35px}.pd-xl-35-f{padding:35px !important}.pd-xl-y-35{padding-top:35px;padding-bottom:35px}.pd-xl-y-35-f{padding-top:35px !important;padding-bottom:35px !important}.pd-xl-x-35{padding-left:35px;padding-right:35px}.pd-xl-x-35-f{padding-left:35px !important;padding-right:35px !important}.pd-xl-t-35{padding-top:35px}.pd-xl-r-35{padding-right:35px}.pd-xl-b-35{padding-bottom:35px}.pd-xl-l-35{padding-left:35px}.pd-xl-t-35-f{padding-top:35px !important}.pd-xl-r-35-f{padding-right:35px !important}.pd-xl-b-35-f{padding-bottom:35px !important}.pd-xl-l-35-f{padding-left:35px !important}.pd-xl-40{padding:40px}.pd-xl-40-f{padding:40px !important}.pd-xl-y-40{padding-top:40px;padding-bottom:40px}.pd-xl-y-40-f{padding-top:40px !important;padding-bottom:40px !important}.pd-xl-x-40{padding-left:40px;padding-right:40px}.pd-xl-x-40-f{padding-left:40px !important;padding-right:40px !important}.pd-xl-t-40{padding-top:40px}.pd-xl-r-40{padding-right:40px}.pd-xl-b-40{padding-bottom:40px}.pd-xl-l-40{padding-left:40px}.pd-xl-t-40-f{padding-top:40px !important}.pd-xl-r-40-f{padding-right:40px !important}.pd-xl-b-40-f{padding-bottom:40px !important}.pd-xl-l-40-f{padding-left:40px !important}.pd-xl-45{padding:45px}.pd-xl-45-f{padding:45px !important}.pd-xl-y-45{padding-top:45px;padding-bottom:45px}.pd-xl-y-45-f{padding-top:45px !important;padding-bottom:45px !important}.pd-xl-x-45{padding-left:45px;padding-right:45px}.pd-xl-x-45-f{padding-left:45px !important;padding-right:45px !important}.pd-xl-t-45{padding-top:45px}.pd-xl-r-45{padding-right:45px}.pd-xl-b-45{padding-bottom:45px}.pd-xl-l-45{padding-left:45px}.pd-xl-t-45-f{padding-top:45px !important}.pd-xl-r-45-f{padding-right:45px !important}.pd-xl-b-45-f{padding-bottom:45px !important}.pd-xl-l-45-f{padding-left:45px !important}.pd-xl-50{padding:50px}.pd-xl-50-f{padding:50px !important}.pd-xl-y-50{padding-top:50px;padding-bottom:50px}.pd-xl-y-50-f{padding-top:50px !important;padding-bottom:50px !important}.pd-xl-x-50{padding-left:50px;padding-right:50px}.pd-xl-x-50-f{padding-left:50px !important;padding-right:50px !important}.pd-xl-t-50{padding-top:50px}.pd-xl-r-50{padding-right:50px}.pd-xl-b-50{padding-bottom:50px}.pd-xl-l-50{padding-left:50px}.pd-xl-t-50-f{padding-top:50px !important}.pd-xl-r-50-f{padding-right:50px !important}.pd-xl-b-50-f{padding-bottom:50px !important}.pd-xl-l-50-f{padding-left:50px !important}.pd-xl-55{padding:55px}.pd-xl-55-f{padding:55px !important}.pd-xl-y-55{padding-top:55px;padding-bottom:55px}.pd-xl-y-55-f{padding-top:55px !important;padding-bottom:55px !important}.pd-xl-x-55{padding-left:55px;padding-right:55px}.pd-xl-x-55-f{padding-left:55px !important;padding-right:55px !important}.pd-xl-t-55{padding-top:55px}.pd-xl-r-55{padding-right:55px}.pd-xl-b-55{padding-bottom:55px}.pd-xl-l-55{padding-left:55px}.pd-xl-t-55-f{padding-top:55px !important}.pd-xl-r-55-f{padding-right:55px !important}.pd-xl-b-55-f{padding-bottom:55px !important}.pd-xl-l-55-f{padding-left:55px !important}.pd-xl-60{padding:60px}.pd-xl-60-f{padding:60px !important}.pd-xl-y-60{padding-top:60px;padding-bottom:60px}.pd-xl-y-60-f{padding-top:60px !important;padding-bottom:60px !important}.pd-xl-x-60{padding-left:60px;padding-right:60px}.pd-xl-x-60-f{padding-left:60px !important;padding-right:60px !important}.pd-xl-t-60{padding-top:60px}.pd-xl-r-60{padding-right:60px}.pd-xl-b-60{padding-bottom:60px}.pd-xl-l-60{padding-left:60px}.pd-xl-t-60-f{padding-top:60px !important}.pd-xl-r-60-f{padding-right:60px !important}.pd-xl-b-60-f{padding-bottom:60px !important}.pd-xl-l-60-f{padding-left:60px !important}.pd-xl-65{padding:65px}.pd-xl-65-f{padding:65px !important}.pd-xl-y-65{padding-top:65px;padding-bottom:65px}.pd-xl-y-65-f{padding-top:65px !important;padding-bottom:65px !important}.pd-xl-x-65{padding-left:65px;padding-right:65px}.pd-xl-x-65-f{padding-left:65px !important;padding-right:65px !important}.pd-xl-t-65{padding-top:65px}.pd-xl-r-65{padding-right:65px}.pd-xl-b-65{padding-bottom:65px}.pd-xl-l-65{padding-left:65px}.pd-xl-t-65-f{padding-top:65px !important}.pd-xl-r-65-f{padding-right:65px !important}.pd-xl-b-65-f{padding-bottom:65px !important}.pd-xl-l-65-f{padding-left:65px !important}.pd-xl-70{padding:70px}.pd-xl-70-f{padding:70px !important}.pd-xl-y-70{padding-top:70px;padding-bottom:70px}.pd-xl-y-70-f{padding-top:70px !important;padding-bottom:70px !important}.pd-xl-x-70{padding-left:70px;padding-right:70px}.pd-xl-x-70-f{padding-left:70px !important;padding-right:70px !important}.pd-xl-t-70{padding-top:70px}.pd-xl-r-70{padding-right:70px}.pd-xl-b-70{padding-bottom:70px}.pd-xl-l-70{padding-left:70px}.pd-xl-t-70-f{padding-top:70px !important}.pd-xl-r-70-f{padding-right:70px !important}.pd-xl-b-70-f{padding-bottom:70px !important}.pd-xl-l-70-f{padding-left:70px !important}.pd-xl-75{padding:75px}.pd-xl-75-f{padding:75px !important}.pd-xl-y-75{padding-top:75px;padding-bottom:75px}.pd-xl-y-75-f{padding-top:75px !important;padding-bottom:75px !important}.pd-xl-x-75{padding-left:75px;padding-right:75px}.pd-xl-x-75-f{padding-left:75px !important;padding-right:75px !important}.pd-xl-t-75{padding-top:75px}.pd-xl-r-75{padding-right:75px}.pd-xl-b-75{padding-bottom:75px}.pd-xl-l-75{padding-left:75px}.pd-xl-t-75-f{padding-top:75px !important}.pd-xl-r-75-f{padding-right:75px !important}.pd-xl-b-75-f{padding-bottom:75px !important}.pd-xl-l-75-f{padding-left:75px !important}.pd-xl-80{padding:80px}.pd-xl-80-f{padding:80px !important}.pd-xl-y-80{padding-top:80px;padding-bottom:80px}.pd-xl-y-80-f{padding-top:80px !important;padding-bottom:80px !important}.pd-xl-x-80{padding-left:80px;padding-right:80px}.pd-xl-x-80-f{padding-left:80px !important;padding-right:80px !important}.pd-xl-t-80{padding-top:80px}.pd-xl-r-80{padding-right:80px}.pd-xl-b-80{padding-bottom:80px}.pd-xl-l-80{padding-left:80px}.pd-xl-t-80-f{padding-top:80px !important}.pd-xl-r-80-f{padding-right:80px !important}.pd-xl-b-80-f{padding-bottom:80px !important}.pd-xl-l-80-f{padding-left:80px !important}.pd-xl-85{padding:85px}.pd-xl-85-f{padding:85px !important}.pd-xl-y-85{padding-top:85px;padding-bottom:85px}.pd-xl-y-85-f{padding-top:85px !important;padding-bottom:85px !important}.pd-xl-x-85{padding-left:85px;padding-right:85px}.pd-xl-x-85-f{padding-left:85px !important;padding-right:85px !important}.pd-xl-t-85{padding-top:85px}.pd-xl-r-85{padding-right:85px}.pd-xl-b-85{padding-bottom:85px}.pd-xl-l-85{padding-left:85px}.pd-xl-t-85-f{padding-top:85px !important}.pd-xl-r-85-f{padding-right:85px !important}.pd-xl-b-85-f{padding-bottom:85px !important}.pd-xl-l-85-f{padding-left:85px !important}.pd-xl-90{padding:90px}.pd-xl-90-f{padding:90px !important}.pd-xl-y-90{padding-top:90px;padding-bottom:90px}.pd-xl-y-90-f{padding-top:90px !important;padding-bottom:90px !important}.pd-xl-x-90{padding-left:90px;padding-right:90px}.pd-xl-x-90-f{padding-left:90px !important;padding-right:90px !important}.pd-xl-t-90{padding-top:90px}.pd-xl-r-90{padding-right:90px}.pd-xl-b-90{padding-bottom:90px}.pd-xl-l-90{padding-left:90px}.pd-xl-t-90-f{padding-top:90px !important}.pd-xl-r-90-f{padding-right:90px !important}.pd-xl-b-90-f{padding-bottom:90px !important}.pd-xl-l-90-f{padding-left:90px !important}.pd-xl-95{padding:95px}.pd-xl-95-f{padding:95px !important}.pd-xl-y-95{padding-top:95px;padding-bottom:95px}.pd-xl-y-95-f{padding-top:95px !important;padding-bottom:95px !important}.pd-xl-x-95{padding-left:95px;padding-right:95px}.pd-xl-x-95-f{padding-left:95px !important;padding-right:95px !important}.pd-xl-t-95{padding-top:95px}.pd-xl-r-95{padding-right:95px}.pd-xl-b-95{padding-bottom:95px}.pd-xl-l-95{padding-left:95px}.pd-xl-t-95-f{padding-top:95px !important}.pd-xl-r-95-f{padding-right:95px !important}.pd-xl-b-95-f{padding-bottom:95px !important}.pd-xl-l-95-f{padding-left:95px !important}.pd-xl-100{padding:100px}.pd-xl-100-f{padding:100px !important}.pd-xl-y-100{padding-top:100px;padding-bottom:100px}.pd-xl-y-100-f{padding-top:100px !important;padding-bottom:100px !important}.pd-xl-x-100{padding-left:100px;padding-right:100px}.pd-xl-x-100-f{padding-left:100px !important;padding-right:100px !important}.pd-xl-t-100{padding-top:100px}.pd-xl-r-100{padding-right:100px}.pd-xl-b-100{padding-bottom:100px}.pd-xl-l-100{padding-left:100px}.pd-xl-t-100-f{padding-top:100px !important}.pd-xl-r-100-f{padding-right:100px !important}.pd-xl-b-100-f{padding-bottom:100px !important}.pd-xl-l-100-f{padding-left:100px !important}.pd-xl-110{padding:110px}.pd-xl-110-f{padding:110px !important}.pd-xl-y-110{padding-top:110px;padding-bottom:110px}.pd-xl-y-110-f{padding-top:110px !important;padding-bottom:110px !important}.pd-xl-x-110{padding-left:110px;padding-right:110px}.pd-xl-x-110-f{padding-left:110px !important;padding-right:110px !important}.pd-xl-t-110{padding-top:110px}.pd-xl-r-110{padding-right:110px}.pd-xl-b-110{padding-bottom:110px}.pd-xl-l-110{padding-left:110px}.pd-xl-t-110-f{padding-top:110px !important}.pd-xl-r-110-f{padding-right:110px !important}.pd-xl-b-110-f{padding-bottom:110px !important}.pd-xl-l-110-f{padding-left:110px !important}.pd-xl-120{padding:120px}.pd-xl-120-f{padding:120px !important}.pd-xl-y-120{padding-top:120px;padding-bottom:120px}.pd-xl-y-120-f{padding-top:120px !important;padding-bottom:120px !important}.pd-xl-x-120{padding-left:120px;padding-right:120px}.pd-xl-x-120-f{padding-left:120px !important;padding-right:120px !important}.pd-xl-t-120{padding-top:120px}.pd-xl-r-120{padding-right:120px}.pd-xl-b-120{padding-bottom:120px}.pd-xl-l-120{padding-left:120px}.pd-xl-t-120-f{padding-top:120px !important}.pd-xl-r-120-f{padding-right:120px !important}.pd-xl-b-120-f{padding-bottom:120px !important}.pd-xl-l-120-f{padding-left:120px !important}.pd-xl-130{padding:130px}.pd-xl-130-f{padding:130px !important}.pd-xl-y-130{padding-top:130px;padding-bottom:130px}.pd-xl-y-130-f{padding-top:130px !important;padding-bottom:130px !important}.pd-xl-x-130{padding-left:130px;padding-right:130px}.pd-xl-x-130-f{padding-left:130px !important;padding-right:130px !important}.pd-xl-t-130{padding-top:130px}.pd-xl-r-130{padding-right:130px}.pd-xl-b-130{padding-bottom:130px}.pd-xl-l-130{padding-left:130px}.pd-xl-t-130-f{padding-top:130px !important}.pd-xl-r-130-f{padding-right:130px !important}.pd-xl-b-130-f{padding-bottom:130px !important}.pd-xl-l-130-f{padding-left:130px !important}.pd-xl-140{padding:140px}.pd-xl-140-f{padding:140px !important}.pd-xl-y-140{padding-top:140px;padding-bottom:140px}.pd-xl-y-140-f{padding-top:140px !important;padding-bottom:140px !important}.pd-xl-x-140{padding-left:140px;padding-right:140px}.pd-xl-x-140-f{padding-left:140px !important;padding-right:140px !important}.pd-xl-t-140{padding-top:140px}.pd-xl-r-140{padding-right:140px}.pd-xl-b-140{padding-bottom:140px}.pd-xl-l-140{padding-left:140px}.pd-xl-t-140-f{padding-top:140px !important}.pd-xl-r-140-f{padding-right:140px !important}.pd-xl-b-140-f{padding-bottom:140px !important}.pd-xl-l-140-f{padding-left:140px !important}.pd-xl-150{padding:150px}.pd-xl-150-f{padding:150px !important}.pd-xl-y-150{padding-top:150px;padding-bottom:150px}.pd-xl-y-150-f{padding-top:150px !important;padding-bottom:150px !important}.pd-xl-x-150{padding-left:150px;padding-right:150px}.pd-xl-x-150-f{padding-left:150px !important;padding-right:150px !important}.pd-xl-t-150{padding-top:150px}.pd-xl-r-150{padding-right:150px}.pd-xl-b-150{padding-bottom:150px}.pd-xl-l-150{padding-left:150px}.pd-xl-t-150-f{padding-top:150px !important}.pd-xl-r-150-f{padding-right:150px !important}.pd-xl-b-150-f{padding-bottom:150px !important}.pd-xl-l-150-f{padding-left:150px !important}.pd-xl-160{padding:160px}.pd-xl-160-f{padding:160px !important}.pd-xl-y-160{padding-top:160px;padding-bottom:160px}.pd-xl-y-160-f{padding-top:160px !important;padding-bottom:160px !important}.pd-xl-x-160{padding-left:160px;padding-right:160px}.pd-xl-x-160-f{padding-left:160px !important;padding-right:160px !important}.pd-xl-t-160{padding-top:160px}.pd-xl-r-160{padding-right:160px}.pd-xl-b-160{padding-bottom:160px}.pd-xl-l-160{padding-left:160px}.pd-xl-t-160-f{padding-top:160px !important}.pd-xl-r-160-f{padding-right:160px !important}.pd-xl-b-160-f{padding-bottom:160px !important}.pd-xl-l-160-f{padding-left:160px !important}.pd-xl-170{padding:170px}.pd-xl-170-f{padding:170px !important}.pd-xl-y-170{padding-top:170px;padding-bottom:170px}.pd-xl-y-170-f{padding-top:170px !important;padding-bottom:170px !important}.pd-xl-x-170{padding-left:170px;padding-right:170px}.pd-xl-x-170-f{padding-left:170px !important;padding-right:170px !important}.pd-xl-t-170{padding-top:170px}.pd-xl-r-170{padding-right:170px}.pd-xl-b-170{padding-bottom:170px}.pd-xl-l-170{padding-left:170px}.pd-xl-t-170-f{padding-top:170px !important}.pd-xl-r-170-f{padding-right:170px !important}.pd-xl-b-170-f{padding-bottom:170px !important}.pd-xl-l-170-f{padding-left:170px !important}.pd-xl-180{padding:180px}.pd-xl-180-f{padding:180px !important}.pd-xl-y-180{padding-top:180px;padding-bottom:180px}.pd-xl-y-180-f{padding-top:180px !important;padding-bottom:180px !important}.pd-xl-x-180{padding-left:180px;padding-right:180px}.pd-xl-x-180-f{padding-left:180px !important;padding-right:180px !important}.pd-xl-t-180{padding-top:180px}.pd-xl-r-180{padding-right:180px}.pd-xl-b-180{padding-bottom:180px}.pd-xl-l-180{padding-left:180px}.pd-xl-t-180-f{padding-top:180px !important}.pd-xl-r-180-f{padding-right:180px !important}.pd-xl-b-180-f{padding-bottom:180px !important}.pd-xl-l-180-f{padding-left:180px !important}.pd-xl-190{padding:190px}.pd-xl-190-f{padding:190px !important}.pd-xl-y-190{padding-top:190px;padding-bottom:190px}.pd-xl-y-190-f{padding-top:190px !important;padding-bottom:190px !important}.pd-xl-x-190{padding-left:190px;padding-right:190px}.pd-xl-x-190-f{padding-left:190px !important;padding-right:190px !important}.pd-xl-t-190{padding-top:190px}.pd-xl-r-190{padding-right:190px}.pd-xl-b-190{padding-bottom:190px}.pd-xl-l-190{padding-left:190px}.pd-xl-t-190-f{padding-top:190px !important}.pd-xl-r-190-f{padding-right:190px !important}.pd-xl-b-190-f{padding-bottom:190px !important}.pd-xl-l-190-f{padding-left:190px !important}.pd-xl-200{padding:200px}.pd-xl-200-f{padding:200px !important}.pd-xl-y-200{padding-top:200px;padding-bottom:200px}.pd-xl-y-200-f{padding-top:200px !important;padding-bottom:200px !important}.pd-xl-x-200{padding-left:200px;padding-right:200px}.pd-xl-x-200-f{padding-left:200px !important;padding-right:200px !important}.pd-xl-t-200{padding-top:200px}.pd-xl-r-200{padding-right:200px}.pd-xl-b-200{padding-bottom:200px}.pd-xl-l-200{padding-left:200px}.pd-xl-t-200-f{padding-top:200px !important}.pd-xl-r-200-f{padding-right:200px !important}.pd-xl-b-200-f{padding-bottom:200px !important}.pd-xl-l-200-f{padding-left:200px !important}}.pd-12{padding:12px}.pd-12-f{padding:12px !important}.pd-y-12{padding-top:12px;padding-bottom:12px}.pd-y-12-f{padding-top:12px !important;padding-bottom:12px !important}.pd-x-12{padding-left:12px;padding-right:12px}.pd-x-12-f{padding-left:12px !important;padding-right:12px !important}.pd-t-12{padding-top:12px}.pd-r-12{padding-right:12px}.pd-b-12{padding-bottom:12px}.pd-l-12{padding-left:12px}.pd-t-12-f{padding-top:12px !important}.pd-r-12-f{padding-right:12px !important}.pd-b-12-f{padding-bottom:12px !important}.pd-l-12-f{padding-left:12px !important}.pd-13{padding:13px}.pd-13-f{padding:13px !important}.pd-y-13{padding-top:13px;padding-bottom:13px}.pd-y-13-f{padding-top:13px !important;padding-bottom:13px !important}.pd-x-13{padding-left:13px;padding-right:13px}.pd-x-13-f{padding-left:13px !important;padding-right:13px !important}.pd-t-13{padding-top:13px}.pd-r-13{padding-right:13px}.pd-b-13{padding-bottom:13px}.pd-l-13{padding-left:13px}.pd-t-13-f{padding-top:13px !important}.pd-r-13-f{padding-right:13px !important}.pd-b-13-f{padding-bottom:13px !important}.pd-l-13-f{padding-left:13px !important}.pos-absolute{position:absolute}.pos-relative{position:relative}.pos-fixed{position:fixed}.pos-static{position:static}.pos-absolute-f{position:absolute !important}.pos-relative-f{position:relative !important}.pos-fixed-f{position:fixed !important}.pos-static-f{position:static !important}.t-0{top:0px}.r-0{right:0px}.b-0{bottom:0px}.l-0{left:0px}.t--0{top:-0px}.r--0{right:-0px}.b--0{bottom:-0px}.l--0{left:-0px}.a-0{top:0px;right:0px;bottom:0px;left:0px}.x-0{left:0px;right:0px}.y-0{left:0px;right:0px}.t-5{top:5px}.r-5{right:5px}.b-5{bottom:5px}.l-5{left:5px}.t--5{top:-5px}.r--5{right:-5px}.b--5{bottom:-5px}.l--5{left:-5px}.a-5{top:5px;right:5px;bottom:5px;left:5px}.x-5{left:5px;right:5px}.y-5{left:5px;right:5px}.t-10{top:10px}.r-10{right:10px}.b-10{bottom:10px}.l-10{left:10px}.t--10{top:-10px}.r--10{right:-10px}.b--10{bottom:-10px}.l--10{left:-10px}.a-10{top:10px;right:10px;bottom:10px;left:10px}.x-10{left:10px;right:10px}.y-10{left:10px;right:10px}.t-15{top:15px}.r-15{right:15px}.b-15{bottom:15px}.l-15{left:15px}.t--15{top:-15px}.r--15{right:-15px}.b--15{bottom:-15px}.l--15{left:-15px}.a-15{top:15px;right:15px;bottom:15px;left:15px}.x-15{left:15px;right:15px}.y-15{left:15px;right:15px}.t-20{top:20px}.r-20{right:20px}.b-20{bottom:20px}.l-20{left:20px}.t--20{top:-20px}.r--20{right:-20px}.b--20{bottom:-20px}.l--20{left:-20px}.a-20{top:20px;right:20px;bottom:20px;left:20px}.x-20{left:20px;right:20px}.y-20{left:20px;right:20px}.t-25{top:25px}.r-25{right:25px}.b-25{bottom:25px}.l-25{left:25px}.t--25{top:-25px}.r--25{right:-25px}.b--25{bottom:-25px}.l--25{left:-25px}.a-25{top:25px;right:25px;bottom:25px;left:25px}.x-25{left:25px;right:25px}.y-25{left:25px;right:25px}.t-30{top:30px}.r-30{right:30px}.b-30{bottom:30px}.l-30{left:30px}.t--30{top:-30px}.r--30{right:-30px}.b--30{bottom:-30px}.l--30{left:-30px}.a-30{top:30px;right:30px;bottom:30px;left:30px}.x-30{left:30px;right:30px}.y-30{left:30px;right:30px}.t-35{top:35px}.r-35{right:35px}.b-35{bottom:35px}.l-35{left:35px}.t--35{top:-35px}.r--35{right:-35px}.b--35{bottom:-35px}.l--35{left:-35px}.a-35{top:35px;right:35px;bottom:35px;left:35px}.x-35{left:35px;right:35px}.y-35{left:35px;right:35px}.t-40{top:40px}.r-40{right:40px}.b-40{bottom:40px}.l-40{left:40px}.t--40{top:-40px}.r--40{right:-40px}.b--40{bottom:-40px}.l--40{left:-40px}.a-40{top:40px;right:40px;bottom:40px;left:40px}.x-40{left:40px;right:40px}.y-40{left:40px;right:40px}.t-45{top:45px}.r-45{right:45px}.b-45{bottom:45px}.l-45{left:45px}.t--45{top:-45px}.r--45{right:-45px}.b--45{bottom:-45px}.l--45{left:-45px}.a-45{top:45px;right:45px;bottom:45px;left:45px}.x-45{left:45px;right:45px}.y-45{left:45px;right:45px}.t-50{top:50px}.r-50{right:50px}.b-50{bottom:50px}.l-50{left:50px}.t--50{top:-50px}.r--50{right:-50px}.b--50{bottom:-50px}.l--50{left:-50px}.a-50{top:50px;right:50px;bottom:50px;left:50px}.x-50{left:50px;right:50px}.y-50{left:50px;right:50px}.t-55{top:55px}.r-55{right:55px}.b-55{bottom:55px}.l-55{left:55px}.t--55{top:-55px}.r--55{right:-55px}.b--55{bottom:-55px}.l--55{left:-55px}.a-55{top:55px;right:55px;bottom:55px;left:55px}.x-55{left:55px;right:55px}.y-55{left:55px;right:55px}.t-60{top:60px}.r-60{right:60px}.b-60{bottom:60px}.l-60{left:60px}.t--60{top:-60px}.r--60{right:-60px}.b--60{bottom:-60px}.l--60{left:-60px}.a-60{top:60px;right:60px;bottom:60px;left:60px}.x-60{left:60px;right:60px}.y-60{left:60px;right:60px}.t-65{top:65px}.r-65{right:65px}.b-65{bottom:65px}.l-65{left:65px}.t--65{top:-65px}.r--65{right:-65px}.b--65{bottom:-65px}.l--65{left:-65px}.a-65{top:65px;right:65px;bottom:65px;left:65px}.x-65{left:65px;right:65px}.y-65{left:65px;right:65px}.t-70{top:70px}.r-70{right:70px}.b-70{bottom:70px}.l-70{left:70px}.t--70{top:-70px}.r--70{right:-70px}.b--70{bottom:-70px}.l--70{left:-70px}.a-70{top:70px;right:70px;bottom:70px;left:70px}.x-70{left:70px;right:70px}.y-70{left:70px;right:70px}.t-75{top:75px}.r-75{right:75px}.b-75{bottom:75px}.l-75{left:75px}.t--75{top:-75px}.r--75{right:-75px}.b--75{bottom:-75px}.l--75{left:-75px}.a-75{top:75px;right:75px;bottom:75px;left:75px}.x-75{left:75px;right:75px}.y-75{left:75px;right:75px}.t-80{top:80px}.r-80{right:80px}.b-80{bottom:80px}.l-80{left:80px}.t--80{top:-80px}.r--80{right:-80px}.b--80{bottom:-80px}.l--80{left:-80px}.a-80{top:80px;right:80px;bottom:80px;left:80px}.x-80{left:80px;right:80px}.y-80{left:80px;right:80px}.t-85{top:85px}.r-85{right:85px}.b-85{bottom:85px}.l-85{left:85px}.t--85{top:-85px}.r--85{right:-85px}.b--85{bottom:-85px}.l--85{left:-85px}.a-85{top:85px;right:85px;bottom:85px;left:85px}.x-85{left:85px;right:85px}.y-85{left:85px;right:85px}.t-90{top:90px}.r-90{right:90px}.b-90{bottom:90px}.l-90{left:90px}.t--90{top:-90px}.r--90{right:-90px}.b--90{bottom:-90px}.l--90{left:-90px}.a-90{top:90px;right:90px;bottom:90px;left:90px}.x-90{left:90px;right:90px}.y-90{left:90px;right:90px}.t-95{top:95px}.r-95{right:95px}.b-95{bottom:95px}.l-95{left:95px}.t--95{top:-95px}.r--95{right:-95px}.b--95{bottom:-95px}.l--95{left:-95px}.a-95{top:95px;right:95px;bottom:95px;left:95px}.x-95{left:95px;right:95px}.y-95{left:95px;right:95px}.t-100{top:100px}.r-100{right:100px}.b-100{bottom:100px}.l-100{left:100px}.t--100{top:-100px}.r--100{right:-100px}.b--100{bottom:-100px}.l--100{left:-100px}.a-100{top:100px;right:100px;bottom:100px;left:100px}.x-100{left:100px;right:100px}.y-100{left:100px;right:100px}.t-2{top:2px}.r--5{right:-5px}.z-index-0{z-index:0}.z-index-10{z-index:10}.z-index-50{z-index:50}.z-index-100{z-index:100}.z-index-150{z-index:150}.z-index-200{z-index:200}@media (min-width: 480px){.pos-xs-absolute{position:absolute}.pos-xs-relative{position:relative}.pos-xs-fixed{position:fixed}.pos-xs-static{position:static}.t-xs-auto{top:auto}.r-xs-auto{right:auto}.b-xs-auto{bottom:auto}.l-xs-auto{left:auto}}@media (min-width: 576px){.pos-sm-absolute{position:absolute}.pos-sm-relative{position:relative}.pos-sm-fixed{position:fixed}.pos-sm-static{position:static}.t-sm-auto{top:auto}.r-sm-auto{right:auto}.b-sm-auto{bottom:auto}.l-sm-auto{left:auto}}@media (min-width: 768px){.pos-md-absolute{position:absolute}.pos-md-relative{position:relative}.pos-md-fixed{position:fixed}.pos-md-static{position:static}.t-md-auto{top:auto}.r-md-auto{right:auto}.b-md-auto{bottom:auto}.l-md-auto{left:auto}}@media (min-width: 992px){.pos-lg-absolute{position:absolute}.pos-lg-relative{position:relative}.pos-lg-fixed{position:fixed}.pos-lg-static{position:static}.t-lg-auto{top:auto}.r-lg-auto{right:auto}.b-lg-auto{bottom:auto}.l-lg-auto{left:auto}}@media (min-width: 1200px){.pos-xl-absolute{position:absolute}.pos-xl-relative{position:relative}.pos-xl-fixed{position:fixed}.pos-xl-static{position:static}.t-xl-auto{top:auto}.r-xl-auto{right:auto}.b-xl-auto{bottom:auto}.l-xl-auto{left:auto}}.tx-black{font-weight:900}.tx-bold{font-weight:700}.tx-semibold{font-weight:600}.tx-medium{font-weight:500}.tx-normal{font-weight:400}.tx-light{font-weight:300}.tx-thin{font-weight:200}.tx-xthin{font-weight:100}.tx-sserif{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"}.tx-roboto{font-family:'Roboto', sans-serif}.tx-white{color:#fff}.tx-black{color:#000}.tx-primary{color:#36f}.tx-success{color:#3bb001}.tx-warning{color:#ffc107}.tx-danger{color:#dc3545}.tx-info{color:#17a2b8}.tx-inverse{color:#1c273c}.tx-teal{color:#0cc}.tx-dark{color:#1c273c}.tx-indigo{color:#5b47fb}.tx-purple{color:#6f42c1}.tx-orange{color:#fd7e14}.tx-pink{color:#f10075}.tx-gray-100{color:#f4f5f8}.tx-gray-200{color:#e3e7ed}.tx-gray-300{color:#cdd4e0}.tx-gray-400{color:#b4bdce}.tx-gray-500{color:#97a3b9}.tx-gray-600{color:#7987a1}.tx-gray-700{color:#596882}.tx-gray-800{color:#3b4863}.tx-gray-900{color:#1c273c}.tx-white-2{color:rgba(255,255,255,0.2)}.tx-white-3{color:rgba(255,255,255,0.3)}.tx-white-4{color:rgba(255,255,255,0.4)}.tx-white-5{color:rgba(255,255,255,0.5)}.tx-white-6{color:rgba(255,255,255,0.6)}.tx-white-7{color:rgba(255,255,255,0.7)}.tx-white-8{color:rgba(255,255,255,0.8)}.tx-spacing-1{letter-spacing:0.5px}.tx-spacing-2{letter-spacing:1px}.tx-spacing-3{letter-spacing:1.5px}.tx-spacing-4{letter-spacing:2px}.tx-spacing-5{letter-spacing:2.5px}.tx-spacing-6{letter-spacing:3px}.tx-spacing-7{letter-spacign:3.5px}.tx-spacing-8{letter-spacing:4px}.tx-spacing--1{letter-spacing:-0.5px}.tx-spacing--2{letter-spacing:-1px}.tx-spacing--3{letter-spacing:-1.5px}.tx-spacing--4{letter-spacing:-2px}.tx-spacing--5{letter-spacing:-2.5px}.tx-spacing--6{letter-spacing:-3px}.tx-spacing--7{letter-spacing:-3.5px}.tx-spacing--8{letter-spacing:-4px}.tx-uppercase{text-transform:uppercase}.tx-lowercase{text-transform:lowercase}.tx-transform-none{text-transform:none}.tx-center{text-align:center}.tx-right{text-align:right}.tx-left{text-align:left}.tx-center-f{text-align:center !important}.tx-right-f{text-align:right !important}.tx-left-f{text-align:left !important}.tx-italic{font-style:italic}.tx-style-normal{font-style:normal}.lh-base{line-height:1.5}.lh-normal{line-height:normal}.lh-0{line-height:0}.lh--1{line-height:.1}.lh--2{line-height:.2}.lh--3{line-height:.3}.lh--4{line-height:.4}.lh--5{line-height:.5}.lh--6{line-height:.6}.lh--7{line-height:.7}.lh--8{line-height:.8}.lh--9{line-height:.9}.lh-1{line-height:1.1}.lh-2{line-height:1.2}.lh-3{line-height:1.3}.lh-4{line-height:1.4}.lh-5{line-height:1.5}.lh-6{line-height:1.6}.lh-7{line-height:1.7}.lh-8{line-height:1.8}.lh-9{line-height:1.9}.lh-10{line-height:2.0}.lh-11{line-height:2.1}.lh-12{line-height:2.2}.lh-13{line-height:2.3}.lh-14{line-height:2.4}.lh-15{line-height:2.5}.valign-top{vertical-align:top}.valign-middle{vertical-align:middle}.valign-bottom{vertical-align:baseline}.valign-top-f{vertical-align:top !important}.valign-middle-f{vertical-align:middle !important}.valign-bottom-f{vertical-align:baseline !important}.tx-base{font-size:.875rem}.tx-8{font-size:8px}.tx-8-f{font-size:8px !important}.tx-9{font-size:9px}.tx-9-f{font-size:9px !important}.tx-10{font-size:10px}.tx-10-f{font-size:10px !important}.tx-11{font-size:11px}.tx-11-f{font-size:11px !important}.tx-12{font-size:12px}.tx-12-f{font-size:12px !important}.tx-13{font-size:13px}.tx-13-f{font-size:13px !important}.tx-14{font-size:14px}.tx-14-f{font-size:14px !important}.tx-15{font-size:15px}.tx-15-f{font-size:15px !important}.tx-16{font-size:16px}.tx-16-f{font-size:16px !important}.tx-18{font-size:18px}.tx-18-f{font-size:18px !important}.tx-20{font-size:20px}.tx-20-f{font-size:20px !important}.tx-22{font-size:22px}.tx-22-f{font-size:22px !important}.tx-24{font-size:24px}.tx-24-f{font-size:24px !important}.tx-26{font-size:26px}.tx-26-f{font-size:26px !important}.tx-28{font-size:28px}.tx-28-f{font-size:28px !important}.tx-30{font-size:30px}.tx-30-f{font-size:30px !important}.tx-32{font-size:32px}.tx-32-f{font-size:32px !important}.tx-34{font-size:34px}.tx-34-f{font-size:34px !important}.tx-36{font-size:36px}.tx-36-f{font-size:36px !important}.tx-38{font-size:38px}.tx-38-f{font-size:38px !important}.tx-40{font-size:40px}.tx-40-f{font-size:40px !important}.tx-42{font-size:42px}.tx-42-f{font-size:42px !important}.tx-44{font-size:44px}.tx-44-f{font-size:44px !important}.tx-46{font-size:46px}.tx-46-f{font-size:46px !important}.tx-48{font-size:48px}.tx-48-f{font-size:48px !important}.tx-50{font-size:50px}.tx-50-f{font-size:50px !important}.tx-52{font-size:52px}.tx-52-f{font-size:52px !important}.tx-54{font-size:54px}.tx-54-f{font-size:54px !important}.tx-56{font-size:56px}.tx-56-f{font-size:56px !important}.tx-58{font-size:58px}.tx-58-f{font-size:58px !important}.tx-60{font-size:60px}.tx-60-f{font-size:60px !important}.tx-62{font-size:62px}.tx-62-f{font-size:62px !important}.tx-64{font-size:64px}.tx-64-f{font-size:64px !important}.tx-66{font-size:66px}.tx-66-f{font-size:66px !important}.tx-68{font-size:68px}.tx-68-f{font-size:68px !important}.tx-70{font-size:70px}.tx-70-f{font-size:70px !important}.tx-72{font-size:72px}.tx-72-f{font-size:72px !important}.tx-74{font-size:74px}.tx-74-f{font-size:74px !important}.tx-76{font-size:76px}.tx-76-f{font-size:76px !important}.tx-78{font-size:78px}.tx-78-f{font-size:78px !important}.tx-80{font-size:80px}.tx-80-f{font-size:80px !important}.tx-82{font-size:82px}.tx-82-f{font-size:82px !important}.tx-84{font-size:84px}.tx-84-f{font-size:84px !important}.tx-86{font-size:86px}.tx-86-f{font-size:86px !important}.tx-88{font-size:88px}.tx-88-f{font-size:88px !important}.tx-90{font-size:90px}.tx-90-f{font-size:90px !important}.tx-92{font-size:92px}.tx-92-f{font-size:92px !important}.tx-94{font-size:94px}.tx-94-f{font-size:94px !important}.tx-96{font-size:96px}.tx-96-f{font-size:96px !important}.tx-98{font-size:98px}.tx-98-f{font-size:98px !important}.tx-100{font-size:100px}.tx-100-f{font-size:100px !important}.tx-102{font-size:102px}.tx-102-f{font-size:102px !important}.tx-104{font-size:104px}.tx-104-f{font-size:104px !important}.tx-106{font-size:106px}.tx-106-f{font-size:106px !important}.tx-108{font-size:108px}.tx-108-f{font-size:108px !important}.tx-110{font-size:110px}.tx-110-f{font-size:110px !important}.tx-112{font-size:112px}.tx-112-f{font-size:112px !important}.tx-114{font-size:114px}.tx-114-f{font-size:114px !important}.tx-116{font-size:116px}.tx-116-f{font-size:116px !important}.tx-118{font-size:118px}.tx-118-f{font-size:118px !important}.tx-120{font-size:120px}.tx-120-f{font-size:120px !important}.tx-122{font-size:122px}.tx-122-f{font-size:122px !important}.tx-124{font-size:124px}.tx-124-f{font-size:124px !important}.tx-126{font-size:126px}.tx-126-f{font-size:126px !important}.tx-128{font-size:128px}.tx-128-f{font-size:128px !important}.tx-130{font-size:130px}.tx-130-f{font-size:130px !important}.tx-132{font-size:132px}.tx-132-f{font-size:132px !important}.tx-134{font-size:134px}.tx-134-f{font-size:134px !important}.tx-136{font-size:136px}.tx-136-f{font-size:136px !important}.tx-138{font-size:138px}.tx-138-f{font-size:138px !important}.tx-140{font-size:140px}.tx-140-f{font-size:140px !important}@media (min-width: 480px){.tx-xs-8{font-size:8px}.tx-xs-8-f{font-size:8px !important}.tx-xs-9{font-size:9px}.tx-xs-9-f{font-size:9px !important}.tx-xs-10{font-size:10px}.tx-xs-10-f{font-size:10px !important}.tx-xs-11{font-size:11px}.tx-xs-11-f{font-size:11px !important}.tx-xs-12{font-size:12px}.tx-xs-12-f{font-size:12px !important}.tx-xs-13{font-size:13px}.tx-xs-13-f{font-size:13px !important}.tx-xs-14{font-size:14px}.tx-xs-14-f{font-size:14px !important}.tx-xs-15{font-size:15px}.tx-xs-15-f{font-size:15px !important}.tx-xs-16{font-size:16px}.tx-xs-16-f{font-size:16px !important}.tx-xs-18{font-size:18px}.tx-xs-18-f{font-size:18px !important}.tx-xs-20{font-size:20px}.tx-xs-20-f{font-size:20px !important}.tx-xs-22{font-size:22px}.tx-xs-22-f{font-size:22px !important}.tx-xs-24{font-size:24px}.tx-xs-24-f{font-size:24px !important}.tx-xs-26{font-size:26px}.tx-xs-26-f{font-size:26px !important}.tx-xs-28{font-size:28px}.tx-xs-28-f{font-size:28px !important}.tx-xs-30{font-size:30px}.tx-xs-30-f{font-size:30px !important}.tx-xs-32{font-size:32px}.tx-xs-32-f{font-size:32px !important}.tx-xs-34{font-size:34px}.tx-xs-34-f{font-size:34px !important}.tx-xs-36{font-size:36px}.tx-xs-36-f{font-size:36px !important}.tx-xs-38{font-size:38px}.tx-xs-38-f{font-size:38px !important}.tx-xs-40{font-size:40px}.tx-xs-40-f{font-size:40px !important}.tx-xs-42{font-size:42px}.tx-xs-42-f{font-size:42px !important}.tx-xs-44{font-size:44px}.tx-xs-44-f{font-size:44px !important}.tx-xs-46{font-size:46px}.tx-xs-46-f{font-size:46px !important}.tx-xs-48{font-size:48px}.tx-xs-48-f{font-size:48px !important}.tx-xs-50{font-size:50px}.tx-xs-50-f{font-size:50px !important}.tx-xs-52{font-size:52px}.tx-xs-52-f{font-size:52px !important}.tx-xs-54{font-size:54px}.tx-xs-54-f{font-size:54px !important}.tx-xs-56{font-size:56px}.tx-xs-56-f{font-size:56px !important}.tx-xs-58{font-size:58px}.tx-xs-58-f{font-size:58px !important}.tx-xs-60{font-size:60px}.tx-xs-60-f{font-size:60px !important}.tx-xs-62{font-size:62px}.tx-xs-62-f{font-size:62px !important}.tx-xs-64{font-size:64px}.tx-xs-64-f{font-size:64px !important}.tx-xs-66{font-size:66px}.tx-xs-66-f{font-size:66px !important}.tx-xs-68{font-size:68px}.tx-xs-68-f{font-size:68px !important}.tx-xs-70{font-size:70px}.tx-xs-70-f{font-size:70px !important}.tx-xs-72{font-size:72px}.tx-xs-72-f{font-size:72px !important}.tx-xs-74{font-size:74px}.tx-xs-74-f{font-size:74px !important}.tx-xs-76{font-size:76px}.tx-xs-76-f{font-size:76px !important}.tx-xs-78{font-size:78px}.tx-xs-78-f{font-size:78px !important}.tx-xs-80{font-size:80px}.tx-xs-80-f{font-size:80px !important}.tx-xs-82{font-size:82px}.tx-xs-82-f{font-size:82px !important}.tx-xs-84{font-size:84px}.tx-xs-84-f{font-size:84px !important}.tx-xs-86{font-size:86px}.tx-xs-86-f{font-size:86px !important}.tx-xs-88{font-size:88px}.tx-xs-88-f{font-size:88px !important}.tx-xs-90{font-size:90px}.tx-xs-90-f{font-size:90px !important}.tx-xs-92{font-size:92px}.tx-xs-92-f{font-size:92px !important}.tx-xs-94{font-size:94px}.tx-xs-94-f{font-size:94px !important}.tx-xs-96{font-size:96px}.tx-xs-96-f{font-size:96px !important}.tx-xs-98{font-size:98px}.tx-xs-98-f{font-size:98px !important}.tx-xs-100{font-size:100px}.tx-xs-100-f{font-size:100px !important}.tx-xs-102{font-size:102px}.tx-xs-102-f{font-size:102px !important}.tx-xs-104{font-size:104px}.tx-xs-104-f{font-size:104px !important}.tx-xs-106{font-size:106px}.tx-xs-106-f{font-size:106px !important}.tx-xs-108{font-size:108px}.tx-xs-108-f{font-size:108px !important}.tx-xs-110{font-size:110px}.tx-xs-110-f{font-size:110px !important}.tx-xs-112{font-size:112px}.tx-xs-112-f{font-size:112px !important}.tx-xs-114{font-size:114px}.tx-xs-114-f{font-size:114px !important}.tx-xs-116{font-size:116px}.tx-xs-116-f{font-size:116px !important}.tx-xs-118{font-size:118px}.tx-xs-118-f{font-size:118px !important}.tx-xs-120{font-size:120px}.tx-xs-120-f{font-size:120px !important}.tx-xs-122{font-size:122px}.tx-xs-122-f{font-size:122px !important}.tx-xs-124{font-size:124px}.tx-xs-124-f{font-size:124px !important}.tx-xs-126{font-size:126px}.tx-xs-126-f{font-size:126px !important}.tx-xs-128{font-size:128px}.tx-xs-128-f{font-size:128px !important}.tx-xs-130{font-size:130px}.tx-xs-130-f{font-size:130px !important}.tx-xs-132{font-size:132px}.tx-xs-132-f{font-size:132px !important}.tx-xs-134{font-size:134px}.tx-xs-134-f{font-size:134px !important}.tx-xs-136{font-size:136px}.tx-xs-136-f{font-size:136px !important}.tx-xs-138{font-size:138px}.tx-xs-138-f{font-size:138px !important}.tx-xs-140{font-size:140px}.tx-xs-140-f{font-size:140px !important}.tx-xs-base{font-size:.875rem}.tx-xs-bold{font-weight:700}.tx-xs-semibold{font-weight:600}.tx-xs-medium{font-weight:500}.tx-xs-normal{font-weight:400}.tx-xs-light{font-weight:300}.tx-xs-thin{font-weight:200}.tx-xs-xthin{font-weight:100}.lh-xs-0{line-height:0}.lh-xs-1{line-height:1.1}.lh-xs-2{line-height:1.2}.lh-xs-3{line-height:1.3}.lh-xs-4{line-height:1.4}.lh-xs-5{line-height:1.5}.lh-xs-6{line-height:1.6}.lh-xs-7{line-height:1.7}.lh-xs-8{line-height:1.8}.lh-xs-9{line-height:1.9}.lh-xs-10{line-height:2.0}.lh-xs-11{line-height:2.1}.lh-xs-12{line-height:2.2}.lh-xs-13{line-height:2.3}.lh-xs-14{line-height:2.4}.lh-xs-15{line-height:2.5}.tx-xs-center{text-align:center}.tx-xs-right{text-align:right}.tx-xs-left{text-align:left}.tx-xs-center-f{text-align:center !important}.tx-xs-right-f{text-align:right !important}.tx-xs-left-f{text-align:left !important}}@media (min-width: 576px){.tx-sm-8{font-size:8px}.tx-sm-8-f{font-size:8px !important}.tx-sm-9{font-size:9px}.tx-sm-9-f{font-size:9px !important}.tx-sm-10{font-size:10px}.tx-sm-10-f{font-size:10px !important}.tx-sm-11{font-size:11px}.tx-sm-11-f{font-size:11px !important}.tx-sm-12{font-size:12px}.tx-sm-12-f{font-size:12px !important}.tx-sm-13{font-size:13px}.tx-sm-13-f{font-size:13px !important}.tx-sm-14{font-size:14px}.tx-sm-14-f{font-size:14px !important}.tx-sm-15{font-size:15px}.tx-sm-15-f{font-size:15px !important}.tx-sm-16{font-size:16px}.tx-sm-16-f{font-size:16px !important}.tx-sm-18{font-size:18px}.tx-sm-18-f{font-size:18px !important}.tx-sm-20{font-size:20px}.tx-sm-20-f{font-size:20px !important}.tx-sm-22{font-size:22px}.tx-sm-22-f{font-size:22px !important}.tx-sm-24{font-size:24px}.tx-sm-24-f{font-size:24px !important}.tx-sm-26{font-size:26px}.tx-sm-26-f{font-size:26px !important}.tx-sm-28{font-size:28px}.tx-sm-28-f{font-size:28px !important}.tx-sm-30{font-size:30px}.tx-sm-30-f{font-size:30px !important}.tx-sm-32{font-size:32px}.tx-sm-32-f{font-size:32px !important}.tx-sm-34{font-size:34px}.tx-sm-34-f{font-size:34px !important}.tx-sm-36{font-size:36px}.tx-sm-36-f{font-size:36px !important}.tx-sm-38{font-size:38px}.tx-sm-38-f{font-size:38px !important}.tx-sm-40{font-size:40px}.tx-sm-40-f{font-size:40px !important}.tx-sm-42{font-size:42px}.tx-sm-42-f{font-size:42px !important}.tx-sm-44{font-size:44px}.tx-sm-44-f{font-size:44px !important}.tx-sm-46{font-size:46px}.tx-sm-46-f{font-size:46px !important}.tx-sm-48{font-size:48px}.tx-sm-48-f{font-size:48px !important}.tx-sm-50{font-size:50px}.tx-sm-50-f{font-size:50px !important}.tx-sm-52{font-size:52px}.tx-sm-52-f{font-size:52px !important}.tx-sm-54{font-size:54px}.tx-sm-54-f{font-size:54px !important}.tx-sm-56{font-size:56px}.tx-sm-56-f{font-size:56px !important}.tx-sm-58{font-size:58px}.tx-sm-58-f{font-size:58px !important}.tx-sm-60{font-size:60px}.tx-sm-60-f{font-size:60px !important}.tx-sm-62{font-size:62px}.tx-sm-62-f{font-size:62px !important}.tx-sm-64{font-size:64px}.tx-sm-64-f{font-size:64px !important}.tx-sm-66{font-size:66px}.tx-sm-66-f{font-size:66px !important}.tx-sm-68{font-size:68px}.tx-sm-68-f{font-size:68px !important}.tx-sm-70{font-size:70px}.tx-sm-70-f{font-size:70px !important}.tx-sm-72{font-size:72px}.tx-sm-72-f{font-size:72px !important}.tx-sm-74{font-size:74px}.tx-sm-74-f{font-size:74px !important}.tx-sm-76{font-size:76px}.tx-sm-76-f{font-size:76px !important}.tx-sm-78{font-size:78px}.tx-sm-78-f{font-size:78px !important}.tx-sm-80{font-size:80px}.tx-sm-80-f{font-size:80px !important}.tx-sm-82{font-size:82px}.tx-sm-82-f{font-size:82px !important}.tx-sm-84{font-size:84px}.tx-sm-84-f{font-size:84px !important}.tx-sm-86{font-size:86px}.tx-sm-86-f{font-size:86px !important}.tx-sm-88{font-size:88px}.tx-sm-88-f{font-size:88px !important}.tx-sm-90{font-size:90px}.tx-sm-90-f{font-size:90px !important}.tx-sm-92{font-size:92px}.tx-sm-92-f{font-size:92px !important}.tx-sm-94{font-size:94px}.tx-sm-94-f{font-size:94px !important}.tx-sm-96{font-size:96px}.tx-sm-96-f{font-size:96px !important}.tx-sm-98{font-size:98px}.tx-sm-98-f{font-size:98px !important}.tx-sm-100{font-size:100px}.tx-sm-100-f{font-size:100px !important}.tx-sm-102{font-size:102px}.tx-sm-102-f{font-size:102px !important}.tx-sm-104{font-size:104px}.tx-sm-104-f{font-size:104px !important}.tx-sm-106{font-size:106px}.tx-sm-106-f{font-size:106px !important}.tx-sm-108{font-size:108px}.tx-sm-108-f{font-size:108px !important}.tx-sm-110{font-size:110px}.tx-sm-110-f{font-size:110px !important}.tx-sm-112{font-size:112px}.tx-sm-112-f{font-size:112px !important}.tx-sm-114{font-size:114px}.tx-sm-114-f{font-size:114px !important}.tx-sm-116{font-size:116px}.tx-sm-116-f{font-size:116px !important}.tx-sm-118{font-size:118px}.tx-sm-118-f{font-size:118px !important}.tx-sm-120{font-size:120px}.tx-sm-120-f{font-size:120px !important}.tx-sm-122{font-size:122px}.tx-sm-122-f{font-size:122px !important}.tx-sm-124{font-size:124px}.tx-sm-124-f{font-size:124px !important}.tx-sm-126{font-size:126px}.tx-sm-126-f{font-size:126px !important}.tx-sm-128{font-size:128px}.tx-sm-128-f{font-size:128px !important}.tx-sm-130{font-size:130px}.tx-sm-130-f{font-size:130px !important}.tx-sm-132{font-size:132px}.tx-sm-132-f{font-size:132px !important}.tx-sm-134{font-size:134px}.tx-sm-134-f{font-size:134px !important}.tx-sm-136{font-size:136px}.tx-sm-136-f{font-size:136px !important}.tx-sm-138{font-size:138px}.tx-sm-138-f{font-size:138px !important}.tx-sm-140{font-size:140px}.tx-sm-140-f{font-size:140px !important}.tx-sm-base{font-size:.875rem}.tx-sm-bold{font-weight:700}.tx-sm-semibold{font-weight:600}.tx-sm-medium{font-weight:500}.tx-sm-normal{font-weight:400}.tx-sm-light{font-weight:300}.tx-sm-thin{font-weight:200}.tx-sm-xthin{font-weight:100}.lh-sm-0{line-height:0}.lh-sm-1{line-height:1.1}.lh-sm-2{line-height:1.2}.lh-sm-3{line-height:1.3}.lh-sm-4{line-height:1.4}.lh-sm-5{line-height:1.5}.lh-sm-6{line-height:1.6}.lh-sm-7{line-height:1.7}.lh-sm-8{line-height:1.8}.lh-sm-9{line-height:1.9}.lh-sm-10{line-height:2.0}.lh-sm-11{line-height:2.1}.lh-sm-12{line-height:2.2}.lh-sm-13{line-height:2.3}.lh-sm-14{line-height:2.4}.lh-sm-15{line-height:2.5}.tx-sm-center{text-align:center}.tx-sm-right{text-align:right}.tx-sm-left{text-align:left}.tx-sm-center-f{text-align:center !important}.tx-sm-right-f{text-align:right !important}.tx-sm-left-f{text-align:left !important}}@media (min-width: 768px){.tx-md-8{font-size:8px}.tx-md-8-f{font-size:8px !important}.tx-md-9{font-size:9px}.tx-md-9-f{font-size:9px !important}.tx-md-10{font-size:10px}.tx-md-10-f{font-size:10px !important}.tx-md-11{font-size:11px}.tx-md-11-f{font-size:11px !important}.tx-md-12{font-size:12px}.tx-md-12-f{font-size:12px !important}.tx-md-13{font-size:13px}.tx-md-13-f{font-size:13px !important}.tx-md-14{font-size:14px}.tx-md-14-f{font-size:14px !important}.tx-md-15{font-size:15px}.tx-md-15-f{font-size:15px !important}.tx-md-16{font-size:16px}.tx-md-16-f{font-size:16px !important}.tx-md-18{font-size:18px}.tx-md-18-f{font-size:18px !important}.tx-md-20{font-size:20px}.tx-md-20-f{font-size:20px !important}.tx-md-22{font-size:22px}.tx-md-22-f{font-size:22px !important}.tx-md-24{font-size:24px}.tx-md-24-f{font-size:24px !important}.tx-md-26{font-size:26px}.tx-md-26-f{font-size:26px !important}.tx-md-28{font-size:28px}.tx-md-28-f{font-size:28px !important}.tx-md-30{font-size:30px}.tx-md-30-f{font-size:30px !important}.tx-md-32{font-size:32px}.tx-md-32-f{font-size:32px !important}.tx-md-34{font-size:34px}.tx-md-34-f{font-size:34px !important}.tx-md-36{font-size:36px}.tx-md-36-f{font-size:36px !important}.tx-md-38{font-size:38px}.tx-md-38-f{font-size:38px !important}.tx-md-40{font-size:40px}.tx-md-40-f{font-size:40px !important}.tx-md-42{font-size:42px}.tx-md-42-f{font-size:42px !important}.tx-md-44{font-size:44px}.tx-md-44-f{font-size:44px !important}.tx-md-46{font-size:46px}.tx-md-46-f{font-size:46px !important}.tx-md-48{font-size:48px}.tx-md-48-f{font-size:48px !important}.tx-md-50{font-size:50px}.tx-md-50-f{font-size:50px !important}.tx-md-52{font-size:52px}.tx-md-52-f{font-size:52px !important}.tx-md-54{font-size:54px}.tx-md-54-f{font-size:54px !important}.tx-md-56{font-size:56px}.tx-md-56-f{font-size:56px !important}.tx-md-58{font-size:58px}.tx-md-58-f{font-size:58px !important}.tx-md-60{font-size:60px}.tx-md-60-f{font-size:60px !important}.tx-md-62{font-size:62px}.tx-md-62-f{font-size:62px !important}.tx-md-64{font-size:64px}.tx-md-64-f{font-size:64px !important}.tx-md-66{font-size:66px}.tx-md-66-f{font-size:66px !important}.tx-md-68{font-size:68px}.tx-md-68-f{font-size:68px !important}.tx-md-70{font-size:70px}.tx-md-70-f{font-size:70px !important}.tx-md-72{font-size:72px}.tx-md-72-f{font-size:72px !important}.tx-md-74{font-size:74px}.tx-md-74-f{font-size:74px !important}.tx-md-76{font-size:76px}.tx-md-76-f{font-size:76px !important}.tx-md-78{font-size:78px}.tx-md-78-f{font-size:78px !important}.tx-md-80{font-size:80px}.tx-md-80-f{font-size:80px !important}.tx-md-82{font-size:82px}.tx-md-82-f{font-size:82px !important}.tx-md-84{font-size:84px}.tx-md-84-f{font-size:84px !important}.tx-md-86{font-size:86px}.tx-md-86-f{font-size:86px !important}.tx-md-88{font-size:88px}.tx-md-88-f{font-size:88px !important}.tx-md-90{font-size:90px}.tx-md-90-f{font-size:90px !important}.tx-md-92{font-size:92px}.tx-md-92-f{font-size:92px !important}.tx-md-94{font-size:94px}.tx-md-94-f{font-size:94px !important}.tx-md-96{font-size:96px}.tx-md-96-f{font-size:96px !important}.tx-md-98{font-size:98px}.tx-md-98-f{font-size:98px !important}.tx-md-100{font-size:100px}.tx-md-100-f{font-size:100px !important}.tx-md-102{font-size:102px}.tx-md-102-f{font-size:102px !important}.tx-md-104{font-size:104px}.tx-md-104-f{font-size:104px !important}.tx-md-106{font-size:106px}.tx-md-106-f{font-size:106px !important}.tx-md-108{font-size:108px}.tx-md-108-f{font-size:108px !important}.tx-md-110{font-size:110px}.tx-md-110-f{font-size:110px !important}.tx-md-112{font-size:112px}.tx-md-112-f{font-size:112px !important}.tx-md-114{font-size:114px}.tx-md-114-f{font-size:114px !important}.tx-md-116{font-size:116px}.tx-md-116-f{font-size:116px !important}.tx-md-118{font-size:118px}.tx-md-118-f{font-size:118px !important}.tx-md-120{font-size:120px}.tx-md-120-f{font-size:120px !important}.tx-md-122{font-size:122px}.tx-md-122-f{font-size:122px !important}.tx-md-124{font-size:124px}.tx-md-124-f{font-size:124px !important}.tx-md-126{font-size:126px}.tx-md-126-f{font-size:126px !important}.tx-md-128{font-size:128px}.tx-md-128-f{font-size:128px !important}.tx-md-130{font-size:130px}.tx-md-130-f{font-size:130px !important}.tx-md-132{font-size:132px}.tx-md-132-f{font-size:132px !important}.tx-md-134{font-size:134px}.tx-md-134-f{font-size:134px !important}.tx-md-136{font-size:136px}.tx-md-136-f{font-size:136px !important}.tx-md-138{font-size:138px}.tx-md-138-f{font-size:138px !important}.tx-md-140{font-size:140px}.tx-md-140-f{font-size:140px !important}.tx-md-base{font-size:.875rem}.tx-md-bold{font-weight:700}.tx-md-semibold{font-weight:600}.tx-md-medium{font-weight:500}.tx-md-normal{font-weight:400}.tx-md-light{font-weight:300}.tx-md-thin{font-weight:200}.tx-md-xthin{font-weight:100}.lh-md-0{line-height:0}.lh-md-1{line-height:1.1}.lh-md-2{line-height:1.2}.lh-md-3{line-height:1.3}.lh-md-4{line-height:1.4}.lh-md-5{line-height:1.5}.lh-md-6{line-height:1.6}.lh-md-7{line-height:1.7}.lh-md-8{line-height:1.8}.lh-md-9{line-height:1.9}.lh-md-10{line-height:2.0}.lh-md-11{line-height:2.1}.lh-md-12{line-height:2.2}.lh-md-13{line-height:2.3}.lh-md-14{line-height:2.4}.lh-md-15{line-height:2.5}.tx-md-center{text-align:center}.tx-md-right{text-align:right}.tx-md-left{text-align:left}.tx-md-center-f{text-align:center !important}.tx-md-right-f{text-align:right !important}.tx-md-left-f{text-align:left !important}}@media (min-width: 992px){.tx-lg-8{font-size:8px}.tx-lg-8-f{font-size:8px !important}.tx-lg-9{font-size:9px}.tx-lg-9-f{font-size:9px !important}.tx-lg-10{font-size:10px}.tx-lg-10-f{font-size:10px !important}.tx-lg-11{font-size:11px}.tx-lg-11-f{font-size:11px !important}.tx-lg-12{font-size:12px}.tx-lg-12-f{font-size:12px !important}.tx-lg-13{font-size:13px}.tx-lg-13-f{font-size:13px !important}.tx-lg-14{font-size:14px}.tx-lg-14-f{font-size:14px !important}.tx-lg-15{font-size:15px}.tx-lg-15-f{font-size:15px !important}.tx-lg-16{font-size:16px}.tx-lg-16-f{font-size:16px !important}.tx-lg-18{font-size:18px}.tx-lg-18-f{font-size:18px !important}.tx-lg-20{font-size:20px}.tx-lg-20-f{font-size:20px !important}.tx-lg-22{font-size:22px}.tx-lg-22-f{font-size:22px !important}.tx-lg-24{font-size:24px}.tx-lg-24-f{font-size:24px !important}.tx-lg-26{font-size:26px}.tx-lg-26-f{font-size:26px !important}.tx-lg-28{font-size:28px}.tx-lg-28-f{font-size:28px !important}.tx-lg-30{font-size:30px}.tx-lg-30-f{font-size:30px !important}.tx-lg-32{font-size:32px}.tx-lg-32-f{font-size:32px !important}.tx-lg-34{font-size:34px}.tx-lg-34-f{font-size:34px !important}.tx-lg-36{font-size:36px}.tx-lg-36-f{font-size:36px !important}.tx-lg-38{font-size:38px}.tx-lg-38-f{font-size:38px !important}.tx-lg-40{font-size:40px}.tx-lg-40-f{font-size:40px !important}.tx-lg-42{font-size:42px}.tx-lg-42-f{font-size:42px !important}.tx-lg-44{font-size:44px}.tx-lg-44-f{font-size:44px !important}.tx-lg-46{font-size:46px}.tx-lg-46-f{font-size:46px !important}.tx-lg-48{font-size:48px}.tx-lg-48-f{font-size:48px !important}.tx-lg-50{font-size:50px}.tx-lg-50-f{font-size:50px !important}.tx-lg-52{font-size:52px}.tx-lg-52-f{font-size:52px !important}.tx-lg-54{font-size:54px}.tx-lg-54-f{font-size:54px !important}.tx-lg-56{font-size:56px}.tx-lg-56-f{font-size:56px !important}.tx-lg-58{font-size:58px}.tx-lg-58-f{font-size:58px !important}.tx-lg-60{font-size:60px}.tx-lg-60-f{font-size:60px !important}.tx-lg-62{font-size:62px}.tx-lg-62-f{font-size:62px !important}.tx-lg-64{font-size:64px}.tx-lg-64-f{font-size:64px !important}.tx-lg-66{font-size:66px}.tx-lg-66-f{font-size:66px !important}.tx-lg-68{font-size:68px}.tx-lg-68-f{font-size:68px !important}.tx-lg-70{font-size:70px}.tx-lg-70-f{font-size:70px !important}.tx-lg-72{font-size:72px}.tx-lg-72-f{font-size:72px !important}.tx-lg-74{font-size:74px}.tx-lg-74-f{font-size:74px !important}.tx-lg-76{font-size:76px}.tx-lg-76-f{font-size:76px !important}.tx-lg-78{font-size:78px}.tx-lg-78-f{font-size:78px !important}.tx-lg-80{font-size:80px}.tx-lg-80-f{font-size:80px !important}.tx-lg-82{font-size:82px}.tx-lg-82-f{font-size:82px !important}.tx-lg-84{font-size:84px}.tx-lg-84-f{font-size:84px !important}.tx-lg-86{font-size:86px}.tx-lg-86-f{font-size:86px !important}.tx-lg-88{font-size:88px}.tx-lg-88-f{font-size:88px !important}.tx-lg-90{font-size:90px}.tx-lg-90-f{font-size:90px !important}.tx-lg-92{font-size:92px}.tx-lg-92-f{font-size:92px !important}.tx-lg-94{font-size:94px}.tx-lg-94-f{font-size:94px !important}.tx-lg-96{font-size:96px}.tx-lg-96-f{font-size:96px !important}.tx-lg-98{font-size:98px}.tx-lg-98-f{font-size:98px !important}.tx-lg-100{font-size:100px}.tx-lg-100-f{font-size:100px !important}.tx-lg-102{font-size:102px}.tx-lg-102-f{font-size:102px !important}.tx-lg-104{font-size:104px}.tx-lg-104-f{font-size:104px !important}.tx-lg-106{font-size:106px}.tx-lg-106-f{font-size:106px !important}.tx-lg-108{font-size:108px}.tx-lg-108-f{font-size:108px !important}.tx-lg-110{font-size:110px}.tx-lg-110-f{font-size:110px !important}.tx-lg-112{font-size:112px}.tx-lg-112-f{font-size:112px !important}.tx-lg-114{font-size:114px}.tx-lg-114-f{font-size:114px !important}.tx-lg-116{font-size:116px}.tx-lg-116-f{font-size:116px !important}.tx-lg-118{font-size:118px}.tx-lg-118-f{font-size:118px !important}.tx-lg-120{font-size:120px}.tx-lg-120-f{font-size:120px !important}.tx-lg-122{font-size:122px}.tx-lg-122-f{font-size:122px !important}.tx-lg-124{font-size:124px}.tx-lg-124-f{font-size:124px !important}.tx-lg-126{font-size:126px}.tx-lg-126-f{font-size:126px !important}.tx-lg-128{font-size:128px}.tx-lg-128-f{font-size:128px !important}.tx-lg-130{font-size:130px}.tx-lg-130-f{font-size:130px !important}.tx-lg-132{font-size:132px}.tx-lg-132-f{font-size:132px !important}.tx-lg-134{font-size:134px}.tx-lg-134-f{font-size:134px !important}.tx-lg-136{font-size:136px}.tx-lg-136-f{font-size:136px !important}.tx-lg-138{font-size:138px}.tx-lg-138-f{font-size:138px !important}.tx-lg-140{font-size:140px}.tx-lg-140-f{font-size:140px !important}.tx-lg-base{font-size:.875rem}.tx-lg-bold{font-weight:700}.tx-lg-semibold{font-weight:600}.tx-lg-medium{font-weight:500}.tx-lg-normal{font-weight:400}.tx-lg-light{font-weight:300}.tx-lg-thin{font-weight:200}.tx-lg-xthin{font-weight:100}.lh-lg-0{line-height:0}.lh-lg-1{line-height:1.1}.lh-lg-2{line-height:1.2}.lh-lg-3{line-height:1.3}.lh-lg-4{line-height:1.4}.lh-lg-5{line-height:1.5}.lh-lg-6{line-height:1.6}.lh-lg-7{line-height:1.7}.lh-lg-8{line-height:1.8}.lh-lg-9{line-height:1.9}.lh-lg-10{line-height:2.0}.lh-lg-11{line-height:2.1}.lh-lg-12{line-height:2.2}.lh-lg-13{line-height:2.3}.lh-lg-14{line-height:2.4}.lh-lg-15{line-height:2.5}.tx-lg-center{text-align:center}.tx-lg-right{text-align:right}.tx-lg-left{text-align:left}.tx-lg-center-f{text-align:center !important}.tx-lg-right-f{text-align:right !important}.tx-lg-left-f{text-align:left !important}}@media (min-width: 1200px){.tx-xl-8{font-size:8px}.tx-xl-8-f{font-size:8px !important}.tx-xl-9{font-size:9px}.tx-xl-9-f{font-size:9px !important}.tx-xl-10{font-size:10px}.tx-xl-10-f{font-size:10px !important}.tx-xl-11{font-size:11px}.tx-xl-11-f{font-size:11px !important}.tx-xl-12{font-size:12px}.tx-xl-12-f{font-size:12px !important}.tx-xl-13{font-size:13px}.tx-xl-13-f{font-size:13px !important}.tx-xl-14{font-size:14px}.tx-xl-14-f{font-size:14px !important}.tx-xl-15{font-size:15px}.tx-xl-15-f{font-size:15px !important}.tx-xl-16{font-size:16px}.tx-xl-16-f{font-size:16px !important}.tx-xl-18{font-size:18px}.tx-xl-18-f{font-size:18px !important}.tx-xl-20{font-size:20px}.tx-xl-20-f{font-size:20px !important}.tx-xl-22{font-size:22px}.tx-xl-22-f{font-size:22px !important}.tx-xl-24{font-size:24px}.tx-xl-24-f{font-size:24px !important}.tx-xl-26{font-size:26px}.tx-xl-26-f{font-size:26px !important}.tx-xl-28{font-size:28px}.tx-xl-28-f{font-size:28px !important}.tx-xl-30{font-size:30px}.tx-xl-30-f{font-size:30px !important}.tx-xl-32{font-size:32px}.tx-xl-32-f{font-size:32px !important}.tx-xl-34{font-size:34px}.tx-xl-34-f{font-size:34px !important}.tx-xl-36{font-size:36px}.tx-xl-36-f{font-size:36px !important}.tx-xl-38{font-size:38px}.tx-xl-38-f{font-size:38px !important}.tx-xl-40{font-size:40px}.tx-xl-40-f{font-size:40px !important}.tx-xl-42{font-size:42px}.tx-xl-42-f{font-size:42px !important}.tx-xl-44{font-size:44px}.tx-xl-44-f{font-size:44px !important}.tx-xl-46{font-size:46px}.tx-xl-46-f{font-size:46px !important}.tx-xl-48{font-size:48px}.tx-xl-48-f{font-size:48px !important}.tx-xl-50{font-size:50px}.tx-xl-50-f{font-size:50px !important}.tx-xl-52{font-size:52px}.tx-xl-52-f{font-size:52px !important}.tx-xl-54{font-size:54px}.tx-xl-54-f{font-size:54px !important}.tx-xl-56{font-size:56px}.tx-xl-56-f{font-size:56px !important}.tx-xl-58{font-size:58px}.tx-xl-58-f{font-size:58px !important}.tx-xl-60{font-size:60px}.tx-xl-60-f{font-size:60px !important}.tx-xl-62{font-size:62px}.tx-xl-62-f{font-size:62px !important}.tx-xl-64{font-size:64px}.tx-xl-64-f{font-size:64px !important}.tx-xl-66{font-size:66px}.tx-xl-66-f{font-size:66px !important}.tx-xl-68{font-size:68px}.tx-xl-68-f{font-size:68px !important}.tx-xl-70{font-size:70px}.tx-xl-70-f{font-size:70px !important}.tx-xl-72{font-size:72px}.tx-xl-72-f{font-size:72px !important}.tx-xl-74{font-size:74px}.tx-xl-74-f{font-size:74px !important}.tx-xl-76{font-size:76px}.tx-xl-76-f{font-size:76px !important}.tx-xl-78{font-size:78px}.tx-xl-78-f{font-size:78px !important}.tx-xl-80{font-size:80px}.tx-xl-80-f{font-size:80px !important}.tx-xl-82{font-size:82px}.tx-xl-82-f{font-size:82px !important}.tx-xl-84{font-size:84px}.tx-xl-84-f{font-size:84px !important}.tx-xl-86{font-size:86px}.tx-xl-86-f{font-size:86px !important}.tx-xl-88{font-size:88px}.tx-xl-88-f{font-size:88px !important}.tx-xl-90{font-size:90px}.tx-xl-90-f{font-size:90px !important}.tx-xl-92{font-size:92px}.tx-xl-92-f{font-size:92px !important}.tx-xl-94{font-size:94px}.tx-xl-94-f{font-size:94px !important}.tx-xl-96{font-size:96px}.tx-xl-96-f{font-size:96px !important}.tx-xl-98{font-size:98px}.tx-xl-98-f{font-size:98px !important}.tx-xl-100{font-size:100px}.tx-xl-100-f{font-size:100px !important}.tx-xl-102{font-size:102px}.tx-xl-102-f{font-size:102px !important}.tx-xl-104{font-size:104px}.tx-xl-104-f{font-size:104px !important}.tx-xl-106{font-size:106px}.tx-xl-106-f{font-size:106px !important}.tx-xl-108{font-size:108px}.tx-xl-108-f{font-size:108px !important}.tx-xl-110{font-size:110px}.tx-xl-110-f{font-size:110px !important}.tx-xl-112{font-size:112px}.tx-xl-112-f{font-size:112px !important}.tx-xl-114{font-size:114px}.tx-xl-114-f{font-size:114px !important}.tx-xl-116{font-size:116px}.tx-xl-116-f{font-size:116px !important}.tx-xl-118{font-size:118px}.tx-xl-118-f{font-size:118px !important}.tx-xl-120{font-size:120px}.tx-xl-120-f{font-size:120px !important}.tx-xl-122{font-size:122px}.tx-xl-122-f{font-size:122px !important}.tx-xl-124{font-size:124px}.tx-xl-124-f{font-size:124px !important}.tx-xl-126{font-size:126px}.tx-xl-126-f{font-size:126px !important}.tx-xl-128{font-size:128px}.tx-xl-128-f{font-size:128px !important}.tx-xl-130{font-size:130px}.tx-xl-130-f{font-size:130px !important}.tx-xl-132{font-size:132px}.tx-xl-132-f{font-size:132px !important}.tx-xl-134{font-size:134px}.tx-xl-134-f{font-size:134px !important}.tx-xl-136{font-size:136px}.tx-xl-136-f{font-size:136px !important}.tx-xl-138{font-size:138px}.tx-xl-138-f{font-size:138px !important}.tx-xl-140{font-size:140px}.tx-xl-140-f{font-size:140px !important}.tx-xl-base{font-size:.875rem}.tx-xl-bold{font-weight:700}.tx-xl-semibold{font-weight:600}.tx-xl-medium{font-weight:500}.tx-xl-normal{font-weight:400}.tx-xl-light{font-weight:300}.tx-xl-thin{font-weight:200}.tx-xl-xthin{font-weight:100}.lh-xl-0{line-height:0}.lh-xl-1{line-height:1.1}.lh-xl-2{line-height:1.2}.lh-xl-3{line-height:1.3}.lh-xl-4{line-height:1.4}.lh-xl-5{line-height:1.5}.lh-xl-6{line-height:1.6}.lh-xl-7{line-height:1.7}.lh-xl-8{line-height:1.8}.lh-xl-9{line-height:1.9}.lh-xl-10{line-height:2.0}.lh-xl-11{line-height:2.1}.lh-xl-12{line-height:2.2}.lh-xl-13{line-height:2.3}.lh-xl-14{line-height:2.4}.lh-xl-15{line-height:2.5}.tx-xl-center{text-align:center}.tx-xl-right{text-align:right}.tx-xl-left{text-align:left}.tx-xl-center-f{text-align:center !important}.tx-xl-right-f{text-align:right !important}.tx-xl-left-f{text-align:left !important}}.wd-1{width:1px}.wd-2{width:2px}.wd-3{width:3px}.wd-4{width:4px}.wd-6{width:6px}.wd-7{width:7px}.wd-8{width:8px}.wd-9{width:9px}.wd-280{width:280px}.wd-5{width:5px}.wd-5p{width:5%}.mx-wd-5p{max-width:5%}.mn-wd-5p{min-width:5%}.wd-5-f{width:5px !important}.wd-5p-f{width:5% !important}.mx-wd-5p-f{max-width:5% !important}.mn-wd-5p-f{min-width:5% !important}.wd-10{width:10px}.wd-10p{width:10%}.mx-wd-10p{max-width:10%}.mn-wd-10p{min-width:10%}.wd-10-f{width:10px !important}.wd-10p-f{width:10% !important}.mx-wd-10p-f{max-width:10% !important}.mn-wd-10p-f{min-width:10% !important}.wd-15{width:15px}.wd-15p{width:15%}.mx-wd-15p{max-width:15%}.mn-wd-15p{min-width:15%}.wd-15-f{width:15px !important}.wd-15p-f{width:15% !important}.mx-wd-15p-f{max-width:15% !important}.mn-wd-15p-f{min-width:15% !important}.wd-20{width:20px}.wd-20p{width:20%}.mx-wd-20p{max-width:20%}.mn-wd-20p{min-width:20%}.wd-20-f{width:20px !important}.wd-20p-f{width:20% !important}.mx-wd-20p-f{max-width:20% !important}.mn-wd-20p-f{min-width:20% !important}.wd-25{width:25px}.wd-25p{width:25%}.mx-wd-25p{max-width:25%}.mn-wd-25p{min-width:25%}.wd-25-f{width:25px !important}.wd-25p-f{width:25% !important}.mx-wd-25p-f{max-width:25% !important}.mn-wd-25p-f{min-width:25% !important}.wd-30{width:30px}.wd-30p{width:30%}.mx-wd-30p{max-width:30%}.mn-wd-30p{min-width:30%}.wd-30-f{width:30px !important}.wd-30p-f{width:30% !important}.mx-wd-30p-f{max-width:30% !important}.mn-wd-30p-f{min-width:30% !important}.wd-35{width:35px}.wd-35p{width:35%}.mx-wd-35p{max-width:35%}.mn-wd-35p{min-width:35%}.wd-35-f{width:35px !important}.wd-35p-f{width:35% !important}.mx-wd-35p-f{max-width:35% !important}.mn-wd-35p-f{min-width:35% !important}.wd-40{width:40px}.wd-40p{width:40%}.mx-wd-40p{max-width:40%}.mn-wd-40p{min-width:40%}.wd-40-f{width:40px !important}.wd-40p-f{width:40% !important}.mx-wd-40p-f{max-width:40% !important}.mn-wd-40p-f{min-width:40% !important}.wd-45{width:45px}.wd-45p{width:45%}.mx-wd-45p{max-width:45%}.mn-wd-45p{min-width:45%}.wd-45-f{width:45px !important}.wd-45p-f{width:45% !important}.mx-wd-45p-f{max-width:45% !important}.mn-wd-45p-f{min-width:45% !important}.wd-50{width:50px}.wd-50p{width:50%}.mx-wd-50p{max-width:50%}.mn-wd-50p{min-width:50%}.wd-50-f{width:50px !important}.wd-50p-f{width:50% !important}.mx-wd-50p-f{max-width:50% !important}.mn-wd-50p-f{min-width:50% !important}.wd-55{width:55px}.wd-55p{width:55%}.mx-wd-55p{max-width:55%}.mn-wd-55p{min-width:55%}.wd-55-f{width:55px !important}.wd-55p-f{width:55% !important}.mx-wd-55p-f{max-width:55% !important}.mn-wd-55p-f{min-width:55% !important}.wd-60{width:60px}.wd-60p{width:60%}.mx-wd-60p{max-width:60%}.mn-wd-60p{min-width:60%}.wd-60-f{width:60px !important}.wd-60p-f{width:60% !important}.mx-wd-60p-f{max-width:60% !important}.mn-wd-60p-f{min-width:60% !important}.wd-65{width:65px}.wd-65p{width:65%}.mx-wd-65p{max-width:65%}.mn-wd-65p{min-width:65%}.wd-65-f{width:65px !important}.wd-65p-f{width:65% !important}.mx-wd-65p-f{max-width:65% !important}.mn-wd-65p-f{min-width:65% !important}.wd-70{width:70px}.wd-70p{width:70%}.mx-wd-70p{max-width:70%}.mn-wd-70p{min-width:70%}.wd-70-f{width:70px !important}.wd-70p-f{width:70% !important}.mx-wd-70p-f{max-width:70% !important}.mn-wd-70p-f{min-width:70% !important}.wd-75{width:75px}.wd-75p{width:75%}.mx-wd-75p{max-width:75%}.mn-wd-75p{min-width:75%}.wd-75-f{width:75px !important}.wd-75p-f{width:75% !important}.mx-wd-75p-f{max-width:75% !important}.mn-wd-75p-f{min-width:75% !important}.wd-80{width:80px}.wd-80p{width:80%}.mx-wd-80p{max-width:80%}.mn-wd-80p{min-width:80%}.wd-80-f{width:80px !important}.wd-80p-f{width:80% !important}.mx-wd-80p-f{max-width:80% !important}.mn-wd-80p-f{min-width:80% !important}.wd-85{width:85px}.wd-85p{width:85%}.mx-wd-85p{max-width:85%}.mn-wd-85p{min-width:85%}.wd-85-f{width:85px !important}.wd-85p-f{width:85% !important}.mx-wd-85p-f{max-width:85% !important}.mn-wd-85p-f{min-width:85% !important}.wd-90{width:90px}.wd-90p{width:90%}.mx-wd-90p{max-width:90%}.mn-wd-90p{min-width:90%}.wd-90-f{width:90px !important}.wd-90p-f{width:90% !important}.mx-wd-90p-f{max-width:90% !important}.mn-wd-90p-f{min-width:90% !important}.wd-95{width:95px}.wd-95p{width:95%}.mx-wd-95p{max-width:95%}.mn-wd-95p{min-width:95%}.wd-95-f{width:95px !important}.wd-95p-f{width:95% !important}.mx-wd-95p-f{max-width:95% !important}.mn-wd-95p-f{min-width:95% !important}.wd-100{width:100px}.wd-100p{width:100%}.mx-wd-100p{max-width:100%}.mn-wd-100p{min-width:100%}.wd-100-f{width:100px !important}.wd-100p-f{width:100% !important}.mx-wd-100p-f{max-width:100% !important}.mn-wd-100p-f{min-width:100% !important}.wd-150{width:150px}.wd-150-f{width:150px !important}.wd-200{width:200px}.wd-200-f{width:200px !important}.wd-250{width:250px}.wd-250-f{width:250px !important}.wd-300{width:300px}.wd-300-f{width:300px !important}.wd-350{width:350px}.wd-350-f{width:350px !important}.wd-400{width:400px}.wd-400-f{width:400px !important}.wd-450{width:450px}.wd-450-f{width:450px !important}.wd-500{width:500px}.wd-500-f{width:500px !important}.wd-550{width:550px}.wd-550-f{width:550px !important}.wd-600{width:600px}.wd-600-f{width:600px !important}.wd-650{width:650px}.wd-650-f{width:650px !important}.wd-700{width:700px}.wd-700-f{width:700px !important}.wd-750{width:750px}.wd-750-f{width:750px !important}.wd-800{width:800px}.wd-800-f{width:800px !important}.wd-850{width:850px}.wd-850-f{width:850px !important}.wd-900{width:900px}.wd-900-f{width:900px !important}.wd-950{width:950px}.wd-950-f{width:950px !important}.wd-1000{width:1000px}.wd-1000-f{width:1000px !important}@media (min-width: 480px){.wd-xs-5{width:5px}.wd-xs-5p{width:5%}.mx-wd-xs-5p{max-width:5%}.mn-wd-xs-5p{min-width:5%}.wd-xs-5-f{width:5px !important}.wd-xs-5p-f{width:5% !important}.mx-wd-xs-5p-f{max-width:5% !important}.mn-wd-xs-5p-f{min-width:5% !important}.wd-xs-10{width:10px}.wd-xs-10p{width:10%}.mx-wd-xs-10p{max-width:10%}.mn-wd-xs-10p{min-width:10%}.wd-xs-10-f{width:10px !important}.wd-xs-10p-f{width:10% !important}.mx-wd-xs-10p-f{max-width:10% !important}.mn-wd-xs-10p-f{min-width:10% !important}.wd-xs-15{width:15px}.wd-xs-15p{width:15%}.mx-wd-xs-15p{max-width:15%}.mn-wd-xs-15p{min-width:15%}.wd-xs-15-f{width:15px !important}.wd-xs-15p-f{width:15% !important}.mx-wd-xs-15p-f{max-width:15% !important}.mn-wd-xs-15p-f{min-width:15% !important}.wd-xs-20{width:20px}.wd-xs-20p{width:20%}.mx-wd-xs-20p{max-width:20%}.mn-wd-xs-20p{min-width:20%}.wd-xs-20-f{width:20px !important}.wd-xs-20p-f{width:20% !important}.mx-wd-xs-20p-f{max-width:20% !important}.mn-wd-xs-20p-f{min-width:20% !important}.wd-xs-25{width:25px}.wd-xs-25p{width:25%}.mx-wd-xs-25p{max-width:25%}.mn-wd-xs-25p{min-width:25%}.wd-xs-25-f{width:25px !important}.wd-xs-25p-f{width:25% !important}.mx-wd-xs-25p-f{max-width:25% !important}.mn-wd-xs-25p-f{min-width:25% !important}.wd-xs-30{width:30px}.wd-xs-30p{width:30%}.mx-wd-xs-30p{max-width:30%}.mn-wd-xs-30p{min-width:30%}.wd-xs-30-f{width:30px !important}.wd-xs-30p-f{width:30% !important}.mx-wd-xs-30p-f{max-width:30% !important}.mn-wd-xs-30p-f{min-width:30% !important}.wd-xs-35{width:35px}.wd-xs-35p{width:35%}.mx-wd-xs-35p{max-width:35%}.mn-wd-xs-35p{min-width:35%}.wd-xs-35-f{width:35px !important}.wd-xs-35p-f{width:35% !important}.mx-wd-xs-35p-f{max-width:35% !important}.mn-wd-xs-35p-f{min-width:35% !important}.wd-xs-40{width:40px}.wd-xs-40p{width:40%}.mx-wd-xs-40p{max-width:40%}.mn-wd-xs-40p{min-width:40%}.wd-xs-40-f{width:40px !important}.wd-xs-40p-f{width:40% !important}.mx-wd-xs-40p-f{max-width:40% !important}.mn-wd-xs-40p-f{min-width:40% !important}.wd-xs-45{width:45px}.wd-xs-45p{width:45%}.mx-wd-xs-45p{max-width:45%}.mn-wd-xs-45p{min-width:45%}.wd-xs-45-f{width:45px !important}.wd-xs-45p-f{width:45% !important}.mx-wd-xs-45p-f{max-width:45% !important}.mn-wd-xs-45p-f{min-width:45% !important}.wd-xs-50{width:50px}.wd-xs-50p{width:50%}.mx-wd-xs-50p{max-width:50%}.mn-wd-xs-50p{min-width:50%}.wd-xs-50-f{width:50px !important}.wd-xs-50p-f{width:50% !important}.mx-wd-xs-50p-f{max-width:50% !important}.mn-wd-xs-50p-f{min-width:50% !important}.wd-xs-55{width:55px}.wd-xs-55p{width:55%}.mx-wd-xs-55p{max-width:55%}.mn-wd-xs-55p{min-width:55%}.wd-xs-55-f{width:55px !important}.wd-xs-55p-f{width:55% !important}.mx-wd-xs-55p-f{max-width:55% !important}.mn-wd-xs-55p-f{min-width:55% !important}.wd-xs-60{width:60px}.wd-xs-60p{width:60%}.mx-wd-xs-60p{max-width:60%}.mn-wd-xs-60p{min-width:60%}.wd-xs-60-f{width:60px !important}.wd-xs-60p-f{width:60% !important}.mx-wd-xs-60p-f{max-width:60% !important}.mn-wd-xs-60p-f{min-width:60% !important}.wd-xs-65{width:65px}.wd-xs-65p{width:65%}.mx-wd-xs-65p{max-width:65%}.mn-wd-xs-65p{min-width:65%}.wd-xs-65-f{width:65px !important}.wd-xs-65p-f{width:65% !important}.mx-wd-xs-65p-f{max-width:65% !important}.mn-wd-xs-65p-f{min-width:65% !important}.wd-xs-70{width:70px}.wd-xs-70p{width:70%}.mx-wd-xs-70p{max-width:70%}.mn-wd-xs-70p{min-width:70%}.wd-xs-70-f{width:70px !important}.wd-xs-70p-f{width:70% !important}.mx-wd-xs-70p-f{max-width:70% !important}.mn-wd-xs-70p-f{min-width:70% !important}.wd-xs-75{width:75px}.wd-xs-75p{width:75%}.mx-wd-xs-75p{max-width:75%}.mn-wd-xs-75p{min-width:75%}.wd-xs-75-f{width:75px !important}.wd-xs-75p-f{width:75% !important}.mx-wd-xs-75p-f{max-width:75% !important}.mn-wd-xs-75p-f{min-width:75% !important}.wd-xs-80{width:80px}.wd-xs-80p{width:80%}.mx-wd-xs-80p{max-width:80%}.mn-wd-xs-80p{min-width:80%}.wd-xs-80-f{width:80px !important}.wd-xs-80p-f{width:80% !important}.mx-wd-xs-80p-f{max-width:80% !important}.mn-wd-xs-80p-f{min-width:80% !important}.wd-xs-85{width:85px}.wd-xs-85p{width:85%}.mx-wd-xs-85p{max-width:85%}.mn-wd-xs-85p{min-width:85%}.wd-xs-85-f{width:85px !important}.wd-xs-85p-f{width:85% !important}.mx-wd-xs-85p-f{max-width:85% !important}.mn-wd-xs-85p-f{min-width:85% !important}.wd-xs-90{width:90px}.wd-xs-90p{width:90%}.mx-wd-xs-90p{max-width:90%}.mn-wd-xs-90p{min-width:90%}.wd-xs-90-f{width:90px !important}.wd-xs-90p-f{width:90% !important}.mx-wd-xs-90p-f{max-width:90% !important}.mn-wd-xs-90p-f{min-width:90% !important}.wd-xs-95{width:95px}.wd-xs-95p{width:95%}.mx-wd-xs-95p{max-width:95%}.mn-wd-xs-95p{min-width:95%}.wd-xs-95-f{width:95px !important}.wd-xs-95p-f{width:95% !important}.mx-wd-xs-95p-f{max-width:95% !important}.mn-wd-xs-95p-f{min-width:95% !important}.wd-xs-100{width:100px}.wd-xs-100p{width:100%}.mx-wd-xs-100p{max-width:100%}.mn-wd-xs-100p{min-width:100%}.wd-xs-100-f{width:100px !important}.wd-xs-100p-f{width:100% !important}.mx-wd-xs-100p-f{max-width:100% !important}.mn-wd-xs-100p-f{min-width:100% !important}.wd-xs-150{width:150px}.wd-xs-150p{width:150%}.mx-wd-xs-150p{max-width:150%}.mn-wd-xs-150p{min-width:150%}.wd-xs-150-f{width:150px !important}.wd-xs-150p-f{width:150% !important}.mx-wd-xs-150p-f{max-width:150% !important}.mn-wd-xs-150p-f{min-width:150% !important}.wd-xs-200{width:200px}.wd-xs-200p{width:200%}.mx-wd-xs-200p{max-width:200%}.mn-wd-xs-200p{min-width:200%}.wd-xs-200-f{width:200px !important}.wd-xs-200p-f{width:200% !important}.mx-wd-xs-200p-f{max-width:200% !important}.mn-wd-xs-200p-f{min-width:200% !important}.wd-xs-250{width:250px}.wd-xs-250p{width:250%}.mx-wd-xs-250p{max-width:250%}.mn-wd-xs-250p{min-width:250%}.wd-xs-250-f{width:250px !important}.wd-xs-250p-f{width:250% !important}.mx-wd-xs-250p-f{max-width:250% !important}.mn-wd-xs-250p-f{min-width:250% !important}.wd-xs-300{width:300px}.wd-xs-300p{width:300%}.mx-wd-xs-300p{max-width:300%}.mn-wd-xs-300p{min-width:300%}.wd-xs-300-f{width:300px !important}.wd-xs-300p-f{width:300% !important}.mx-wd-xs-300p-f{max-width:300% !important}.mn-wd-xs-300p-f{min-width:300% !important}.wd-xs-350{width:350px}.wd-xs-350p{width:350%}.mx-wd-xs-350p{max-width:350%}.mn-wd-xs-350p{min-width:350%}.wd-xs-350-f{width:350px !important}.wd-xs-350p-f{width:350% !important}.mx-wd-xs-350p-f{max-width:350% !important}.mn-wd-xs-350p-f{min-width:350% !important}.wd-xs-400{width:400px}.wd-xs-400p{width:400%}.mx-wd-xs-400p{max-width:400%}.mn-wd-xs-400p{min-width:400%}.wd-xs-400-f{width:400px !important}.wd-xs-400p-f{width:400% !important}.mx-wd-xs-400p-f{max-width:400% !important}.mn-wd-xs-400p-f{min-width:400% !important}.wd-xs-450{width:450px}.wd-xs-450p{width:450%}.mx-wd-xs-450p{max-width:450%}.mn-wd-xs-450p{min-width:450%}.wd-xs-450-f{width:450px !important}.wd-xs-450p-f{width:450% !important}.mx-wd-xs-450p-f{max-width:450% !important}.mn-wd-xs-450p-f{min-width:450% !important}.wd-xs-500{width:500px}.wd-xs-500p{width:500%}.mx-wd-xs-500p{max-width:500%}.mn-wd-xs-500p{min-width:500%}.wd-xs-500-f{width:500px !important}.wd-xs-500p-f{width:500% !important}.mx-wd-xs-500p-f{max-width:500% !important}.mn-wd-xs-500p-f{min-width:500% !important}.wd-xs-550{width:550px}.wd-xs-550p{width:550%}.mx-wd-xs-550p{max-width:550%}.mn-wd-xs-550p{min-width:550%}.wd-xs-550-f{width:550px !important}.wd-xs-550p-f{width:550% !important}.mx-wd-xs-550p-f{max-width:550% !important}.mn-wd-xs-550p-f{min-width:550% !important}.wd-xs-600{width:600px}.wd-xs-600p{width:600%}.mx-wd-xs-600p{max-width:600%}.mn-wd-xs-600p{min-width:600%}.wd-xs-600-f{width:600px !important}.wd-xs-600p-f{width:600% !important}.mx-wd-xs-600p-f{max-width:600% !important}.mn-wd-xs-600p-f{min-width:600% !important}.wd-xs-650{width:650px}.wd-xs-650p{width:650%}.mx-wd-xs-650p{max-width:650%}.mn-wd-xs-650p{min-width:650%}.wd-xs-650-f{width:650px !important}.wd-xs-650p-f{width:650% !important}.mx-wd-xs-650p-f{max-width:650% !important}.mn-wd-xs-650p-f{min-width:650% !important}.wd-xs-700{width:700px}.wd-xs-700p{width:700%}.mx-wd-xs-700p{max-width:700%}.mn-wd-xs-700p{min-width:700%}.wd-xs-700-f{width:700px !important}.wd-xs-700p-f{width:700% !important}.mx-wd-xs-700p-f{max-width:700% !important}.mn-wd-xs-700p-f{min-width:700% !important}.wd-xs-750{width:750px}.wd-xs-750p{width:750%}.mx-wd-xs-750p{max-width:750%}.mn-wd-xs-750p{min-width:750%}.wd-xs-750-f{width:750px !important}.wd-xs-750p-f{width:750% !important}.mx-wd-xs-750p-f{max-width:750% !important}.mn-wd-xs-750p-f{min-width:750% !important}.wd-xs-800{width:800px}.wd-xs-800p{width:800%}.mx-wd-xs-800p{max-width:800%}.mn-wd-xs-800p{min-width:800%}.wd-xs-800-f{width:800px !important}.wd-xs-800p-f{width:800% !important}.mx-wd-xs-800p-f{max-width:800% !important}.mn-wd-xs-800p-f{min-width:800% !important}.wd-xs-850{width:850px}.wd-xs-850p{width:850%}.mx-wd-xs-850p{max-width:850%}.mn-wd-xs-850p{min-width:850%}.wd-xs-850-f{width:850px !important}.wd-xs-850p-f{width:850% !important}.mx-wd-xs-850p-f{max-width:850% !important}.mn-wd-xs-850p-f{min-width:850% !important}.wd-xs-900{width:900px}.wd-xs-900p{width:900%}.mx-wd-xs-900p{max-width:900%}.mn-wd-xs-900p{min-width:900%}.wd-xs-900-f{width:900px !important}.wd-xs-900p-f{width:900% !important}.mx-wd-xs-900p-f{max-width:900% !important}.mn-wd-xs-900p-f{min-width:900% !important}.wd-xs-950{width:950px}.wd-xs-950p{width:950%}.mx-wd-xs-950p{max-width:950%}.mn-wd-xs-950p{min-width:950%}.wd-xs-950-f{width:950px !important}.wd-xs-950p-f{width:950% !important}.mx-wd-xs-950p-f{max-width:950% !important}.mn-wd-xs-950p-f{min-width:950% !important}.wd-xs-1000{width:1000px}.wd-xs-1000p{width:1000%}.mx-wd-xs-1000p{max-width:1000%}.mn-wd-xs-1000p{min-width:1000%}.wd-xs-1000-f{width:1000px !important}.wd-xs-1000p-f{width:1000% !important}.mx-wd-xs-1000p-f{max-width:1000% !important}.mn-wd-xs-1000p-f{min-width:1000% !important}.wd-xs-auto{width:auto}.wd-xs-auto-f{width:auto !important}}@media (min-width: 576px){.wd-sm-5{width:5px}.wd-sm-5p{width:5%}.mx-wd-sm-5p{max-width:5%}.mn-wd-sm-5p{min-width:5%}.wd-sm-5-f{width:5px !important}.wd-sm-5p-f{width:5% !important}.mx-wd-sm-5p-f{max-width:5% !important}.mn-wd-sm-5p-f{min-width:5% !important}.wd-sm-10{width:10px}.wd-sm-10p{width:10%}.mx-wd-sm-10p{max-width:10%}.mn-wd-sm-10p{min-width:10%}.wd-sm-10-f{width:10px !important}.wd-sm-10p-f{width:10% !important}.mx-wd-sm-10p-f{max-width:10% !important}.mn-wd-sm-10p-f{min-width:10% !important}.wd-sm-15{width:15px}.wd-sm-15p{width:15%}.mx-wd-sm-15p{max-width:15%}.mn-wd-sm-15p{min-width:15%}.wd-sm-15-f{width:15px !important}.wd-sm-15p-f{width:15% !important}.mx-wd-sm-15p-f{max-width:15% !important}.mn-wd-sm-15p-f{min-width:15% !important}.wd-sm-20{width:20px}.wd-sm-20p{width:20%}.mx-wd-sm-20p{max-width:20%}.mn-wd-sm-20p{min-width:20%}.wd-sm-20-f{width:20px !important}.wd-sm-20p-f{width:20% !important}.mx-wd-sm-20p-f{max-width:20% !important}.mn-wd-sm-20p-f{min-width:20% !important}.wd-sm-25{width:25px}.wd-sm-25p{width:25%}.mx-wd-sm-25p{max-width:25%}.mn-wd-sm-25p{min-width:25%}.wd-sm-25-f{width:25px !important}.wd-sm-25p-f{width:25% !important}.mx-wd-sm-25p-f{max-width:25% !important}.mn-wd-sm-25p-f{min-width:25% !important}.wd-sm-30{width:30px}.wd-sm-30p{width:30%}.mx-wd-sm-30p{max-width:30%}.mn-wd-sm-30p{min-width:30%}.wd-sm-30-f{width:30px !important}.wd-sm-30p-f{width:30% !important}.mx-wd-sm-30p-f{max-width:30% !important}.mn-wd-sm-30p-f{min-width:30% !important}.wd-sm-35{width:35px}.wd-sm-35p{width:35%}.mx-wd-sm-35p{max-width:35%}.mn-wd-sm-35p{min-width:35%}.wd-sm-35-f{width:35px !important}.wd-sm-35p-f{width:35% !important}.mx-wd-sm-35p-f{max-width:35% !important}.mn-wd-sm-35p-f{min-width:35% !important}.wd-sm-40{width:40px}.wd-sm-40p{width:40%}.mx-wd-sm-40p{max-width:40%}.mn-wd-sm-40p{min-width:40%}.wd-sm-40-f{width:40px !important}.wd-sm-40p-f{width:40% !important}.mx-wd-sm-40p-f{max-width:40% !important}.mn-wd-sm-40p-f{min-width:40% !important}.wd-sm-45{width:45px}.wd-sm-45p{width:45%}.mx-wd-sm-45p{max-width:45%}.mn-wd-sm-45p{min-width:45%}.wd-sm-45-f{width:45px !important}.wd-sm-45p-f{width:45% !important}.mx-wd-sm-45p-f{max-width:45% !important}.mn-wd-sm-45p-f{min-width:45% !important}.wd-sm-50{width:50px}.wd-sm-50p{width:50%}.mx-wd-sm-50p{max-width:50%}.mn-wd-sm-50p{min-width:50%}.wd-sm-50-f{width:50px !important}.wd-sm-50p-f{width:50% !important}.mx-wd-sm-50p-f{max-width:50% !important}.mn-wd-sm-50p-f{min-width:50% !important}.wd-sm-55{width:55px}.wd-sm-55p{width:55%}.mx-wd-sm-55p{max-width:55%}.mn-wd-sm-55p{min-width:55%}.wd-sm-55-f{width:55px !important}.wd-sm-55p-f{width:55% !important}.mx-wd-sm-55p-f{max-width:55% !important}.mn-wd-sm-55p-f{min-width:55% !important}.wd-sm-60{width:60px}.wd-sm-60p{width:60%}.mx-wd-sm-60p{max-width:60%}.mn-wd-sm-60p{min-width:60%}.wd-sm-60-f{width:60px !important}.wd-sm-60p-f{width:60% !important}.mx-wd-sm-60p-f{max-width:60% !important}.mn-wd-sm-60p-f{min-width:60% !important}.wd-sm-65{width:65px}.wd-sm-65p{width:65%}.mx-wd-sm-65p{max-width:65%}.mn-wd-sm-65p{min-width:65%}.wd-sm-65-f{width:65px !important}.wd-sm-65p-f{width:65% !important}.mx-wd-sm-65p-f{max-width:65% !important}.mn-wd-sm-65p-f{min-width:65% !important}.wd-sm-70{width:70px}.wd-sm-70p{width:70%}.mx-wd-sm-70p{max-width:70%}.mn-wd-sm-70p{min-width:70%}.wd-sm-70-f{width:70px !important}.wd-sm-70p-f{width:70% !important}.mx-wd-sm-70p-f{max-width:70% !important}.mn-wd-sm-70p-f{min-width:70% !important}.wd-sm-75{width:75px}.wd-sm-75p{width:75%}.mx-wd-sm-75p{max-width:75%}.mn-wd-sm-75p{min-width:75%}.wd-sm-75-f{width:75px !important}.wd-sm-75p-f{width:75% !important}.mx-wd-sm-75p-f{max-width:75% !important}.mn-wd-sm-75p-f{min-width:75% !important}.wd-sm-80{width:80px}.wd-sm-80p{width:80%}.mx-wd-sm-80p{max-width:80%}.mn-wd-sm-80p{min-width:80%}.wd-sm-80-f{width:80px !important}.wd-sm-80p-f{width:80% !important}.mx-wd-sm-80p-f{max-width:80% !important}.mn-wd-sm-80p-f{min-width:80% !important}.wd-sm-85{width:85px}.wd-sm-85p{width:85%}.mx-wd-sm-85p{max-width:85%}.mn-wd-sm-85p{min-width:85%}.wd-sm-85-f{width:85px !important}.wd-sm-85p-f{width:85% !important}.mx-wd-sm-85p-f{max-width:85% !important}.mn-wd-sm-85p-f{min-width:85% !important}.wd-sm-90{width:90px}.wd-sm-90p{width:90%}.mx-wd-sm-90p{max-width:90%}.mn-wd-sm-90p{min-width:90%}.wd-sm-90-f{width:90px !important}.wd-sm-90p-f{width:90% !important}.mx-wd-sm-90p-f{max-width:90% !important}.mn-wd-sm-90p-f{min-width:90% !important}.wd-sm-95{width:95px}.wd-sm-95p{width:95%}.mx-wd-sm-95p{max-width:95%}.mn-wd-sm-95p{min-width:95%}.wd-sm-95-f{width:95px !important}.wd-sm-95p-f{width:95% !important}.mx-wd-sm-95p-f{max-width:95% !important}.mn-wd-sm-95p-f{min-width:95% !important}.wd-sm-100{width:100px}.wd-sm-100p{width:100%}.mx-wd-sm-100p{max-width:100%}.mn-wd-sm-100p{min-width:100%}.wd-sm-100-f{width:100px !important}.wd-sm-100p-f{width:100% !important}.mx-wd-sm-100p-f{max-width:100% !important}.mn-wd-sm-100p-f{min-width:100% !important}.wd-sm-150{width:150px}.wd-sm-150p{width:150%}.mx-wd-sm-150p{max-width:150%}.mn-wd-sm-150p{min-width:150%}.wd-sm-150-f{width:150px !important}.wd-sm-150p-f{width:150% !important}.mx-wd-sm-150p-f{max-width:150% !important}.mn-wd-sm-150p-f{min-width:150% !important}.wd-sm-200{width:200px}.wd-sm-200p{width:200%}.mx-wd-sm-200p{max-width:200%}.mn-wd-sm-200p{min-width:200%}.wd-sm-200-f{width:200px !important}.wd-sm-200p-f{width:200% !important}.mx-wd-sm-200p-f{max-width:200% !important}.mn-wd-sm-200p-f{min-width:200% !important}.wd-sm-250{width:250px}.wd-sm-250p{width:250%}.mx-wd-sm-250p{max-width:250%}.mn-wd-sm-250p{min-width:250%}.wd-sm-250-f{width:250px !important}.wd-sm-250p-f{width:250% !important}.mx-wd-sm-250p-f{max-width:250% !important}.mn-wd-sm-250p-f{min-width:250% !important}.wd-sm-300{width:300px}.wd-sm-300p{width:300%}.mx-wd-sm-300p{max-width:300%}.mn-wd-sm-300p{min-width:300%}.wd-sm-300-f{width:300px !important}.wd-sm-300p-f{width:300% !important}.mx-wd-sm-300p-f{max-width:300% !important}.mn-wd-sm-300p-f{min-width:300% !important}.wd-sm-350{width:350px}.wd-sm-350p{width:350%}.mx-wd-sm-350p{max-width:350%}.mn-wd-sm-350p{min-width:350%}.wd-sm-350-f{width:350px !important}.wd-sm-350p-f{width:350% !important}.mx-wd-sm-350p-f{max-width:350% !important}.mn-wd-sm-350p-f{min-width:350% !important}.wd-sm-400{width:400px}.wd-sm-400p{width:400%}.mx-wd-sm-400p{max-width:400%}.mn-wd-sm-400p{min-width:400%}.wd-sm-400-f{width:400px !important}.wd-sm-400p-f{width:400% !important}.mx-wd-sm-400p-f{max-width:400% !important}.mn-wd-sm-400p-f{min-width:400% !important}.wd-sm-450{width:450px}.wd-sm-450p{width:450%}.mx-wd-sm-450p{max-width:450%}.mn-wd-sm-450p{min-width:450%}.wd-sm-450-f{width:450px !important}.wd-sm-450p-f{width:450% !important}.mx-wd-sm-450p-f{max-width:450% !important}.mn-wd-sm-450p-f{min-width:450% !important}.wd-sm-500{width:500px}.wd-sm-500p{width:500%}.mx-wd-sm-500p{max-width:500%}.mn-wd-sm-500p{min-width:500%}.wd-sm-500-f{width:500px !important}.wd-sm-500p-f{width:500% !important}.mx-wd-sm-500p-f{max-width:500% !important}.mn-wd-sm-500p-f{min-width:500% !important}.wd-sm-550{width:550px}.wd-sm-550p{width:550%}.mx-wd-sm-550p{max-width:550%}.mn-wd-sm-550p{min-width:550%}.wd-sm-550-f{width:550px !important}.wd-sm-550p-f{width:550% !important}.mx-wd-sm-550p-f{max-width:550% !important}.mn-wd-sm-550p-f{min-width:550% !important}.wd-sm-600{width:600px}.wd-sm-600p{width:600%}.mx-wd-sm-600p{max-width:600%}.mn-wd-sm-600p{min-width:600%}.wd-sm-600-f{width:600px !important}.wd-sm-600p-f{width:600% !important}.mx-wd-sm-600p-f{max-width:600% !important}.mn-wd-sm-600p-f{min-width:600% !important}.wd-sm-650{width:650px}.wd-sm-650p{width:650%}.mx-wd-sm-650p{max-width:650%}.mn-wd-sm-650p{min-width:650%}.wd-sm-650-f{width:650px !important}.wd-sm-650p-f{width:650% !important}.mx-wd-sm-650p-f{max-width:650% !important}.mn-wd-sm-650p-f{min-width:650% !important}.wd-sm-700{width:700px}.wd-sm-700p{width:700%}.mx-wd-sm-700p{max-width:700%}.mn-wd-sm-700p{min-width:700%}.wd-sm-700-f{width:700px !important}.wd-sm-700p-f{width:700% !important}.mx-wd-sm-700p-f{max-width:700% !important}.mn-wd-sm-700p-f{min-width:700% !important}.wd-sm-750{width:750px}.wd-sm-750p{width:750%}.mx-wd-sm-750p{max-width:750%}.mn-wd-sm-750p{min-width:750%}.wd-sm-750-f{width:750px !important}.wd-sm-750p-f{width:750% !important}.mx-wd-sm-750p-f{max-width:750% !important}.mn-wd-sm-750p-f{min-width:750% !important}.wd-sm-800{width:800px}.wd-sm-800p{width:800%}.mx-wd-sm-800p{max-width:800%}.mn-wd-sm-800p{min-width:800%}.wd-sm-800-f{width:800px !important}.wd-sm-800p-f{width:800% !important}.mx-wd-sm-800p-f{max-width:800% !important}.mn-wd-sm-800p-f{min-width:800% !important}.wd-sm-850{width:850px}.wd-sm-850p{width:850%}.mx-wd-sm-850p{max-width:850%}.mn-wd-sm-850p{min-width:850%}.wd-sm-850-f{width:850px !important}.wd-sm-850p-f{width:850% !important}.mx-wd-sm-850p-f{max-width:850% !important}.mn-wd-sm-850p-f{min-width:850% !important}.wd-sm-900{width:900px}.wd-sm-900p{width:900%}.mx-wd-sm-900p{max-width:900%}.mn-wd-sm-900p{min-width:900%}.wd-sm-900-f{width:900px !important}.wd-sm-900p-f{width:900% !important}.mx-wd-sm-900p-f{max-width:900% !important}.mn-wd-sm-900p-f{min-width:900% !important}.wd-sm-950{width:950px}.wd-sm-950p{width:950%}.mx-wd-sm-950p{max-width:950%}.mn-wd-sm-950p{min-width:950%}.wd-sm-950-f{width:950px !important}.wd-sm-950p-f{width:950% !important}.mx-wd-sm-950p-f{max-width:950% !important}.mn-wd-sm-950p-f{min-width:950% !important}.wd-sm-1000{width:1000px}.wd-sm-1000p{width:1000%}.mx-wd-sm-1000p{max-width:1000%}.mn-wd-sm-1000p{min-width:1000%}.wd-sm-1000-f{width:1000px !important}.wd-sm-1000p-f{width:1000% !important}.mx-wd-sm-1000p-f{max-width:1000% !important}.mn-wd-sm-1000p-f{min-width:1000% !important}.wd-sm-auto{width:auto}.wd-sm-auto-f{width:auto !important}}@media (min-width: 768px){.wd-md-5{width:5px}.wd-md-5p{width:5%}.mx-wd-md-5p{max-width:5%}.mn-wd-md-5p{min-width:5%}.wd-md-5-f{width:5px !important}.wd-md-5p-f{width:5% !important}.mx-wd-md-5p-f{max-width:5% !important}.mn-wd-md-5p-f{min-width:5% !important}.wd-md-10{width:10px}.wd-md-10p{width:10%}.mx-wd-md-10p{max-width:10%}.mn-wd-md-10p{min-width:10%}.wd-md-10-f{width:10px !important}.wd-md-10p-f{width:10% !important}.mx-wd-md-10p-f{max-width:10% !important}.mn-wd-md-10p-f{min-width:10% !important}.wd-md-15{width:15px}.wd-md-15p{width:15%}.mx-wd-md-15p{max-width:15%}.mn-wd-md-15p{min-width:15%}.wd-md-15-f{width:15px !important}.wd-md-15p-f{width:15% !important}.mx-wd-md-15p-f{max-width:15% !important}.mn-wd-md-15p-f{min-width:15% !important}.wd-md-20{width:20px}.wd-md-20p{width:20%}.mx-wd-md-20p{max-width:20%}.mn-wd-md-20p{min-width:20%}.wd-md-20-f{width:20px !important}.wd-md-20p-f{width:20% !important}.mx-wd-md-20p-f{max-width:20% !important}.mn-wd-md-20p-f{min-width:20% !important}.wd-md-25{width:25px}.wd-md-25p{width:25%}.mx-wd-md-25p{max-width:25%}.mn-wd-md-25p{min-width:25%}.wd-md-25-f{width:25px !important}.wd-md-25p-f{width:25% !important}.mx-wd-md-25p-f{max-width:25% !important}.mn-wd-md-25p-f{min-width:25% !important}.wd-md-30{width:30px}.wd-md-30p{width:30%}.mx-wd-md-30p{max-width:30%}.mn-wd-md-30p{min-width:30%}.wd-md-30-f{width:30px !important}.wd-md-30p-f{width:30% !important}.mx-wd-md-30p-f{max-width:30% !important}.mn-wd-md-30p-f{min-width:30% !important}.wd-md-35{width:35px}.wd-md-35p{width:35%}.mx-wd-md-35p{max-width:35%}.mn-wd-md-35p{min-width:35%}.wd-md-35-f{width:35px !important}.wd-md-35p-f{width:35% !important}.mx-wd-md-35p-f{max-width:35% !important}.mn-wd-md-35p-f{min-width:35% !important}.wd-md-40{width:40px}.wd-md-40p{width:40%}.mx-wd-md-40p{max-width:40%}.mn-wd-md-40p{min-width:40%}.wd-md-40-f{width:40px !important}.wd-md-40p-f{width:40% !important}.mx-wd-md-40p-f{max-width:40% !important}.mn-wd-md-40p-f{min-width:40% !important}.wd-md-45{width:45px}.wd-md-45p{width:45%}.mx-wd-md-45p{max-width:45%}.mn-wd-md-45p{min-width:45%}.wd-md-45-f{width:45px !important}.wd-md-45p-f{width:45% !important}.mx-wd-md-45p-f{max-width:45% !important}.mn-wd-md-45p-f{min-width:45% !important}.wd-md-50{width:50px}.wd-md-50p{width:50%}.mx-wd-md-50p{max-width:50%}.mn-wd-md-50p{min-width:50%}.wd-md-50-f{width:50px !important}.wd-md-50p-f{width:50% !important}.mx-wd-md-50p-f{max-width:50% !important}.mn-wd-md-50p-f{min-width:50% !important}.wd-md-55{width:55px}.wd-md-55p{width:55%}.mx-wd-md-55p{max-width:55%}.mn-wd-md-55p{min-width:55%}.wd-md-55-f{width:55px !important}.wd-md-55p-f{width:55% !important}.mx-wd-md-55p-f{max-width:55% !important}.mn-wd-md-55p-f{min-width:55% !important}.wd-md-60{width:60px}.wd-md-60p{width:60%}.mx-wd-md-60p{max-width:60%}.mn-wd-md-60p{min-width:60%}.wd-md-60-f{width:60px !important}.wd-md-60p-f{width:60% !important}.mx-wd-md-60p-f{max-width:60% !important}.mn-wd-md-60p-f{min-width:60% !important}.wd-md-65{width:65px}.wd-md-65p{width:65%}.mx-wd-md-65p{max-width:65%}.mn-wd-md-65p{min-width:65%}.wd-md-65-f{width:65px !important}.wd-md-65p-f{width:65% !important}.mx-wd-md-65p-f{max-width:65% !important}.mn-wd-md-65p-f{min-width:65% !important}.wd-md-70{width:70px}.wd-md-70p{width:70%}.mx-wd-md-70p{max-width:70%}.mn-wd-md-70p{min-width:70%}.wd-md-70-f{width:70px !important}.wd-md-70p-f{width:70% !important}.mx-wd-md-70p-f{max-width:70% !important}.mn-wd-md-70p-f{min-width:70% !important}.wd-md-75{width:75px}.wd-md-75p{width:75%}.mx-wd-md-75p{max-width:75%}.mn-wd-md-75p{min-width:75%}.wd-md-75-f{width:75px !important}.wd-md-75p-f{width:75% !important}.mx-wd-md-75p-f{max-width:75% !important}.mn-wd-md-75p-f{min-width:75% !important}.wd-md-80{width:80px}.wd-md-80p{width:80%}.mx-wd-md-80p{max-width:80%}.mn-wd-md-80p{min-width:80%}.wd-md-80-f{width:80px !important}.wd-md-80p-f{width:80% !important}.mx-wd-md-80p-f{max-width:80% !important}.mn-wd-md-80p-f{min-width:80% !important}.wd-md-85{width:85px}.wd-md-85p{width:85%}.mx-wd-md-85p{max-width:85%}.mn-wd-md-85p{min-width:85%}.wd-md-85-f{width:85px !important}.wd-md-85p-f{width:85% !important}.mx-wd-md-85p-f{max-width:85% !important}.mn-wd-md-85p-f{min-width:85% !important}.wd-md-90{width:90px}.wd-md-90p{width:90%}.mx-wd-md-90p{max-width:90%}.mn-wd-md-90p{min-width:90%}.wd-md-90-f{width:90px !important}.wd-md-90p-f{width:90% !important}.mx-wd-md-90p-f{max-width:90% !important}.mn-wd-md-90p-f{min-width:90% !important}.wd-md-95{width:95px}.wd-md-95p{width:95%}.mx-wd-md-95p{max-width:95%}.mn-wd-md-95p{min-width:95%}.wd-md-95-f{width:95px !important}.wd-md-95p-f{width:95% !important}.mx-wd-md-95p-f{max-width:95% !important}.mn-wd-md-95p-f{min-width:95% !important}.wd-md-100{width:100px}.wd-md-100p{width:100%}.mx-wd-md-100p{max-width:100%}.mn-wd-md-100p{min-width:100%}.wd-md-100-f{width:100px !important}.wd-md-100p-f{width:100% !important}.mx-wd-md-100p-f{max-width:100% !important}.mn-wd-md-100p-f{min-width:100% !important}.wd-md-150{width:150px}.wd-md-150p{width:150%}.mx-wd-md-150p{max-width:150%}.mn-wd-md-150p{min-width:150%}.wd-md-150-f{width:150px !important}.wd-md-150p-f{width:150% !important}.mx-wd-md-150p-f{max-width:150% !important}.mn-wd-md-150p-f{min-width:150% !important}.wd-md-200{width:200px}.wd-md-200p{width:200%}.mx-wd-md-200p{max-width:200%}.mn-wd-md-200p{min-width:200%}.wd-md-200-f{width:200px !important}.wd-md-200p-f{width:200% !important}.mx-wd-md-200p-f{max-width:200% !important}.mn-wd-md-200p-f{min-width:200% !important}.wd-md-250{width:250px}.wd-md-250p{width:250%}.mx-wd-md-250p{max-width:250%}.mn-wd-md-250p{min-width:250%}.wd-md-250-f{width:250px !important}.wd-md-250p-f{width:250% !important}.mx-wd-md-250p-f{max-width:250% !important}.mn-wd-md-250p-f{min-width:250% !important}.wd-md-300{width:300px}.wd-md-300p{width:300%}.mx-wd-md-300p{max-width:300%}.mn-wd-md-300p{min-width:300%}.wd-md-300-f{width:300px !important}.wd-md-300p-f{width:300% !important}.mx-wd-md-300p-f{max-width:300% !important}.mn-wd-md-300p-f{min-width:300% !important}.wd-md-350{width:350px}.wd-md-350p{width:350%}.mx-wd-md-350p{max-width:350%}.mn-wd-md-350p{min-width:350%}.wd-md-350-f{width:350px !important}.wd-md-350p-f{width:350% !important}.mx-wd-md-350p-f{max-width:350% !important}.mn-wd-md-350p-f{min-width:350% !important}.wd-md-400{width:400px}.wd-md-400p{width:400%}.mx-wd-md-400p{max-width:400%}.mn-wd-md-400p{min-width:400%}.wd-md-400-f{width:400px !important}.wd-md-400p-f{width:400% !important}.mx-wd-md-400p-f{max-width:400% !important}.mn-wd-md-400p-f{min-width:400% !important}.wd-md-450{width:450px}.wd-md-450p{width:450%}.mx-wd-md-450p{max-width:450%}.mn-wd-md-450p{min-width:450%}.wd-md-450-f{width:450px !important}.wd-md-450p-f{width:450% !important}.mx-wd-md-450p-f{max-width:450% !important}.mn-wd-md-450p-f{min-width:450% !important}.wd-md-500{width:500px}.wd-md-500p{width:500%}.mx-wd-md-500p{max-width:500%}.mn-wd-md-500p{min-width:500%}.wd-md-500-f{width:500px !important}.wd-md-500p-f{width:500% !important}.mx-wd-md-500p-f{max-width:500% !important}.mn-wd-md-500p-f{min-width:500% !important}.wd-md-550{width:550px}.wd-md-550p{width:550%}.mx-wd-md-550p{max-width:550%}.mn-wd-md-550p{min-width:550%}.wd-md-550-f{width:550px !important}.wd-md-550p-f{width:550% !important}.mx-wd-md-550p-f{max-width:550% !important}.mn-wd-md-550p-f{min-width:550% !important}.wd-md-600{width:600px}.wd-md-600p{width:600%}.mx-wd-md-600p{max-width:600%}.mn-wd-md-600p{min-width:600%}.wd-md-600-f{width:600px !important}.wd-md-600p-f{width:600% !important}.mx-wd-md-600p-f{max-width:600% !important}.mn-wd-md-600p-f{min-width:600% !important}.wd-md-650{width:650px}.wd-md-650p{width:650%}.mx-wd-md-650p{max-width:650%}.mn-wd-md-650p{min-width:650%}.wd-md-650-f{width:650px !important}.wd-md-650p-f{width:650% !important}.mx-wd-md-650p-f{max-width:650% !important}.mn-wd-md-650p-f{min-width:650% !important}.wd-md-700{width:700px}.wd-md-700p{width:700%}.mx-wd-md-700p{max-width:700%}.mn-wd-md-700p{min-width:700%}.wd-md-700-f{width:700px !important}.wd-md-700p-f{width:700% !important}.mx-wd-md-700p-f{max-width:700% !important}.mn-wd-md-700p-f{min-width:700% !important}.wd-md-750{width:750px}.wd-md-750p{width:750%}.mx-wd-md-750p{max-width:750%}.mn-wd-md-750p{min-width:750%}.wd-md-750-f{width:750px !important}.wd-md-750p-f{width:750% !important}.mx-wd-md-750p-f{max-width:750% !important}.mn-wd-md-750p-f{min-width:750% !important}.wd-md-800{width:800px}.wd-md-800p{width:800%}.mx-wd-md-800p{max-width:800%}.mn-wd-md-800p{min-width:800%}.wd-md-800-f{width:800px !important}.wd-md-800p-f{width:800% !important}.mx-wd-md-800p-f{max-width:800% !important}.mn-wd-md-800p-f{min-width:800% !important}.wd-md-850{width:850px}.wd-md-850p{width:850%}.mx-wd-md-850p{max-width:850%}.mn-wd-md-850p{min-width:850%}.wd-md-850-f{width:850px !important}.wd-md-850p-f{width:850% !important}.mx-wd-md-850p-f{max-width:850% !important}.mn-wd-md-850p-f{min-width:850% !important}.wd-md-900{width:900px}.wd-md-900p{width:900%}.mx-wd-md-900p{max-width:900%}.mn-wd-md-900p{min-width:900%}.wd-md-900-f{width:900px !important}.wd-md-900p-f{width:900% !important}.mx-wd-md-900p-f{max-width:900% !important}.mn-wd-md-900p-f{min-width:900% !important}.wd-md-950{width:950px}.wd-md-950p{width:950%}.mx-wd-md-950p{max-width:950%}.mn-wd-md-950p{min-width:950%}.wd-md-950-f{width:950px !important}.wd-md-950p-f{width:950% !important}.mx-wd-md-950p-f{max-width:950% !important}.mn-wd-md-950p-f{min-width:950% !important}.wd-md-1000{width:1000px}.wd-md-1000p{width:1000%}.mx-wd-md-1000p{max-width:1000%}.mn-wd-md-1000p{min-width:1000%}.wd-md-1000-f{width:1000px !important}.wd-md-1000p-f{width:1000% !important}.mx-wd-md-1000p-f{max-width:1000% !important}.mn-wd-md-1000p-f{min-width:1000% !important}.wd-md-auto{width:auto}.wd-md-auto-f{width:auto !important}.wd-md-120{width:120px}}@media (min-width: 992px){.wd-lg-5{width:5px}.wd-lg-5p{width:5%}.mx-wd-lg-5p{max-width:5%}.mn-wd-lg-5p{min-width:5%}.wd-lg-5-f{width:5px !important}.wd-lg-5p-f{width:5% !important}.mx-wd-lg-5p-f{max-width:5% !important}.mn-wd-lg-5p-f{min-width:5% !important}.wd-lg-10{width:10px}.wd-lg-10p{width:10%}.mx-wd-lg-10p{max-width:10%}.mn-wd-lg-10p{min-width:10%}.wd-lg-10-f{width:10px !important}.wd-lg-10p-f{width:10% !important}.mx-wd-lg-10p-f{max-width:10% !important}.mn-wd-lg-10p-f{min-width:10% !important}.wd-lg-15{width:15px}.wd-lg-15p{width:15%}.mx-wd-lg-15p{max-width:15%}.mn-wd-lg-15p{min-width:15%}.wd-lg-15-f{width:15px !important}.wd-lg-15p-f{width:15% !important}.mx-wd-lg-15p-f{max-width:15% !important}.mn-wd-lg-15p-f{min-width:15% !important}.wd-lg-20{width:20px}.wd-lg-20p{width:20%}.mx-wd-lg-20p{max-width:20%}.mn-wd-lg-20p{min-width:20%}.wd-lg-20-f{width:20px !important}.wd-lg-20p-f{width:20% !important}.mx-wd-lg-20p-f{max-width:20% !important}.mn-wd-lg-20p-f{min-width:20% !important}.wd-lg-25{width:25px}.wd-lg-25p{width:25%}.mx-wd-lg-25p{max-width:25%}.mn-wd-lg-25p{min-width:25%}.wd-lg-25-f{width:25px !important}.wd-lg-25p-f{width:25% !important}.mx-wd-lg-25p-f{max-width:25% !important}.mn-wd-lg-25p-f{min-width:25% !important}.wd-lg-30{width:30px}.wd-lg-30p{width:30%}.mx-wd-lg-30p{max-width:30%}.mn-wd-lg-30p{min-width:30%}.wd-lg-30-f{width:30px !important}.wd-lg-30p-f{width:30% !important}.mx-wd-lg-30p-f{max-width:30% !important}.mn-wd-lg-30p-f{min-width:30% !important}.wd-lg-35{width:35px}.wd-lg-35p{width:35%}.mx-wd-lg-35p{max-width:35%}.mn-wd-lg-35p{min-width:35%}.wd-lg-35-f{width:35px !important}.wd-lg-35p-f{width:35% !important}.mx-wd-lg-35p-f{max-width:35% !important}.mn-wd-lg-35p-f{min-width:35% !important}.wd-lg-40{width:40px}.wd-lg-40p{width:40%}.mx-wd-lg-40p{max-width:40%}.mn-wd-lg-40p{min-width:40%}.wd-lg-40-f{width:40px !important}.wd-lg-40p-f{width:40% !important}.mx-wd-lg-40p-f{max-width:40% !important}.mn-wd-lg-40p-f{min-width:40% !important}.wd-lg-45{width:45px}.wd-lg-45p{width:45%}.mx-wd-lg-45p{max-width:45%}.mn-wd-lg-45p{min-width:45%}.wd-lg-45-f{width:45px !important}.wd-lg-45p-f{width:45% !important}.mx-wd-lg-45p-f{max-width:45% !important}.mn-wd-lg-45p-f{min-width:45% !important}.wd-lg-50{width:50px}.wd-lg-50p{width:50%}.mx-wd-lg-50p{max-width:50%}.mn-wd-lg-50p{min-width:50%}.wd-lg-50-f{width:50px !important}.wd-lg-50p-f{width:50% !important}.mx-wd-lg-50p-f{max-width:50% !important}.mn-wd-lg-50p-f{min-width:50% !important}.wd-lg-55{width:55px}.wd-lg-55p{width:55%}.mx-wd-lg-55p{max-width:55%}.mn-wd-lg-55p{min-width:55%}.wd-lg-55-f{width:55px !important}.wd-lg-55p-f{width:55% !important}.mx-wd-lg-55p-f{max-width:55% !important}.mn-wd-lg-55p-f{min-width:55% !important}.wd-lg-60{width:60px}.wd-lg-60p{width:60%}.mx-wd-lg-60p{max-width:60%}.mn-wd-lg-60p{min-width:60%}.wd-lg-60-f{width:60px !important}.wd-lg-60p-f{width:60% !important}.mx-wd-lg-60p-f{max-width:60% !important}.mn-wd-lg-60p-f{min-width:60% !important}.wd-lg-65{width:65px}.wd-lg-65p{width:65%}.mx-wd-lg-65p{max-width:65%}.mn-wd-lg-65p{min-width:65%}.wd-lg-65-f{width:65px !important}.wd-lg-65p-f{width:65% !important}.mx-wd-lg-65p-f{max-width:65% !important}.mn-wd-lg-65p-f{min-width:65% !important}.wd-lg-70{width:70px}.wd-lg-70p{width:70%}.mx-wd-lg-70p{max-width:70%}.mn-wd-lg-70p{min-width:70%}.wd-lg-70-f{width:70px !important}.wd-lg-70p-f{width:70% !important}.mx-wd-lg-70p-f{max-width:70% !important}.mn-wd-lg-70p-f{min-width:70% !important}.wd-lg-75{width:75px}.wd-lg-75p{width:75%}.mx-wd-lg-75p{max-width:75%}.mn-wd-lg-75p{min-width:75%}.wd-lg-75-f{width:75px !important}.wd-lg-75p-f{width:75% !important}.mx-wd-lg-75p-f{max-width:75% !important}.mn-wd-lg-75p-f{min-width:75% !important}.wd-lg-80{width:80px}.wd-lg-80p{width:80%}.mx-wd-lg-80p{max-width:80%}.mn-wd-lg-80p{min-width:80%}.wd-lg-80-f{width:80px !important}.wd-lg-80p-f{width:80% !important}.mx-wd-lg-80p-f{max-width:80% !important}.mn-wd-lg-80p-f{min-width:80% !important}.wd-lg-85{width:85px}.wd-lg-85p{width:85%}.mx-wd-lg-85p{max-width:85%}.mn-wd-lg-85p{min-width:85%}.wd-lg-85-f{width:85px !important}.wd-lg-85p-f{width:85% !important}.mx-wd-lg-85p-f{max-width:85% !important}.mn-wd-lg-85p-f{min-width:85% !important}.wd-lg-90{width:90px}.wd-lg-90p{width:90%}.mx-wd-lg-90p{max-width:90%}.mn-wd-lg-90p{min-width:90%}.wd-lg-90-f{width:90px !important}.wd-lg-90p-f{width:90% !important}.mx-wd-lg-90p-f{max-width:90% !important}.mn-wd-lg-90p-f{min-width:90% !important}.wd-lg-95{width:95px}.wd-lg-95p{width:95%}.mx-wd-lg-95p{max-width:95%}.mn-wd-lg-95p{min-width:95%}.wd-lg-95-f{width:95px !important}.wd-lg-95p-f{width:95% !important}.mx-wd-lg-95p-f{max-width:95% !important}.mn-wd-lg-95p-f{min-width:95% !important}.wd-lg-100{width:100px}.wd-lg-100p{width:100%}.mx-wd-lg-100p{max-width:100%}.mn-wd-lg-100p{min-width:100%}.wd-lg-100-f{width:100px !important}.wd-lg-100p-f{width:100% !important}.mx-wd-lg-100p-f{max-width:100% !important}.mn-wd-lg-100p-f{min-width:100% !important}.wd-lg-150{width:150px}.wd-lg-150p{width:150%}.mx-wd-lg-150p{max-width:150%}.mn-wd-lg-150p{min-width:150%}.wd-lg-150-f{width:150px !important}.wd-lg-150p-f{width:150% !important}.mx-wd-lg-150p-f{max-width:150% !important}.mn-wd-lg-150p-f{min-width:150% !important}.wd-lg-200{width:200px}.wd-lg-200p{width:200%}.mx-wd-lg-200p{max-width:200%}.mn-wd-lg-200p{min-width:200%}.wd-lg-200-f{width:200px !important}.wd-lg-200p-f{width:200% !important}.mx-wd-lg-200p-f{max-width:200% !important}.mn-wd-lg-200p-f{min-width:200% !important}.wd-lg-250{width:250px}.wd-lg-250p{width:250%}.mx-wd-lg-250p{max-width:250%}.mn-wd-lg-250p{min-width:250%}.wd-lg-250-f{width:250px !important}.wd-lg-250p-f{width:250% !important}.mx-wd-lg-250p-f{max-width:250% !important}.mn-wd-lg-250p-f{min-width:250% !important}.wd-lg-300{width:300px}.wd-lg-300p{width:300%}.mx-wd-lg-300p{max-width:300%}.mn-wd-lg-300p{min-width:300%}.wd-lg-300-f{width:300px !important}.wd-lg-300p-f{width:300% !important}.mx-wd-lg-300p-f{max-width:300% !important}.mn-wd-lg-300p-f{min-width:300% !important}.wd-lg-350{width:350px}.wd-lg-350p{width:350%}.mx-wd-lg-350p{max-width:350%}.mn-wd-lg-350p{min-width:350%}.wd-lg-350-f{width:350px !important}.wd-lg-350p-f{width:350% !important}.mx-wd-lg-350p-f{max-width:350% !important}.mn-wd-lg-350p-f{min-width:350% !important}.wd-lg-400{width:400px}.wd-lg-400p{width:400%}.mx-wd-lg-400p{max-width:400%}.mn-wd-lg-400p{min-width:400%}.wd-lg-400-f{width:400px !important}.wd-lg-400p-f{width:400% !important}.mx-wd-lg-400p-f{max-width:400% !important}.mn-wd-lg-400p-f{min-width:400% !important}.wd-lg-450{width:450px}.wd-lg-450p{width:450%}.mx-wd-lg-450p{max-width:450%}.mn-wd-lg-450p{min-width:450%}.wd-lg-450-f{width:450px !important}.wd-lg-450p-f{width:450% !important}.mx-wd-lg-450p-f{max-width:450% !important}.mn-wd-lg-450p-f{min-width:450% !important}.wd-lg-500{width:500px}.wd-lg-500p{width:500%}.mx-wd-lg-500p{max-width:500%}.mn-wd-lg-500p{min-width:500%}.wd-lg-500-f{width:500px !important}.wd-lg-500p-f{width:500% !important}.mx-wd-lg-500p-f{max-width:500% !important}.mn-wd-lg-500p-f{min-width:500% !important}.wd-lg-550{width:550px}.wd-lg-550p{width:550%}.mx-wd-lg-550p{max-width:550%}.mn-wd-lg-550p{min-width:550%}.wd-lg-550-f{width:550px !important}.wd-lg-550p-f{width:550% !important}.mx-wd-lg-550p-f{max-width:550% !important}.mn-wd-lg-550p-f{min-width:550% !important}.wd-lg-600{width:600px}.wd-lg-600p{width:600%}.mx-wd-lg-600p{max-width:600%}.mn-wd-lg-600p{min-width:600%}.wd-lg-600-f{width:600px !important}.wd-lg-600p-f{width:600% !important}.mx-wd-lg-600p-f{max-width:600% !important}.mn-wd-lg-600p-f{min-width:600% !important}.wd-lg-650{width:650px}.wd-lg-650p{width:650%}.mx-wd-lg-650p{max-width:650%}.mn-wd-lg-650p{min-width:650%}.wd-lg-650-f{width:650px !important}.wd-lg-650p-f{width:650% !important}.mx-wd-lg-650p-f{max-width:650% !important}.mn-wd-lg-650p-f{min-width:650% !important}.wd-lg-700{width:700px}.wd-lg-700p{width:700%}.mx-wd-lg-700p{max-width:700%}.mn-wd-lg-700p{min-width:700%}.wd-lg-700-f{width:700px !important}.wd-lg-700p-f{width:700% !important}.mx-wd-lg-700p-f{max-width:700% !important}.mn-wd-lg-700p-f{min-width:700% !important}.wd-lg-750{width:750px}.wd-lg-750p{width:750%}.mx-wd-lg-750p{max-width:750%}.mn-wd-lg-750p{min-width:750%}.wd-lg-750-f{width:750px !important}.wd-lg-750p-f{width:750% !important}.mx-wd-lg-750p-f{max-width:750% !important}.mn-wd-lg-750p-f{min-width:750% !important}.wd-lg-800{width:800px}.wd-lg-800p{width:800%}.mx-wd-lg-800p{max-width:800%}.mn-wd-lg-800p{min-width:800%}.wd-lg-800-f{width:800px !important}.wd-lg-800p-f{width:800% !important}.mx-wd-lg-800p-f{max-width:800% !important}.mn-wd-lg-800p-f{min-width:800% !important}.wd-lg-850{width:850px}.wd-lg-850p{width:850%}.mx-wd-lg-850p{max-width:850%}.mn-wd-lg-850p{min-width:850%}.wd-lg-850-f{width:850px !important}.wd-lg-850p-f{width:850% !important}.mx-wd-lg-850p-f{max-width:850% !important}.mn-wd-lg-850p-f{min-width:850% !important}.wd-lg-900{width:900px}.wd-lg-900p{width:900%}.mx-wd-lg-900p{max-width:900%}.mn-wd-lg-900p{min-width:900%}.wd-lg-900-f{width:900px !important}.wd-lg-900p-f{width:900% !important}.mx-wd-lg-900p-f{max-width:900% !important}.mn-wd-lg-900p-f{min-width:900% !important}.wd-lg-950{width:950px}.wd-lg-950p{width:950%}.mx-wd-lg-950p{max-width:950%}.mn-wd-lg-950p{min-width:950%}.wd-lg-950-f{width:950px !important}.wd-lg-950p-f{width:950% !important}.mx-wd-lg-950p-f{max-width:950% !important}.mn-wd-lg-950p-f{min-width:950% !important}.wd-lg-1000{width:1000px}.wd-lg-1000p{width:1000%}.mx-wd-lg-1000p{max-width:1000%}.mn-wd-lg-1000p{min-width:1000%}.wd-lg-1000-f{width:1000px !important}.wd-lg-1000p-f{width:1000% !important}.mx-wd-lg-1000p-f{max-width:1000% !important}.mn-wd-lg-1000p-f{min-width:1000% !important}.wd-lg-auto{width:auto}.wd-lg-auto-f{width:auto !important}}@media (min-width: 1200px){.wd-xl-5{width:5px}.wd-xl-5p{width:5%}.mx-wd-xl-5p{max-width:5%}.mn-wd-xl-5p{min-width:5%}.wd-xl-5-f{width:5px !important}.wd-xl-5p-f{width:5% !important}.mx-wd-xl-5p-f{max-width:5% !important}.mn-wd-xl-5p-f{min-width:5% !important}.wd-xl-10{width:10px}.wd-xl-10p{width:10%}.mx-wd-xl-10p{max-width:10%}.mn-wd-xl-10p{min-width:10%}.wd-xl-10-f{width:10px !important}.wd-xl-10p-f{width:10% !important}.mx-wd-xl-10p-f{max-width:10% !important}.mn-wd-xl-10p-f{min-width:10% !important}.wd-xl-15{width:15px}.wd-xl-15p{width:15%}.mx-wd-xl-15p{max-width:15%}.mn-wd-xl-15p{min-width:15%}.wd-xl-15-f{width:15px !important}.wd-xl-15p-f{width:15% !important}.mx-wd-xl-15p-f{max-width:15% !important}.mn-wd-xl-15p-f{min-width:15% !important}.wd-xl-20{width:20px}.wd-xl-20p{width:20%}.mx-wd-xl-20p{max-width:20%}.mn-wd-xl-20p{min-width:20%}.wd-xl-20-f{width:20px !important}.wd-xl-20p-f{width:20% !important}.mx-wd-xl-20p-f{max-width:20% !important}.mn-wd-xl-20p-f{min-width:20% !important}.wd-xl-25{width:25px}.wd-xl-25p{width:25%}.mx-wd-xl-25p{max-width:25%}.mn-wd-xl-25p{min-width:25%}.wd-xl-25-f{width:25px !important}.wd-xl-25p-f{width:25% !important}.mx-wd-xl-25p-f{max-width:25% !important}.mn-wd-xl-25p-f{min-width:25% !important}.wd-xl-30{width:30px}.wd-xl-30p{width:30%}.mx-wd-xl-30p{max-width:30%}.mn-wd-xl-30p{min-width:30%}.wd-xl-30-f{width:30px !important}.wd-xl-30p-f{width:30% !important}.mx-wd-xl-30p-f{max-width:30% !important}.mn-wd-xl-30p-f{min-width:30% !important}.wd-xl-35{width:35px}.wd-xl-35p{width:35%}.mx-wd-xl-35p{max-width:35%}.mn-wd-xl-35p{min-width:35%}.wd-xl-35-f{width:35px !important}.wd-xl-35p-f{width:35% !important}.mx-wd-xl-35p-f{max-width:35% !important}.mn-wd-xl-35p-f{min-width:35% !important}.wd-xl-40{width:40px}.wd-xl-40p{width:40%}.mx-wd-xl-40p{max-width:40%}.mn-wd-xl-40p{min-width:40%}.wd-xl-40-f{width:40px !important}.wd-xl-40p-f{width:40% !important}.mx-wd-xl-40p-f{max-width:40% !important}.mn-wd-xl-40p-f{min-width:40% !important}.wd-xl-45{width:45px}.wd-xl-45p{width:45%}.mx-wd-xl-45p{max-width:45%}.mn-wd-xl-45p{min-width:45%}.wd-xl-45-f{width:45px !important}.wd-xl-45p-f{width:45% !important}.mx-wd-xl-45p-f{max-width:45% !important}.mn-wd-xl-45p-f{min-width:45% !important}.wd-xl-50{width:50px}.wd-xl-50p{width:50%}.mx-wd-xl-50p{max-width:50%}.mn-wd-xl-50p{min-width:50%}.wd-xl-50-f{width:50px !important}.wd-xl-50p-f{width:50% !important}.mx-wd-xl-50p-f{max-width:50% !important}.mn-wd-xl-50p-f{min-width:50% !important}.wd-xl-55{width:55px}.wd-xl-55p{width:55%}.mx-wd-xl-55p{max-width:55%}.mn-wd-xl-55p{min-width:55%}.wd-xl-55-f{width:55px !important}.wd-xl-55p-f{width:55% !important}.mx-wd-xl-55p-f{max-width:55% !important}.mn-wd-xl-55p-f{min-width:55% !important}.wd-xl-60{width:60px}.wd-xl-60p{width:60%}.mx-wd-xl-60p{max-width:60%}.mn-wd-xl-60p{min-width:60%}.wd-xl-60-f{width:60px !important}.wd-xl-60p-f{width:60% !important}.mx-wd-xl-60p-f{max-width:60% !important}.mn-wd-xl-60p-f{min-width:60% !important}.wd-xl-65{width:65px}.wd-xl-65p{width:65%}.mx-wd-xl-65p{max-width:65%}.mn-wd-xl-65p{min-width:65%}.wd-xl-65-f{width:65px !important}.wd-xl-65p-f{width:65% !important}.mx-wd-xl-65p-f{max-width:65% !important}.mn-wd-xl-65p-f{min-width:65% !important}.wd-xl-70{width:70px}.wd-xl-70p{width:70%}.mx-wd-xl-70p{max-width:70%}.mn-wd-xl-70p{min-width:70%}.wd-xl-70-f{width:70px !important}.wd-xl-70p-f{width:70% !important}.mx-wd-xl-70p-f{max-width:70% !important}.mn-wd-xl-70p-f{min-width:70% !important}.wd-xl-75{width:75px}.wd-xl-75p{width:75%}.mx-wd-xl-75p{max-width:75%}.mn-wd-xl-75p{min-width:75%}.wd-xl-75-f{width:75px !important}.wd-xl-75p-f{width:75% !important}.mx-wd-xl-75p-f{max-width:75% !important}.mn-wd-xl-75p-f{min-width:75% !important}.wd-xl-80{width:80px}.wd-xl-80p{width:80%}.mx-wd-xl-80p{max-width:80%}.mn-wd-xl-80p{min-width:80%}.wd-xl-80-f{width:80px !important}.wd-xl-80p-f{width:80% !important}.mx-wd-xl-80p-f{max-width:80% !important}.mn-wd-xl-80p-f{min-width:80% !important}.wd-xl-85{width:85px}.wd-xl-85p{width:85%}.mx-wd-xl-85p{max-width:85%}.mn-wd-xl-85p{min-width:85%}.wd-xl-85-f{width:85px !important}.wd-xl-85p-f{width:85% !important}.mx-wd-xl-85p-f{max-width:85% !important}.mn-wd-xl-85p-f{min-width:85% !important}.wd-xl-90{width:90px}.wd-xl-90p{width:90%}.mx-wd-xl-90p{max-width:90%}.mn-wd-xl-90p{min-width:90%}.wd-xl-90-f{width:90px !important}.wd-xl-90p-f{width:90% !important}.mx-wd-xl-90p-f{max-width:90% !important}.mn-wd-xl-90p-f{min-width:90% !important}.wd-xl-95{width:95px}.wd-xl-95p{width:95%}.mx-wd-xl-95p{max-width:95%}.mn-wd-xl-95p{min-width:95%}.wd-xl-95-f{width:95px !important}.wd-xl-95p-f{width:95% !important}.mx-wd-xl-95p-f{max-width:95% !important}.mn-wd-xl-95p-f{min-width:95% !important}.wd-xl-100{width:100px}.wd-xl-100p{width:100%}.mx-wd-xl-100p{max-width:100%}.mn-wd-xl-100p{min-width:100%}.wd-xl-100-f{width:100px !important}.wd-xl-100p-f{width:100% !important}.mx-wd-xl-100p-f{max-width:100% !important}.mn-wd-xl-100p-f{min-width:100% !important}.wd-xl-150{width:150px}.wd-xl-150p{width:150%}.mx-wd-xl-150p{max-width:150%}.mn-wd-xl-150p{min-width:150%}.wd-xl-150-f{width:150px !important}.wd-xl-150p-f{width:150% !important}.mx-wd-xl-150p-f{max-width:150% !important}.mn-wd-xl-150p-f{min-width:150% !important}.wd-xl-200{width:200px}.wd-xl-200p{width:200%}.mx-wd-xl-200p{max-width:200%}.mn-wd-xl-200p{min-width:200%}.wd-xl-200-f{width:200px !important}.wd-xl-200p-f{width:200% !important}.mx-wd-xl-200p-f{max-width:200% !important}.mn-wd-xl-200p-f{min-width:200% !important}.wd-xl-250{width:250px}.wd-xl-250p{width:250%}.mx-wd-xl-250p{max-width:250%}.mn-wd-xl-250p{min-width:250%}.wd-xl-250-f{width:250px !important}.wd-xl-250p-f{width:250% !important}.mx-wd-xl-250p-f{max-width:250% !important}.mn-wd-xl-250p-f{min-width:250% !important}.wd-xl-300{width:300px}.wd-xl-300p{width:300%}.mx-wd-xl-300p{max-width:300%}.mn-wd-xl-300p{min-width:300%}.wd-xl-300-f{width:300px !important}.wd-xl-300p-f{width:300% !important}.mx-wd-xl-300p-f{max-width:300% !important}.mn-wd-xl-300p-f{min-width:300% !important}.wd-xl-350{width:350px}.wd-xl-350p{width:350%}.mx-wd-xl-350p{max-width:350%}.mn-wd-xl-350p{min-width:350%}.wd-xl-350-f{width:350px !important}.wd-xl-350p-f{width:350% !important}.mx-wd-xl-350p-f{max-width:350% !important}.mn-wd-xl-350p-f{min-width:350% !important}.wd-xl-400{width:400px}.wd-xl-400p{width:400%}.mx-wd-xl-400p{max-width:400%}.mn-wd-xl-400p{min-width:400%}.wd-xl-400-f{width:400px !important}.wd-xl-400p-f{width:400% !important}.mx-wd-xl-400p-f{max-width:400% !important}.mn-wd-xl-400p-f{min-width:400% !important}.wd-xl-450{width:450px}.wd-xl-450p{width:450%}.mx-wd-xl-450p{max-width:450%}.mn-wd-xl-450p{min-width:450%}.wd-xl-450-f{width:450px !important}.wd-xl-450p-f{width:450% !important}.mx-wd-xl-450p-f{max-width:450% !important}.mn-wd-xl-450p-f{min-width:450% !important}.wd-xl-500{width:500px}.wd-xl-500p{width:500%}.mx-wd-xl-500p{max-width:500%}.mn-wd-xl-500p{min-width:500%}.wd-xl-500-f{width:500px !important}.wd-xl-500p-f{width:500% !important}.mx-wd-xl-500p-f{max-width:500% !important}.mn-wd-xl-500p-f{min-width:500% !important}.wd-xl-550{width:550px}.wd-xl-550p{width:550%}.mx-wd-xl-550p{max-width:550%}.mn-wd-xl-550p{min-width:550%}.wd-xl-550-f{width:550px !important}.wd-xl-550p-f{width:550% !important}.mx-wd-xl-550p-f{max-width:550% !important}.mn-wd-xl-550p-f{min-width:550% !important}.wd-xl-600{width:600px}.wd-xl-600p{width:600%}.mx-wd-xl-600p{max-width:600%}.mn-wd-xl-600p{min-width:600%}.wd-xl-600-f{width:600px !important}.wd-xl-600p-f{width:600% !important}.mx-wd-xl-600p-f{max-width:600% !important}.mn-wd-xl-600p-f{min-width:600% !important}.wd-xl-650{width:650px}.wd-xl-650p{width:650%}.mx-wd-xl-650p{max-width:650%}.mn-wd-xl-650p{min-width:650%}.wd-xl-650-f{width:650px !important}.wd-xl-650p-f{width:650% !important}.mx-wd-xl-650p-f{max-width:650% !important}.mn-wd-xl-650p-f{min-width:650% !important}.wd-xl-700{width:700px}.wd-xl-700p{width:700%}.mx-wd-xl-700p{max-width:700%}.mn-wd-xl-700p{min-width:700%}.wd-xl-700-f{width:700px !important}.wd-xl-700p-f{width:700% !important}.mx-wd-xl-700p-f{max-width:700% !important}.mn-wd-xl-700p-f{min-width:700% !important}.wd-xl-750{width:750px}.wd-xl-750p{width:750%}.mx-wd-xl-750p{max-width:750%}.mn-wd-xl-750p{min-width:750%}.wd-xl-750-f{width:750px !important}.wd-xl-750p-f{width:750% !important}.mx-wd-xl-750p-f{max-width:750% !important}.mn-wd-xl-750p-f{min-width:750% !important}.wd-xl-800{width:800px}.wd-xl-800p{width:800%}.mx-wd-xl-800p{max-width:800%}.mn-wd-xl-800p{min-width:800%}.wd-xl-800-f{width:800px !important}.wd-xl-800p-f{width:800% !important}.mx-wd-xl-800p-f{max-width:800% !important}.mn-wd-xl-800p-f{min-width:800% !important}.wd-xl-850{width:850px}.wd-xl-850p{width:850%}.mx-wd-xl-850p{max-width:850%}.mn-wd-xl-850p{min-width:850%}.wd-xl-850-f{width:850px !important}.wd-xl-850p-f{width:850% !important}.mx-wd-xl-850p-f{max-width:850% !important}.mn-wd-xl-850p-f{min-width:850% !important}.wd-xl-900{width:900px}.wd-xl-900p{width:900%}.mx-wd-xl-900p{max-width:900%}.mn-wd-xl-900p{min-width:900%}.wd-xl-900-f{width:900px !important}.wd-xl-900p-f{width:900% !important}.mx-wd-xl-900p-f{max-width:900% !important}.mn-wd-xl-900p-f{min-width:900% !important}.wd-xl-950{width:950px}.wd-xl-950p{width:950%}.mx-wd-xl-950p{max-width:950%}.mn-wd-xl-950p{min-width:950%}.wd-xl-950-f{width:950px !important}.wd-xl-950p-f{width:950% !important}.mx-wd-xl-950p-f{max-width:950% !important}.mn-wd-xl-950p-f{min-width:950% !important}.wd-xl-1000{width:1000px}.wd-xl-1000p{width:1000%}.mx-wd-xl-1000p{max-width:1000%}.mn-wd-xl-1000p{min-width:1000%}.wd-xl-1000-f{width:1000px !important}.wd-xl-1000p-f{width:1000% !important}.mx-wd-xl-1000p-f{max-width:1000% !important}.mn-wd-xl-1000p-f{min-width:1000% !important}.wd-xl-auto{width:auto}.wd-xl-auto{width:auto !important}}.wd-100v{width:100vw} diff --git a/public/assets/img/eight.jpg b/public/assets/img/eight.jpg new file mode 100644 index 0000000..2ba10f6 Binary files /dev/null and b/public/assets/img/eight.jpg differ diff --git a/public/assets/img/faces/face1.jpg b/public/assets/img/faces/face1.jpg new file mode 100644 index 0000000..a7bd9cb Binary files /dev/null and b/public/assets/img/faces/face1.jpg differ diff --git a/public/assets/img/faces/face10.jpg b/public/assets/img/faces/face10.jpg new file mode 100644 index 0000000..8c0cbe0 Binary files /dev/null and b/public/assets/img/faces/face10.jpg differ diff --git a/public/assets/img/faces/face11.jpg b/public/assets/img/faces/face11.jpg new file mode 100644 index 0000000..097e0e7 Binary files /dev/null and b/public/assets/img/faces/face11.jpg differ diff --git a/public/assets/img/faces/face12.jpg b/public/assets/img/faces/face12.jpg new file mode 100644 index 0000000..75c7282 Binary files /dev/null and b/public/assets/img/faces/face12.jpg differ diff --git a/public/assets/img/faces/face13.jpg b/public/assets/img/faces/face13.jpg new file mode 100644 index 0000000..8a5faa4 Binary files /dev/null and b/public/assets/img/faces/face13.jpg differ diff --git a/public/assets/img/faces/face14.jpg b/public/assets/img/faces/face14.jpg new file mode 100644 index 0000000..a5764fc Binary files /dev/null and b/public/assets/img/faces/face14.jpg differ diff --git a/public/assets/img/faces/face15.jpg b/public/assets/img/faces/face15.jpg new file mode 100644 index 0000000..e895153 Binary files /dev/null and b/public/assets/img/faces/face15.jpg differ diff --git a/public/assets/img/faces/face16.jpg b/public/assets/img/faces/face16.jpg new file mode 100644 index 0000000..ec1a6cb Binary files /dev/null and b/public/assets/img/faces/face16.jpg differ diff --git a/public/assets/img/faces/face17.jpg b/public/assets/img/faces/face17.jpg new file mode 100644 index 0000000..082d165 Binary files /dev/null and b/public/assets/img/faces/face17.jpg differ diff --git a/public/assets/img/faces/face18.jpg b/public/assets/img/faces/face18.jpg new file mode 100644 index 0000000..259a288 Binary files /dev/null and b/public/assets/img/faces/face18.jpg differ diff --git a/public/assets/img/faces/face19.jpg b/public/assets/img/faces/face19.jpg new file mode 100644 index 0000000..7c1486b Binary files /dev/null and b/public/assets/img/faces/face19.jpg differ diff --git a/public/assets/img/faces/face2.jpg b/public/assets/img/faces/face2.jpg new file mode 100644 index 0000000..cef2297 Binary files /dev/null and b/public/assets/img/faces/face2.jpg differ diff --git a/public/assets/img/faces/face20.jpg b/public/assets/img/faces/face20.jpg new file mode 100644 index 0000000..8cb74b3 Binary files /dev/null and b/public/assets/img/faces/face20.jpg differ diff --git a/public/assets/img/faces/face21.jpg b/public/assets/img/faces/face21.jpg new file mode 100644 index 0000000..452d233 Binary files /dev/null and b/public/assets/img/faces/face21.jpg differ diff --git a/public/assets/img/faces/face22.jpg b/public/assets/img/faces/face22.jpg new file mode 100644 index 0000000..929a146 Binary files /dev/null and b/public/assets/img/faces/face22.jpg differ diff --git a/public/assets/img/faces/face23.jpg b/public/assets/img/faces/face23.jpg new file mode 100644 index 0000000..c2b5169 Binary files /dev/null and b/public/assets/img/faces/face23.jpg differ diff --git a/public/assets/img/faces/face24.jpg b/public/assets/img/faces/face24.jpg new file mode 100644 index 0000000..f3dcc1f Binary files /dev/null and b/public/assets/img/faces/face24.jpg differ diff --git a/public/assets/img/faces/face25.jpg b/public/assets/img/faces/face25.jpg new file mode 100644 index 0000000..722d502 Binary files /dev/null and b/public/assets/img/faces/face25.jpg differ diff --git a/public/assets/img/faces/face26.jpg b/public/assets/img/faces/face26.jpg new file mode 100644 index 0000000..69ef971 Binary files /dev/null and b/public/assets/img/faces/face26.jpg differ diff --git a/public/assets/img/faces/face27.jpg b/public/assets/img/faces/face27.jpg new file mode 100644 index 0000000..48faade Binary files /dev/null and b/public/assets/img/faces/face27.jpg differ diff --git a/public/assets/img/faces/face3.jpg b/public/assets/img/faces/face3.jpg new file mode 100644 index 0000000..a45915d Binary files /dev/null and b/public/assets/img/faces/face3.jpg differ diff --git a/public/assets/img/faces/face4.jpg b/public/assets/img/faces/face4.jpg new file mode 100644 index 0000000..105bb22 Binary files /dev/null and b/public/assets/img/faces/face4.jpg differ diff --git a/public/assets/img/faces/face5.jpg b/public/assets/img/faces/face5.jpg new file mode 100644 index 0000000..1124570 Binary files /dev/null and b/public/assets/img/faces/face5.jpg differ diff --git a/public/assets/img/faces/face6.jpg b/public/assets/img/faces/face6.jpg new file mode 100644 index 0000000..2fc0702 Binary files /dev/null and b/public/assets/img/faces/face6.jpg differ diff --git a/public/assets/img/faces/face7.jpg b/public/assets/img/faces/face7.jpg new file mode 100644 index 0000000..2f3adef Binary files /dev/null and b/public/assets/img/faces/face7.jpg differ diff --git a/public/assets/img/faces/face8.jpg b/public/assets/img/faces/face8.jpg new file mode 100644 index 0000000..61276ba Binary files /dev/null and b/public/assets/img/faces/face8.jpg differ diff --git a/public/assets/img/faces/face9.jpg b/public/assets/img/faces/face9.jpg new file mode 100644 index 0000000..831eabc Binary files /dev/null and b/public/assets/img/faces/face9.jpg differ diff --git a/public/assets/img/five.jpg b/public/assets/img/five.jpg new file mode 100644 index 0000000..8e31696 Binary files /dev/null and b/public/assets/img/five.jpg differ diff --git a/public/assets/img/four.jpg b/public/assets/img/four.jpg new file mode 100644 index 0000000..3658e24 Binary files /dev/null and b/public/assets/img/four.jpg differ diff --git a/public/assets/img/mastercard.png b/public/assets/img/mastercard.png new file mode 100755 index 0000000..c0465ef Binary files /dev/null and b/public/assets/img/mastercard.png differ diff --git a/public/assets/img/nine.jpg b/public/assets/img/nine.jpg new file mode 100644 index 0000000..856d4b3 Binary files /dev/null and b/public/assets/img/nine.jpg differ diff --git a/public/assets/img/one.jpg b/public/assets/img/one.jpg new file mode 100644 index 0000000..035a749 Binary files /dev/null and b/public/assets/img/one.jpg differ diff --git a/public/assets/img/seven.jpg b/public/assets/img/seven.jpg new file mode 100644 index 0000000..bf67880 Binary files /dev/null and b/public/assets/img/seven.jpg differ diff --git a/public/assets/img/six.jpg b/public/assets/img/six.jpg new file mode 100644 index 0000000..498353d Binary files /dev/null and b/public/assets/img/six.jpg differ diff --git a/public/assets/img/ten.jpg b/public/assets/img/ten.jpg new file mode 100644 index 0000000..c4639d3 Binary files /dev/null and b/public/assets/img/ten.jpg differ diff --git a/public/assets/img/three.jpg b/public/assets/img/three.jpg new file mode 100644 index 0000000..dce13e5 Binary files /dev/null and b/public/assets/img/three.jpg differ diff --git a/public/assets/img/two.jpg b/public/assets/img/two.jpg new file mode 100644 index 0000000..f6042fb Binary files /dev/null and b/public/assets/img/two.jpg differ diff --git a/public/assets/img/visa.png b/public/assets/img/visa.png new file mode 100755 index 0000000..a809669 Binary files /dev/null and b/public/assets/img/visa.png differ diff --git a/public/assets/js/app-calendar-events.js b/public/assets/js/app-calendar-events.js new file mode 100755 index 0000000..ac7e3a3 --- /dev/null +++ b/public/assets/js/app-calendar-events.js @@ -0,0 +1,142 @@ +// sample calendar events data + +'use strict' + +var curYear = moment().format('YYYY'); +var curMonth = moment().format('MM'); + +// Calendar Event Source +var azCalendarEvents = { + id: 1, + events: [ + { + id: '1', + start: curYear+'-'+curMonth+'-08T08:30:00', + end: curYear+'-'+curMonth+'-08T13:00:00', + title: 'BootstrapDash Meetup', + backgroundColor: '#bff2f2', + borderColor: '#00cccc', + description: 'In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis az pede mollis...' + },{ + id: '2', + start: curYear+'-'+curMonth+'-10T09:00:00', + end: curYear+'-'+curMonth+'-10T17:00:00', + title: 'Design Review', + backgroundColor: '#e0e4f4', + borderColor: '#0a2ba5', + description: 'In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis az pede mollis...' + },{ + id: '3', + start: curYear+'-'+curMonth+'-13T12:00:00', + end: curYear+'-'+curMonth+'-13T18:00:00', + title: 'Lifestyle Conference', + backgroundColor: '#ffd5cc', + borderColor: '#ff5733', + description: 'Aenean imperdiet. Etiam ultricies nisi vel augue. Curabitur ullamcorper ultricies nisi...' + },{ + id: '4', + start: curYear+'-'+curMonth+'-15T07:30:00', + end: curYear+'-'+curMonth+'-15T15:30:00', + title: 'Team Weekly Brownbag', + backgroundColor: '#d2e0ff', + borderColor: '#0373f3', + description: 'In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis az pede mollis...' + },{ + id: '5', + start: curYear+'-'+curMonth+'-17T10:00:00', + end: curYear+'-'+curMonth+'-19T15:00:00', + title: 'Music Festival', + backgroundColor: '#bfdeff', + borderColor: '#007bff', + description: 'In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis az pede mollis...' + },{ + id: '6', + start: curYear+'-'+curMonth+'-08T13:00:00', + end: curYear+'-'+curMonth+'-08T18:30:00', + title: 'Attend Lea\'s Wedding', + backgroundColor: '#d5c2f3', + borderColor: '#560bd0', + description: 'In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis az pede mollis...' + } + ] +}; + +// Birthday Events Source +var azBirthdayEvents = { + id: 2, + backgroundColor: '#cbfbb0', + borderColor: '#3bb001', + events: [ + { + id: '7', + start: curYear+'-'+curMonth+'-01T18:00:00', + end: curYear+'-'+curMonth+'-01T23:30:00', + title: 'Socrates Birthday', + backgroundColor: '#d8fed1', + borderColor: '#23bf08', + description: 'In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis az pede mollis...' + }, + { + id: '8', + start: curYear+'-'+curMonth+'-21T15:00:00', + end: curYear+'-'+curMonth+'-21T21:00:00', + title: 'Reynante\'s Birthday', + description: 'In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis az pede mollis...' + }, + { + id: '9', + start: curYear+'-'+curMonth+'-23T15:00:00', + end: curYear+'-'+curMonth+'-23T21:00:00', + title: 'Pauline\'s Birthday', + description: 'In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis az pede mollis...' + } + ] +}; + + +var azHolidayEvents = { + id: 3, + backgroundColor: '#fbbfdc', + borderColor: '#f10075', + events: [ + { + id: '10', + start: curYear+'-'+curMonth+'-04', + end: curYear+'-'+curMonth+'-06', + title: 'Feast Day' + }, + { + id: '11', + start: curYear+'-'+curMonth+'-26', + end: curYear+'-'+curMonth+'-27', + title: 'Memorial Day' + }, + { + id: '12', + start: curYear+'-'+curMonth+'-28', + end: curYear+'-'+curMonth+'-29', + title: 'Veteran\'s Day' + } + ] +}; + + +var azOtherEvents = { + id: 4, + backgroundColor: '#ffecca', + borderColor: '#ffb52b', + events: [ + { + id: '13', + start: curYear+'-'+curMonth+'-06', + end: curYear+'-'+curMonth+'-08', + title: 'My Rest Day' + }, + { + id: '13', + start: curYear+'-'+curMonth+'-29', + end: curYear+'-'+curMonth+'-31', + title: 'My Rest Day' + } + ] +}; diff --git a/public/assets/js/app-calendar.js b/public/assets/js/app-calendar.js new file mode 100755 index 0000000..49769d2 --- /dev/null +++ b/public/assets/js/app-calendar.js @@ -0,0 +1,205 @@ +$(function(){ + 'use strict' + + // Datepicker found in left sidebar of the page + var highlightedDays = ['2018-5-10','2018-5-11','2018-5-12','2018-5-13','2018-5-14','2018-5-15','2018-5-16']; + var date = new Date(); + + $('.fc-datepicker').datepicker({ + showOtherMonths: true, + selectOtherMonths: true, + dateFormat: 'yy-mm-dd', + beforeShowDay: function(date) { + var m = date.getMonth(), d = date.getDate(), y = date.getFullYear(); + for (var i = 0; i < highlightedDays.length; i++) { + if($.inArray(y + '-' + (m+1) + '-' + d,highlightedDays) != -1) { + return [true, 'ui-date-highlighted', '']; + } + } + return [true]; + } + }); + + var generateTime = function(element) { + var n = 0, + min = 30, + periods = [' AM', ' PM'], + times = [], + hours = [12, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11]; + + for (var i = 0; i < hours.length; i++) { + times.push(hours[i] + ':' + n + n + periods[0]); + while (n < 60 - min) { + times.push(hours[i] + ':' + ((n += min) < 10 ? 'O' + n : n) + periods[0]) + } + n = 0; + } + + times = times.concat(times.slice(0).map(function(time) { + return time.replace(periods[0], periods[1]) + })); + + //console.log(times); + $.each(times, function(index, val){ + $(element).append(''); + }); + } + + generateTime('.az-event-time'); + + // Initialize fullCalendar + $('#calendar').fullCalendar({ + header: { + left: 'prev,next today', + center: 'title', + right: 'month,agendaWeek,agendaDay,listWeek' + }, + navLinks: true, + selectable: true, + selectLongPressDelay: 100, + editable: true, + nowIndicator: true, + defaultView: 'listMonth', + views: { + agenda: { + columnHeaderHtml: function(mom) { + return '' + mom.format('ddd') + '' + + '' + mom.format('DD') + ''; + } + }, + day: { columnHeader: false }, + listMonth: { + listDayFormat: 'ddd DD', + listDayAltFormat: false + }, + listWeek: { + listDayFormat: 'ddd DD', + listDayAltFormat: false + }, + agendaThreeDay: { + type: 'agenda', + duration: { days: 3 }, + titleFormat: 'MMMM YYYY' + } + }, + eventSources: [azCalendarEvents, azBirthdayEvents, azHolidayEvents, azOtherEvents], + eventAfterAllRender: function(view) { + if(view.name === 'listMonth' || view.name === 'listWeek') { + var dates = view.el.find('.fc-list-heading-main'); + dates.each(function(){ + var text = $(this).text().split(' '); + var now = moment().format('DD'); + + $(this).html(text[0]+''+text[1]+''); + if(now === text[1]) { $(this).addClass('now'); } + }); + } + + console.log(view.el); + }, + eventRender: function(event, element) { + + if(event.description) { + element.find('.fc-list-item-title').append('' + event.description + ''); + element.find('.fc-content').append('' + event.description + ''); + } + + var eBorderColor = (event.source.borderColor)? event.source.borderColor : event.borderColor; + element.find('.fc-list-item-time').css({ + color: eBorderColor, + borderColor: eBorderColor + }); + + element.find('.fc-list-item-title').css({ + borderColor: eBorderColor + }); + + element.css('borderLeftColor', eBorderColor); + }, + }); + + var azCalendar = $('#calendar').fullCalendar('getCalendar'); + + // change view to week when in tablet + if(window.matchMedia('(min-width: 576px)').matches) { + azCalendar.changeView('agendaWeek'); + } + + // change view to month when in desktop + if(window.matchMedia('(min-width: 992px)').matches) { + azCalendar.changeView('month'); + } + + // change view based in viewport width when resize is detected + azCalendar.option('windowResize', function(view) { + if(view.name === 'listWeek') { + if(window.matchMedia('(min-width: 992px)').matches) { + azCalendar.changeView('month'); + } else { + azCalendar.changeView('listWeek'); + } + } + }); + + // display current date + var azDateNow = azCalendar.getDate(); + azCalendar.option('select', function(startDate, endDate){ + $('#modalSetSchedule').modal('show'); + $('#azEventStartDate').val(startDate.format('LL')); + $('#azEventEndDate').val(endDate.format('LL')); + + $('#azEventStartTime').val(startDate.format('LT')).trigger('change'); + $('#azEventEndTime').val(endDate.format('LT')).trigger('change'); + }); + + // Display calendar event modal + azCalendar.on('eventClick', function(calEvent, jsEvent, view){ + + var modal = $('#modalCalendarEvent'); + + modal.modal('show'); + modal.find('.event-title').text(calEvent.title); + + if(calEvent.description) { + modal.find('.event-desc').text(calEvent.description); + modal.find('.event-desc').prev().removeClass('d-none'); + } else { + modal.find('.event-desc').text(''); + modal.find('.event-desc').prev().addClass('d-none'); + } + + modal.find('.event-start-date').text(moment(calEvent.start).format('LLL')); + modal.find('.event-end-date').text(moment(calEvent.end).format('LLL')); + + //styling + modal.find('.modal-header').css('backgroundColor', (calEvent.source.borderColor)? calEvent.source.borderColor : calEvent.borderColor); + }); + + // Enable/disable calendar events from displaying in calendar + $('.az-nav-calendar-event a').on('click', function(e){ + e.preventDefault(); + if($(this).hasClass('exclude')) { + $(this).removeClass('exclude'); + + $(this).is(':first-child')? azCalendar.addEventSource(azCalendarEvents) : ''; + $(this).is(':nth-child(2)')? azCalendar.addEventSource(azBirthdayEvents) : ''; + $(this).is(':nth-child(3)')? azCalendar.addEventSource(azHolidayEvents) : ''; + $(this).is(':nth-child(4)')? azCalendar.addEventSource(azOtherEvents) : ''; + + } else { + $(this).addClass('exclude'); + + $(this).is(':first-child')? azCalendar.removeEventSource(1) : ''; + $(this).is(':nth-child(2)')? azCalendar.removeEventSource(2) : ''; + $(this).is(':nth-child(3)')? azCalendar.removeEventSource(3) : ''; + $(this).is(':nth-child(4)')? azCalendar.removeEventSource(4) : ''; + } + + azCalendar.render(); + + if(window.matchMedia('(max-width: 575px)').matches) { + $('body').removeClass('az-content-left-show'); + } + }); + +}) diff --git a/public/assets/js/azia.js b/public/assets/js/azia.js new file mode 100755 index 0000000..091c53d --- /dev/null +++ b/public/assets/js/azia.js @@ -0,0 +1,121 @@ +$(function(){ + 'use strict' + + // This template is mobile first so active menu in navbar + // has submenu displayed by default but not in desktop + // so the code below will hide the active menu if it's in desktop + if(window.matchMedia('(min-width: 992px)').matches) { + $('.az-navbar .active').removeClass('show'); + $('.az-header-menu .active').removeClass('show'); + } + + // Shows header dropdown while hiding others + $('.az-header .dropdown > a').on('click', function(e) { + e.preventDefault(); + $(this).parent().toggleClass('show'); + $(this).parent().siblings().removeClass('show'); + }); + + // Showing submenu in navbar while hiding previous open submenu + $('.az-navbar .with-sub').on('click', function(e) { + e.preventDefault(); + $(this).parent().toggleClass('show'); + $(this).parent().siblings().removeClass('show'); + }); + + // this will hide dropdown menu from open in mobile + $('.dropdown-menu .az-header-arrow').on('click', function(e){ + e.preventDefault(); + $(this).closest('.dropdown').removeClass('show'); + }); + + // this will show navbar in left for mobile only + $('#azNavShow, #azNavbarShow').on('click', function(e){ + e.preventDefault(); + $('body').addClass('az-navbar-show'); + }); + + // this will hide currently open content of page + // only works for mobile + $('#azContentLeftShow').on('click touch', function(e){ + e.preventDefault(); + $('body').addClass('az-content-left-show'); + }); + + // This will hide left content from showing up in mobile only + $('#azContentLeftHide').on('click touch', function(e){ + e.preventDefault(); + $('body').removeClass('az-content-left-show'); + }); + + // this will hide content body from showing up in mobile only + $('#azContentBodyHide').on('click touch', function(e){ + e.preventDefault(); + $('body').removeClass('az-content-body-show'); + }) + + // navbar backdrop for mobile only + $('body').append('
'); + $('.az-navbar-backdrop').on('click touchstart', function(){ + $('body').removeClass('az-navbar-show'); + }); + + // Close dropdown menu of header menu + $(document).on('click touchstart', function(e){ + e.stopPropagation(); + + // closing of dropdown menu in header when clicking outside of it + var dropTarg = $(e.target).closest('.az-header .dropdown').length; + if(!dropTarg) { + $('.az-header .dropdown').removeClass('show'); + } + + // closing nav sub menu of header when clicking outside of it + if(window.matchMedia('(min-width: 992px)').matches) { + + // Navbar + var navTarg = $(e.target).closest('.az-navbar .nav-item').length; + if(!navTarg) { + $('.az-navbar .show').removeClass('show'); + } + + // Header Menu + var menuTarg = $(e.target).closest('.az-header-menu .nav-item').length; + if(!menuTarg) { + $('.az-header-menu .show').removeClass('show'); + } + + if($(e.target).hasClass('az-menu-sub-mega')) { + $('.az-header-menu .show').removeClass('show'); + } + + } else { + + // + if(!$(e.target).closest('#azMenuShow').length) { + var hm = $(e.target).closest('.az-header-menu').length; + if(!hm) { + $('body').removeClass('az-header-menu-show'); + } + } + } + + }); + + $('#azMenuShow').on('click', function(e){ + e.preventDefault(); + $('body').toggleClass('az-header-menu-show'); + }) + + $('.az-header-menu .with-sub').on('click', function(e){ + e.preventDefault(); + $(this).parent().toggleClass('show'); + $(this).parent().siblings().removeClass('show'); + }) + + $('.az-header-menu-header .close').on('click', function(e){ + e.preventDefault(); + $('body').removeClass('az-header-menu-show'); + }) + +}); diff --git a/public/assets/js/chart.chartjs.js b/public/assets/js/chart.chartjs.js new file mode 100755 index 0000000..15f5f8a --- /dev/null +++ b/public/assets/js/chart.chartjs.js @@ -0,0 +1,437 @@ +$(function(){ + 'use strict'; + + var ctx1 = document.getElementById('chartBar1').getContext('2d'); + new Chart(ctx1, { + type: 'bar', + data: { + labels: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun'], + datasets: [{ + label: '# of Votes', + data: [12, 39, 20, 10, 25, 18], + backgroundColor: '#560bd0' + }] + }, + options: { + maintainAspectRatio: false, + responsive: true, + legend: { + display: false, + labels: { + display: false + } + }, + scales: { + yAxes: [{ + ticks: { + beginAtZero:true, + fontSize: 10, + max: 80 + } + }], + xAxes: [{ + barPercentage: 0.6, + ticks: { + beginAtZero:true, + fontSize: 11 + } + }] + } + } + }); + + var ctx2 = document.getElementById('chartBar2').getContext('2d'); + new Chart(ctx2, { + type: 'bar', + data: { + labels: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun'], + datasets: [{ + label: '# of Votes', + data: [12, 39, 20, 10, 25, 18], + backgroundColor: 'rgba(0,123,255,.5)' + }] + }, + options: { + maintainAspectRatio: false, + responsive: true, + legend: { + display: false, + labels: { + display: false + } + }, + scales: { + yAxes: [{ + ticks: { + beginAtZero:true, + fontSize: 10, + max: 80 + } + }], + xAxes: [{ + barPercentage: 0.6, + ticks: { + beginAtZero:true, + fontSize: 11 + } + }] + } + } + }); + + var ctx3 = document.getElementById('chartBar3').getContext('2d'); + + var gradient = ctx3.createLinearGradient(0, 0, 0, 250); + gradient.addColorStop(0, '#560bd0'); + gradient.addColorStop(1, '#00cccc'); + + new Chart(ctx3, { + type: 'bar', + data: { + labels: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun'], + datasets: [{ + label: '# of Votes', + data: [12, 39, 20, 10, 25, 18], + backgroundColor: gradient + }] + }, + options: { + maintainAspectRatio: false, + responsive: true, + legend: { + display: false, + labels: { + display: false + } + }, + scales: { + yAxes: [{ + ticks: { + beginAtZero:true, + fontSize: 10, + max: 80 + } + }], + xAxes: [{ + barPercentage: 0.6, + ticks: { + beginAtZero:true, + fontSize: 11 + } + }] + } + } + }); + + var ctx4 = document.getElementById('chartBar4').getContext('2d'); + new Chart(ctx4, { + type: 'horizontalBar', + data: { + labels: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun'], + datasets: [{ + label: '# of Votes', + data: [12, 39, 20, 10, 25, 18], + backgroundColor: ['#560bd0', '#007bff','#00cccc','#cbe0e3','#74de00','#f10075'] + }] + }, + options: { + maintainAspectRatio: false, + legend: { + display: false, + labels: { + display: false + } + }, + scales: { + yAxes: [{ + ticks: { + beginAtZero:true, + fontSize: 10, + } + }], + xAxes: [{ + ticks: { + beginAtZero:true, + fontSize: 11, + max: 80 + } + }] + } + } + }); + + var ctx5 = document.getElementById('chartBar5').getContext('2d'); + new Chart(ctx5, { + type: 'horizontalBar', + data: { + labels: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun'], + datasets: [{ + data: [12, 39, 20, 10, 25, 18], + backgroundColor: ['#560bd0', '#007bff','#74de00','#f10075','#74de00','#f10075'] + }, { + data: [22, 30, 25, 30, 20, 40], + backgroundColor: '#cad0e8' + }] + }, + options: { + maintainAspectRatio: false, + legend: { + display: false, + labels: { + display: false + } + }, + scales: { + yAxes: [{ + ticks: { + beginAtZero:true, + fontSize: 11, + } + }], + xAxes: [{ + ticks: { + beginAtZero:true, + fontSize: 11, + max: 80 + } + }] + } + } + }); + + /** STACKED BAR CHART **/ + var ctx6 = document.getElementById('chartStacked1'); + new Chart(ctx6, { + type: 'bar', + data: { + labels: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun'], + datasets: [{ + data: [10, 24, 20, 25, 35, 50], + backgroundColor: '#314d83', + borderWidth: 1, + fill: true + },{ + data: [10, 24, 20, 25, 35, 50], + backgroundColor: '#007bff', + borderWidth: 1, + fill: true + },{ + data: [20, 30, 28, 33, 45, 65], + backgroundColor: '#cad0e8', + borderWidth: 1, + fill: true + }] + }, + options: { + maintainAspectRatio: false, + legend: { + display: false, + labels: { + display: false + } + }, + scales: { + yAxes: [{ + stacked: true, + ticks: { + beginAtZero:true, + fontSize: 11 + } + }], + xAxes: [{ + barPercentage: 0.5, + stacked: true, + ticks: { + fontSize: 11 + } + }] + } + } + }); + + var ctx7 = document.getElementById('chartStacked2'); + new Chart(ctx7, { + type: 'horizontalBar', + data: { + labels: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun'], + datasets: [{ + data: [10, 24, 20, 25, 35, 50], + backgroundColor: '#314d83', + borderWidth: 1, + fill: true + },{ + data: [10, 24, 20, 25, 35, 50], + backgroundColor: '#007bff', + borderWidth: 1, + fill: true + },{ + data: [20, 30, 28, 33, 45, 65], + backgroundColor: '#cad0e8', + borderWidth: 1, + fill: true + }] + }, + options: { + maintainAspectRatio: false, + legend: { + display: false, + labels: { + display: false + } + }, + scales: { + yAxes: [{ + stacked: true, + ticks: { + beginAtZero:true, + fontSize: 10, + max: 80 + } + }], + xAxes: [{ + stacked: true, + ticks: { + beginAtZero:true, + fontSize: 11 + } + }] + } + } + }); + + /* LINE CHART */ + var ctx8 = document.getElementById('chartLine1'); + new Chart(ctx8, { + type: 'line', + data: { + labels: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'July', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'], + datasets: [{ + data: [12, 15, 18, 40, 35, 38, 32, 20, 25, 15, 25, 30], + borderColor: '#f10075', + borderWidth: 1, + fill: false + },{ + data: [10, 20, 25, 55, 50, 45, 35, 30, 45, 35, 55, 40], + borderColor: '#007bff', + borderWidth: 1, + fill: false + }] + }, + options: { + maintainAspectRatio: false, + legend: { + display: false, + labels: { + display: false + } + }, + scales: { + yAxes: [{ + ticks: { + beginAtZero:true, + fontSize: 10, + max: 80 + } + }], + xAxes: [{ + ticks: { + beginAtZero:true, + fontSize: 11 + } + }] + } + } + }); + + /** AREA CHART **/ + var ctx9 = document.getElementById('chartArea1'); + + var gradient1 = ctx3.createLinearGradient(0, 350, 0, 0); + gradient1.addColorStop(0, 'rgba(241,0,117,0)'); + gradient1.addColorStop(1, 'rgba(241,0,117,.5)'); + + var gradient2 = ctx3.createLinearGradient(0, 280, 0, 0); + gradient2.addColorStop(0, 'rgba(0,123,255,0)'); + gradient2.addColorStop(1, 'rgba(0,123,255,.3)'); + + new Chart(ctx9, { + type: 'line', + data: { + labels: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'July', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'], + datasets: [{ + data: [12, 15, 18, 40, 35, 38, 32, 20, 25, 15, 25, 30], + borderColor: '#f10075', + borderWidth: 1, + backgroundColor: gradient1 + },{ + data: [10, 20, 25, 55, 50, 45, 35, 37, 45, 35, 55, 40], + borderColor: '#007bff', + borderWidth: 1, + backgroundColor: gradient2 + }] + }, + options: { + maintainAspectRatio: false, + legend: { + display: false, + labels: { + display: false + } + }, + scales: { + yAxes: [{ + ticks: { + beginAtZero:true, + fontSize: 10, + max: 80 + } + }], + xAxes: [{ + ticks: { + beginAtZero:true, + fontSize: 11 + } + }] + } + } + }); + + /** PIE CHART **/ + var datapie = { + labels: ['Jan', 'Feb', 'Mar', 'Apr', 'May'], + datasets: [{ + data: [20,20,30,5,25], + backgroundColor: ['#560bd0', '#007bff','#00cccc','#cbe0e3','#74de00'] + }] + }; + + var optionpie = { + maintainAspectRatio: false, + responsive: true, + legend: { + display: false, + }, + animation: { + animateScale: true, + animateRotate: true + } + }; + + // For a doughnut chart + var ctx6 = document.getElementById('chartPie'); + var myPieChart6 = new Chart(ctx6, { + type: 'doughnut', + data: datapie, + options: optionpie + }); + + // For a pie chart + var ctx7 = document.getElementById('chartDonut'); + var myPieChart7 = new Chart(ctx7, { + type: 'pie', + data: datapie, + options: optionpie + }); + + +}); diff --git a/public/assets/js/chart.flot.js b/public/assets/js/chart.flot.js new file mode 100755 index 0000000..05bc6c9 --- /dev/null +++ b/public/assets/js/chart.flot.js @@ -0,0 +1,339 @@ +$(function() { + 'use strict'; + + $.plot('#flotBar1', [{ + data: [[0, 3], [1, 8], [2, 5], [3, 13],[4,5], [5,7],[6,4], [7,6], [8,3], [9,7]] + }], { + series: { + bars: { + show: true, + lineWidth: 0, + fillColor: '#b3c4cc', + barWidth: .5 + }, + highlightColor: '#007bff' + }, + grid: { + borderWidth: 1, + borderColor: '#e5e5e5', + hoverable: true + }, + yaxis: { + tickColor: '#d9d9d9', + font: { + color: '#5f6d7a', + size: 10 + } + }, + xaxis: { + tickColor: '#d9d9d9', + font: { + color: '#5f6d7a', + size: 10 + } + } + }); + + $.plot('#flotBar2', [{ + data: [[0, 3], [2, 8], [4, 5], [6, 13],[8,5], [10,7],[12,8], [14,10]], + bars: { + show: true, + lineWidth: 0, + fillColor: '#007bff', + barWidth: .8 + } + },{ + data: [[1, 5], [3, 7], [5, 10], [7, 7],[9,9], [11,5],[13,4], [15,6]], + bars: { + show: true, + lineWidth: 0, + fillColor: '#aab7db', + barWidth: .8 + } + }], { + grid: { + borderWidth: 1, + borderColor: '#D9D9D9' + }, + yaxis: { + tickColor: '#d9d9d9', + font: { + color: '#666', + size: 10 + } + }, + xaxis: { + tickColor: '#d9d9d9', + font: { + color: '#666', + size: 10 + } + } + }); + + var newCust = [[0, 2], [1, 3], [2,6], [3, 5], [4, 7], [5, 8], [6, 10]]; + var retCust = [[0, 1], [1, 2], [2,5], [3, 3], [4, 5], [5, 6], [6,9]]; + + var plot = $.plot($('#flotLine1'),[ + { + data: newCust, + label: 'New Customer', + color: '#007bff' + }, + { + data: retCust, + label: 'Returning Customer', + color: '#f10075' + }], + { + series: { + lines: { + show: true, + lineWidth: 2 + }, + shadowSize: 0 + }, + points: { + show: false, + }, + legend: { + noColumns: 1, + position: 'nw' + }, + grid: { + hoverable: true, + clickable: true, + borderWidth: 0, + labelMargin: 5 + }, + yaxis: { + min: 0, + max: 15, + color: '#eee', + font: { + size: 10, + color: '#999' + } + }, + xaxis: { + color: '#eee', + font: { + size: 10, + color: '#999' + } + } + }); + + var plot = $.plot($('#flotLine2'),[ + { + data: newCust, + label: 'New Customer', + color: '#560bd0' + }, + { + data: retCust, + label: 'Returning Customer', + color: '#85d00b' + }], + { + series: { + lines: { + show: true, + lineWidth: 2 + }, + shadowSize: 0 + }, + points: { + show: true, + }, + legend: { + noColumns: 1, + position: 'ne' + }, + grid: { + hoverable: true, + clickable: true, + borderColor: '#ddd', + borderWidth: 0, + labelMargin: 5 + }, + yaxis: { + min: 0, + max: 15, + color: '#eee', + font: { + size: 10, + color: '#999' + } + }, + xaxis: { + color: '#eee', + font: { + size: 10, + color: '#999' + } + } + }); + + + + var plot = $.plot($('#flotArea1'),[ + { + data: newCust, + label: 'New Customer', + color: '#f10075' + }, + { + data: retCust, + label: 'Returning Customer', + color: '#007bff' + }], + { + series: { + lines: { + show: true, + lineWidth: 1, + fill: true, + fillColor: { colors: [ { opacity: 0 }, { opacity: 0.8 } ] } + }, + shadowSize: 0 + }, + points: { + show: false, + }, + legend: { + noColumns: 1, + position: 'nw' + }, + grid: { + hoverable: true, + clickable: true, + borderColor: '#ddd', + borderWidth: 0, + labelMargin: 5 + }, + yaxis: { + min: 0, + max: 15, + color: '#eee', + font: { + size: 10, + color: '#999' + } + }, + xaxis: { + color: '#eee', + font: { + size: 10, + color: '#999' + } + } + }); + + var plot = $.plot($('#flotArea2'),[ + { + data: newCust, + label: 'New Customer', + color: '#85d00b' + }, + { + data: retCust, + label: 'Returning Customer', + color: '#560bd0' + }], + { + series: { + lines: { + show: true, + lineWidth: 1, + fill: true, + fillColor: { colors: [ { opacity: 0 }, { opacity: 0.3 } ] } + }, + shadowSize: 0 + }, + points: { + show: true, + }, + legend: { + noColumns: 1, + position: 'nw' + }, + grid: { + hoverable: true, + clickable: true, + borderColor: '#ddd', + borderWidth: 0, + labelMargin: 5 + }, + yaxis: { + min: 0, + max: 15, + color: '#eee', + font: { + size: 10, + color: '#999' + } + }, + xaxis: { + color: '#eee', + font: { + size: 10, + color: '#999' + } + } + }); + + + /**************** PIE CHART *******************/ + var piedata = [ + { label: 'Series 1', data: [[1,10]], color: '#6610f2'}, + { label: 'Series 2', data: [[1,30]], color: '#007bff'}, + { label: 'Series 3', data: [[1,90]], color: '#85d00b'}, + { label: 'Series 4', data: [[1,70]], color: '#00cccc'}, + { label: 'Series 5', data: [[1,80]], color: '#494c57'} + ]; + + $.plot('#flotPie1', piedata, { + series: { + pie: { + show: true, + radius: 1, + label: { + show: true, + radius: 2/3, + formatter: labelFormatter, + threshold: 0.1 + } + } + }, + grid: { + hoverable: true, + clickable: true + } + }); + + $.plot('#flotPie2', piedata, { + series: { + pie: { + show: true, + radius: 1, + innerRadius: 0.5, + label: { + show: true, + radius: 2/3, + formatter: labelFormatter, + threshold: 0.1 + } + } + }, + grid: { + hoverable: true, + clickable: true + } + }); + + function labelFormatter(label, series) { + return '
' + label + '
' + Math.round(series.percent) + '%
'; + } + + }); diff --git a/public/assets/js/chart.flot.sampledata.js b/public/assets/js/chart.flot.sampledata.js new file mode 100755 index 0000000..089f78b --- /dev/null +++ b/public/assets/js/chart.flot.sampledata.js @@ -0,0 +1,1182 @@ +'use strict' + +//\[\s+([0-9]+),\s+([0-9]+).([0-9]+)\s+], + +var flotSampleData1 = [ + [0,52.0372905861701], + [1,51.6784633777384], + [2,50.93706057748914], + [3,55.04861395738878], + [4,52.445845968822006], + [5,50.93681261537495], + [6,55.41621667661467], + [7,57.10873028593814], + [8,54.09853093352003], + [9,57.63062912168092], + [10,61.76480188676403], + [11,59.58083036192488], + [12,63.457788916796034], + [13,62.954499198759066], + [14,59.19255443449066], + [15,61.107062594673295], + [16,61.797400811178974], + [17,64.60795847250468], + [18,64.94400805384853], + [19,61.50219489844255], + [20,61.93683013860428], + [21,62.12178115474478], + [22,64.02455260206408], + [23,61.58732990833391], + [24,63.551262643229364], + [25,65.22361572255349], + [26,60.441963794914685], + [27,64.64029619252607], + [28,62.426770751912244], + [29,65.57029913775051], + [30,63.00164434725933], + [31,59.938730316943264], + [32,61.21292489988514], + [33,65.77130118594573], + [34,65.5541721142882], + [35,63.93401015856749], + [36,67.01353513480325], + [37,65.66695461954404], + [38,64.11915246645671], + [39,60.65295583256223], + [40,59.84531890600387], + [41,62.84128868653511], + [42,62.05109680732927], + [43,60.639329151330514], + [44,65.27372270996493], + [45,65.75252599947375], + [46,67.44937748479448], + [47,71.85312747921894], + [48,71.20453830988976], + [49,73.704094626496], + [50,72.09874239461732], + [51,76.26158453144669], + [52,75.11484055938921], + [53,71.3184658319678], + [54,69.27430732410659], + [55,74.11974834063744], + [56,70.45309021701111], + [57,71.5642128350373], + [58,73.77304771466723], + [59,72.23324279222032], + [60,73.39178539498548], + [61,71.07239154046417], + [62,72.27891949571499], + [63,76.72119426813776], + [64,75.00229551979022], + [65,73.0935978147839], + [66,70.69810340351626], + [67,72.05286144835289], + [68,72.26298086101808], + [69,72.6436242921161], + [70,68.41406882360485], + [71,69.93434725721592], + [72,67.83261787459914], + [73,65.9604178593469], + [74,66.24812269600427], + [75,65.96271498539507], + [76,67.30395720979544], + [77,71.85328027085012], + [78,75.30294246959333], + [79,77.08382476806544], + [80,74.32981965803775], + [81,78.14855029424592], + [82,79.24777726499396], + [83,74.56684531031232], + [84,77.5645488122174], + [85,81.07429461477984], + [86,84.82578743840715], + [87,85.74869992672912], + [88,90.25008494594036], + [89,87.46803318760058], + [90,89.44662570313793], + [91,90.59202152961588], + [92,87.74638816118593], + [93,90.73036160804772], + [94,89.96736529325918], + [95,90.98255637520919], + [96,93.62173197144477], + [97,90.21433255298969], + [98,90.94677353162982], + [99,95.89555582498052], + [100,94.69882355905038] +]; + +var flotSampleData2 = [ + [0,49.331065063219285], + [1,48.79814898366035], + [2,50.61793547911337], + [3,53.31696317779434], + [4,54.78560952831719], + [5,53.84293992505776], + [6,54.682958355082874], + [7,56.742547193381654], + [8,56.99677491680908], + [9,56.144488388681445], + [10,56.567122269843885], + [11,60.355022877262684], + [12,58.7457726121753], + [13,61.445407102315514], + [14,61.112870581452086], + [15,58.57202276349258], + [16,54.72497594269612], + [17,52.070341498681124], + [18,51.09867716530438], + [19,47.48185519192089], + [20,48.57861168097493], + [21,48.99789250679436], + [22,53.582491800119456], + [23,50.28407438696142], + [24,46.24606628705599], + [25,48.614330310543856], + [26,51.75313497797672], + [27,51.34463925296746], + [28,50.217320673443936], + [29,54.657281647073304], + [30,52.445057217757245], + [31,53.063914668561345], + [32,57.07494250387825], + [33,52.970403392565515], + [34,48.723854145068756], + [35,52.69064629353968], + [36,53.590890118378205], + [37,58.52332126105745], + [38,55.1037709679581], + [39,58.05347017020425], + [40,61.350810521199946], + [41,57.746188675088575], + [42,60.276910973029786], + [43,61.00841651851749], + [44,57.786733623457636], + [45,56.805721677811356], + [46,58.90301959619822], + [47,62.45091969566289], + [48,58.75007922945926], + [49,58.405842466185355], + [50,56.746633122658444], + [51,52.76631598845634], + [52,52.3020769891715], + [53,50.56370473325533], + [54,55.407205992344544], + [55,50.49825590435839], + [56,52.4975614755482], + [57,48.79614749316488], + [58,47.46776704767111], + [59,43.317880548036456], + [60,38.96296121124144], + [61,34.73218432559628], + [62,31.033700732272116], + [63,32.637987000382296], + [64,36.89513637594264], + [65,35.89701755609185], + [66,32.742284578187544], + [67,33.20516407297906], + [68,30.82094321791933], + [69,28.64770271525896], + [70,28.44679026902145], + [71,27.737654438195236], + [72,27.755190738237744], + [73,25.96228929938593], + [74,24.38197394166947], + [75,21.95038772723346], + [76,22.08944448751686], + [77,23.54611335622507], + [78,27.309610481106425], + [79,30.276849322378055], + [80,27.25409223418214], + [81,29.920374921780102], + [82,25.143447932376702], + [83,23.09444253479626], + [84,23.79459089729409], + [85,23.46775072519832], + [86,27.9908486073969], + [87,23.218855925354447], + [88,23.9163141686872], + [89,19.217667423877607], + [90,15.135179958932145], + [91,15.08666008920407], + [92,11.006269617032526], + [93,9.201671310476282], + [94,7.475865090236113], + [95,11.645754524211824], + [96,15.76161040821357], + [97,13.995208323029495], + [98,12.59338056489445], + [99,13.536707176236195], + [100,15.01308268888571], + [101,13.957161242832626], + [102,13.237091619700053], + [103,18.10178875669874], + [104,20.634765519499563], + [105,21.064946755449817], + [106,25.370593801826132], + [107,25.321453557866203], + [108,20.947464543531186], + [109,18.750516645477425], + [110,15.382042945356737], + [111,14.569147793065632], + [112,17.949159188821604], + [113,15.965876707018058], + [114,16.359355082317443], + [115,14.163139419453657], + [116,12.106761506858124], + [117,14.843319717588216], + [118,17.24291158460492], + [119,17.799018581487058], + [120,14.038359368301329], + [121,18.658227817264983], + [122,18.463689935573676], + [123,22.687619584142652], + [124,25.088957744790036], + [125,28.184893996099582], + [126,28.03276492115397], + [127,24.11167758305713], + [128,24.28007484247854], + [129,28.23487421795626], + [130,26.246971673504287], + [131,29.330939820784877], + [132,26.07749855928238], + [133,23.921786397788168], + [134,28.825012181053275], + [135,25.140449169947626], + [136,21.79048000172746], + [137,23.05414699421924], + [138,20.712904460250886], + [139,19.727388210287337], + [140,15.219713454550508], + [141,16.567062865467058], + [142,21.46105146001275], + [143,24.699736621958863], + [144,20.05510726036824], + [145,16.200669070105356], + [146,16.938945414022744], + [147,15.50411643355061], + [148,14.788500646665874], + [149,16.97330575970296] +]; + +var flotSampleData3 = [ + [0,36.57749563156254], + [1,38.990117798360984], + [2,42.33951429212372], + [3,41.81299261981016], + [4,37.43049180497279], + [5,32.50742948537699], + [6,28.15321230561721], + [7,24.734038382708317], + [8,23.48248771261796], + [9,20.406002456692214], + [10,16.59886277727973], + [11,12.156859927914581], + [12,9.229765251904174], + [13,5.183401848384374], + [14,9.605706708466142], + [15,10.832074796645134], + [16,13.268792742800557], + [17,18.216203428328363], + [18,13.963666987062208], + [19,18.712081450016612], + [20,13.72401606510321], + [21,11.305095416130975], + [22,13.773906992422056], + [23,15.834031310396583], + [24,12.926545228583812], + [25,17.595569228566347], + [26,21.90850212276817], + [27,18.29990271583387], + [28,14.340994854410802], + [29,18.22389641710976], + [30,14.883609800856053], + [31,13.019139849150623], + [32,14.553083951054631], + [33,15.417025583778472], + [34,16.640872368623782], + [35,19.456813236353057], + [36,14.595960349995135], + [37,17.729784515799526], + [38,13.86824197051369], + [39,9.492952801660538], + [40,11.912479814449945], + [41,9.798782954230068], + [42,6.117552232900492], + [43,1.4130313413037507], + [44,2.3640186232524685], + [45,2.3620174492590778], + [46,4.523611468529182], + [47,3.7627065666017216], + [48,5.7686167365911043], + [49,5.08594242151745846], + [50,1.905264426860338], + [51,8.27642052341136036], + [52,7.9183672429606382], + [53,5.027341617316905], + [54,2.8449308083068967], + [55,6.827661569105635], + [56,6.215632967625112], + [57,9.831855054294463], + [58,9.393752601741996], + [59,11.962549642491954], + [60,10.01016629019579], + [61,9.03698508678906], + [62,6.053332776990388], + [63,4.56216961329746], + [64,2.7601184969979364], + [65,4.345620131013858], + [66,3.6626759042117385], + [67,4.27936456640813], + [68,2.0166954203189142], + [69,1.4881023513956224], + [70,3.7196511214339196], + [71,1.5333390837655454], + [72,5.780072548768565], + [73,4.904719814229008], + [74,1.0799012554825165], + [75,4.72338119051706], + [76,6.314725021867233], + [77,4.277597816664166], + [78,5.1544567140954225], + [79,5.239845249502064], + [80,3.877879174711641], + [81,8.225872226683242], + [82,7.264487465012946], + [83,6.504325850409032], + [84,1.7088839316517497], + [85,11.49433994707275364], + [86,10.5002886069980867], + [87,3.8186248032905223], + [88,4.790166662214078], + [89,8.584014466610698], + [90,10.231484497623207], + [91,11.085662593015236], + [92,15.692957864072707], + [93,19.729820239992353], + [94,18.14728404932766], + [95,13.557879905430191], + [96,12.0222003194338], + [97,7.527743748664358], + [98,3.7125580070986235], + [99,9.7561429229810717], + [100,9.24510598794585], + [101,13.491288627936356], + [102,18.422574259759138], + [103,22.48813237262491], + [104,18.7617308169055], + [105,15.200987690731651], + [106,14.567673790440317], + [107,14.493364129654488], + [108,12.06862995100759], + [109,13.792354597964184], + [110,13.398123710429495], + [111,15.43357006142243], + [112,15.838711304223441], + [113,17.717113116366015], + [114,14.363451521168152], + [115,10.632076034419065], + [116,12.704986280918988], + [117,14.730515775966076], + [118,18.64339616589121], + [119,22.966268490839116], + [120,18.086847938929818], + [121,22.85442941807395], + [122,23.862425058129165], + [123,27.15039006269054], + [124,24.7853194960341], + [125,20.05439683907793], + [126,22.789014412927482], + [127,20.999064905231663], + [128,16.665833423656743], + [129,15.119579474719686], + [130,13.122059029397477], + [131,10.758963293991616], + [132,11.409391406435187], + [133,13.187657409342435], + [134,10.191416382864197], + [135,9.299880450312266], + [136,9.200558705463123], + [137,10.3761519864489], + [138,15.201427613560849], + [139,12.563611410586677], + [140,14.01025663372129], + [141,18.218049208936158], + [142,16.36071205382429], + [143,17.780867922487836], + [144,18.918372217382256], + [145,15.30583162112299], + [146,18.133034345626925], + [147,16.378646720850767], + [148,14.835942770608781], + [149,10.041195447639177] +]; + +var flotSampleData4 = [ + [0,53.08330533680049], + [1,50.33339517545416], + [2,49.4029746664779], + [3,47.791939081203566], + [4,49.09471219192674], + [5,50.66529743518582], + [6,48.749718825997206], + [7,48.84333276982059], + [8,53.51394720398375], + [9,52.93467940905747], + [10,49.083909652316756], + [11,50.27480737843102], + [12,48.37957308101624], + [13,44.84022012471776], + [14,40.71830916489318], + [15,41.24962375997834], + [16,45.63889630450356], + [17,44.66117259629492], + [18,41.393918522372914], + [19,38.20495807999945], + [20,39.68970488580452], + [21,41.02366924388095], + [22,39.41137193753915], + [23,35.66049049363585], + [24,38.5316402746093], + [25,38.536952802123125], + [26,40.69853423533536], + [27,38.79970643855877], + [28,42.98845795943349], + [29,46.360136088412915], + [30,43.5528691841886], + [31,40.65605934650181], + [32,36.5040222131244], + [33,31.79517009935011], + [34,28.913911507798105], + [35,29.681580006957674], + [36,29.57017024157237], + [37,33.13695968240512], + [38,37.084637076369454], + [39,35.86922272605444], + [40,37.60007436604805], + [41,39.6599902960551], + [42,39.01855935146662], + [43,34.101066517369006], + [44,37.486228204869676], + [45,39.29733687111992], + [46,38.46411897069526], + [47,37.71927995665536], + [48,40.15208911247334], + [49,35.897096450476575], + [50,31.505997358944384], + [51,31.816999110802946], + [52,30.50460962834996], + [53,25.741310049337464], + [54,28.23602445151448], + [55,28.48317685385772], + [56,30.001070495921475], + [57,32.164958534602505], + [58,32.99295659942683], + [59,37.68193430054417], + [60,35.24212764591677], + [61,39.18772362995824], + [62,41.376347845481895], + [63,41.45950716612605], + [64,43.78985456358012], + [65,39.416694565047884], + [66,39.32972776309515], + [67,43.80480524720717], + [68,42.434410137245514], + [69,43.67300580223356], + [70,38.79887604059381], + [71,43.570128406921526], + [72,41.81988828932836], + [73,44.829528785933896], + [74,46.19223595854988], + [75,47.69550173883899], + [76,49.010522215031536], + [77,46.40480781018069], + [78,51.28051836395483], + [79,50.158430192052556], + [80,53.60466613842059], + [81,56.08734803007076], + [82,52.72459300615355], + [83,56.601951946760394], + [84,60.26245067204903], + [85,58.36945168202019], + [86,56.59491823723127], + [87,55.755294545253776], + [88,54.74810139653445], + [89,54.27203682664068], + [90,58.659985887413185], + [91,57.00658547275452], + [92,60.52029839853601], + [93,57.6015284629649], + [94,56.48890586246457], + [95,55.10455188969404], + [96,54.357265081931686], + [97,52.394359471010326], + [98,54.52899302331695], + [99,54.16762513026156], + [100,51.95657669321307], + [101,51.19677107897459], + [102,46.35100350085707], + [103,48.33623433000422], + [104,45.84986413510889], + [105,48.22054173701362], + [106,43.30402458869659], + [107,45.823705773087944], + [108,43.48498341409474], + [109,41.32116785138174], + [110,40.99342590634263], + [111,38.496913606221845], + [112,40.10010461807938], + [113,44.861885054292394], + [114,44.03401133327108], + [115,41.41251651321317], + [116,37.800397369625514], + [117,39.295001424962734], + [118,35.24310363081255], + [119,32.125154958611844], + [120,35.68772234352005], + [121,38.00169527592055], + [122,37.960866448524754], + [123,38.702527394097245], + [124,37.457771477588224], + [125,37.51129389195443], + [126,33.108727543689724], + [127,35.09710598798716], + [128,33.11742126933996], + [129,31.873922447406848], + [130,29.18642792871095], + [131,31.91579925678714], + [132,34.370661166914054], + [133,32.91433174216821], + [134,33.17197835246117], + [135,37.16446574836367], + [136,32.60291809386715], + [137,36.94627368938524], + [138,35.9869296328639], + [139,38.12898104938889], + [140,42.55368007736426], + [141,41.57493569939069], + [142,45.54394197350075], + [143,46.30674824728742], + [144,45.73213644396193], + [145,45.42768540578047], + [146,42.52964420434585], + [147,44.44398524408891], + [148,39.74894644038498], + [149,44.71669577260144] +]; + +var flotSampleData5 = [ + [0,48.11708650372481], + [1,44.83834104995953], + [2,45.727409628208974], + [3,44.69213146554142], + [4,44.92113232835135], + [5,44.200874587557415], + [6,41.750527715312444], + [7,44.84511185791557], + [8,46.04672992189592], + [9,45.9480092098883], + [10,46.9249480823427], + [11,43.600609487921346], + [12,40.29988975207692], + [13,42.03310106988357], + [14,39.457750445961125], + [15,40.540159797957294], + [16,37.277912393740806], + [17,41.43887402339309], + [18,39.47430428214318], + [19,36.91189415889479], + [20,36.42847097453014], + [21,36.96844325047937], + [22,35.54647151074562], + [23,32.998974290143025], + [24,30.43526314490385], + [25,31.14797888879888], + [26,27.20589032036549], + [27,25.777592542626508], + [28,30.052675048145275], + [29,30.92837408600937], + [30,34.190241658736014], + [31,37.57718922878679], + [32,41.18083316913268], + [33,41.27110666976231], + [34,36.33819281943194], + [35,37.39239238651191], + [36,37.046485292242615], + [37,34.594801853250495], + [38,31.488044618299227], + [39,34.69970813498227], + [40,39.66083111892072], + [41,40.203292838001616], + [42,36.089709320758985], + [43,40.31141091738469], + [44,44.170004784953846], + [45,48.84998014705778], + [46,43.93624560052546], + [47,40.62473022491363], + [48,39.154068738786684], + [49,42.803089612673666], + [50,40.6511024461858], + [51,38.34516630158569], + [52,39.546885205159555], + [53,42.50715860274628], + [54,38.1455129028495], + [55,33.87761157196474], + [56,37.30125615378047], + [57,38.799409423316405], + [58,39.185431079286275], + [59,43.32737024276462], + [60,41.52185070435002], + [61,41.613587244137946], + [62,44.23763577861365], + [63,44.91439321362589], + [64,42.18546432611939], + [65,41.0624926886062], + [66,44.24453261527582], + [67,47.34794952778721], + [68,48.10833243543891], + [69,43.640893412371504], + [70,40.614056030997666], + [71,42.9374730102888], + [72,46.1355421298619], + [73,48.995759760197956], + [74,52.19926195857424], + [75,49.2778849176981], + [76,52.46274689069702], + [77,56.74969793098863], + [78,60.92623317241021], + [79,57.70969775380601], + [80,57.35168105637668], + [81,59.39818648636745], + [82,58.87944453401413], + [83,63.104976246068674], + [84,60.16160410107729], + [85,60.3461385910513], + [86,63.41836851069141], + [87,58.881150853965565], + [88,54.25129328569841], + [89,49.66170902762076], + [90,45.671308451937406], + [91,43.42038067966773], + [92,46.505793156464286], + [93,46.06001872195206], + [94,50.91335602988896], + [95,46.84735026131701], + [96,47.41734754711108], + [97,44.36126529495156], + [98,41.99470503666513], + [99,43.632976322955784], + [100,46.36805334166653], + [101,48.16660610657209], + [102,50.56661518795267], + [103,47.20511080729683], + [104,51.57928093061832], + [105,46.82629992437289], + [106,43.71656947498538], + [107,46.11727847268647], + [108,46.239411607006936], + [109,41.99170406788848], + [110,44.59078988734815], + [111,39.99864995462555], + [112,39.59607991752385], + [113,40.86135028690851], + [114,39.81036719656035], + [115,40.328012974674394], + [116,41.65325716849331], + [117,45.00093543523572], + [118,46.04624698953661], + [119,48.003663497054745], + [120,50.17606274884235], + [121,55.05679484483894], + [122,55.96838640846091], + [123,55.544955954661], + [124,54.84832728252716], + [125,52.55313725959578], + [126,49.91965607013097], + [127,54.037850934955415], + [128,57.10789770988697], + [129,58.48651605604872], + [130,60.7485271818432], + [131,65.34376786732726], + [132,67.43791704755618], + [133,62.787033615491154], + [134,65.01110323823873], + [135,66.76229363100968], + [136,68.37430484004857], + [137,71.70168521356638], + [138,68.57137402747702], + [139,67.39836039140941], + [140,70.31406498879772], + [141,70.32681376237582], + [142,69.44430239433778], + [143,68.41358873180461], + [144,72.61057980411566], + [145,70.04463291270768], + [146,70.28596044322113], + [147,65.6023891614268], + [148,67.46401070074405], + [149,62.80776411813089] +]; + +var flotSampleData6 = [ + [0,52.0372905861701], + [1,51.6784633777384], + [2,50.93706057748914], + [3,55.04861395738878], + [4,52.445845968822006], + [5,50.93681261537495], + [6,55.41621667661467], + [7,57.10873028593814], + [8,54.09853093352003], + [9,57.63062912168092], + [10,61.76480188676403], + [11,59.58083036192488], + [12,63.457788916796034], + [13,62.954499198759066], + [14,59.19255443449066], + [15,71.107062594673295], + [16,71.797400811178974], + [17,74.60795847250468], + [18,64.94400805384853], + [19,61.50219489844255], + [20,61.93683013860428], + [21,42.12178115474478], + [22,44.02455260206408], + [23,41.58732990833391], + [24,63.551262643229364], + [25,65.22361572255349], + [26,60.441963794914685], + [27,64.64029619252607], + [28,62.426770751912244], + [29,65.57029913775051] +]; + +var flotSampleData7 = [ + [0,49.94286358017402], + [1,54.75195271853288], + [2,59.622053296327735], + [3,60.738689215257594], + [4,56.70698194695498], + [5,57.52045722160073], + [6,55.4934878455616], + [7,58.43501666521898], + [8,57.525488680182036], + [9,55.80777569057727], + [10,53.682652257555645], + [11,54.81436164727582], + [12,55.59622041652305], + [13,56.550206500228064], + [14,58.12076521746503], + [15,59.03652643269743], + [16,62.50683301850617], + [17,59.48044106699237], + [18,60.22405802611539], + [19,55.75619342134348], + [20,54.27524732322225], + [21,49.460602930912856], + [22,47.34020893802209], + [23,50.1570575505057], + [24,49.823374599769124], + [25,50.42642956481375], + [26,53.119011480591055], + [27,54.465212016350385], + [28,51.37591924922336], + [29,49.66602279516306] +]; + +var flotSampleData8 = [ + [0,51.35337906430415], + [1,55.09767736474683], + [2,56.11713418071085], + [3,56.62830445362504], + [4,58.374859207924956], + [5,62.842829855606894], + [6,63.69291962857514], + [7,60.69251163731542], + [8,61.650299044110085], + [9,64.06410201262507], + [10,67.43880456193354], + [11,70.2095435826324], + [12,73.01907211149363], + [13,75.305867265774], + [14,73.15232973097093], + [15,75.67663616265044], + [16,77.50025675637558], + [17,74.56982822506586], + [18,78.22708826685283], + [19,75.88418124127114], + [20,78.96304160187246], + [21,83.19746269424613], + [22,81.99514960164132], + [23,80.34748479228385], + [24,83.01785617267964], + [25,80.47961270294873], + [26,81.43180744942623], + [27,80.54908115981], + [28,80.89790184638714], + [29,82.57585847055765] +]; + +var flotSampleData9 = [ + [0,51.99566242992652], + [1,56.40988734156261], + [2,52.712016949483605], + [3,52.13903665420402], + [4,55.38856697356215], + [5,56.51241090203006], + [6,54.13065859506406], + [7,54.52096980767574], + [8,58.778974107485055], + [9,55.51439929034389], + [10,56.957814217917], + [11,57.61073578735697], + [12,59.7297766750641], + [13,61.93295319184848], + [14,62.50241769531192], + [15,60.542234578733925], + [16,58.29300184711166], + [17,55.342699297074184], + [18,58.10368017734648], + [19,55.992767202287844], + [20,59.85513950723005], + [21,55.06877119665919], + [22,54.32937925983862], + [23,55.85921051952968], + [24,55.51272173544296], + [25,53.28302387501565], + [26,49.99125994698088], + [27,45.20738945047653], + [28,46.435525588283454], + [29,41.869140235144116] +]; + +var flotSampleData10 = [ + [0,56.30265026531465], + [1,54.65369685879262], + [2,59.159497004318396], + [3,61.52890228654445], + [4,65.42115864654912], + [5,70.17659339534826], + [6,73.96323073101196], + [7,74.9799695221578], + [8,73.44264143602075], + [9,69.096593751918], + [10,73.93254876657517], + [11,69.04685379865136], + [12,73.34743744019225], + [13,77.32268965816827], + [14,72.32758104850645], + [15,75.74676439307586], + [16,71.02133074957086], + [17,69.1420714301864], + [18,67.38421380482295], + [19,68.25200534621919], + [20,67.64452676952739], + [21,66.86973130150578], + [22,61.93648092979845], + [23,58.61497756300247], + [24,56.55146918091553], + [25,53.029935488894246], + [26,52.44600163135212], + [27,57.20889655681769], + [28,59.636191788043945], + [29,63.85312806354426], + [30,60.04386094475659], + [31,62.2538125564533], + [32,64.59204959205982], + [33,67.48303315626455], + [34,66.52279556782956], + [35,67.91455924692552], + [36,71.05638683697502], + [37,66.72457618335497], + [38,64.2368446398455], + [39,62.57701362369215], + [40,66.34915956039481], + [41,65.92124496694505], + [42,62.80711501850641], + [43,66.7197967332439], + [44,63.3010169282898], + [45,66.65701148334526], + [46,64.17648367224142], + [47,65.59358408684454], + [48,69.01887774539038], + [49,65.5916290145015], + [50,69.30622431045381], + [51,65.36388366769279], + [52,68.85971422470584], + [53,73.43083746573741], + [54,71.7164115189851], + [55,71.36090147065387], + [56,75.60606020386383], + [57,77.09189207721045], + [58,81.79401314743293], + [59,79.0135714357103], + [60,76.06480727464617], + [61,74.7692576621101], + [62,75.6074434905874], + [63,76.0736128539269], + [64,78.06361318915312], + [65,81.74368470683947], + [66,82.9328380240206], + [67,87.85966921603924], + [68,85.23106037681157], + [69,82.11378075638285], + [70,82.01651870800575], + [71,77.0287988653718], + [72,80.34970120412052], + [73,84.61941727966564], + [74,83.98199644857034], + [75,88.56888111947441], + [76,89.75548290328453], + [77,88.80767166533053], + [78,83.85630479076563], + [79,87.83276509161898], + [80,85.55774605623898], + [81,85.70223088952179], + [82,90.33890157972317], + [83,92.69926264237287], + [84,97.63201173326506], + [85,80], + [86,82.45304715092216], + [87,81.64397094909111], + [88,84.19735416169136], + [89,85.71802570566479], + [90,90.63845353334818], + [91,91.50786669397307], + [92,90.18513939708971], + [93,89.11333767424885], + [94,86.13169895547603], + [95,83.71642685988863], + [96,82.53308667208871], + [97,87.03202111687101], + [98,85.80275250512847], + [99,87.50661490640158], + [100,82.94568964820422], + [101,87.9133760526002], + [102,86.3911423200192], + [103,83.79442454428464], + [104,84.61901232577792], + [105,80.55092396236854], + [106,79.514769277758], + [107,78.30133774514849], + [108,76.12798140610029], + [109,79.01711099389404], + [110,74.76408790118617], + [111,77.44087400934131], + [112,78.260017083701], + [113,80.86067605373901], + [114,77.42886467363506], + [115,77.78073925389896], + [116,76.08468600523165], + [117,75.58351138198233], + [118,76.99163028653041], + [119,76.28846074258988], + [120,71.78398785201554], + [121,75.60986394070363], + [122,71.26195146607357], + [123,73.47598268366161], + [124,71.6907716935556], + [125,72.73874358328845], + [126,73.86356688134639], + [127,73.7770525507534], + [128,75.5682997869134], + [129,73.1630845932067], + [130,77.27828980131197], + [131,76.32774748166499], + [132,71.6304650335553], + [133,76.001962543172], + [134,71.2306864813009], + [135,67.7809120535992], + [136,69.93749142887862], + [137,65.21786790574946], + [138,61.86750668240158], + [139,58.998337266110376], + [140,59.53982536229391], + [141,55.64390968002628], + [142,57.45505304780762], + [143,58.588511338448896], + [144,60.938984927001556], + [145,64.52543413478776], + [146,61.744812501883445], + [147,63.90888496784042], + [148,68.83286359079715], + [149,71.22144807517391] +]; + +var flotSampleData11 = [ + [0,40.42460652446133], + [1,39.746131861430484], + [2,35.95109348595284], + [3,33.295567798337025], + [4,28.87960054374564], + [5,28.498853797438535], + [6,24.44598918395687], + [7,20.218403695742982], + [8,17.498233218421312], + [9,16.54060961040485], + [10,19.002383747980975], + [11,16.471725580977914], + [12,13.155182881964787], + [13,18.077483369454345], + [14,17.938434631237822], + [15,18.92413124205944], + [16,18.461208995002494], + [17,19.661876313219913], + [18,18.042303047352455], + [19,17.785290125636354], + [20,20.151980264909543], + [21,18.924923650083358], + [22,17.088923942341232], + [23,17.11745721938192], + [24,15.703502004647063], + [25,15.078540825575075], + [26,14.510809401000387], + [27,15.226574724712297], + [28,18.01709489679379], + [29,19.770761552221565], + [30,23.670209769802682], + [31,27.985742905483164], + [32,30.80634374024116], + [33,28.56215635604935], + [34,29.459971127621614], + [35,29.506514532069936], + [36,27.289754685028775], + [37,24.365568424856836], + [38,22.893664052525622], + [39,26.57527073377395], + [40,28.04483981176638], + [41,27.77031588135324], + [42,30.245343380918406], + [43,26.57479109054868], + [44,22.18111812493286], + [45,19.644777576179102], + [46,16.745896664550347], + [47,17.213789404459703], + [48,20.056299583848645], + [49,16.133489834808596], + [50,12.954908672170685], + [51,10.710124578123633], + [52,7.99331653229623], + [53,11.330824794029468], + [54,15.366888531658518], + [55,20.162146683566043], + [56,22.56433862111984], + [57,19.342499731952728], + [58,18.325580989588303], + [59,20.7511874504748], + [60,17.099488390174667], + [61,19.327912207799372], + [62,18.31650048764758], + [63,14.34889182281918], + [64,9.939606691311928], + [65,10.640765261408266], + [66,6.184018402150329], + [67,10.32603369640253], + [68,12.800228260925913], + [69,13.441825186707572], + [70,18.356807970216398], + [71,22.877870826719246], + [72,22.265182194135164], + [73,26.922230352208814], + [74,22.50189449417149], + [75,18.14060836488997], + [76,19.06846754782137], + [77,19.73961245162804], + [78,18.82061647678131], + [79,23.33852310774632], + [80,20.4810751737507], + [81,25.47004674625981], + [82,28.842343230667943], + [83,29.09658130355575], + [84,27.714558649179516], + [85,25.220943394214757], + [86,25.43025835749838], + [87,24.13072502126257], + [88,20.020443915879174], + [89,18.387986699568284], + [90,18.307930265812836], + [91,18.72058117598284], + [92,22.46850401457292], + [93,21.718447234477544], + [94,26.488413058421976], + [95,29.882771503348536], + [96,26.94717052753741], + [97,28.06481155716483], + [98,30.40253552214977], + [99,28.987765656899995], + [100,30.13551373541587], + [101,27.605418583328863], + [102,30.214101672191696], + [103,26.88133118194294], + [104,25.727723710013045], + [105,28.279900485071032], + [106,27.89821646957165], + [107,30.69854959893513], + [108,31.4282872565538], + [109,36.14975119379828], + [110,32.0227980362552], + [111,27.309945041337073], + [112,29.51230564564233], + [113,32.67035607222466], + [114,28.82372957289023], + [115,28.85242847072152], + [116,29.63844624105993], + [117,29.157219655397313], + [118,27.90616896335908], + [119,30.71160984027734], + [120,28.026131698214115], + [121,23.82439628518755], + [122,18.83160453591808], + [123,14.487027404093734], + [124,11.761696821209515], + [125,12.758521331246762], + [126,11.367219794014758], + [127,14.21423733022224], + [128,11.602480291802959], + [129,15.244397384751025], + [130,13.050114582189945], + [131,17.253378403411432], + [132,18.506683542934038], + [133,23.04087000728893], + [134,21.87625260158983], + [135,25.974296957094985], + [136,22.463388750666468], + [137,17.675052230498956], + [138,14.806456821972226], + [139,18.589538541056534], + [140,20.005874168046084], + [141,22.934846222699328], + [142,25.155316598067426], + [143,27.883126867602705], + [144,27.76231130416712], + [145,28.618896779193612], + [146,26.413595554645298], + [147,28.097785659338193], + [148,29.502272077881898], + [149,26.1165859635503] +]; + + + +function getRandomData(totalPoints = 150, start = 50) { + var data = []; + + // Do a random walk + while (data.length < totalPoints) { + var prev = data.length > 0 ? data[data.length - 1] : start; + var y = prev + Math.random() * 10 - 5; + + if(y < 0) { y = Math.random() * 10; } + else if(y > 100) { y = 80; } + + data.push(y); + } + + // Zip the generated y values with the x values + var res = []; + for (var i = 0; i < data.length; ++i) { + res.push([i, data[i]]) + } + + return res; +} diff --git a/public/assets/js/chart.morris.js b/public/assets/js/chart.morris.js new file mode 100755 index 0000000..2f5a3d0 --- /dev/null +++ b/public/assets/js/chart.morris.js @@ -0,0 +1,188 @@ +$(function(){ + 'use strict'; + + var morrisData = [ + { y: '2006', a: 100, b: 90 }, + { y: '2007', a: 75, b: 65 }, + { y: '2008', a: 50, b: 40 }, + { y: '2009', a: 75, b: 65 }, + { y: '2010', a: 50, b: 40 }, + { y: '2011', a: 80, b: 90 }, + { y: '2012', a: 75, b: 65 }, + { y: '2013', a: 50, b: 70 } + ]; + + var morrisData2 = [ + { y: '2006', a: 100, b: 90, c: 80 }, + { y: '2007', a: 75, b: 65, c: 75 }, + { y: '2008', a: 50, b: 40, c: 45 }, + { y: '2009', a: 75, b: 65, c: 85 }, + { y: '2010', a: 100, b: 90, c: 80 }, + { y: '2011', a: 75, b: 65, c: 75 }, + { y: '2012', a: 50, b: 40, c: 45 }, + { y: '2013', a: 75, b: 65, c: 85 } + ]; + + new Morris.Bar({ + element: 'morrisBar1', + data: morrisData, + xkey: 'y', + ykeys: ['a', 'b'], + labels: ['Series A', 'Series B'], + barColors: ['#560bd0', '#007bff'], + gridTextSize: 11, + hideHover: 'auto', + resize: true + }); + + new Morris.Bar({ + element: 'morrisBar2', + data: morrisData2, + xkey: 'y', + ykeys: ['a', 'b', 'c'], + labels: ['Series A', 'Series B', 'Series C'], + barColors: ['#560bd0', '#007bff','#00cccc'], + gridTextSize: 11, + hideHover: 'auto', + resize: true + }); + + new Morris.Bar({ + element: 'morrisBar3', + data: morrisData, + xkey: 'y', + ykeys: ['a', 'b'], + labels: ['Series A', 'Series B'], + barColors: ['#560bd0', '#007bff'], + stacked: true, + gridTextSize: 11, + hideHover: 'auto', + resize: true + }); + + new Morris.Bar({ + element: 'morrisBar4', + data: morrisData2, + xkey: 'y', + ykeys: ['a', 'b', 'c'], + labels: ['Series A', 'Series B', 'Series C'], + barColors: ['#560bd0', '#007bff','#00cccc'], + stacked: true, + gridTextSize: 11, + hideHover: 'auto', + resize: true + }); + + + new Morris.Line({ + element: 'morrisLine1', + data: [ + { y: '2006', a: 20, b: 10 }, + { y: '2007', a: 30, b: 15 }, + { y: '2008', a: 60, b: 40 }, + { y: '2009', a: 40, b: 25 }, + { y: '2010', a: 30, b: 15 }, + { y: '2011', a: 45, b: 20 }, + { y: '2012', a: 60, b: 40 } + ], + xkey: 'y', + ykeys: ['a', 'b'], + labels: ['Series A', 'Series B'], + lineColors: ['#560bd0', '#007bff'], + lineWidth: 1, + ymax: 'auto 100', + gridTextSize: 11, + hideHover: 'auto', + resize: true + }); + + new Morris.Line({ + element: 'morrisLine2', + data: [ + { y: '2006', a: 20, b: 10, c: 40 }, + { y: '2007', a: 30, b: 15, c: 45 }, + { y: '2008', a: 50, b: 40, c: 65 }, + { y: '2009', a: 40, b: 25, c: 55 }, + { y: '2010', a: 30, b: 15, c: 45 }, + { y: '2011', a: 45, b: 20, c: 65 }, + { y: '2012', a: 60, b: 40, c: 70 } + ], + xkey: 'y', + ykeys: ['a', 'b', 'c'], + labels: ['Series A', 'Series B', 'Series C'], + lineColors: ['#560bd0', '#007bff','#00cccc'], + lineWidth: 1, + ymax: 'auto 100', + gridTextSize: 11, + hideHover: 'auto', + resize: true + }); + + new Morris.Area({ + element: 'morrisArea1', + data: [ + { y: '2006', a: 50, b: 40 }, + { y: '2007', a: 25, b: 15 }, + { y: '2008', a: 20, b: 40 }, + { y: '2009', a: 75, b: 65 }, + { y: '2010', a: 50, b: 40 }, + { y: '2011', a: 75, b: 65 }, + { y: '2012', a: 100, b: 90 } + ], + xkey: 'y', + ykeys: ['a', 'b'], + labels: ['Series A', 'Series B'], + lineColors: ['#560bd0', '#007bff'], + lineWidth: 1, + fillOpacity: 0.9, + gridTextSize: 11, + hideHover: 'auto', + resize: true + }); + + new Morris.Area({ + element: 'morrisArea2', + data: [ + { y: '2006', a: 20, b: 10, c: 40 }, + { y: '2007', a: 30, b: 15, c: 45 }, + { y: '2008', a: 50, b: 40, c: 65 }, + { y: '2009', a: 40, b: 25, c: 55 }, + { y: '2010', a: 30, b: 15, c: 45 }, + { y: '2011', a: 45, b: 20, c: 65 }, + { y: '2012', a: 60, b: 40, c: 70 } + ], + xkey: 'y', + ykeys: ['a', 'b', 'c'], + labels: ['Series A', 'Series B', 'Series C'], + lineColors: ['#560bd0', '#007bff','#00cccc'], + lineWidth: 1, + fillOpacity: 0.9, + gridTextSize: 11, + hideHover: 'auto', + resize: true + }); + + new Morris.Donut({ + element: 'morrisDonut1', + data: [ + {label: 'Men', value: 12}, + {label: 'Women', value: 30}, + {label: 'Kids', value: 20} + ], + colors: ['#560bd0', '#007bff','#00cccc'], + resize: true + }); + + new Morris.Donut({ + element: 'morrisDonut2', + data: [ + {label: 'Men', value: 12}, + {label: 'Women', value: 30}, + {label: 'Kids', value: 20}, + {label: 'Infant', value: 25} + ], + colors: ['#560bd0', '#007bff','#00cccc','#74DE00'], + resize: true, + }); + +}); diff --git a/public/assets/js/chart.peity.js b/public/assets/js/chart.peity.js new file mode 100755 index 0000000..4f629dc --- /dev/null +++ b/public/assets/js/chart.peity.js @@ -0,0 +1,17 @@ +$(function(){ + 'use strict' + + // Line chart + $('.peity-line').peity('line'); + + // Bar charts + $('.peity-bar').peity('bar'); + + // Pie chart + $('.peity-pie').peity('pie'); + + // Donut chart + $('.peity-donut').peity('donut'); + + // Bar chart is already initialized found in bracket.js +}); diff --git a/public/assets/js/chart.sparkline.js b/public/assets/js/chart.sparkline.js new file mode 100755 index 0000000..6109f59 --- /dev/null +++ b/public/assets/js/chart.sparkline.js @@ -0,0 +1,108 @@ +$(function(){ + 'use strict' + + /***************** LINE CHARTS *****************/ + $('#sparkline1').sparkline('html', { + width: 200, + height: 70, + lineColor: '#0083CD', + fillColor: false, + tooltipContainer: $('.az-content') + }); + + $('#sparkline2').sparkline('html', { + width: 200, + height: 70, + lineColor: '#B654C3', + fillColor: false + }); + + + /************** AREA CHARTS ********************/ + $('#sparkline3').sparkline('html', { + width: 200, + height: 70, + lineColor: '#0083CD', + fillColor: 'rgba(0,131,205,0.2)', + }); + + $('#sparkline4').sparkline('html', { + width: 200, + height: 70, + lineColor: '#B654C3', + fillColor: 'rgba(182,84,195,0.2)' + }); + + + /******************* BAR CHARTS *****************/ + + $('#sparkline5').sparkline('html', { + type: 'bar', + barWidth: 10, + height: 70, + barColor: '#560bd0', + chartRangeMax: 12 + }); + + $('#sparkline6').sparkline('html', { + type: 'bar', + barWidth: 10, + height: 70, + barColor: '#007bff', + chartRangeMax: 12 + }); + + /***************** STACKED BAR CHARTS ****************/ + + $('#sparkline7').sparkline('html', { + type: 'bar', + barWidth: 10, + height: 70, + barColor: '#007bff', + chartRangeMax: 12 + }); + + $('#sparkline7').sparkline([4,5,6,7,4,5,8,7,6,6,4,7,6,4,7], { + composite: true, + type: 'bar', + barWidth: 10, + height: 70, + barColor: '#560bd0', + chartRangeMax: 12 + }); + + $('#sparkline8').sparkline('html', { + type: 'bar', + barWidth: 10, + height: 70, + barColor: '#007bff', + chartRangeMax: 12 + }); + + $('#sparkline8').sparkline([4,5,6,7,4,5,8,7,6,6,4,7,6,4,7], { + composite: true, + type: 'bar', + barWidth: 10, + height: 70, + barColor: '#f10075', + chartRangeMax: 12 + }); + + + /**************** PIE CHART ****************/ + + $('#sparkline9').sparkline('html', { + type: 'pie', + width: 70, + height: 70, + sliceColors: ['#560bd0','#007bff','#00cccc'] + }); + + $('#sparkline10').sparkline('html', { + type: 'pie', + width: 70, + height: 70, + sliceColors: ['#560bd0','#007bff','#00cccc','#f10075','#74de00','#494c57'] + }); + +}); diff --git a/public/assets/js/cookie.js b/public/assets/js/cookie.js new file mode 100755 index 0000000..768e192 --- /dev/null +++ b/public/assets/js/cookie.js @@ -0,0 +1,27 @@ + +'use strict'; + +function setCookie(name,value,days) { + var expires = ''; + if (days) { + var date = new Date(); + date.setTime(date.getTime() + (days*24*60*60*1000)); + expires = '; expires=' + date.toUTCString(); + } + document.cookie = name + '=' + (value || '') + expires + '; path=/'; +} + +function getCookie(name) { + var nameEQ = name + '='; + var ca = document.cookie.split(';'); + for(var i=0;i < ca.length;i++) { + var c = ca[i]; + while (c.charAt(0)==' ') c = c.substring(1,c.length); + if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length,c.length); + } + return false; +} + +function eraseCookie(name) { + document.cookie = name+'=; Max-Age=-99999999;'; +} diff --git a/public/assets/js/dashboard.sampledata.js b/public/assets/js/dashboard.sampledata.js new file mode 100755 index 0000000..812b178 --- /dev/null +++ b/public/assets/js/dashboard.sampledata.js @@ -0,0 +1,666 @@ +'use strict' + +var dashData1 = [ + [0,26.068193382661477], + [1,25.88709150935915], + [2,28.928221477526932], + [3,24.830795658318337], + [4,24.85092974219436], + [5,22.774591414051095], + [6,22.747896818655654], + [7,18.048114046063965], + [8,17.59073050876624], + [9,21.537818914461322], + [10,22.146436551824877], + [11,20.300838613022865], + [12,16.735032698267464], + [13,12.413872176047448], + [14,13.519219684546744], + [15,17.25809280186558], + [16,12.862483806544592], + [17,8.80788649085728], + [18,5.658660000939715], + [19,8.99589358930801], + [20,5.269093761151957], + [21,8.912177863786797], + [22,8.54011774798965], + [23,9.117679467731724], + [24,13.699940679394622], + [25,11.627299181374358], + [26,6.838737088173566], + [27,6.160480751363494], + [28,5.5198301136747006], + [29,4.613458911330751], + [30,3.383144691141741], + [31,5.784322300404977], + [32,3.162177027129866], + [33,0.4181156533246826], + [34,4.421765491030399], + [35,0.8094224158158259], + [36,9.413220194935048], + [37,8.496612114320378], + [38,12.738123867101411], + [39,16.992766477187104], + [40,21.26988175109983], + [41,17.235980511632608], + [42,20.443384061578378], + [43,16.44487173159613], + [44,15.007678605580637], + [45,19.988715632633586], + [46,21.321036609595225], + [47,17.824308266337006], + [48,16.4065339731343], + [49,19.39209608662649], + [50,15.239194559890223], + [51,13.389321128669074], + [52,12.09037154870833], + [53,8.20591186418305], + [54,12.313286201963933], + [55,11.933214675329545], + [56,15.633264981180222], + [57,13.587849610586343], + [58,9.376742478047557], + [59,4.441641823689398], + [60,4.162445655270751], + [61,8.581262486880055], + [62,5.441817659292306], + [63,4.446750282572058], + [64,4.276872245140725], + [65,0.6300340509632116], + [66,9.343436375658632], + [67,6.515393292394883], + [68,2.2640316516849293], + [69,6.6366447744180395], + [70,6.572503829436759], + [71,9.798163928174066], + [72,14.718403191204246], + [73,13.254699260872222], + [74,10.89349088805535], + [75,7.6253467930040895], + [76,3.3193074854674904], + [77,7.08673703515133], + [78,3.4528219176441137], + [79,0.7645929463547789] +]; + +var dashData2 = [ + [0,27.23664159018842], + [1,29.950034069379143], + [2,29.644830736016026], + [3,25.769612795319304], + [4,25.9672980159902], + [5,29.306231062193945], + [6,31.147632883383046], + [7,27.909654447655207], + [8,28.426864707429758], + [9,25.465005080095395], + [10,23.200993777812627], + [11,18.298423899495088], + [12,14.064190975238525], + [13,12.756500849206802], + [14,11.009698256259721], + [15,13.777021847639084], + [16,9.764516822388899], + [17,12.692252142103655], + [18,10.993546294133743], + [19,12.76637263741139], + [20,13.843200048454541], + [21,12.99710730408541], + [22,13.822031388180491], + [23,10.292515338153533], + [24,5.810285403597657], + [25,7.660875205768917], + [26,8.80933653938396], + [27,5.686812232232839], + [28,5.63261704703088], + [29,6.316648245814662], + [30,4.292790984709081], + [31,3.697685557314916], + [32,5.455501325916567], + [33,6.531394786185377], + [34,8.182002901837398], + [35,10.97985605046474], + [36,7.670515545499569], + [37,9.735460695108053], + [38,10.953255620842702], + [39,9.507118597321119], + [40,5.406694867279592], + [41,4.93085440378951], + [42,0.7194264766862029], + [43,2.3619348017672], + [44,5.584661939154044], + [45,10.081512479626763], + [46,10.688764814852894], + [47,8.312501373210273], + [48,8.453461343329785], + [49,8.544757446852685], + [50,5.845487925639054], + [51,1.5807150114153075], + [52,0.563335804242973], + [53,4.894286843146261], + [54,9.856287534207203], + [55,4.896396641974256], + [56,1.2942099540425414], + [57,5.809421858534812], + [58,1.733415110300613], + [59,5.460384956746324], + [60,5.990998309935479], + [61,7.594177171313888], + [62,10.660329512374963], + [63,5.973124255808589], + [64,3.3313399294306265], + [65,2.9044866902167623], + [66,6.997197180694009], + [67,3.523117772813361], + [68,0.2391695609805211], + [69,7.542664698417907], + [70,9.803040324502735], + [71,13.065087817954282], + [72,13.995144609672131], + [73,9.572683988371006], + [74,6.262408675238298], + [75,6.343448236306536], + [76,6.594421915015488], + [77,2.2274478023982844], + [78,2.917574438953957], + [79,6.405517005560797] +]; + +var dashData3 = [ + [0,6.128957947555989], + [1,10.84817222898398], + [2,10.082875592706364], + [3,8.379792694345753], + [4,9.547667054986002], + [5,4.773069367954017], + [6,3.0454348426761015], + [7,3.185480541480409], + [8,4.450143911018419], + [9,8.546949979037999], + [10,6.050127209461188], + [11,4.410453949908726], + [12,2.8471832046168135], + [13,3.2079540734030276], + [14,0.9162857987827975], + [15,4.6063565674411855], + [16,3.8108543994622526], + [17,0.07206516983173028], + [18,2.0235838597966103], + [19,3.11038525002839], + [20,7.661023220500137], + [21,4.392807043336401], + [22,2.095095656433122], + [23,3.6570708335265856], + [24,2.4750755395505095], + [25,7.365775338287607], + [26,3.160729824900333], + [27,5.540806251220914], + [28,0.6666892513129863], + [29,0.45739329594884204], + [30,3.0811785305861257], + [31,2.6892574426453804], + [32,9.518442007203902], + [33,12.031943999285872], + [34,16.195611227357478], + [35,20.843438986023465], + [36,23.379026518714024], + [37,21.460750940722328], + [38,18.40015951232427], + [39,20.358446800608565], + [40,19.603101971624245], + [41,17.573732753993674], + [42,18.335981070943816], + [43,18.91414918074011], + [44,21.429677122613647], + [45,22.632616262811762], + [46,25.94041622331629], + [47,28.28824125745345], + [48,24.435585052120953], + [49,19.597224874784906], + [50,16.697366660087496], + [51,17.2746170933131], + [52,19.375521763009953], + [53,18.566968104092673], + [54,16.44690797028392], + [55,20.442159904725813], + [56,18.092434838530224], + [57,19.09142302964581], + [58,20.00188167403888], + [59,24.672205627775327], + [60,21.740520957489338], + [61,26.026676694036176], + [62,21.822075708233086], + [63,18.695019208154772], + [64,15.29250743609338], + [65,10.428562033214584], + [66,11.55987585035231], + [67,14.896344657234035], + [68,10.307653031970014], + [69,7.82306217533851], + [70,10.238887296153184], + [71,8.8820687254494], + [72,10.100845630385322], + [73,9.217362717192456], + [74,7.896629068410565], + [75,5.618935926339423], + [76,1.5131215135592138], + [77,0.2784413238662804], + [78,0.7433401750417863], + [79,5.451097931401492] +]; + +var dashData4 = [ + [0,6.324329988896064], + [1,4.5545479994319145], + [2,6.100415206277958], + [3,7.432637151690175], + [4,5.60263986254995], + [5,4.832425480686457], + [6,0.9075445440427758], + [7,3.1482139596880163], + [8,3.5885516133784767], + [9,8.182754904215557], + [10,6.837879179399149], + [11,7.716258659531048], + [12,9.75364233299447], + [13,7.201169154192655], + [14,9.630620744220206], + [15,11.538477281715668], + [16,13.035970513058636], + [17,9.503486957660966], + [18,13.105314699985755], + [19,15.573652620996299], + [20,18.36838092867314], + [21,19.350295101555055], + [22,22.69794643352061], + [23,23.35219679846173], + [24,20.91736598898101], + [25,22.911176901130386], + [26,21.090864789052763], + [27,20.48061479748539], + [28,21.426374503640886], + [29,20.891864381778447], + [30,16.957950831314058], + [31,21.859429734865678], + [32,24.445685183180625], + [33,21.60020575061327], + [34,24.182176166954967], + [35,21.86974880152203], + [36,19.539183274840212], + [37,21.515732665615417], + [38,20.24304044649329], + [39,21.42144524531482], + [40,17.43905530887784], + [41,21.32170798934231], + [42,23.496165105754205], + [43,20.329972299235536], + [44,17.810139981879978], + [45,13.81114512021962], + [46,12.997268524103216], + [47,10.799564050000965], + [48,12.512143426754726], + [49,14.43450958489095], + [50,16.307532107912], + [51,17.805531426224746], + [52,20.335760159301408], + [53,17.283957375094232], + [54,14.358038015713984], + [55,12.244453474656833], + [56,14.851550722124355], + [57,12.376637218044237], + [58,10.410990876698504], + [59,14.213384593585047], + [60,14.086784566997245], + [61,14.958720914431318], + [62,17.654154385117913], + [63,17.90512378115347], + [64,15.51065801821678], + [65,13.614902552930381], + [66,15.012164925379324], + [67,12.526591306146639], + [68,12.41629841447126], + [69,13.14610812485586], + [70,11.99821556340692], + [71,7.673455706892817], + [72,9.020477318416384], + [73,4.883009317288051], + [74,8.216160091544365], + [75,12.972532341711904], + [76,14.900762708964251], + [77,16.071024828496675], + [78,16.80733921452504], + [79,21.50456189793593] +]; + +var dashData5 = [ + [0,0], + [1,0], + [2,0], + [3,0], + [4,0], + [5,0], + [6,0], + [7,0], + [8,0], + [9,0], + [10,0], + [11,0], + [12,0], + [13,0], + [14,0], + [15,0], + [16,0], + [17,0], + [18,0], + [19,0], + [20,0], + [21,0], + [22,0], + [23,0], + [24,0], + [25,0], + [26,0], + [27,0], + [28,0], + [29,0], + [30,0], + [31,0], + [32,0], + [33,0], + [34,0], + [35,0], + [36,0], + [37,0], + [38,0], + [39,0], + [40,10], + [41,0], + [42,0], + [43,0], + [44,45], + [45,0], + [46,0], + [47,37], + [48,0], + [49,39], + [50,0], + [51,0], + [52,0], + [53,5], + [54,0], + [55,31], + [56,0], + [57,43], + [58,0], + [59,0], + [60,30], + [61,0], + [62,0], + [63,0], + [64,0], + [65,0], + [66,0], + [67,0], + [68,0], + [69,0] +]; + +var dashData6 = [ + [0,0], + [1,0], + [2,0], + [3,0], + [4,0], + [5,0], + [6,0], + [7,0], + [8,0], + [9,0], + [10,0], + [11,40], + [12,0], + [13,5], + [14,0], + [15,0], + [16,0], + [17,0], + [18,0], + [19,0], + [20,0], + [21,0], + [22,0], + [23,0], + [24,0], + [25,0], + [26,0], + [27,0], + [28,0], + [29,0], + [30,0], + [31,0], + [32,0], + [33,0], + [34,0], + [35,0], + [36,0], + [37,0], + [38,0], + [39,0], + [40,45], + [41,1], + [42,0], + [43,0], + [44,35], + [45,0], + [46,0], + [47,40], + [48,0], + [49,0], + [50,45], + [51,0], + [52,0], + [53,0], + [54,5], + [55,0], + [56,0], + [57,20], + [58,0], + [59,5], + [60,0], + [61,0], + [62,0], + [63,0], + [64,0], + [65,0], + [66,0], + [67,0], + [68,0], + [69,0] +]; + +var dashData7 = [ + [0,0], + [1,0], + [2,0], + [3,0], + [4,0], + [5,0], + [6,0], + [7,0], + [8,0], + [9,0], + [10,0], + [11,0], + [12,0], + [13,0], + [14,0], + [15,0], + [16,0], + [17,0], + [18,0], + [19,0], + [20,0], + [21,0], + [22,0], + [23,0], + [24,0], + [25,40], + [26,0], + [27,0], + [28,10], + [29,0], + [30,0], + [31,0], + [32,0], + [33,0], + [34,0], + [35,0], + [36,0], + [37,0], + [38,0], + [39,0], + [40,50], + [41,0], + [42,40], + [43,0], + [44,5], + [45,0], + [46,0], + [47,10], + [48,0], + [49,0], + [50,25], + [51,0], + [52,0], + [53,0], + [54,5], + [55,0], + [56,0], + [57,0], + [58,0], + [59,25], + [60,0], + [61,0], + [62,0], + [63,0], + [64,40], + [65,0], + [66,0], + [67,0], + [68,0], + [69,0] +]; + +var dashData8 = [ + [0,0], + [1,0], + [2,0], + [3,5], + [4,0], + [5,10], + [6,15], + [7,20], + [8,14], + [9,20], + [10,15], + [11,12], + [12,15], + [13,12], + [14,17], + [15,15], + [16,13], + [17,16], + [18,0], + [19,0], + [20,0], + [21,0], + [22,0], + [23,0], + [24,0], + [25,0], + [26,0], + [27,0], + [28,0], + [29,0], + [30,0], + [31,0], + [32,0], + [33,0], + [34,0], + [35,0], + [36,0], + [37,0], + [38,0], + [39,0], + [40,0], + [41,0], + [42,0], + [43,0], + [44,0], + [45,0], + [46,0], + [47,0], + [48,0], + [49,0] +]; + +var dashData9 = [ + [0,0], + [1,0], + [2,0], + [3,0], + [4,0], + [5,3], + [6,7], + [7,12], + [8,5], + [9,10], + [10,14], + [11,15], + [12,20], + [13,15], + [14,30], + [15,32], + [16,28], + [17,25], + [18,0], + [19,0], + [20,0], + [21,0], + [22,0], + [23,0], + [24,0], + [25,0], + [26,0], + [27,0], + [28,0], + [29,0], + [30,0], + [31,0], + [32,0], + [33,0], + [34,0], + [35,0], + [36,0], + [37,0], + [38,0], + [39,0], + [40,0], + [41,0], + [42,0], + [43,0], + [44,0], + [45,0], + [46,0], + [47,0], + [48,0], + [49,0] +]; + +function bgFlotData(num,val) { + var data = []; + for (var i = 0; i < num; ++i) { + data.push([i, val]); + } + return data; +} diff --git a/public/assets/js/jquery.vmap.sampledata.js b/public/assets/js/jquery.vmap.sampledata.js new file mode 100755 index 0000000..8a6bb49 --- /dev/null +++ b/public/assets/js/jquery.vmap.sampledata.js @@ -0,0 +1,3 @@ +'use strict' + +var sample_data = {'af':'16.63','al':'11.58','dz':'158.97','ao':'85.81','ag':'1.1','ar':'351.02','am':'8.83','au':'1219.72','at':'366.26','az':'52.17','bs':'7.54','bh':'21.73','bd':'105.4','bb':'3.96','by':'52.89','be':'461.33','bz':'1.43','bj':'6.49','bt':'1.4','bo':'19.18','ba':'16.2','bw':'12.5','br':'2023.53','bn':'11.96','bg':'44.84','bf':'8.67','bi':'1.47','kh':'11.36','cm':'21.88','ca':'1563.66','cv':'1.57','cf':'2.11','td':'7.59','cl':'199.18','cn':'5745.13','co':'283.11','km':'0.56','cd':'12.6','cg':'11.88','cr':'35.02','ci':'22.38','hr':'59.92','cy':'22.75','cz':'195.23','dk':'304.56','dj':'1.14','dm':'0.38','do':'50.87','ec':'61.49','eg':'216.83','sv':'21.8','gq':'14.55','er':'2.25','ee':'19.22','et':'30.94','fj':'3.15','fi':'231.98','fr':'2555.44','ga':'12.56','gm':'1.04','ge':'11.23','de':'3305.9','gh':'18.06','gr':'305.01','gd':'0.65','gt':'40.77','gn':'4.34','gw':'0.83','gy':'2.2','ht':'6.5','hn':'15.34','hk':'226.49','hu':'132.28','is':'12.77','in':'1430.02','id':'695.06','ir':'337.9','iq':'84.14','ie':'204.14','il':'201.25','it':'2036.69','jm':'13.74','jp':'5390.9','jo':'27.13','kz':'129.76','ke':'32.42','ki':'0.15','kr':'986.26','undefined':'5.73','kw':'117.32','kg':'4.44','la':'6.34','lv':'23.39','lb':'39.15','ls':'1.8','lr':'0.98','ly':'77.91','lt':'35.73','lu':'52.43','mk':'9.58','mg':'8.33','mw':'5.04','my':'218.95','mv':'1.43','ml':'9.08','mt':'7.8','mr':'3.49','mu':'9.43','mx':'1004.04','md':'5.36','mn':'5.81','me':'3.88','ma':'91.7','mz':'10.21','mm':'35.65','na':'11.45','np':'15.11','nl':'770.31','nz':'138','ni':'6.38','ne':'5.6','ng':'206.66','no':'413.51','om':'53.78','pk':'174.79','pa':'27.2','pg':'8.81','py':'17.17','pe':'153.55','ph':'189.06','pl':'438.88','pt':'223.7','qa':'126.52','ro':'158.39','ru':'1476.91','rw':'5.69','ws':'0.55','st':'0.19','sa':'434.44','sn':'12.66','rs':'38.92','sc':'0.92','sl':'1.9','sg':'217.38','sk':'86.26','si':'46.44','sb':'0.67','za':'354.41','es':'1374.78','lk':'48.24','kn':'0.56','lc':'1','vc':'0.58','sd':'65.93','sr':'3.3','sz':'3.17','se':'444.59','ch':'522.44','sy':'59.63','tw':'426.98','tj':'5.58','tz':'22.43','th':'312.61','tl':'0.62','tg':'3.07','to':'0.3','tt':'21.2','tn':'43.86','tr':'729.05','tm':0,'ug':'17.12','ua':'136.56','ae':'239.65','gb':'2258.57','us':'14624.18','uy':'40.71','uz':'37.72','vu':'0.72','ve':'285.21','vn':'101.99','ye':'30.02','zm':'15.69','zw':'5.57'}; diff --git a/public/assets/js/map.apple.js b/public/assets/js/map.apple.js new file mode 100755 index 0000000..f3745cb --- /dev/null +++ b/public/assets/js/map.apple.js @@ -0,0 +1,115 @@ +$(function() { + + 'use strict'; + + var styleApple = [{ + 'featureType': 'landscape.man_made', + 'elementType': 'geometry', + 'stylers': [{ + 'color': '#f7f1df' + }] + }, { + 'featureType': 'landscape.natural', + 'elementType': 'geometry', + 'stylers': [{ + 'color': '#d0e3b4' + }] + }, { + 'featureType': 'landscape.natural.terrain', + 'elementType': 'geometry', + 'stylers': [{ + 'visibility': 'off' + }] + }, { + 'featureType': 'poi', + 'elementType': 'labels', + 'stylers': [{ + 'visibility': 'off' + }] + }, { + 'featureType': 'poi.business', + 'elementType': 'all', + 'stylers': [{ + 'visibility': 'off' + }] + }, { + 'featureType': 'poi.medical', + 'elementType': 'geometry', + 'stylers': [{ + 'color': '#fbd3da' + }] + }, { + 'featureType': 'poi.park', + 'elementType': 'geometry', + 'stylers': [{ + 'color': '#bde6ab' + }] + }, { + 'featureType': 'road', + 'elementType': 'geometry.stroke', + 'stylers': [{ + 'visibility': 'off' + }] + }, { + 'featureType': 'road', + 'elementType': 'labels', + 'stylers': [{ + 'visibility': 'off' + }] + }, { + 'featureType': 'road.highway', + 'elementType': 'geometry.fill', + 'stylers': [{ + 'color': '#ffe15f' + }] + }, { + 'featureType': 'road.highway', + 'elementType': 'geometry.stroke', + 'stylers': [{ + 'color': '#efd151' + }] + }, { + 'featureType': 'road.arterial', + 'elementType': 'geometry.fill', + 'stylers': [{ + 'color': '#ffffff' + }] + }, { + 'featureType': 'road.local', + 'elementType': 'geometry.fill', + 'stylers': [{ + 'color': 'black' + }] + }, { + 'featureType': 'transit.station.airport', + 'elementType': 'geometry.fill', + 'stylers': [{ + 'color': '#cfb2db' + }] + }, { + 'featureType': 'water', + 'elementType': 'geometry', + 'stylers': [{ + 'color': '#a2daf2' + }] + }]; + + var mapApple = new GMaps({ + el: '#mapApple', + zoom: 14, + lat: 40.702247, + lng: -73.996349 + }); + + + // Map style is based on: + // https://snazzymaps.com/style/4183/mostly-grayscale + mapApple.addStyle({ + styledMapName:'Shades Of Grey Map', + styles: styleApple, + mapTypeId: 'map_apple' + }); + + mapApple.setStyle('map_apple'); + +}); diff --git a/public/assets/js/map.bluewater.js b/public/assets/js/map.bluewater.js new file mode 100755 index 0000000..8ab0d3b --- /dev/null +++ b/public/assets/js/map.bluewater.js @@ -0,0 +1,77 @@ +$(function() { + + 'use strict'; + + var styleBlueWater = [{ + 'featureType': 'administrative', + 'elementType': 'labels.text.fill', + 'stylers': [{ + 'color': '#444444' + }] + }, { + 'featureType': 'landscape', + 'elementType': 'all', + 'stylers': [{ + 'color': '#f2f2f2' + }] + }, { + 'featureType': 'poi', + 'elementType': 'all', + 'stylers': [{ + 'visibility': 'off' + }] + }, { + 'featureType': 'road', + 'elementType': 'all', + 'stylers': [{ + 'saturation': -100 + }, { + 'lightness': 45 + }] + }, { + 'featureType': 'road.highway', + 'elementType': 'all', + 'stylers': [{ + 'visibility': 'simplified' + }] + }, { + 'featureType': 'road.arterial', + 'elementType': 'labels.icon', + 'stylers': [{ + 'visibility': 'off' + }] + }, { + 'featureType': 'transit', + 'elementType': 'all', + 'stylers': [{ + 'visibility': 'off' + }] + }, { + 'featureType': 'water', + 'elementType': 'all', + 'stylers': [{ + 'color': '#0866C6' + }, { + 'visibility': 'on' + }] + }]; + + var mapBlueWater = new GMaps({ + el: '#mapBlueWater', + zoom: 14, + lat: 40.702247, + lng: -73.996349 + }); + + + // Map style is based on: + // https://snazzymaps.com/style/4183/mostly-grayscale + mapBlueWater.addStyle({ + styledMapName:'Blue Water Map', + styles: styleBlueWater, + mapTypeId: 'map_blue_water' + }); + + mapBlueWater.setStyle('map_blue_water'); + +}); diff --git a/public/assets/js/map.mapbox.js b/public/assets/js/map.mapbox.js new file mode 100755 index 0000000..7d89ce7 --- /dev/null +++ b/public/assets/js/map.mapbox.js @@ -0,0 +1,109 @@ +$(function() { + + 'use strict'; + + var styleMapBox = [{ + 'featureType': 'water', + 'stylers': [{ + 'saturation': 43 + }, { + 'lightness': -11 + }, { + 'hue': '#0088ff' + }] + }, { + 'featureType': 'road', + 'elementType': 'geometry.fill', + 'stylers': [{ + 'hue': '#ff0000' + }, { + 'saturation': -100 + }, { + 'lightness': 99 + }] + }, { + 'featureType': 'road', + 'elementType': 'geometry.stroke', + 'stylers': [{ + 'color': '#808080' + }, { + 'lightness': 54 + }] + }, { + 'featureType': 'landscape.man_made', + 'elementType': 'geometry.fill', + 'stylers': [{ + 'color': '#ece2d9' + }] + }, { + 'featureType': 'poi.park', + 'elementType': 'geometry.fill', + 'stylers': [{ + 'color': '#ccdca1' + }] + }, { + 'featureType': 'road', + 'elementType': 'labels.text.fill', + 'stylers': [{ + 'color': '#767676' + }] + }, { + 'featureType': 'road', + 'elementType': 'labels.text.stroke', + 'stylers': [{ + 'color': '#ffffff' + }] + }, { + 'featureType': 'poi', + 'stylers': [{ + 'visibility': 'off' + }] + }, { + 'featureType': 'landscape.natural', + 'elementType': 'geometry.fill', + 'stylers': [{ + 'visibility': 'on' + }, { + 'color': '#b8cb93' + }] + }, { + 'featureType': 'poi.park', + 'stylers': [{ + 'visibility': 'on' + }] + }, { + 'featureType': 'poi.sports_complex', + 'stylers': [{ + 'visibility': 'on' + }] + }, { + 'featureType': 'poi.medical', + 'stylers': [{ + 'visibility': 'on' + }] + }, { + 'featureType': 'poi.business', + 'stylers': [{ + 'visibility': 'simplified' + }] + }]; + + var mapMapBox = new GMaps({ + el: '#mapMapBox', + zoom: 14, + lat: 40.702247, + lng: -73.996349 + }); + + + // Map style is based on: + // https://snazzymaps.com/style/4183/mostly-grayscale + mapMapBox.addStyle({ + styledMapName:'MapBox', + styles: styleMapBox, + mapTypeId: 'map_mapbox' + }); + + mapMapBox.setStyle('map_mapbox'); + +}); diff --git a/public/assets/js/map.shiftworker.js b/public/assets/js/map.shiftworker.js new file mode 100755 index 0000000..6300fb5 --- /dev/null +++ b/public/assets/js/map.shiftworker.js @@ -0,0 +1,266 @@ +$(function() { + + 'use strict'; + + var styleShiftWorker = [{ + 'featureType': 'administrative', + 'elementType': 'all', + 'stylers': [{ + 'visibility': 'on' + }, { + 'lightness': 33 + }] + }, { + 'featureType': 'administrative', + 'elementType': 'labels', + 'stylers': [{ + 'saturation': '-100' + }] + }, { + 'featureType': 'administrative', + 'elementType': 'labels.text', + 'stylers': [{ + 'gamma': '0.75' + }] + }, { + 'featureType': 'administrative.neighborhood', + 'elementType': 'labels.text.fill', + 'stylers': [{ + 'lightness': '-37' + }] + }, { + 'featureType': 'landscape', + 'elementType': 'geometry', + 'stylers': [{ + 'color': '#f9f9f9' + }] + }, { + 'featureType': 'landscape.man_made', + 'elementType': 'geometry', + 'stylers': [{ + 'saturation': '-100' + }, { + 'lightness': '40' + }, { + 'visibility': 'off' + }] + }, { + 'featureType': 'landscape.natural', + 'elementType': 'labels.text.fill', + 'stylers': [{ + 'saturation': '-100' + }, { + 'lightness': '-37' + }] + }, { + 'featureType': 'landscape.natural', + 'elementType': 'labels.text.stroke', + 'stylers': [{ + 'saturation': '-100' + }, { + 'lightness': '100' + }, { + 'weight': '2' + }] + }, { + 'featureType': 'landscape.natural', + 'elementType': 'labels.icon', + 'stylers': [{ + 'saturation': '-100' + }] + }, { + 'featureType': 'poi', + 'elementType': 'geometry', + 'stylers': [{ + 'saturation': '-100' + }, { + 'lightness': '80' + }] + }, { + 'featureType': 'poi', + 'elementType': 'labels', + 'stylers': [{ + 'saturation': '-100' + }, { + 'lightness': '0' + }] + }, { + 'featureType': 'poi.attraction', + 'elementType': 'geometry', + 'stylers': [{ + 'lightness': '-4' + }, { + 'saturation': '-100' + }] + }, { + 'featureType': 'poi.park', + 'elementType': 'geometry', + 'stylers': [{ + 'color': '#c5dac6' + }, { + 'visibility': 'on' + }, { + 'saturation': '-95' + }, { + 'lightness': '62' + }] + }, { + 'featureType': 'poi.park', + 'elementType': 'labels', + 'stylers': [{ + 'visibility': 'on' + }, { + 'lightness': 20 + }] + }, { + 'featureType': 'road', + 'elementType': 'all', + 'stylers': [{ + 'lightness': 20 + }] + }, { + 'featureType': 'road', + 'elementType': 'labels', + 'stylers': [{ + 'saturation': '-100' + }, { + 'gamma': '1.00' + }] + }, { + 'featureType': 'road', + 'elementType': 'labels.text', + 'stylers': [{ + 'gamma': '0.50' + }] + }, { + 'featureType': 'road', + 'elementType': 'labels.icon', + 'stylers': [{ + 'saturation': '-100' + }, { + 'gamma': '0.50' + }] + }, { + 'featureType': 'road.highway', + 'elementType': 'geometry', + 'stylers': [{ + 'color': '#c5c6c6' + }, { + 'saturation': '-100' + }] + }, { + 'featureType': 'road.highway', + 'elementType': 'geometry.stroke', + 'stylers': [{ + 'lightness': '-13' + }] + }, { + 'featureType': 'road.highway', + 'elementType': 'labels.icon', + 'stylers': [{ + 'lightness': '0' + }, { + 'gamma': '1.09' + }] + }, { + 'featureType': 'road.arterial', + 'elementType': 'geometry', + 'stylers': [{ + 'color': '#e4d7c6' + }, { + 'saturation': '-100' + }, { + 'lightness': '47' + }] + }, { + 'featureType': 'road.arterial', + 'elementType': 'geometry.stroke', + 'stylers': [{ + 'lightness': '-12' + }] + }, { + 'featureType': 'road.arterial', + 'elementType': 'labels.icon', + 'stylers': [{ + 'saturation': '-100' + }] + }, { + 'featureType': 'road.local', + 'elementType': 'geometry', + 'stylers': [{ + 'color': '#fbfaf7' + }, { + 'lightness': '77' + }] + }, { + 'featureType': 'road.local', + 'elementType': 'geometry.fill', + 'stylers': [{ + 'lightness': '-5' + }, { + 'saturation': '-100' + }] + }, { + 'featureType': 'road.local', + 'elementType': 'geometry.stroke', + 'stylers': [{ + 'saturation': '-100' + }, { + 'lightness': '-15' + }] + }, { + 'featureType': 'transit.station.airport', + 'elementType': 'geometry', + 'stylers': [{ + 'lightness': '47' + }, { + 'saturation': '-100' + }] + }, { + 'featureType': 'water', + 'elementType': 'all', + 'stylers': [{ + 'visibility': 'on' + }, { + 'color': '#14a0c1' + }] + }, { + 'featureType': 'water', + 'elementType': 'geometry', + 'stylers': [{ + 'saturation': '53' + }] + }, { + 'featureType': 'water', + 'elementType': 'labels.text.fill', + 'stylers': [{ + 'lightness': '-42' + }, { + 'saturation': '17' + }] + }, { + 'featureType': 'water', + 'elementType': 'labels.text.stroke', + 'stylers': [{ + 'lightness': '61' + }] + }]; + + var mapShiftWorker = new GMaps({ + el: '#mapShiftWorker', + zoom: 14, + lat: 40.702247, + lng: -73.996349 + }); + + // Map style is based on: + // https://snazzymaps.com/style/4183/mostly-grayscale + mapShiftWorker.addStyle({ + styledMapName:'Shift Worker Map', + styles: styleShiftWorker, + mapTypeId: 'map_shift_worker' + }); + + mapShiftWorker.setStyle('map_shift_worker'); + +}); diff --git a/public/assets/lib/@fortawesome/fontawesome-free/LICENSE.txt b/public/assets/lib/@fortawesome/fontawesome-free/LICENSE.txt new file mode 100755 index 0000000..0abfaa6 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/LICENSE.txt @@ -0,0 +1,34 @@ +Font Awesome Free License +------------------------- + +Font Awesome Free is free, open source, and GPL friendly. You can use it for +commercial projects, open source projects, or really almost whatever you want. +Full Font Awesome Free license: https://fontawesome.com/license/free. + +# Icons: CC BY 4.0 License (https://creativecommons.org/licenses/by/4.0/) +In the Font Awesome Free download, the CC BY 4.0 license applies to all icons +packaged as SVG and JS file types. + +# Fonts: SIL OFL 1.1 License (https://scripts.sil.org/OFL) +In the Font Awesome Free download, the SIL OLF license applies to all icons +packaged as web and desktop font files. + +# Code: MIT License (https://opensource.org/licenses/MIT) +In the Font Awesome Free download, the MIT license applies to all non-font and +non-icon files. + +# Attribution +Attribution is required by MIT, SIL OLF, and CC BY licenses. Downloaded Font +Awesome Free files already contain embedded comments with sufficient +attribution, so you shouldn't need to do anything additional when using these +files normally. + +We've kept attribution comments terse, so we ask that you do not actively work +to remove them from files, especially code. They're a great way for folks to +learn about Font Awesome. + +# Brand Icons +All brand icons are trademarks of their respective owners. The use of these +trademarks does not indicate endorsement of the trademark holder by Font +Awesome, nor vice versa. **Please do not use brand logos for any purpose except +to represent the company, product, or service to which they refer.** diff --git a/public/assets/lib/@fortawesome/fontawesome-free/css/all.min.css b/public/assets/lib/@fortawesome/fontawesome-free/css/all.min.css new file mode 100755 index 0000000..03c0a79 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/css/all.min.css @@ -0,0 +1,5 @@ +/*! + * Font Awesome Free 5.3.1 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + */ +.fa,.fab,.fal,.far,.fas{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:inline-block;font-style:normal;font-variant:normal;text-rendering:auto;line-height:1}.fa-lg{font-size:1.33333em;line-height:.75em;vertical-align:-.0667em}.fa-xs{font-size:.75em}.fa-sm{font-size:.875em}.fa-1x{font-size:1em}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-6x{font-size:6em}.fa-7x{font-size:7em}.fa-8x{font-size:8em}.fa-9x{font-size:9em}.fa-10x{font-size:10em}.fa-fw{text-align:center;width:1.25em}.fa-ul{list-style-type:none;margin-left:2.5em;padding-left:0}.fa-ul>li{position:relative}.fa-li{left:-2em;position:absolute;text-align:center;width:2em;line-height:inherit}.fa-border{border:.08em solid #eee;border-radius:.1em;padding:.2em .25em .15em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left,.fab.fa-pull-left,.fal.fa-pull-left,.far.fa-pull-left,.fas.fa-pull-left{margin-right:.3em}.fa.fa-pull-right,.fab.fa-pull-right,.fal.fa-pull-right,.far.fa-pull-right,.fas.fa-pull-right{margin-left:.3em}.fa-spin{animation:fa-spin 2s infinite linear}.fa-pulse{animation:fa-spin 1s infinite steps(8)}@keyframes fa-spin{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";transform:scaleX(-1)}.fa-flip-vertical{transform:scaleY(-1)}.fa-flip-horizontal.fa-flip-vertical,.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)"}.fa-flip-horizontal.fa-flip-vertical{transform:scale(-1)}:root .fa-flip-horizontal,:root .fa-flip-vertical,:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270{-webkit-filter:none;filter:none}.fa-stack{display:inline-block;height:2em;line-height:2em;position:relative;vertical-align:middle;width:2em}.fa-stack-1x,.fa-stack-2x{left:0;position:absolute;text-align:center;width:100%}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-500px:before{content:"\f26e"}.fa-accessible-icon:before{content:"\f368"}.fa-accusoft:before{content:"\f369"}.fa-ad:before{content:"\f641"}.fa-address-book:before{content:"\f2b9"}.fa-address-card:before{content:"\f2bb"}.fa-adjust:before{content:"\f042"}.fa-adn:before{content:"\f170"}.fa-adversal:before{content:"\f36a"}.fa-affiliatetheme:before{content:"\f36b"}.fa-air-freshener:before{content:"\f5d0"}.fa-algolia:before{content:"\f36c"}.fa-align-center:before{content:"\f037"}.fa-align-justify:before{content:"\f039"}.fa-align-left:before{content:"\f036"}.fa-align-right:before{content:"\f038"}.fa-alipay:before{content:"\f642"}.fa-allergies:before{content:"\f461"}.fa-amazon:before{content:"\f270"}.fa-amazon-pay:before{content:"\f42c"}.fa-ambulance:before{content:"\f0f9"}.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-amilia:before{content:"\f36d"}.fa-anchor:before{content:"\f13d"}.fa-android:before{content:"\f17b"}.fa-angellist:before{content:"\f209"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-down:before{content:"\f107"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angry:before{content:"\f556"}.fa-angrycreative:before{content:"\f36e"}.fa-angular:before{content:"\f420"}.fa-ankh:before{content:"\f644"}.fa-app-store:before{content:"\f36f"}.fa-app-store-ios:before{content:"\f370"}.fa-apper:before{content:"\f371"}.fa-apple:before{content:"\f179"}.fa-apple-alt:before{content:"\f5d1"}.fa-apple-pay:before{content:"\f415"}.fa-archive:before{content:"\f187"}.fa-archway:before{content:"\f557"}.fa-arrow-alt-circle-down:before{content:"\f358"}.fa-arrow-alt-circle-left:before{content:"\f359"}.fa-arrow-alt-circle-right:before{content:"\f35a"}.fa-arrow-alt-circle-up:before{content:"\f35b"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-down:before{content:"\f063"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrows-alt:before{content:"\f0b2"}.fa-arrows-alt-h:before{content:"\f337"}.fa-arrows-alt-v:before{content:"\f338"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asterisk:before{content:"\f069"}.fa-asymmetrik:before{content:"\f372"}.fa-at:before{content:"\f1fa"}.fa-atlas:before{content:"\f558"}.fa-atom:before{content:"\f5d2"}.fa-audible:before{content:"\f373"}.fa-audio-description:before{content:"\f29e"}.fa-autoprefixer:before{content:"\f41c"}.fa-avianex:before{content:"\f374"}.fa-aviato:before{content:"\f421"}.fa-award:before{content:"\f559"}.fa-aws:before{content:"\f375"}.fa-backspace:before{content:"\f55a"}.fa-backward:before{content:"\f04a"}.fa-balance-scale:before{content:"\f24e"}.fa-ban:before{content:"\f05e"}.fa-band-aid:before{content:"\f462"}.fa-bandcamp:before{content:"\f2d5"}.fa-barcode:before{content:"\f02a"}.fa-bars:before{content:"\f0c9"}.fa-baseball-ball:before{content:"\f433"}.fa-basketball-ball:before{content:"\f434"}.fa-bath:before{content:"\f2cd"}.fa-battery-empty:before{content:"\f244"}.fa-battery-full:before{content:"\f240"}.fa-battery-half:before{content:"\f242"}.fa-battery-quarter:before{content:"\f243"}.fa-battery-three-quarters:before{content:"\f241"}.fa-bed:before{content:"\f236"}.fa-beer:before{content:"\f0fc"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-bell:before{content:"\f0f3"}.fa-bell-slash:before{content:"\f1f6"}.fa-bezier-curve:before{content:"\f55b"}.fa-bible:before{content:"\f647"}.fa-bicycle:before{content:"\f206"}.fa-bimobject:before{content:"\f378"}.fa-binoculars:before{content:"\f1e5"}.fa-birthday-cake:before{content:"\f1fd"}.fa-bitbucket:before{content:"\f171"}.fa-bitcoin:before{content:"\f379"}.fa-bity:before{content:"\f37a"}.fa-black-tie:before{content:"\f27e"}.fa-blackberry:before{content:"\f37b"}.fa-blender:before{content:"\f517"}.fa-blind:before{content:"\f29d"}.fa-blogger:before{content:"\f37c"}.fa-blogger-b:before{content:"\f37d"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-bold:before{content:"\f032"}.fa-bolt:before{content:"\f0e7"}.fa-bomb:before{content:"\f1e2"}.fa-bone:before{content:"\f5d7"}.fa-bong:before{content:"\f55c"}.fa-book:before{content:"\f02d"}.fa-book-open:before{content:"\f518"}.fa-book-reader:before{content:"\f5da"}.fa-bookmark:before{content:"\f02e"}.fa-bowling-ball:before{content:"\f436"}.fa-box:before{content:"\f466"}.fa-box-open:before{content:"\f49e"}.fa-boxes:before{content:"\f468"}.fa-braille:before{content:"\f2a1"}.fa-brain:before{content:"\f5dc"}.fa-briefcase:before{content:"\f0b1"}.fa-briefcase-medical:before{content:"\f469"}.fa-broadcast-tower:before{content:"\f519"}.fa-broom:before{content:"\f51a"}.fa-brush:before{content:"\f55d"}.fa-btc:before{content:"\f15a"}.fa-bug:before{content:"\f188"}.fa-building:before{content:"\f1ad"}.fa-bullhorn:before{content:"\f0a1"}.fa-bullseye:before{content:"\f140"}.fa-burn:before{content:"\f46a"}.fa-buromobelexperte:before{content:"\f37f"}.fa-bus:before{content:"\f207"}.fa-bus-alt:before{content:"\f55e"}.fa-business-time:before{content:"\f64a"}.fa-buysellads:before{content:"\f20d"}.fa-calculator:before{content:"\f1ec"}.fa-calendar:before{content:"\f133"}.fa-calendar-alt:before{content:"\f073"}.fa-calendar-check:before{content:"\f274"}.fa-calendar-minus:before{content:"\f272"}.fa-calendar-plus:before{content:"\f271"}.fa-calendar-times:before{content:"\f273"}.fa-camera:before{content:"\f030"}.fa-camera-retro:before{content:"\f083"}.fa-cannabis:before{content:"\f55f"}.fa-capsules:before{content:"\f46b"}.fa-car:before{content:"\f1b9"}.fa-car-alt:before{content:"\f5de"}.fa-car-battery:before{content:"\f5df"}.fa-car-crash:before{content:"\f5e1"}.fa-car-side:before{content:"\f5e4"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-caret-square-down:before{content:"\f150"}.fa-caret-square-left:before{content:"\f191"}.fa-caret-square-right:before{content:"\f152"}.fa-caret-square-up:before{content:"\f151"}.fa-caret-up:before{content:"\f0d8"}.fa-cart-arrow-down:before{content:"\f218"}.fa-cart-plus:before{content:"\f217"}.fa-cc-amazon-pay:before{content:"\f42d"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-apple-pay:before{content:"\f416"}.fa-cc-diners-club:before{content:"\f24c"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-cc-visa:before{content:"\f1f0"}.fa-centercode:before{content:"\f380"}.fa-certificate:before{content:"\f0a3"}.fa-chalkboard:before{content:"\f51b"}.fa-chalkboard-teacher:before{content:"\f51c"}.fa-charging-station:before{content:"\f5e7"}.fa-chart-area:before{content:"\f1fe"}.fa-chart-bar:before{content:"\f080"}.fa-chart-line:before{content:"\f201"}.fa-chart-pie:before{content:"\f200"}.fa-check:before{content:"\f00c"}.fa-check-circle:before{content:"\f058"}.fa-check-double:before{content:"\f560"}.fa-check-square:before{content:"\f14a"}.fa-chess:before{content:"\f439"}.fa-chess-bishop:before{content:"\f43a"}.fa-chess-board:before{content:"\f43c"}.fa-chess-king:before{content:"\f43f"}.fa-chess-knight:before{content:"\f441"}.fa-chess-pawn:before{content:"\f443"}.fa-chess-queen:before{content:"\f445"}.fa-chess-rook:before{content:"\f447"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-down:before{content:"\f078"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-chevron-up:before{content:"\f077"}.fa-child:before{content:"\f1ae"}.fa-chrome:before{content:"\f268"}.fa-church:before{content:"\f51d"}.fa-circle:before{content:"\f111"}.fa-circle-notch:before{content:"\f1ce"}.fa-city:before{content:"\f64f"}.fa-clipboard:before{content:"\f328"}.fa-clipboard-check:before{content:"\f46c"}.fa-clipboard-list:before{content:"\f46d"}.fa-clock:before{content:"\f017"}.fa-clone:before{content:"\f24d"}.fa-closed-captioning:before{content:"\f20a"}.fa-cloud:before{content:"\f0c2"}.fa-cloud-download-alt:before{content:"\f381"}.fa-cloud-upload-alt:before{content:"\f382"}.fa-cloudscale:before{content:"\f383"}.fa-cloudsmith:before{content:"\f384"}.fa-cloudversify:before{content:"\f385"}.fa-cocktail:before{content:"\f561"}.fa-code:before{content:"\f121"}.fa-code-branch:before{content:"\f126"}.fa-codepen:before{content:"\f1cb"}.fa-codiepie:before{content:"\f284"}.fa-coffee:before{content:"\f0f4"}.fa-cog:before{content:"\f013"}.fa-cogs:before{content:"\f085"}.fa-coins:before{content:"\f51e"}.fa-columns:before{content:"\f0db"}.fa-comment:before{content:"\f075"}.fa-comment-alt:before{content:"\f27a"}.fa-comment-dollar:before{content:"\f651"}.fa-comment-dots:before{content:"\f4ad"}.fa-comment-slash:before{content:"\f4b3"}.fa-comments:before{content:"\f086"}.fa-comments-dollar:before{content:"\f653"}.fa-compact-disc:before{content:"\f51f"}.fa-compass:before{content:"\f14e"}.fa-compress:before{content:"\f066"}.fa-concierge-bell:before{content:"\f562"}.fa-connectdevelop:before{content:"\f20e"}.fa-contao:before{content:"\f26d"}.fa-cookie:before{content:"\f563"}.fa-cookie-bite:before{content:"\f564"}.fa-copy:before{content:"\f0c5"}.fa-copyright:before{content:"\f1f9"}.fa-couch:before{content:"\f4b8"}.fa-cpanel:before{content:"\f388"}.fa-creative-commons:before{content:"\f25e"}.fa-creative-commons-by:before{content:"\f4e7"}.fa-creative-commons-nc:before{content:"\f4e8"}.fa-creative-commons-nc-eu:before{content:"\f4e9"}.fa-creative-commons-nc-jp:before{content:"\f4ea"}.fa-creative-commons-nd:before{content:"\f4eb"}.fa-creative-commons-pd:before{content:"\f4ec"}.fa-creative-commons-pd-alt:before{content:"\f4ed"}.fa-creative-commons-remix:before{content:"\f4ee"}.fa-creative-commons-sa:before{content:"\f4ef"}.fa-creative-commons-sampling:before{content:"\f4f0"}.fa-creative-commons-sampling-plus:before{content:"\f4f1"}.fa-creative-commons-share:before{content:"\f4f2"}.fa-credit-card:before{content:"\f09d"}.fa-crop:before{content:"\f125"}.fa-crop-alt:before{content:"\f565"}.fa-cross:before{content:"\f654"}.fa-crosshairs:before{content:"\f05b"}.fa-crow:before{content:"\f520"}.fa-crown:before{content:"\f521"}.fa-css3:before{content:"\f13c"}.fa-css3-alt:before{content:"\f38b"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-cut:before{content:"\f0c4"}.fa-cuttlefish:before{content:"\f38c"}.fa-d-and-d:before{content:"\f38d"}.fa-dashcube:before{content:"\f210"}.fa-database:before{content:"\f1c0"}.fa-deaf:before{content:"\f2a4"}.fa-delicious:before{content:"\f1a5"}.fa-deploydog:before{content:"\f38e"}.fa-deskpro:before{content:"\f38f"}.fa-desktop:before{content:"\f108"}.fa-deviantart:before{content:"\f1bd"}.fa-dharmachakra:before{content:"\f655"}.fa-diagnoses:before{content:"\f470"}.fa-dice:before{content:"\f522"}.fa-dice-five:before{content:"\f523"}.fa-dice-four:before{content:"\f524"}.fa-dice-one:before{content:"\f525"}.fa-dice-six:before{content:"\f526"}.fa-dice-three:before{content:"\f527"}.fa-dice-two:before{content:"\f528"}.fa-digg:before{content:"\f1a6"}.fa-digital-ocean:before{content:"\f391"}.fa-digital-tachograph:before{content:"\f566"}.fa-directions:before{content:"\f5eb"}.fa-discord:before{content:"\f392"}.fa-discourse:before{content:"\f393"}.fa-divide:before{content:"\f529"}.fa-dizzy:before{content:"\f567"}.fa-dna:before{content:"\f471"}.fa-dochub:before{content:"\f394"}.fa-docker:before{content:"\f395"}.fa-dollar-sign:before{content:"\f155"}.fa-dolly:before{content:"\f472"}.fa-dolly-flatbed:before{content:"\f474"}.fa-donate:before{content:"\f4b9"}.fa-door-closed:before{content:"\f52a"}.fa-door-open:before{content:"\f52b"}.fa-dot-circle:before{content:"\f192"}.fa-dove:before{content:"\f4ba"}.fa-download:before{content:"\f019"}.fa-draft2digital:before{content:"\f396"}.fa-drafting-compass:before{content:"\f568"}.fa-draw-polygon:before{content:"\f5ee"}.fa-dribbble:before{content:"\f17d"}.fa-dribbble-square:before{content:"\f397"}.fa-dropbox:before{content:"\f16b"}.fa-drum:before{content:"\f569"}.fa-drum-steelpan:before{content:"\f56a"}.fa-drupal:before{content:"\f1a9"}.fa-dumbbell:before{content:"\f44b"}.fa-dyalog:before{content:"\f399"}.fa-earlybirds:before{content:"\f39a"}.fa-ebay:before{content:"\f4f4"}.fa-edge:before{content:"\f282"}.fa-edit:before{content:"\f044"}.fa-eject:before{content:"\f052"}.fa-elementor:before{content:"\f430"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-ello:before{content:"\f5f1"}.fa-ember:before{content:"\f423"}.fa-empire:before{content:"\f1d1"}.fa-envelope:before{content:"\f0e0"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-text:before{content:"\f658"}.fa-envelope-square:before{content:"\f199"}.fa-envira:before{content:"\f299"}.fa-equals:before{content:"\f52c"}.fa-eraser:before{content:"\f12d"}.fa-erlang:before{content:"\f39d"}.fa-ethereum:before{content:"\f42e"}.fa-etsy:before{content:"\f2d7"}.fa-euro-sign:before{content:"\f153"}.fa-exchange-alt:before{content:"\f362"}.fa-exclamation:before{content:"\f12a"}.fa-exclamation-circle:before{content:"\f06a"}.fa-exclamation-triangle:before{content:"\f071"}.fa-expand:before{content:"\f065"}.fa-expand-arrows-alt:before{content:"\f31e"}.fa-expeditedssl:before{content:"\f23e"}.fa-external-link-alt:before{content:"\f35d"}.fa-external-link-square-alt:before{content:"\f360"}.fa-eye:before{content:"\f06e"}.fa-eye-dropper:before{content:"\f1fb"}.fa-eye-slash:before{content:"\f070"}.fa-facebook:before{content:"\f09a"}.fa-facebook-f:before{content:"\f39e"}.fa-facebook-messenger:before{content:"\f39f"}.fa-facebook-square:before{content:"\f082"}.fa-fast-backward:before{content:"\f049"}.fa-fast-forward:before{content:"\f050"}.fa-fax:before{content:"\f1ac"}.fa-feather:before{content:"\f52d"}.fa-feather-alt:before{content:"\f56b"}.fa-female:before{content:"\f182"}.fa-fighter-jet:before{content:"\f0fb"}.fa-file:before{content:"\f15b"}.fa-file-alt:before{content:"\f15c"}.fa-file-archive:before{content:"\f1c6"}.fa-file-audio:before{content:"\f1c7"}.fa-file-code:before{content:"\f1c9"}.fa-file-contract:before{content:"\f56c"}.fa-file-download:before{content:"\f56d"}.fa-file-excel:before{content:"\f1c3"}.fa-file-export:before{content:"\f56e"}.fa-file-image:before{content:"\f1c5"}.fa-file-import:before{content:"\f56f"}.fa-file-invoice:before{content:"\f570"}.fa-file-invoice-dollar:before{content:"\f571"}.fa-file-medical:before{content:"\f477"}.fa-file-medical-alt:before{content:"\f478"}.fa-file-pdf:before{content:"\f1c1"}.fa-file-powerpoint:before{content:"\f1c4"}.fa-file-prescription:before{content:"\f572"}.fa-file-signature:before{content:"\f573"}.fa-file-upload:before{content:"\f574"}.fa-file-video:before{content:"\f1c8"}.fa-file-word:before{content:"\f1c2"}.fa-fill:before{content:"\f575"}.fa-fill-drip:before{content:"\f576"}.fa-film:before{content:"\f008"}.fa-filter:before{content:"\f0b0"}.fa-fingerprint:before{content:"\f577"}.fa-fire:before{content:"\f06d"}.fa-fire-extinguisher:before{content:"\f134"}.fa-firefox:before{content:"\f269"}.fa-first-aid:before{content:"\f479"}.fa-first-order:before{content:"\f2b0"}.fa-first-order-alt:before{content:"\f50a"}.fa-firstdraft:before{content:"\f3a1"}.fa-fish:before{content:"\f578"}.fa-flag:before{content:"\f024"}.fa-flag-checkered:before{content:"\f11e"}.fa-flask:before{content:"\f0c3"}.fa-flickr:before{content:"\f16e"}.fa-flipboard:before{content:"\f44d"}.fa-flushed:before{content:"\f579"}.fa-fly:before{content:"\f417"}.fa-folder:before{content:"\f07b"}.fa-folder-minus:before{content:"\f65d"}.fa-folder-open:before{content:"\f07c"}.fa-folder-plus:before{content:"\f65e"}.fa-font:before{content:"\f031"}.fa-font-awesome:before{content:"\f2b4"}.fa-font-awesome-alt:before{content:"\f35c"}.fa-font-awesome-flag:before{content:"\f425"}.fa-font-awesome-logo-full:before{content:"\f4e6"}.fa-fonticons:before{content:"\f280"}.fa-fonticons-fi:before{content:"\f3a2"}.fa-football-ball:before{content:"\f44e"}.fa-fort-awesome:before{content:"\f286"}.fa-fort-awesome-alt:before{content:"\f3a3"}.fa-forumbee:before{content:"\f211"}.fa-forward:before{content:"\f04e"}.fa-foursquare:before{content:"\f180"}.fa-free-code-camp:before{content:"\f2c5"}.fa-freebsd:before{content:"\f3a4"}.fa-frog:before{content:"\f52e"}.fa-frown:before{content:"\f119"}.fa-frown-open:before{content:"\f57a"}.fa-fulcrum:before{content:"\f50b"}.fa-funnel-dollar:before{content:"\f662"}.fa-futbol:before{content:"\f1e3"}.fa-galactic-republic:before{content:"\f50c"}.fa-galactic-senate:before{content:"\f50d"}.fa-gamepad:before{content:"\f11b"}.fa-gas-pump:before{content:"\f52f"}.fa-gavel:before{content:"\f0e3"}.fa-gem:before{content:"\f3a5"}.fa-genderless:before{content:"\f22d"}.fa-get-pocket:before{content:"\f265"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-gift:before{content:"\f06b"}.fa-git:before{content:"\f1d3"}.fa-git-square:before{content:"\f1d2"}.fa-github:before{content:"\f09b"}.fa-github-alt:before{content:"\f113"}.fa-github-square:before{content:"\f092"}.fa-gitkraken:before{content:"\f3a6"}.fa-gitlab:before{content:"\f296"}.fa-gitter:before{content:"\f426"}.fa-glass-martini:before{content:"\f000"}.fa-glass-martini-alt:before{content:"\f57b"}.fa-glasses:before{content:"\f530"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-globe:before{content:"\f0ac"}.fa-globe-africa:before{content:"\f57c"}.fa-globe-americas:before{content:"\f57d"}.fa-globe-asia:before{content:"\f57e"}.fa-gofore:before{content:"\f3a7"}.fa-golf-ball:before{content:"\f450"}.fa-goodreads:before{content:"\f3a8"}.fa-goodreads-g:before{content:"\f3a9"}.fa-google:before{content:"\f1a0"}.fa-google-drive:before{content:"\f3aa"}.fa-google-play:before{content:"\f3ab"}.fa-google-plus:before{content:"\f2b3"}.fa-google-plus-g:before{content:"\f0d5"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-wallet:before{content:"\f1ee"}.fa-gopuram:before{content:"\f664"}.fa-graduation-cap:before{content:"\f19d"}.fa-gratipay:before{content:"\f184"}.fa-grav:before{content:"\f2d6"}.fa-greater-than:before{content:"\f531"}.fa-greater-than-equal:before{content:"\f532"}.fa-grimace:before{content:"\f57f"}.fa-grin:before{content:"\f580"}.fa-grin-alt:before{content:"\f581"}.fa-grin-beam:before{content:"\f582"}.fa-grin-beam-sweat:before{content:"\f583"}.fa-grin-hearts:before{content:"\f584"}.fa-grin-squint:before{content:"\f585"}.fa-grin-squint-tears:before{content:"\f586"}.fa-grin-stars:before{content:"\f587"}.fa-grin-tears:before{content:"\f588"}.fa-grin-tongue:before{content:"\f589"}.fa-grin-tongue-squint:before{content:"\f58a"}.fa-grin-tongue-wink:before{content:"\f58b"}.fa-grin-wink:before{content:"\f58c"}.fa-grip-horizontal:before{content:"\f58d"}.fa-grip-vertical:before{content:"\f58e"}.fa-gripfire:before{content:"\f3ac"}.fa-grunt:before{content:"\f3ad"}.fa-gulp:before{content:"\f3ae"}.fa-h-square:before{content:"\f0fd"}.fa-hacker-news:before{content:"\f1d4"}.fa-hacker-news-square:before{content:"\f3af"}.fa-hackerrank:before{content:"\f5f7"}.fa-hamsa:before{content:"\f665"}.fa-hand-holding:before{content:"\f4bd"}.fa-hand-holding-heart:before{content:"\f4be"}.fa-hand-holding-usd:before{content:"\f4c0"}.fa-hand-lizard:before{content:"\f258"}.fa-hand-paper:before{content:"\f256"}.fa-hand-peace:before{content:"\f25b"}.fa-hand-point-down:before{content:"\f0a7"}.fa-hand-point-left:before{content:"\f0a5"}.fa-hand-point-right:before{content:"\f0a4"}.fa-hand-point-up:before{content:"\f0a6"}.fa-hand-pointer:before{content:"\f25a"}.fa-hand-rock:before{content:"\f255"}.fa-hand-scissors:before{content:"\f257"}.fa-hand-spock:before{content:"\f259"}.fa-hands:before{content:"\f4c2"}.fa-hands-helping:before{content:"\f4c4"}.fa-handshake:before{content:"\f2b5"}.fa-hashtag:before{content:"\f292"}.fa-haykal:before{content:"\f666"}.fa-hdd:before{content:"\f0a0"}.fa-heading:before{content:"\f1dc"}.fa-headphones:before{content:"\f025"}.fa-headphones-alt:before{content:"\f58f"}.fa-headset:before{content:"\f590"}.fa-heart:before{content:"\f004"}.fa-heartbeat:before{content:"\f21e"}.fa-helicopter:before{content:"\f533"}.fa-highlighter:before{content:"\f591"}.fa-hips:before{content:"\f452"}.fa-hire-a-helper:before{content:"\f3b0"}.fa-history:before{content:"\f1da"}.fa-hockey-puck:before{content:"\f453"}.fa-home:before{content:"\f015"}.fa-hooli:before{content:"\f427"}.fa-hornbill:before{content:"\f592"}.fa-hospital:before{content:"\f0f8"}.fa-hospital-alt:before{content:"\f47d"}.fa-hospital-symbol:before{content:"\f47e"}.fa-hot-tub:before{content:"\f593"}.fa-hotel:before{content:"\f594"}.fa-hotjar:before{content:"\f3b1"}.fa-hourglass:before{content:"\f254"}.fa-hourglass-end:before{content:"\f253"}.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-start:before{content:"\f251"}.fa-houzz:before{content:"\f27c"}.fa-html5:before{content:"\f13b"}.fa-hubspot:before{content:"\f3b2"}.fa-i-cursor:before{content:"\f246"}.fa-id-badge:before{content:"\f2c1"}.fa-id-card:before{content:"\f2c2"}.fa-id-card-alt:before{content:"\f47f"}.fa-image:before{content:"\f03e"}.fa-images:before{content:"\f302"}.fa-imdb:before{content:"\f2d8"}.fa-inbox:before{content:"\f01c"}.fa-indent:before{content:"\f03c"}.fa-industry:before{content:"\f275"}.fa-infinity:before{content:"\f534"}.fa-info:before{content:"\f129"}.fa-info-circle:before{content:"\f05a"}.fa-instagram:before{content:"\f16d"}.fa-internet-explorer:before{content:"\f26b"}.fa-ioxhost:before{content:"\f208"}.fa-italic:before{content:"\f033"}.fa-itunes:before{content:"\f3b4"}.fa-itunes-note:before{content:"\f3b5"}.fa-java:before{content:"\f4e4"}.fa-jedi:before{content:"\f669"}.fa-jedi-order:before{content:"\f50e"}.fa-jenkins:before{content:"\f3b6"}.fa-joget:before{content:"\f3b7"}.fa-joint:before{content:"\f595"}.fa-joomla:before{content:"\f1aa"}.fa-journal-whills:before{content:"\f66a"}.fa-js:before{content:"\f3b8"}.fa-js-square:before{content:"\f3b9"}.fa-jsfiddle:before{content:"\f1cc"}.fa-kaaba:before{content:"\f66b"}.fa-kaggle:before{content:"\f5fa"}.fa-key:before{content:"\f084"}.fa-keybase:before{content:"\f4f5"}.fa-keyboard:before{content:"\f11c"}.fa-keycdn:before{content:"\f3ba"}.fa-khanda:before{content:"\f66d"}.fa-kickstarter:before{content:"\f3bb"}.fa-kickstarter-k:before{content:"\f3bc"}.fa-kiss:before{content:"\f596"}.fa-kiss-beam:before{content:"\f597"}.fa-kiss-wink-heart:before{content:"\f598"}.fa-kiwi-bird:before{content:"\f535"}.fa-korvue:before{content:"\f42f"}.fa-landmark:before{content:"\f66f"}.fa-language:before{content:"\f1ab"}.fa-laptop:before{content:"\f109"}.fa-laptop-code:before{content:"\f5fc"}.fa-laravel:before{content:"\f3bd"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-laugh:before{content:"\f599"}.fa-laugh-beam:before{content:"\f59a"}.fa-laugh-squint:before{content:"\f59b"}.fa-laugh-wink:before{content:"\f59c"}.fa-layer-group:before{content:"\f5fd"}.fa-leaf:before{content:"\f06c"}.fa-leanpub:before{content:"\f212"}.fa-lemon:before{content:"\f094"}.fa-less:before{content:"\f41d"}.fa-less-than:before{content:"\f536"}.fa-less-than-equal:before{content:"\f537"}.fa-level-down-alt:before{content:"\f3be"}.fa-level-up-alt:before{content:"\f3bf"}.fa-life-ring:before{content:"\f1cd"}.fa-lightbulb:before{content:"\f0eb"}.fa-line:before{content:"\f3c0"}.fa-link:before{content:"\f0c1"}.fa-linkedin:before{content:"\f08c"}.fa-linkedin-in:before{content:"\f0e1"}.fa-linode:before{content:"\f2b8"}.fa-linux:before{content:"\f17c"}.fa-lira-sign:before{content:"\f195"}.fa-list:before{content:"\f03a"}.fa-list-alt:before{content:"\f022"}.fa-list-ol:before{content:"\f0cb"}.fa-list-ul:before{content:"\f0ca"}.fa-location-arrow:before{content:"\f124"}.fa-lock:before{content:"\f023"}.fa-lock-open:before{content:"\f3c1"}.fa-long-arrow-alt-down:before{content:"\f309"}.fa-long-arrow-alt-left:before{content:"\f30a"}.fa-long-arrow-alt-right:before{content:"\f30b"}.fa-long-arrow-alt-up:before{content:"\f30c"}.fa-low-vision:before{content:"\f2a8"}.fa-luggage-cart:before{content:"\f59d"}.fa-lyft:before{content:"\f3c3"}.fa-magento:before{content:"\f3c4"}.fa-magic:before{content:"\f0d0"}.fa-magnet:before{content:"\f076"}.fa-mail-bulk:before{content:"\f674"}.fa-mailchimp:before{content:"\f59e"}.fa-male:before{content:"\f183"}.fa-mandalorian:before{content:"\f50f"}.fa-map:before{content:"\f279"}.fa-map-marked:before{content:"\f59f"}.fa-map-marked-alt:before{content:"\f5a0"}.fa-map-marker:before{content:"\f041"}.fa-map-marker-alt:before{content:"\f3c5"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-markdown:before{content:"\f60f"}.fa-marker:before{content:"\f5a1"}.fa-mars:before{content:"\f222"}.fa-mars-double:before{content:"\f227"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mastodon:before{content:"\f4f6"}.fa-maxcdn:before{content:"\f136"}.fa-medal:before{content:"\f5a2"}.fa-medapps:before{content:"\f3c6"}.fa-medium:before{content:"\f23a"}.fa-medium-m:before{content:"\f3c7"}.fa-medkit:before{content:"\f0fa"}.fa-medrt:before{content:"\f3c8"}.fa-meetup:before{content:"\f2e0"}.fa-megaport:before{content:"\f5a3"}.fa-meh:before{content:"\f11a"}.fa-meh-blank:before{content:"\f5a4"}.fa-meh-rolling-eyes:before{content:"\f5a5"}.fa-memory:before{content:"\f538"}.fa-menorah:before{content:"\f676"}.fa-mercury:before{content:"\f223"}.fa-microchip:before{content:"\f2db"}.fa-microphone:before{content:"\f130"}.fa-microphone-alt:before{content:"\f3c9"}.fa-microphone-alt-slash:before{content:"\f539"}.fa-microphone-slash:before{content:"\f131"}.fa-microscope:before{content:"\f610"}.fa-microsoft:before{content:"\f3ca"}.fa-minus:before{content:"\f068"}.fa-minus-circle:before{content:"\f056"}.fa-minus-square:before{content:"\f146"}.fa-mix:before{content:"\f3cb"}.fa-mixcloud:before{content:"\f289"}.fa-mizuni:before{content:"\f3cc"}.fa-mobile:before{content:"\f10b"}.fa-mobile-alt:before{content:"\f3cd"}.fa-modx:before{content:"\f285"}.fa-monero:before{content:"\f3d0"}.fa-money-bill:before{content:"\f0d6"}.fa-money-bill-alt:before{content:"\f3d1"}.fa-money-bill-wave:before{content:"\f53a"}.fa-money-bill-wave-alt:before{content:"\f53b"}.fa-money-check:before{content:"\f53c"}.fa-money-check-alt:before{content:"\f53d"}.fa-monument:before{content:"\f5a6"}.fa-moon:before{content:"\f186"}.fa-mortar-pestle:before{content:"\f5a7"}.fa-mosque:before{content:"\f678"}.fa-motorcycle:before{content:"\f21c"}.fa-mouse-pointer:before{content:"\f245"}.fa-music:before{content:"\f001"}.fa-napster:before{content:"\f3d2"}.fa-neos:before{content:"\f612"}.fa-neuter:before{content:"\f22c"}.fa-newspaper:before{content:"\f1ea"}.fa-nimblr:before{content:"\f5a8"}.fa-nintendo-switch:before{content:"\f418"}.fa-node:before{content:"\f419"}.fa-node-js:before{content:"\f3d3"}.fa-not-equal:before{content:"\f53e"}.fa-notes-medical:before{content:"\f481"}.fa-npm:before{content:"\f3d4"}.fa-ns8:before{content:"\f3d5"}.fa-nutritionix:before{content:"\f3d6"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-oil-can:before{content:"\f613"}.fa-old-republic:before{content:"\f510"}.fa-om:before{content:"\f679"}.fa-opencart:before{content:"\f23d"}.fa-openid:before{content:"\f19b"}.fa-opera:before{content:"\f26a"}.fa-optin-monster:before{content:"\f23c"}.fa-osi:before{content:"\f41a"}.fa-outdent:before{content:"\f03b"}.fa-page4:before{content:"\f3d7"}.fa-pagelines:before{content:"\f18c"}.fa-paint-brush:before{content:"\f1fc"}.fa-paint-roller:before{content:"\f5aa"}.fa-palette:before{content:"\f53f"}.fa-palfed:before{content:"\f3d8"}.fa-pallet:before{content:"\f482"}.fa-paper-plane:before{content:"\f1d8"}.fa-paperclip:before{content:"\f0c6"}.fa-parachute-box:before{content:"\f4cd"}.fa-paragraph:before{content:"\f1dd"}.fa-parking:before{content:"\f540"}.fa-passport:before{content:"\f5ab"}.fa-pastafarianism:before{content:"\f67b"}.fa-paste:before{content:"\f0ea"}.fa-patreon:before{content:"\f3d9"}.fa-pause:before{content:"\f04c"}.fa-pause-circle:before{content:"\f28b"}.fa-paw:before{content:"\f1b0"}.fa-paypal:before{content:"\f1ed"}.fa-peace:before{content:"\f67c"}.fa-pen:before{content:"\f304"}.fa-pen-alt:before{content:"\f305"}.fa-pen-fancy:before{content:"\f5ac"}.fa-pen-nib:before{content:"\f5ad"}.fa-pen-square:before{content:"\f14b"}.fa-pencil-alt:before{content:"\f303"}.fa-pencil-ruler:before{content:"\f5ae"}.fa-people-carry:before{content:"\f4ce"}.fa-percent:before{content:"\f295"}.fa-percentage:before{content:"\f541"}.fa-periscope:before{content:"\f3da"}.fa-phabricator:before{content:"\f3db"}.fa-phoenix-framework:before{content:"\f3dc"}.fa-phoenix-squadron:before{content:"\f511"}.fa-phone:before{content:"\f095"}.fa-phone-slash:before{content:"\f3dd"}.fa-phone-square:before{content:"\f098"}.fa-phone-volume:before{content:"\f2a0"}.fa-php:before{content:"\f457"}.fa-pied-piper:before{content:"\f2ae"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-pied-piper-hat:before{content:"\f4e5"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-piggy-bank:before{content:"\f4d3"}.fa-pills:before{content:"\f484"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-p:before{content:"\f231"}.fa-pinterest-square:before{content:"\f0d3"}.fa-place-of-worship:before{content:"\f67f"}.fa-plane:before{content:"\f072"}.fa-plane-arrival:before{content:"\f5af"}.fa-plane-departure:before{content:"\f5b0"}.fa-play:before{content:"\f04b"}.fa-play-circle:before{content:"\f144"}.fa-playstation:before{content:"\f3df"}.fa-plug:before{content:"\f1e6"}.fa-plus:before{content:"\f067"}.fa-plus-circle:before{content:"\f055"}.fa-plus-square:before{content:"\f0fe"}.fa-podcast:before{content:"\f2ce"}.fa-poll:before{content:"\f681"}.fa-poll-h:before{content:"\f682"}.fa-poo:before{content:"\f2fe"}.fa-poop:before{content:"\f619"}.fa-portrait:before{content:"\f3e0"}.fa-pound-sign:before{content:"\f154"}.fa-power-off:before{content:"\f011"}.fa-pray:before{content:"\f683"}.fa-praying-hands:before{content:"\f684"}.fa-prescription:before{content:"\f5b1"}.fa-prescription-bottle:before{content:"\f485"}.fa-prescription-bottle-alt:before{content:"\f486"}.fa-print:before{content:"\f02f"}.fa-procedures:before{content:"\f487"}.fa-product-hunt:before{content:"\f288"}.fa-project-diagram:before{content:"\f542"}.fa-pushed:before{content:"\f3e1"}.fa-puzzle-piece:before{content:"\f12e"}.fa-python:before{content:"\f3e2"}.fa-qq:before{content:"\f1d6"}.fa-qrcode:before{content:"\f029"}.fa-question:before{content:"\f128"}.fa-question-circle:before{content:"\f059"}.fa-quidditch:before{content:"\f458"}.fa-quinscape:before{content:"\f459"}.fa-quora:before{content:"\f2c4"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-quran:before{content:"\f687"}.fa-r-project:before{content:"\f4f7"}.fa-random:before{content:"\f074"}.fa-ravelry:before{content:"\f2d9"}.fa-react:before{content:"\f41b"}.fa-readme:before{content:"\f4d5"}.fa-rebel:before{content:"\f1d0"}.fa-receipt:before{content:"\f543"}.fa-recycle:before{content:"\f1b8"}.fa-red-river:before{content:"\f3e3"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-alien:before{content:"\f281"}.fa-reddit-square:before{content:"\f1a2"}.fa-redo:before{content:"\f01e"}.fa-redo-alt:before{content:"\f2f9"}.fa-registered:before{content:"\f25d"}.fa-rendact:before{content:"\f3e4"}.fa-renren:before{content:"\f18b"}.fa-reply:before{content:"\f3e5"}.fa-reply-all:before{content:"\f122"}.fa-replyd:before{content:"\f3e6"}.fa-researchgate:before{content:"\f4f8"}.fa-resolving:before{content:"\f3e7"}.fa-retweet:before{content:"\f079"}.fa-rev:before{content:"\f5b2"}.fa-ribbon:before{content:"\f4d6"}.fa-road:before{content:"\f018"}.fa-robot:before{content:"\f544"}.fa-rocket:before{content:"\f135"}.fa-rocketchat:before{content:"\f3e8"}.fa-rockrms:before{content:"\f3e9"}.fa-route:before{content:"\f4d7"}.fa-rss:before{content:"\f09e"}.fa-rss-square:before{content:"\f143"}.fa-ruble-sign:before{content:"\f158"}.fa-ruler:before{content:"\f545"}.fa-ruler-combined:before{content:"\f546"}.fa-ruler-horizontal:before{content:"\f547"}.fa-ruler-vertical:before{content:"\f548"}.fa-rupee-sign:before{content:"\f156"}.fa-sad-cry:before{content:"\f5b3"}.fa-sad-tear:before{content:"\f5b4"}.fa-safari:before{content:"\f267"}.fa-sass:before{content:"\f41e"}.fa-save:before{content:"\f0c7"}.fa-schlix:before{content:"\f3ea"}.fa-school:before{content:"\f549"}.fa-screwdriver:before{content:"\f54a"}.fa-scribd:before{content:"\f28a"}.fa-search:before{content:"\f002"}.fa-search-dollar:before{content:"\f688"}.fa-search-location:before{content:"\f689"}.fa-search-minus:before{content:"\f010"}.fa-search-plus:before{content:"\f00e"}.fa-searchengin:before{content:"\f3eb"}.fa-seedling:before{content:"\f4d8"}.fa-sellcast:before{content:"\f2da"}.fa-sellsy:before{content:"\f213"}.fa-server:before{content:"\f233"}.fa-servicestack:before{content:"\f3ec"}.fa-shapes:before{content:"\f61f"}.fa-share:before{content:"\f064"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-share-square:before{content:"\f14d"}.fa-shekel-sign:before{content:"\f20b"}.fa-shield-alt:before{content:"\f3ed"}.fa-ship:before{content:"\f21a"}.fa-shipping-fast:before{content:"\f48b"}.fa-shirtsinbulk:before{content:"\f214"}.fa-shoe-prints:before{content:"\f54b"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-shopping-cart:before{content:"\f07a"}.fa-shopware:before{content:"\f5b5"}.fa-shower:before{content:"\f2cc"}.fa-shuttle-van:before{content:"\f5b6"}.fa-sign:before{content:"\f4d9"}.fa-sign-in-alt:before{content:"\f2f6"}.fa-sign-language:before{content:"\f2a7"}.fa-sign-out-alt:before{content:"\f2f5"}.fa-signal:before{content:"\f012"}.fa-signature:before{content:"\f5b7"}.fa-simplybuilt:before{content:"\f215"}.fa-sistrix:before{content:"\f3ee"}.fa-sitemap:before{content:"\f0e8"}.fa-sith:before{content:"\f512"}.fa-skull:before{content:"\f54c"}.fa-skyatlas:before{content:"\f216"}.fa-skype:before{content:"\f17e"}.fa-slack:before{content:"\f198"}.fa-slack-hash:before{content:"\f3ef"}.fa-sliders-h:before{content:"\f1de"}.fa-slideshare:before{content:"\f1e7"}.fa-smile:before{content:"\f118"}.fa-smile-beam:before{content:"\f5b8"}.fa-smile-wink:before{content:"\f4da"}.fa-smoking:before{content:"\f48d"}.fa-smoking-ban:before{content:"\f54d"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-snowflake:before{content:"\f2dc"}.fa-socks:before{content:"\f696"}.fa-solar-panel:before{content:"\f5ba"}.fa-sort:before{content:"\f0dc"}.fa-sort-alpha-down:before{content:"\f15d"}.fa-sort-alpha-up:before{content:"\f15e"}.fa-sort-amount-down:before{content:"\f160"}.fa-sort-amount-up:before{content:"\f161"}.fa-sort-down:before{content:"\f0dd"}.fa-sort-numeric-down:before{content:"\f162"}.fa-sort-numeric-up:before{content:"\f163"}.fa-sort-up:before{content:"\f0de"}.fa-soundcloud:before{content:"\f1be"}.fa-spa:before{content:"\f5bb"}.fa-space-shuttle:before{content:"\f197"}.fa-speakap:before{content:"\f3f3"}.fa-spinner:before{content:"\f110"}.fa-splotch:before{content:"\f5bc"}.fa-spotify:before{content:"\f1bc"}.fa-spray-can:before{content:"\f5bd"}.fa-square:before{content:"\f0c8"}.fa-square-full:before{content:"\f45c"}.fa-square-root-alt:before{content:"\f698"}.fa-squarespace:before{content:"\f5be"}.fa-stack-exchange:before{content:"\f18d"}.fa-stack-overflow:before{content:"\f16c"}.fa-stamp:before{content:"\f5bf"}.fa-star:before{content:"\f005"}.fa-star-and-crescent:before{content:"\f699"}.fa-star-half:before{content:"\f089"}.fa-star-half-alt:before{content:"\f5c0"}.fa-star-of-david:before{content:"\f69a"}.fa-star-of-life:before{content:"\f621"}.fa-staylinked:before{content:"\f3f5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-steam-symbol:before{content:"\f3f6"}.fa-step-backward:before{content:"\f048"}.fa-step-forward:before{content:"\f051"}.fa-stethoscope:before{content:"\f0f1"}.fa-sticker-mule:before{content:"\f3f7"}.fa-sticky-note:before{content:"\f249"}.fa-stop:before{content:"\f04d"}.fa-stop-circle:before{content:"\f28d"}.fa-stopwatch:before{content:"\f2f2"}.fa-store:before{content:"\f54e"}.fa-store-alt:before{content:"\f54f"}.fa-strava:before{content:"\f428"}.fa-stream:before{content:"\f550"}.fa-street-view:before{content:"\f21d"}.fa-strikethrough:before{content:"\f0cc"}.fa-stripe:before{content:"\f429"}.fa-stripe-s:before{content:"\f42a"}.fa-stroopwafel:before{content:"\f551"}.fa-studiovinari:before{content:"\f3f8"}.fa-stumbleupon:before{content:"\f1a4"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-subscript:before{content:"\f12c"}.fa-subway:before{content:"\f239"}.fa-suitcase:before{content:"\f0f2"}.fa-suitcase-rolling:before{content:"\f5c1"}.fa-sun:before{content:"\f185"}.fa-superpowers:before{content:"\f2dd"}.fa-superscript:before{content:"\f12b"}.fa-supple:before{content:"\f3f9"}.fa-surprise:before{content:"\f5c2"}.fa-swatchbook:before{content:"\f5c3"}.fa-swimmer:before{content:"\f5c4"}.fa-swimming-pool:before{content:"\f5c5"}.fa-synagogue:before{content:"\f69b"}.fa-sync:before{content:"\f021"}.fa-sync-alt:before{content:"\f2f1"}.fa-syringe:before{content:"\f48e"}.fa-table:before{content:"\f0ce"}.fa-table-tennis:before{content:"\f45d"}.fa-tablet:before{content:"\f10a"}.fa-tablet-alt:before{content:"\f3fa"}.fa-tablets:before{content:"\f490"}.fa-tachometer-alt:before{content:"\f3fd"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-tape:before{content:"\f4db"}.fa-tasks:before{content:"\f0ae"}.fa-taxi:before{content:"\f1ba"}.fa-teamspeak:before{content:"\f4f9"}.fa-teeth:before{content:"\f62e"}.fa-teeth-open:before{content:"\f62f"}.fa-telegram:before{content:"\f2c6"}.fa-telegram-plane:before{content:"\f3fe"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-terminal:before{content:"\f120"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-th:before{content:"\f00a"}.fa-th-large:before{content:"\f009"}.fa-th-list:before{content:"\f00b"}.fa-the-red-yeti:before{content:"\f69d"}.fa-theater-masks:before{content:"\f630"}.fa-themeco:before{content:"\f5c6"}.fa-themeisle:before{content:"\f2b2"}.fa-thermometer:before{content:"\f491"}.fa-thermometer-empty:before{content:"\f2cb"}.fa-thermometer-full:before{content:"\f2c7"}.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-thumbs-down:before{content:"\f165"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbtack:before{content:"\f08d"}.fa-ticket-alt:before{content:"\f3ff"}.fa-times:before{content:"\f00d"}.fa-times-circle:before{content:"\f057"}.fa-tint:before{content:"\f043"}.fa-tint-slash:before{content:"\f5c7"}.fa-tired:before{content:"\f5c8"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-toolbox:before{content:"\f552"}.fa-tooth:before{content:"\f5c9"}.fa-torah:before{content:"\f6a0"}.fa-torii-gate:before{content:"\f6a1"}.fa-trade-federation:before{content:"\f513"}.fa-trademark:before{content:"\f25c"}.fa-traffic-light:before{content:"\f637"}.fa-train:before{content:"\f238"}.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-trash:before{content:"\f1f8"}.fa-trash-alt:before{content:"\f2ed"}.fa-tree:before{content:"\f1bb"}.fa-trello:before{content:"\f181"}.fa-tripadvisor:before{content:"\f262"}.fa-trophy:before{content:"\f091"}.fa-truck:before{content:"\f0d1"}.fa-truck-loading:before{content:"\f4de"}.fa-truck-monster:before{content:"\f63b"}.fa-truck-moving:before{content:"\f4df"}.fa-truck-pickup:before{content:"\f63c"}.fa-tshirt:before{content:"\f553"}.fa-tty:before{content:"\f1e4"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-tv:before{content:"\f26c"}.fa-twitch:before{content:"\f1e8"}.fa-twitter:before{content:"\f099"}.fa-twitter-square:before{content:"\f081"}.fa-typo3:before{content:"\f42b"}.fa-uber:before{content:"\f402"}.fa-uikit:before{content:"\f403"}.fa-umbrella:before{content:"\f0e9"}.fa-umbrella-beach:before{content:"\f5ca"}.fa-underline:before{content:"\f0cd"}.fa-undo:before{content:"\f0e2"}.fa-undo-alt:before{content:"\f2ea"}.fa-uniregistry:before{content:"\f404"}.fa-universal-access:before{content:"\f29a"}.fa-university:before{content:"\f19c"}.fa-unlink:before{content:"\f127"}.fa-unlock:before{content:"\f09c"}.fa-unlock-alt:before{content:"\f13e"}.fa-untappd:before{content:"\f405"}.fa-upload:before{content:"\f093"}.fa-usb:before{content:"\f287"}.fa-user:before{content:"\f007"}.fa-user-alt:before{content:"\f406"}.fa-user-alt-slash:before{content:"\f4fa"}.fa-user-astronaut:before{content:"\f4fb"}.fa-user-check:before{content:"\f4fc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-clock:before{content:"\f4fd"}.fa-user-cog:before{content:"\f4fe"}.fa-user-edit:before{content:"\f4ff"}.fa-user-friends:before{content:"\f500"}.fa-user-graduate:before{content:"\f501"}.fa-user-lock:before{content:"\f502"}.fa-user-md:before{content:"\f0f0"}.fa-user-minus:before{content:"\f503"}.fa-user-ninja:before{content:"\f504"}.fa-user-plus:before{content:"\f234"}.fa-user-secret:before{content:"\f21b"}.fa-user-shield:before{content:"\f505"}.fa-user-slash:before{content:"\f506"}.fa-user-tag:before{content:"\f507"}.fa-user-tie:before{content:"\f508"}.fa-user-times:before{content:"\f235"}.fa-users:before{content:"\f0c0"}.fa-users-cog:before{content:"\f509"}.fa-ussunnah:before{content:"\f407"}.fa-utensil-spoon:before{content:"\f2e5"}.fa-utensils:before{content:"\f2e7"}.fa-vaadin:before{content:"\f408"}.fa-vector-square:before{content:"\f5cb"}.fa-venus:before{content:"\f221"}.fa-venus-double:before{content:"\f226"}.fa-venus-mars:before{content:"\f228"}.fa-viacoin:before{content:"\f237"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-vial:before{content:"\f492"}.fa-vials:before{content:"\f493"}.fa-viber:before{content:"\f409"}.fa-video:before{content:"\f03d"}.fa-video-slash:before{content:"\f4e2"}.fa-vihara:before{content:"\f6a7"}.fa-vimeo:before{content:"\f40a"}.fa-vimeo-square:before{content:"\f194"}.fa-vimeo-v:before{content:"\f27d"}.fa-vine:before{content:"\f1ca"}.fa-vk:before{content:"\f189"}.fa-vnv:before{content:"\f40b"}.fa-volleyball-ball:before{content:"\f45f"}.fa-volume-down:before{content:"\f027"}.fa-volume-off:before{content:"\f026"}.fa-volume-up:before{content:"\f028"}.fa-vuejs:before{content:"\f41f"}.fa-walking:before{content:"\f554"}.fa-wallet:before{content:"\f555"}.fa-warehouse:before{content:"\f494"}.fa-weebly:before{content:"\f5cc"}.fa-weibo:before{content:"\f18a"}.fa-weight:before{content:"\f496"}.fa-weight-hanging:before{content:"\f5cd"}.fa-weixin:before{content:"\f1d7"}.fa-whatsapp:before{content:"\f232"}.fa-whatsapp-square:before{content:"\f40c"}.fa-wheelchair:before{content:"\f193"}.fa-whmcs:before{content:"\f40d"}.fa-wifi:before{content:"\f1eb"}.fa-wikipedia-w:before{content:"\f266"}.fa-window-close:before{content:"\f410"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-windows:before{content:"\f17a"}.fa-wine-glass:before{content:"\f4e3"}.fa-wine-glass-alt:before{content:"\f5ce"}.fa-wix:before{content:"\f5cf"}.fa-wolf-pack-battalion:before{content:"\f514"}.fa-won-sign:before{content:"\f159"}.fa-wordpress:before{content:"\f19a"}.fa-wordpress-simple:before{content:"\f411"}.fa-wpbeginner:before{content:"\f297"}.fa-wpexplorer:before{content:"\f2de"}.fa-wpforms:before{content:"\f298"}.fa-wrench:before{content:"\f0ad"}.fa-x-ray:before{content:"\f497"}.fa-xbox:before{content:"\f412"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-y-combinator:before{content:"\f23b"}.fa-yahoo:before{content:"\f19e"}.fa-yandex:before{content:"\f413"}.fa-yandex-international:before{content:"\f414"}.fa-yelp:before{content:"\f1e9"}.fa-yen-sign:before{content:"\f157"}.fa-yin-yang:before{content:"\f6ad"}.fa-yoast:before{content:"\f2b1"}.fa-youtube:before{content:"\f167"}.fa-youtube-square:before{content:"\f431"}.fa-zhihu:before{content:"\f63f"}.sr-only{border:0;clip:rect(0,0,0,0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.sr-only-focusable:active,.sr-only-focusable:focus{clip:auto;height:auto;margin:0;overflow:visible;position:static;width:auto}@font-face{font-family:"Font Awesome 5 Brands";font-style:normal;font-weight:normal;src:url(../webfonts/fa-brands-400.eot);src:url(../webfonts/fa-brands-400.eot?#iefix) format("embedded-opentype"),url(../webfonts/fa-brands-400.woff2) format("woff2"),url(../webfonts/fa-brands-400.woff) format("woff"),url(../webfonts/fa-brands-400.ttf) format("truetype"),url(../webfonts/fa-brands-400.svg#fontawesome) format("svg")}.fab{font-family:"Font Awesome 5 Brands"}@font-face{font-family:"Font Awesome 5 Free";font-style:normal;font-weight:400;src:url(../webfonts/fa-regular-400.eot);src:url(../webfonts/fa-regular-400.eot?#iefix) format("embedded-opentype"),url(../webfonts/fa-regular-400.woff2) format("woff2"),url(../webfonts/fa-regular-400.woff) format("woff"),url(../webfonts/fa-regular-400.ttf) format("truetype"),url(../webfonts/fa-regular-400.svg#fontawesome) format("svg")}.far{font-weight:400}@font-face{font-family:"Font Awesome 5 Free";font-style:normal;font-weight:900;src:url(../webfonts/fa-solid-900.eot);src:url(../webfonts/fa-solid-900.eot?#iefix) format("embedded-opentype"),url(../webfonts/fa-solid-900.woff2) format("woff2"),url(../webfonts/fa-solid-900.woff) format("woff"),url(../webfonts/fa-solid-900.ttf) format("truetype"),url(../webfonts/fa-solid-900.svg#fontawesome) format("svg")}.fa,.far,.fas{font-family:"Font Awesome 5 Free"}.fa,.fas{font-weight:900} \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/css/brands.min.css b/public/assets/lib/@fortawesome/fontawesome-free/css/brands.min.css new file mode 100755 index 0000000..8a828a7 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/css/brands.min.css @@ -0,0 +1,5 @@ +/*! + * Font Awesome Free 5.3.1 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + */ +@font-face{font-family:"Font Awesome 5 Brands";font-style:normal;font-weight:normal;src:url(../webfonts/fa-brands-400.eot);src:url(../webfonts/fa-brands-400.eot?#iefix) format("embedded-opentype"),url(../webfonts/fa-brands-400.woff2) format("woff2"),url(../webfonts/fa-brands-400.woff) format("woff"),url(../webfonts/fa-brands-400.ttf) format("truetype"),url(../webfonts/fa-brands-400.svg#fontawesome) format("svg")}.fab{font-family:"Font Awesome 5 Brands"} \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/css/fontawesome.min.css b/public/assets/lib/@fortawesome/fontawesome-free/css/fontawesome.min.css new file mode 100755 index 0000000..343943c --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/css/fontawesome.min.css @@ -0,0 +1,5 @@ +/*! + * Font Awesome Free 5.3.1 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + */ +.fa,.fab,.fal,.far,.fas{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:inline-block;font-style:normal;font-variant:normal;text-rendering:auto;line-height:1}.fa-lg{font-size:1.33333em;line-height:.75em;vertical-align:-.0667em}.fa-xs{font-size:.75em}.fa-sm{font-size:.875em}.fa-1x{font-size:1em}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-6x{font-size:6em}.fa-7x{font-size:7em}.fa-8x{font-size:8em}.fa-9x{font-size:9em}.fa-10x{font-size:10em}.fa-fw{text-align:center;width:1.25em}.fa-ul{list-style-type:none;margin-left:2.5em;padding-left:0}.fa-ul>li{position:relative}.fa-li{left:-2em;position:absolute;text-align:center;width:2em;line-height:inherit}.fa-border{border:.08em solid #eee;border-radius:.1em;padding:.2em .25em .15em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left,.fab.fa-pull-left,.fal.fa-pull-left,.far.fa-pull-left,.fas.fa-pull-left{margin-right:.3em}.fa.fa-pull-right,.fab.fa-pull-right,.fal.fa-pull-right,.far.fa-pull-right,.fas.fa-pull-right{margin-left:.3em}.fa-spin{animation:fa-spin 2s infinite linear}.fa-pulse{animation:fa-spin 1s infinite steps(8)}@keyframes fa-spin{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";transform:scaleX(-1)}.fa-flip-vertical{transform:scaleY(-1)}.fa-flip-horizontal.fa-flip-vertical,.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)"}.fa-flip-horizontal.fa-flip-vertical{transform:scale(-1)}:root .fa-flip-horizontal,:root .fa-flip-vertical,:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270{-webkit-filter:none;filter:none}.fa-stack{display:inline-block;height:2em;line-height:2em;position:relative;vertical-align:middle;width:2em}.fa-stack-1x,.fa-stack-2x{left:0;position:absolute;text-align:center;width:100%}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-500px:before{content:"\f26e"}.fa-accessible-icon:before{content:"\f368"}.fa-accusoft:before{content:"\f369"}.fa-ad:before{content:"\f641"}.fa-address-book:before{content:"\f2b9"}.fa-address-card:before{content:"\f2bb"}.fa-adjust:before{content:"\f042"}.fa-adn:before{content:"\f170"}.fa-adversal:before{content:"\f36a"}.fa-affiliatetheme:before{content:"\f36b"}.fa-air-freshener:before{content:"\f5d0"}.fa-algolia:before{content:"\f36c"}.fa-align-center:before{content:"\f037"}.fa-align-justify:before{content:"\f039"}.fa-align-left:before{content:"\f036"}.fa-align-right:before{content:"\f038"}.fa-alipay:before{content:"\f642"}.fa-allergies:before{content:"\f461"}.fa-amazon:before{content:"\f270"}.fa-amazon-pay:before{content:"\f42c"}.fa-ambulance:before{content:"\f0f9"}.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-amilia:before{content:"\f36d"}.fa-anchor:before{content:"\f13d"}.fa-android:before{content:"\f17b"}.fa-angellist:before{content:"\f209"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-down:before{content:"\f107"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angry:before{content:"\f556"}.fa-angrycreative:before{content:"\f36e"}.fa-angular:before{content:"\f420"}.fa-ankh:before{content:"\f644"}.fa-app-store:before{content:"\f36f"}.fa-app-store-ios:before{content:"\f370"}.fa-apper:before{content:"\f371"}.fa-apple:before{content:"\f179"}.fa-apple-alt:before{content:"\f5d1"}.fa-apple-pay:before{content:"\f415"}.fa-archive:before{content:"\f187"}.fa-archway:before{content:"\f557"}.fa-arrow-alt-circle-down:before{content:"\f358"}.fa-arrow-alt-circle-left:before{content:"\f359"}.fa-arrow-alt-circle-right:before{content:"\f35a"}.fa-arrow-alt-circle-up:before{content:"\f35b"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-down:before{content:"\f063"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrows-alt:before{content:"\f0b2"}.fa-arrows-alt-h:before{content:"\f337"}.fa-arrows-alt-v:before{content:"\f338"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asterisk:before{content:"\f069"}.fa-asymmetrik:before{content:"\f372"}.fa-at:before{content:"\f1fa"}.fa-atlas:before{content:"\f558"}.fa-atom:before{content:"\f5d2"}.fa-audible:before{content:"\f373"}.fa-audio-description:before{content:"\f29e"}.fa-autoprefixer:before{content:"\f41c"}.fa-avianex:before{content:"\f374"}.fa-aviato:before{content:"\f421"}.fa-award:before{content:"\f559"}.fa-aws:before{content:"\f375"}.fa-backspace:before{content:"\f55a"}.fa-backward:before{content:"\f04a"}.fa-balance-scale:before{content:"\f24e"}.fa-ban:before{content:"\f05e"}.fa-band-aid:before{content:"\f462"}.fa-bandcamp:before{content:"\f2d5"}.fa-barcode:before{content:"\f02a"}.fa-bars:before{content:"\f0c9"}.fa-baseball-ball:before{content:"\f433"}.fa-basketball-ball:before{content:"\f434"}.fa-bath:before{content:"\f2cd"}.fa-battery-empty:before{content:"\f244"}.fa-battery-full:before{content:"\f240"}.fa-battery-half:before{content:"\f242"}.fa-battery-quarter:before{content:"\f243"}.fa-battery-three-quarters:before{content:"\f241"}.fa-bed:before{content:"\f236"}.fa-beer:before{content:"\f0fc"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-bell:before{content:"\f0f3"}.fa-bell-slash:before{content:"\f1f6"}.fa-bezier-curve:before{content:"\f55b"}.fa-bible:before{content:"\f647"}.fa-bicycle:before{content:"\f206"}.fa-bimobject:before{content:"\f378"}.fa-binoculars:before{content:"\f1e5"}.fa-birthday-cake:before{content:"\f1fd"}.fa-bitbucket:before{content:"\f171"}.fa-bitcoin:before{content:"\f379"}.fa-bity:before{content:"\f37a"}.fa-black-tie:before{content:"\f27e"}.fa-blackberry:before{content:"\f37b"}.fa-blender:before{content:"\f517"}.fa-blind:before{content:"\f29d"}.fa-blogger:before{content:"\f37c"}.fa-blogger-b:before{content:"\f37d"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-bold:before{content:"\f032"}.fa-bolt:before{content:"\f0e7"}.fa-bomb:before{content:"\f1e2"}.fa-bone:before{content:"\f5d7"}.fa-bong:before{content:"\f55c"}.fa-book:before{content:"\f02d"}.fa-book-open:before{content:"\f518"}.fa-book-reader:before{content:"\f5da"}.fa-bookmark:before{content:"\f02e"}.fa-bowling-ball:before{content:"\f436"}.fa-box:before{content:"\f466"}.fa-box-open:before{content:"\f49e"}.fa-boxes:before{content:"\f468"}.fa-braille:before{content:"\f2a1"}.fa-brain:before{content:"\f5dc"}.fa-briefcase:before{content:"\f0b1"}.fa-briefcase-medical:before{content:"\f469"}.fa-broadcast-tower:before{content:"\f519"}.fa-broom:before{content:"\f51a"}.fa-brush:before{content:"\f55d"}.fa-btc:before{content:"\f15a"}.fa-bug:before{content:"\f188"}.fa-building:before{content:"\f1ad"}.fa-bullhorn:before{content:"\f0a1"}.fa-bullseye:before{content:"\f140"}.fa-burn:before{content:"\f46a"}.fa-buromobelexperte:before{content:"\f37f"}.fa-bus:before{content:"\f207"}.fa-bus-alt:before{content:"\f55e"}.fa-business-time:before{content:"\f64a"}.fa-buysellads:before{content:"\f20d"}.fa-calculator:before{content:"\f1ec"}.fa-calendar:before{content:"\f133"}.fa-calendar-alt:before{content:"\f073"}.fa-calendar-check:before{content:"\f274"}.fa-calendar-minus:before{content:"\f272"}.fa-calendar-plus:before{content:"\f271"}.fa-calendar-times:before{content:"\f273"}.fa-camera:before{content:"\f030"}.fa-camera-retro:before{content:"\f083"}.fa-cannabis:before{content:"\f55f"}.fa-capsules:before{content:"\f46b"}.fa-car:before{content:"\f1b9"}.fa-car-alt:before{content:"\f5de"}.fa-car-battery:before{content:"\f5df"}.fa-car-crash:before{content:"\f5e1"}.fa-car-side:before{content:"\f5e4"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-caret-square-down:before{content:"\f150"}.fa-caret-square-left:before{content:"\f191"}.fa-caret-square-right:before{content:"\f152"}.fa-caret-square-up:before{content:"\f151"}.fa-caret-up:before{content:"\f0d8"}.fa-cart-arrow-down:before{content:"\f218"}.fa-cart-plus:before{content:"\f217"}.fa-cc-amazon-pay:before{content:"\f42d"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-apple-pay:before{content:"\f416"}.fa-cc-diners-club:before{content:"\f24c"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-cc-visa:before{content:"\f1f0"}.fa-centercode:before{content:"\f380"}.fa-certificate:before{content:"\f0a3"}.fa-chalkboard:before{content:"\f51b"}.fa-chalkboard-teacher:before{content:"\f51c"}.fa-charging-station:before{content:"\f5e7"}.fa-chart-area:before{content:"\f1fe"}.fa-chart-bar:before{content:"\f080"}.fa-chart-line:before{content:"\f201"}.fa-chart-pie:before{content:"\f200"}.fa-check:before{content:"\f00c"}.fa-check-circle:before{content:"\f058"}.fa-check-double:before{content:"\f560"}.fa-check-square:before{content:"\f14a"}.fa-chess:before{content:"\f439"}.fa-chess-bishop:before{content:"\f43a"}.fa-chess-board:before{content:"\f43c"}.fa-chess-king:before{content:"\f43f"}.fa-chess-knight:before{content:"\f441"}.fa-chess-pawn:before{content:"\f443"}.fa-chess-queen:before{content:"\f445"}.fa-chess-rook:before{content:"\f447"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-down:before{content:"\f078"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-chevron-up:before{content:"\f077"}.fa-child:before{content:"\f1ae"}.fa-chrome:before{content:"\f268"}.fa-church:before{content:"\f51d"}.fa-circle:before{content:"\f111"}.fa-circle-notch:before{content:"\f1ce"}.fa-city:before{content:"\f64f"}.fa-clipboard:before{content:"\f328"}.fa-clipboard-check:before{content:"\f46c"}.fa-clipboard-list:before{content:"\f46d"}.fa-clock:before{content:"\f017"}.fa-clone:before{content:"\f24d"}.fa-closed-captioning:before{content:"\f20a"}.fa-cloud:before{content:"\f0c2"}.fa-cloud-download-alt:before{content:"\f381"}.fa-cloud-upload-alt:before{content:"\f382"}.fa-cloudscale:before{content:"\f383"}.fa-cloudsmith:before{content:"\f384"}.fa-cloudversify:before{content:"\f385"}.fa-cocktail:before{content:"\f561"}.fa-code:before{content:"\f121"}.fa-code-branch:before{content:"\f126"}.fa-codepen:before{content:"\f1cb"}.fa-codiepie:before{content:"\f284"}.fa-coffee:before{content:"\f0f4"}.fa-cog:before{content:"\f013"}.fa-cogs:before{content:"\f085"}.fa-coins:before{content:"\f51e"}.fa-columns:before{content:"\f0db"}.fa-comment:before{content:"\f075"}.fa-comment-alt:before{content:"\f27a"}.fa-comment-dollar:before{content:"\f651"}.fa-comment-dots:before{content:"\f4ad"}.fa-comment-slash:before{content:"\f4b3"}.fa-comments:before{content:"\f086"}.fa-comments-dollar:before{content:"\f653"}.fa-compact-disc:before{content:"\f51f"}.fa-compass:before{content:"\f14e"}.fa-compress:before{content:"\f066"}.fa-concierge-bell:before{content:"\f562"}.fa-connectdevelop:before{content:"\f20e"}.fa-contao:before{content:"\f26d"}.fa-cookie:before{content:"\f563"}.fa-cookie-bite:before{content:"\f564"}.fa-copy:before{content:"\f0c5"}.fa-copyright:before{content:"\f1f9"}.fa-couch:before{content:"\f4b8"}.fa-cpanel:before{content:"\f388"}.fa-creative-commons:before{content:"\f25e"}.fa-creative-commons-by:before{content:"\f4e7"}.fa-creative-commons-nc:before{content:"\f4e8"}.fa-creative-commons-nc-eu:before{content:"\f4e9"}.fa-creative-commons-nc-jp:before{content:"\f4ea"}.fa-creative-commons-nd:before{content:"\f4eb"}.fa-creative-commons-pd:before{content:"\f4ec"}.fa-creative-commons-pd-alt:before{content:"\f4ed"}.fa-creative-commons-remix:before{content:"\f4ee"}.fa-creative-commons-sa:before{content:"\f4ef"}.fa-creative-commons-sampling:before{content:"\f4f0"}.fa-creative-commons-sampling-plus:before{content:"\f4f1"}.fa-creative-commons-share:before{content:"\f4f2"}.fa-credit-card:before{content:"\f09d"}.fa-crop:before{content:"\f125"}.fa-crop-alt:before{content:"\f565"}.fa-cross:before{content:"\f654"}.fa-crosshairs:before{content:"\f05b"}.fa-crow:before{content:"\f520"}.fa-crown:before{content:"\f521"}.fa-css3:before{content:"\f13c"}.fa-css3-alt:before{content:"\f38b"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-cut:before{content:"\f0c4"}.fa-cuttlefish:before{content:"\f38c"}.fa-d-and-d:before{content:"\f38d"}.fa-dashcube:before{content:"\f210"}.fa-database:before{content:"\f1c0"}.fa-deaf:before{content:"\f2a4"}.fa-delicious:before{content:"\f1a5"}.fa-deploydog:before{content:"\f38e"}.fa-deskpro:before{content:"\f38f"}.fa-desktop:before{content:"\f108"}.fa-deviantart:before{content:"\f1bd"}.fa-dharmachakra:before{content:"\f655"}.fa-diagnoses:before{content:"\f470"}.fa-dice:before{content:"\f522"}.fa-dice-five:before{content:"\f523"}.fa-dice-four:before{content:"\f524"}.fa-dice-one:before{content:"\f525"}.fa-dice-six:before{content:"\f526"}.fa-dice-three:before{content:"\f527"}.fa-dice-two:before{content:"\f528"}.fa-digg:before{content:"\f1a6"}.fa-digital-ocean:before{content:"\f391"}.fa-digital-tachograph:before{content:"\f566"}.fa-directions:before{content:"\f5eb"}.fa-discord:before{content:"\f392"}.fa-discourse:before{content:"\f393"}.fa-divide:before{content:"\f529"}.fa-dizzy:before{content:"\f567"}.fa-dna:before{content:"\f471"}.fa-dochub:before{content:"\f394"}.fa-docker:before{content:"\f395"}.fa-dollar-sign:before{content:"\f155"}.fa-dolly:before{content:"\f472"}.fa-dolly-flatbed:before{content:"\f474"}.fa-donate:before{content:"\f4b9"}.fa-door-closed:before{content:"\f52a"}.fa-door-open:before{content:"\f52b"}.fa-dot-circle:before{content:"\f192"}.fa-dove:before{content:"\f4ba"}.fa-download:before{content:"\f019"}.fa-draft2digital:before{content:"\f396"}.fa-drafting-compass:before{content:"\f568"}.fa-draw-polygon:before{content:"\f5ee"}.fa-dribbble:before{content:"\f17d"}.fa-dribbble-square:before{content:"\f397"}.fa-dropbox:before{content:"\f16b"}.fa-drum:before{content:"\f569"}.fa-drum-steelpan:before{content:"\f56a"}.fa-drupal:before{content:"\f1a9"}.fa-dumbbell:before{content:"\f44b"}.fa-dyalog:before{content:"\f399"}.fa-earlybirds:before{content:"\f39a"}.fa-ebay:before{content:"\f4f4"}.fa-edge:before{content:"\f282"}.fa-edit:before{content:"\f044"}.fa-eject:before{content:"\f052"}.fa-elementor:before{content:"\f430"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-ello:before{content:"\f5f1"}.fa-ember:before{content:"\f423"}.fa-empire:before{content:"\f1d1"}.fa-envelope:before{content:"\f0e0"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-text:before{content:"\f658"}.fa-envelope-square:before{content:"\f199"}.fa-envira:before{content:"\f299"}.fa-equals:before{content:"\f52c"}.fa-eraser:before{content:"\f12d"}.fa-erlang:before{content:"\f39d"}.fa-ethereum:before{content:"\f42e"}.fa-etsy:before{content:"\f2d7"}.fa-euro-sign:before{content:"\f153"}.fa-exchange-alt:before{content:"\f362"}.fa-exclamation:before{content:"\f12a"}.fa-exclamation-circle:before{content:"\f06a"}.fa-exclamation-triangle:before{content:"\f071"}.fa-expand:before{content:"\f065"}.fa-expand-arrows-alt:before{content:"\f31e"}.fa-expeditedssl:before{content:"\f23e"}.fa-external-link-alt:before{content:"\f35d"}.fa-external-link-square-alt:before{content:"\f360"}.fa-eye:before{content:"\f06e"}.fa-eye-dropper:before{content:"\f1fb"}.fa-eye-slash:before{content:"\f070"}.fa-facebook:before{content:"\f09a"}.fa-facebook-f:before{content:"\f39e"}.fa-facebook-messenger:before{content:"\f39f"}.fa-facebook-square:before{content:"\f082"}.fa-fast-backward:before{content:"\f049"}.fa-fast-forward:before{content:"\f050"}.fa-fax:before{content:"\f1ac"}.fa-feather:before{content:"\f52d"}.fa-feather-alt:before{content:"\f56b"}.fa-female:before{content:"\f182"}.fa-fighter-jet:before{content:"\f0fb"}.fa-file:before{content:"\f15b"}.fa-file-alt:before{content:"\f15c"}.fa-file-archive:before{content:"\f1c6"}.fa-file-audio:before{content:"\f1c7"}.fa-file-code:before{content:"\f1c9"}.fa-file-contract:before{content:"\f56c"}.fa-file-download:before{content:"\f56d"}.fa-file-excel:before{content:"\f1c3"}.fa-file-export:before{content:"\f56e"}.fa-file-image:before{content:"\f1c5"}.fa-file-import:before{content:"\f56f"}.fa-file-invoice:before{content:"\f570"}.fa-file-invoice-dollar:before{content:"\f571"}.fa-file-medical:before{content:"\f477"}.fa-file-medical-alt:before{content:"\f478"}.fa-file-pdf:before{content:"\f1c1"}.fa-file-powerpoint:before{content:"\f1c4"}.fa-file-prescription:before{content:"\f572"}.fa-file-signature:before{content:"\f573"}.fa-file-upload:before{content:"\f574"}.fa-file-video:before{content:"\f1c8"}.fa-file-word:before{content:"\f1c2"}.fa-fill:before{content:"\f575"}.fa-fill-drip:before{content:"\f576"}.fa-film:before{content:"\f008"}.fa-filter:before{content:"\f0b0"}.fa-fingerprint:before{content:"\f577"}.fa-fire:before{content:"\f06d"}.fa-fire-extinguisher:before{content:"\f134"}.fa-firefox:before{content:"\f269"}.fa-first-aid:before{content:"\f479"}.fa-first-order:before{content:"\f2b0"}.fa-first-order-alt:before{content:"\f50a"}.fa-firstdraft:before{content:"\f3a1"}.fa-fish:before{content:"\f578"}.fa-flag:before{content:"\f024"}.fa-flag-checkered:before{content:"\f11e"}.fa-flask:before{content:"\f0c3"}.fa-flickr:before{content:"\f16e"}.fa-flipboard:before{content:"\f44d"}.fa-flushed:before{content:"\f579"}.fa-fly:before{content:"\f417"}.fa-folder:before{content:"\f07b"}.fa-folder-minus:before{content:"\f65d"}.fa-folder-open:before{content:"\f07c"}.fa-folder-plus:before{content:"\f65e"}.fa-font:before{content:"\f031"}.fa-font-awesome:before{content:"\f2b4"}.fa-font-awesome-alt:before{content:"\f35c"}.fa-font-awesome-flag:before{content:"\f425"}.fa-font-awesome-logo-full:before{content:"\f4e6"}.fa-fonticons:before{content:"\f280"}.fa-fonticons-fi:before{content:"\f3a2"}.fa-football-ball:before{content:"\f44e"}.fa-fort-awesome:before{content:"\f286"}.fa-fort-awesome-alt:before{content:"\f3a3"}.fa-forumbee:before{content:"\f211"}.fa-forward:before{content:"\f04e"}.fa-foursquare:before{content:"\f180"}.fa-free-code-camp:before{content:"\f2c5"}.fa-freebsd:before{content:"\f3a4"}.fa-frog:before{content:"\f52e"}.fa-frown:before{content:"\f119"}.fa-frown-open:before{content:"\f57a"}.fa-fulcrum:before{content:"\f50b"}.fa-funnel-dollar:before{content:"\f662"}.fa-futbol:before{content:"\f1e3"}.fa-galactic-republic:before{content:"\f50c"}.fa-galactic-senate:before{content:"\f50d"}.fa-gamepad:before{content:"\f11b"}.fa-gas-pump:before{content:"\f52f"}.fa-gavel:before{content:"\f0e3"}.fa-gem:before{content:"\f3a5"}.fa-genderless:before{content:"\f22d"}.fa-get-pocket:before{content:"\f265"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-gift:before{content:"\f06b"}.fa-git:before{content:"\f1d3"}.fa-git-square:before{content:"\f1d2"}.fa-github:before{content:"\f09b"}.fa-github-alt:before{content:"\f113"}.fa-github-square:before{content:"\f092"}.fa-gitkraken:before{content:"\f3a6"}.fa-gitlab:before{content:"\f296"}.fa-gitter:before{content:"\f426"}.fa-glass-martini:before{content:"\f000"}.fa-glass-martini-alt:before{content:"\f57b"}.fa-glasses:before{content:"\f530"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-globe:before{content:"\f0ac"}.fa-globe-africa:before{content:"\f57c"}.fa-globe-americas:before{content:"\f57d"}.fa-globe-asia:before{content:"\f57e"}.fa-gofore:before{content:"\f3a7"}.fa-golf-ball:before{content:"\f450"}.fa-goodreads:before{content:"\f3a8"}.fa-goodreads-g:before{content:"\f3a9"}.fa-google:before{content:"\f1a0"}.fa-google-drive:before{content:"\f3aa"}.fa-google-play:before{content:"\f3ab"}.fa-google-plus:before{content:"\f2b3"}.fa-google-plus-g:before{content:"\f0d5"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-wallet:before{content:"\f1ee"}.fa-gopuram:before{content:"\f664"}.fa-graduation-cap:before{content:"\f19d"}.fa-gratipay:before{content:"\f184"}.fa-grav:before{content:"\f2d6"}.fa-greater-than:before{content:"\f531"}.fa-greater-than-equal:before{content:"\f532"}.fa-grimace:before{content:"\f57f"}.fa-grin:before{content:"\f580"}.fa-grin-alt:before{content:"\f581"}.fa-grin-beam:before{content:"\f582"}.fa-grin-beam-sweat:before{content:"\f583"}.fa-grin-hearts:before{content:"\f584"}.fa-grin-squint:before{content:"\f585"}.fa-grin-squint-tears:before{content:"\f586"}.fa-grin-stars:before{content:"\f587"}.fa-grin-tears:before{content:"\f588"}.fa-grin-tongue:before{content:"\f589"}.fa-grin-tongue-squint:before{content:"\f58a"}.fa-grin-tongue-wink:before{content:"\f58b"}.fa-grin-wink:before{content:"\f58c"}.fa-grip-horizontal:before{content:"\f58d"}.fa-grip-vertical:before{content:"\f58e"}.fa-gripfire:before{content:"\f3ac"}.fa-grunt:before{content:"\f3ad"}.fa-gulp:before{content:"\f3ae"}.fa-h-square:before{content:"\f0fd"}.fa-hacker-news:before{content:"\f1d4"}.fa-hacker-news-square:before{content:"\f3af"}.fa-hackerrank:before{content:"\f5f7"}.fa-hamsa:before{content:"\f665"}.fa-hand-holding:before{content:"\f4bd"}.fa-hand-holding-heart:before{content:"\f4be"}.fa-hand-holding-usd:before{content:"\f4c0"}.fa-hand-lizard:before{content:"\f258"}.fa-hand-paper:before{content:"\f256"}.fa-hand-peace:before{content:"\f25b"}.fa-hand-point-down:before{content:"\f0a7"}.fa-hand-point-left:before{content:"\f0a5"}.fa-hand-point-right:before{content:"\f0a4"}.fa-hand-point-up:before{content:"\f0a6"}.fa-hand-pointer:before{content:"\f25a"}.fa-hand-rock:before{content:"\f255"}.fa-hand-scissors:before{content:"\f257"}.fa-hand-spock:before{content:"\f259"}.fa-hands:before{content:"\f4c2"}.fa-hands-helping:before{content:"\f4c4"}.fa-handshake:before{content:"\f2b5"}.fa-hashtag:before{content:"\f292"}.fa-haykal:before{content:"\f666"}.fa-hdd:before{content:"\f0a0"}.fa-heading:before{content:"\f1dc"}.fa-headphones:before{content:"\f025"}.fa-headphones-alt:before{content:"\f58f"}.fa-headset:before{content:"\f590"}.fa-heart:before{content:"\f004"}.fa-heartbeat:before{content:"\f21e"}.fa-helicopter:before{content:"\f533"}.fa-highlighter:before{content:"\f591"}.fa-hips:before{content:"\f452"}.fa-hire-a-helper:before{content:"\f3b0"}.fa-history:before{content:"\f1da"}.fa-hockey-puck:before{content:"\f453"}.fa-home:before{content:"\f015"}.fa-hooli:before{content:"\f427"}.fa-hornbill:before{content:"\f592"}.fa-hospital:before{content:"\f0f8"}.fa-hospital-alt:before{content:"\f47d"}.fa-hospital-symbol:before{content:"\f47e"}.fa-hot-tub:before{content:"\f593"}.fa-hotel:before{content:"\f594"}.fa-hotjar:before{content:"\f3b1"}.fa-hourglass:before{content:"\f254"}.fa-hourglass-end:before{content:"\f253"}.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-start:before{content:"\f251"}.fa-houzz:before{content:"\f27c"}.fa-html5:before{content:"\f13b"}.fa-hubspot:before{content:"\f3b2"}.fa-i-cursor:before{content:"\f246"}.fa-id-badge:before{content:"\f2c1"}.fa-id-card:before{content:"\f2c2"}.fa-id-card-alt:before{content:"\f47f"}.fa-image:before{content:"\f03e"}.fa-images:before{content:"\f302"}.fa-imdb:before{content:"\f2d8"}.fa-inbox:before{content:"\f01c"}.fa-indent:before{content:"\f03c"}.fa-industry:before{content:"\f275"}.fa-infinity:before{content:"\f534"}.fa-info:before{content:"\f129"}.fa-info-circle:before{content:"\f05a"}.fa-instagram:before{content:"\f16d"}.fa-internet-explorer:before{content:"\f26b"}.fa-ioxhost:before{content:"\f208"}.fa-italic:before{content:"\f033"}.fa-itunes:before{content:"\f3b4"}.fa-itunes-note:before{content:"\f3b5"}.fa-java:before{content:"\f4e4"}.fa-jedi:before{content:"\f669"}.fa-jedi-order:before{content:"\f50e"}.fa-jenkins:before{content:"\f3b6"}.fa-joget:before{content:"\f3b7"}.fa-joint:before{content:"\f595"}.fa-joomla:before{content:"\f1aa"}.fa-journal-whills:before{content:"\f66a"}.fa-js:before{content:"\f3b8"}.fa-js-square:before{content:"\f3b9"}.fa-jsfiddle:before{content:"\f1cc"}.fa-kaaba:before{content:"\f66b"}.fa-kaggle:before{content:"\f5fa"}.fa-key:before{content:"\f084"}.fa-keybase:before{content:"\f4f5"}.fa-keyboard:before{content:"\f11c"}.fa-keycdn:before{content:"\f3ba"}.fa-khanda:before{content:"\f66d"}.fa-kickstarter:before{content:"\f3bb"}.fa-kickstarter-k:before{content:"\f3bc"}.fa-kiss:before{content:"\f596"}.fa-kiss-beam:before{content:"\f597"}.fa-kiss-wink-heart:before{content:"\f598"}.fa-kiwi-bird:before{content:"\f535"}.fa-korvue:before{content:"\f42f"}.fa-landmark:before{content:"\f66f"}.fa-language:before{content:"\f1ab"}.fa-laptop:before{content:"\f109"}.fa-laptop-code:before{content:"\f5fc"}.fa-laravel:before{content:"\f3bd"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-laugh:before{content:"\f599"}.fa-laugh-beam:before{content:"\f59a"}.fa-laugh-squint:before{content:"\f59b"}.fa-laugh-wink:before{content:"\f59c"}.fa-layer-group:before{content:"\f5fd"}.fa-leaf:before{content:"\f06c"}.fa-leanpub:before{content:"\f212"}.fa-lemon:before{content:"\f094"}.fa-less:before{content:"\f41d"}.fa-less-than:before{content:"\f536"}.fa-less-than-equal:before{content:"\f537"}.fa-level-down-alt:before{content:"\f3be"}.fa-level-up-alt:before{content:"\f3bf"}.fa-life-ring:before{content:"\f1cd"}.fa-lightbulb:before{content:"\f0eb"}.fa-line:before{content:"\f3c0"}.fa-link:before{content:"\f0c1"}.fa-linkedin:before{content:"\f08c"}.fa-linkedin-in:before{content:"\f0e1"}.fa-linode:before{content:"\f2b8"}.fa-linux:before{content:"\f17c"}.fa-lira-sign:before{content:"\f195"}.fa-list:before{content:"\f03a"}.fa-list-alt:before{content:"\f022"}.fa-list-ol:before{content:"\f0cb"}.fa-list-ul:before{content:"\f0ca"}.fa-location-arrow:before{content:"\f124"}.fa-lock:before{content:"\f023"}.fa-lock-open:before{content:"\f3c1"}.fa-long-arrow-alt-down:before{content:"\f309"}.fa-long-arrow-alt-left:before{content:"\f30a"}.fa-long-arrow-alt-right:before{content:"\f30b"}.fa-long-arrow-alt-up:before{content:"\f30c"}.fa-low-vision:before{content:"\f2a8"}.fa-luggage-cart:before{content:"\f59d"}.fa-lyft:before{content:"\f3c3"}.fa-magento:before{content:"\f3c4"}.fa-magic:before{content:"\f0d0"}.fa-magnet:before{content:"\f076"}.fa-mail-bulk:before{content:"\f674"}.fa-mailchimp:before{content:"\f59e"}.fa-male:before{content:"\f183"}.fa-mandalorian:before{content:"\f50f"}.fa-map:before{content:"\f279"}.fa-map-marked:before{content:"\f59f"}.fa-map-marked-alt:before{content:"\f5a0"}.fa-map-marker:before{content:"\f041"}.fa-map-marker-alt:before{content:"\f3c5"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-markdown:before{content:"\f60f"}.fa-marker:before{content:"\f5a1"}.fa-mars:before{content:"\f222"}.fa-mars-double:before{content:"\f227"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mastodon:before{content:"\f4f6"}.fa-maxcdn:before{content:"\f136"}.fa-medal:before{content:"\f5a2"}.fa-medapps:before{content:"\f3c6"}.fa-medium:before{content:"\f23a"}.fa-medium-m:before{content:"\f3c7"}.fa-medkit:before{content:"\f0fa"}.fa-medrt:before{content:"\f3c8"}.fa-meetup:before{content:"\f2e0"}.fa-megaport:before{content:"\f5a3"}.fa-meh:before{content:"\f11a"}.fa-meh-blank:before{content:"\f5a4"}.fa-meh-rolling-eyes:before{content:"\f5a5"}.fa-memory:before{content:"\f538"}.fa-menorah:before{content:"\f676"}.fa-mercury:before{content:"\f223"}.fa-microchip:before{content:"\f2db"}.fa-microphone:before{content:"\f130"}.fa-microphone-alt:before{content:"\f3c9"}.fa-microphone-alt-slash:before{content:"\f539"}.fa-microphone-slash:before{content:"\f131"}.fa-microscope:before{content:"\f610"}.fa-microsoft:before{content:"\f3ca"}.fa-minus:before{content:"\f068"}.fa-minus-circle:before{content:"\f056"}.fa-minus-square:before{content:"\f146"}.fa-mix:before{content:"\f3cb"}.fa-mixcloud:before{content:"\f289"}.fa-mizuni:before{content:"\f3cc"}.fa-mobile:before{content:"\f10b"}.fa-mobile-alt:before{content:"\f3cd"}.fa-modx:before{content:"\f285"}.fa-monero:before{content:"\f3d0"}.fa-money-bill:before{content:"\f0d6"}.fa-money-bill-alt:before{content:"\f3d1"}.fa-money-bill-wave:before{content:"\f53a"}.fa-money-bill-wave-alt:before{content:"\f53b"}.fa-money-check:before{content:"\f53c"}.fa-money-check-alt:before{content:"\f53d"}.fa-monument:before{content:"\f5a6"}.fa-moon:before{content:"\f186"}.fa-mortar-pestle:before{content:"\f5a7"}.fa-mosque:before{content:"\f678"}.fa-motorcycle:before{content:"\f21c"}.fa-mouse-pointer:before{content:"\f245"}.fa-music:before{content:"\f001"}.fa-napster:before{content:"\f3d2"}.fa-neos:before{content:"\f612"}.fa-neuter:before{content:"\f22c"}.fa-newspaper:before{content:"\f1ea"}.fa-nimblr:before{content:"\f5a8"}.fa-nintendo-switch:before{content:"\f418"}.fa-node:before{content:"\f419"}.fa-node-js:before{content:"\f3d3"}.fa-not-equal:before{content:"\f53e"}.fa-notes-medical:before{content:"\f481"}.fa-npm:before{content:"\f3d4"}.fa-ns8:before{content:"\f3d5"}.fa-nutritionix:before{content:"\f3d6"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-oil-can:before{content:"\f613"}.fa-old-republic:before{content:"\f510"}.fa-om:before{content:"\f679"}.fa-opencart:before{content:"\f23d"}.fa-openid:before{content:"\f19b"}.fa-opera:before{content:"\f26a"}.fa-optin-monster:before{content:"\f23c"}.fa-osi:before{content:"\f41a"}.fa-outdent:before{content:"\f03b"}.fa-page4:before{content:"\f3d7"}.fa-pagelines:before{content:"\f18c"}.fa-paint-brush:before{content:"\f1fc"}.fa-paint-roller:before{content:"\f5aa"}.fa-palette:before{content:"\f53f"}.fa-palfed:before{content:"\f3d8"}.fa-pallet:before{content:"\f482"}.fa-paper-plane:before{content:"\f1d8"}.fa-paperclip:before{content:"\f0c6"}.fa-parachute-box:before{content:"\f4cd"}.fa-paragraph:before{content:"\f1dd"}.fa-parking:before{content:"\f540"}.fa-passport:before{content:"\f5ab"}.fa-pastafarianism:before{content:"\f67b"}.fa-paste:before{content:"\f0ea"}.fa-patreon:before{content:"\f3d9"}.fa-pause:before{content:"\f04c"}.fa-pause-circle:before{content:"\f28b"}.fa-paw:before{content:"\f1b0"}.fa-paypal:before{content:"\f1ed"}.fa-peace:before{content:"\f67c"}.fa-pen:before{content:"\f304"}.fa-pen-alt:before{content:"\f305"}.fa-pen-fancy:before{content:"\f5ac"}.fa-pen-nib:before{content:"\f5ad"}.fa-pen-square:before{content:"\f14b"}.fa-pencil-alt:before{content:"\f303"}.fa-pencil-ruler:before{content:"\f5ae"}.fa-people-carry:before{content:"\f4ce"}.fa-percent:before{content:"\f295"}.fa-percentage:before{content:"\f541"}.fa-periscope:before{content:"\f3da"}.fa-phabricator:before{content:"\f3db"}.fa-phoenix-framework:before{content:"\f3dc"}.fa-phoenix-squadron:before{content:"\f511"}.fa-phone:before{content:"\f095"}.fa-phone-slash:before{content:"\f3dd"}.fa-phone-square:before{content:"\f098"}.fa-phone-volume:before{content:"\f2a0"}.fa-php:before{content:"\f457"}.fa-pied-piper:before{content:"\f2ae"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-pied-piper-hat:before{content:"\f4e5"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-piggy-bank:before{content:"\f4d3"}.fa-pills:before{content:"\f484"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-p:before{content:"\f231"}.fa-pinterest-square:before{content:"\f0d3"}.fa-place-of-worship:before{content:"\f67f"}.fa-plane:before{content:"\f072"}.fa-plane-arrival:before{content:"\f5af"}.fa-plane-departure:before{content:"\f5b0"}.fa-play:before{content:"\f04b"}.fa-play-circle:before{content:"\f144"}.fa-playstation:before{content:"\f3df"}.fa-plug:before{content:"\f1e6"}.fa-plus:before{content:"\f067"}.fa-plus-circle:before{content:"\f055"}.fa-plus-square:before{content:"\f0fe"}.fa-podcast:before{content:"\f2ce"}.fa-poll:before{content:"\f681"}.fa-poll-h:before{content:"\f682"}.fa-poo:before{content:"\f2fe"}.fa-poop:before{content:"\f619"}.fa-portrait:before{content:"\f3e0"}.fa-pound-sign:before{content:"\f154"}.fa-power-off:before{content:"\f011"}.fa-pray:before{content:"\f683"}.fa-praying-hands:before{content:"\f684"}.fa-prescription:before{content:"\f5b1"}.fa-prescription-bottle:before{content:"\f485"}.fa-prescription-bottle-alt:before{content:"\f486"}.fa-print:before{content:"\f02f"}.fa-procedures:before{content:"\f487"}.fa-product-hunt:before{content:"\f288"}.fa-project-diagram:before{content:"\f542"}.fa-pushed:before{content:"\f3e1"}.fa-puzzle-piece:before{content:"\f12e"}.fa-python:before{content:"\f3e2"}.fa-qq:before{content:"\f1d6"}.fa-qrcode:before{content:"\f029"}.fa-question:before{content:"\f128"}.fa-question-circle:before{content:"\f059"}.fa-quidditch:before{content:"\f458"}.fa-quinscape:before{content:"\f459"}.fa-quora:before{content:"\f2c4"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-quran:before{content:"\f687"}.fa-r-project:before{content:"\f4f7"}.fa-random:before{content:"\f074"}.fa-ravelry:before{content:"\f2d9"}.fa-react:before{content:"\f41b"}.fa-readme:before{content:"\f4d5"}.fa-rebel:before{content:"\f1d0"}.fa-receipt:before{content:"\f543"}.fa-recycle:before{content:"\f1b8"}.fa-red-river:before{content:"\f3e3"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-alien:before{content:"\f281"}.fa-reddit-square:before{content:"\f1a2"}.fa-redo:before{content:"\f01e"}.fa-redo-alt:before{content:"\f2f9"}.fa-registered:before{content:"\f25d"}.fa-rendact:before{content:"\f3e4"}.fa-renren:before{content:"\f18b"}.fa-reply:before{content:"\f3e5"}.fa-reply-all:before{content:"\f122"}.fa-replyd:before{content:"\f3e6"}.fa-researchgate:before{content:"\f4f8"}.fa-resolving:before{content:"\f3e7"}.fa-retweet:before{content:"\f079"}.fa-rev:before{content:"\f5b2"}.fa-ribbon:before{content:"\f4d6"}.fa-road:before{content:"\f018"}.fa-robot:before{content:"\f544"}.fa-rocket:before{content:"\f135"}.fa-rocketchat:before{content:"\f3e8"}.fa-rockrms:before{content:"\f3e9"}.fa-route:before{content:"\f4d7"}.fa-rss:before{content:"\f09e"}.fa-rss-square:before{content:"\f143"}.fa-ruble-sign:before{content:"\f158"}.fa-ruler:before{content:"\f545"}.fa-ruler-combined:before{content:"\f546"}.fa-ruler-horizontal:before{content:"\f547"}.fa-ruler-vertical:before{content:"\f548"}.fa-rupee-sign:before{content:"\f156"}.fa-sad-cry:before{content:"\f5b3"}.fa-sad-tear:before{content:"\f5b4"}.fa-safari:before{content:"\f267"}.fa-sass:before{content:"\f41e"}.fa-save:before{content:"\f0c7"}.fa-schlix:before{content:"\f3ea"}.fa-school:before{content:"\f549"}.fa-screwdriver:before{content:"\f54a"}.fa-scribd:before{content:"\f28a"}.fa-search:before{content:"\f002"}.fa-search-dollar:before{content:"\f688"}.fa-search-location:before{content:"\f689"}.fa-search-minus:before{content:"\f010"}.fa-search-plus:before{content:"\f00e"}.fa-searchengin:before{content:"\f3eb"}.fa-seedling:before{content:"\f4d8"}.fa-sellcast:before{content:"\f2da"}.fa-sellsy:before{content:"\f213"}.fa-server:before{content:"\f233"}.fa-servicestack:before{content:"\f3ec"}.fa-shapes:before{content:"\f61f"}.fa-share:before{content:"\f064"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-share-square:before{content:"\f14d"}.fa-shekel-sign:before{content:"\f20b"}.fa-shield-alt:before{content:"\f3ed"}.fa-ship:before{content:"\f21a"}.fa-shipping-fast:before{content:"\f48b"}.fa-shirtsinbulk:before{content:"\f214"}.fa-shoe-prints:before{content:"\f54b"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-shopping-cart:before{content:"\f07a"}.fa-shopware:before{content:"\f5b5"}.fa-shower:before{content:"\f2cc"}.fa-shuttle-van:before{content:"\f5b6"}.fa-sign:before{content:"\f4d9"}.fa-sign-in-alt:before{content:"\f2f6"}.fa-sign-language:before{content:"\f2a7"}.fa-sign-out-alt:before{content:"\f2f5"}.fa-signal:before{content:"\f012"}.fa-signature:before{content:"\f5b7"}.fa-simplybuilt:before{content:"\f215"}.fa-sistrix:before{content:"\f3ee"}.fa-sitemap:before{content:"\f0e8"}.fa-sith:before{content:"\f512"}.fa-skull:before{content:"\f54c"}.fa-skyatlas:before{content:"\f216"}.fa-skype:before{content:"\f17e"}.fa-slack:before{content:"\f198"}.fa-slack-hash:before{content:"\f3ef"}.fa-sliders-h:before{content:"\f1de"}.fa-slideshare:before{content:"\f1e7"}.fa-smile:before{content:"\f118"}.fa-smile-beam:before{content:"\f5b8"}.fa-smile-wink:before{content:"\f4da"}.fa-smoking:before{content:"\f48d"}.fa-smoking-ban:before{content:"\f54d"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-snowflake:before{content:"\f2dc"}.fa-socks:before{content:"\f696"}.fa-solar-panel:before{content:"\f5ba"}.fa-sort:before{content:"\f0dc"}.fa-sort-alpha-down:before{content:"\f15d"}.fa-sort-alpha-up:before{content:"\f15e"}.fa-sort-amount-down:before{content:"\f160"}.fa-sort-amount-up:before{content:"\f161"}.fa-sort-down:before{content:"\f0dd"}.fa-sort-numeric-down:before{content:"\f162"}.fa-sort-numeric-up:before{content:"\f163"}.fa-sort-up:before{content:"\f0de"}.fa-soundcloud:before{content:"\f1be"}.fa-spa:before{content:"\f5bb"}.fa-space-shuttle:before{content:"\f197"}.fa-speakap:before{content:"\f3f3"}.fa-spinner:before{content:"\f110"}.fa-splotch:before{content:"\f5bc"}.fa-spotify:before{content:"\f1bc"}.fa-spray-can:before{content:"\f5bd"}.fa-square:before{content:"\f0c8"}.fa-square-full:before{content:"\f45c"}.fa-square-root-alt:before{content:"\f698"}.fa-squarespace:before{content:"\f5be"}.fa-stack-exchange:before{content:"\f18d"}.fa-stack-overflow:before{content:"\f16c"}.fa-stamp:before{content:"\f5bf"}.fa-star:before{content:"\f005"}.fa-star-and-crescent:before{content:"\f699"}.fa-star-half:before{content:"\f089"}.fa-star-half-alt:before{content:"\f5c0"}.fa-star-of-david:before{content:"\f69a"}.fa-star-of-life:before{content:"\f621"}.fa-staylinked:before{content:"\f3f5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-steam-symbol:before{content:"\f3f6"}.fa-step-backward:before{content:"\f048"}.fa-step-forward:before{content:"\f051"}.fa-stethoscope:before{content:"\f0f1"}.fa-sticker-mule:before{content:"\f3f7"}.fa-sticky-note:before{content:"\f249"}.fa-stop:before{content:"\f04d"}.fa-stop-circle:before{content:"\f28d"}.fa-stopwatch:before{content:"\f2f2"}.fa-store:before{content:"\f54e"}.fa-store-alt:before{content:"\f54f"}.fa-strava:before{content:"\f428"}.fa-stream:before{content:"\f550"}.fa-street-view:before{content:"\f21d"}.fa-strikethrough:before{content:"\f0cc"}.fa-stripe:before{content:"\f429"}.fa-stripe-s:before{content:"\f42a"}.fa-stroopwafel:before{content:"\f551"}.fa-studiovinari:before{content:"\f3f8"}.fa-stumbleupon:before{content:"\f1a4"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-subscript:before{content:"\f12c"}.fa-subway:before{content:"\f239"}.fa-suitcase:before{content:"\f0f2"}.fa-suitcase-rolling:before{content:"\f5c1"}.fa-sun:before{content:"\f185"}.fa-superpowers:before{content:"\f2dd"}.fa-superscript:before{content:"\f12b"}.fa-supple:before{content:"\f3f9"}.fa-surprise:before{content:"\f5c2"}.fa-swatchbook:before{content:"\f5c3"}.fa-swimmer:before{content:"\f5c4"}.fa-swimming-pool:before{content:"\f5c5"}.fa-synagogue:before{content:"\f69b"}.fa-sync:before{content:"\f021"}.fa-sync-alt:before{content:"\f2f1"}.fa-syringe:before{content:"\f48e"}.fa-table:before{content:"\f0ce"}.fa-table-tennis:before{content:"\f45d"}.fa-tablet:before{content:"\f10a"}.fa-tablet-alt:before{content:"\f3fa"}.fa-tablets:before{content:"\f490"}.fa-tachometer-alt:before{content:"\f3fd"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-tape:before{content:"\f4db"}.fa-tasks:before{content:"\f0ae"}.fa-taxi:before{content:"\f1ba"}.fa-teamspeak:before{content:"\f4f9"}.fa-teeth:before{content:"\f62e"}.fa-teeth-open:before{content:"\f62f"}.fa-telegram:before{content:"\f2c6"}.fa-telegram-plane:before{content:"\f3fe"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-terminal:before{content:"\f120"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-th:before{content:"\f00a"}.fa-th-large:before{content:"\f009"}.fa-th-list:before{content:"\f00b"}.fa-the-red-yeti:before{content:"\f69d"}.fa-theater-masks:before{content:"\f630"}.fa-themeco:before{content:"\f5c6"}.fa-themeisle:before{content:"\f2b2"}.fa-thermometer:before{content:"\f491"}.fa-thermometer-empty:before{content:"\f2cb"}.fa-thermometer-full:before{content:"\f2c7"}.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-thumbs-down:before{content:"\f165"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbtack:before{content:"\f08d"}.fa-ticket-alt:before{content:"\f3ff"}.fa-times:before{content:"\f00d"}.fa-times-circle:before{content:"\f057"}.fa-tint:before{content:"\f043"}.fa-tint-slash:before{content:"\f5c7"}.fa-tired:before{content:"\f5c8"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-toolbox:before{content:"\f552"}.fa-tooth:before{content:"\f5c9"}.fa-torah:before{content:"\f6a0"}.fa-torii-gate:before{content:"\f6a1"}.fa-trade-federation:before{content:"\f513"}.fa-trademark:before{content:"\f25c"}.fa-traffic-light:before{content:"\f637"}.fa-train:before{content:"\f238"}.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-trash:before{content:"\f1f8"}.fa-trash-alt:before{content:"\f2ed"}.fa-tree:before{content:"\f1bb"}.fa-trello:before{content:"\f181"}.fa-tripadvisor:before{content:"\f262"}.fa-trophy:before{content:"\f091"}.fa-truck:before{content:"\f0d1"}.fa-truck-loading:before{content:"\f4de"}.fa-truck-monster:before{content:"\f63b"}.fa-truck-moving:before{content:"\f4df"}.fa-truck-pickup:before{content:"\f63c"}.fa-tshirt:before{content:"\f553"}.fa-tty:before{content:"\f1e4"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-tv:before{content:"\f26c"}.fa-twitch:before{content:"\f1e8"}.fa-twitter:before{content:"\f099"}.fa-twitter-square:before{content:"\f081"}.fa-typo3:before{content:"\f42b"}.fa-uber:before{content:"\f402"}.fa-uikit:before{content:"\f403"}.fa-umbrella:before{content:"\f0e9"}.fa-umbrella-beach:before{content:"\f5ca"}.fa-underline:before{content:"\f0cd"}.fa-undo:before{content:"\f0e2"}.fa-undo-alt:before{content:"\f2ea"}.fa-uniregistry:before{content:"\f404"}.fa-universal-access:before{content:"\f29a"}.fa-university:before{content:"\f19c"}.fa-unlink:before{content:"\f127"}.fa-unlock:before{content:"\f09c"}.fa-unlock-alt:before{content:"\f13e"}.fa-untappd:before{content:"\f405"}.fa-upload:before{content:"\f093"}.fa-usb:before{content:"\f287"}.fa-user:before{content:"\f007"}.fa-user-alt:before{content:"\f406"}.fa-user-alt-slash:before{content:"\f4fa"}.fa-user-astronaut:before{content:"\f4fb"}.fa-user-check:before{content:"\f4fc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-clock:before{content:"\f4fd"}.fa-user-cog:before{content:"\f4fe"}.fa-user-edit:before{content:"\f4ff"}.fa-user-friends:before{content:"\f500"}.fa-user-graduate:before{content:"\f501"}.fa-user-lock:before{content:"\f502"}.fa-user-md:before{content:"\f0f0"}.fa-user-minus:before{content:"\f503"}.fa-user-ninja:before{content:"\f504"}.fa-user-plus:before{content:"\f234"}.fa-user-secret:before{content:"\f21b"}.fa-user-shield:before{content:"\f505"}.fa-user-slash:before{content:"\f506"}.fa-user-tag:before{content:"\f507"}.fa-user-tie:before{content:"\f508"}.fa-user-times:before{content:"\f235"}.fa-users:before{content:"\f0c0"}.fa-users-cog:before{content:"\f509"}.fa-ussunnah:before{content:"\f407"}.fa-utensil-spoon:before{content:"\f2e5"}.fa-utensils:before{content:"\f2e7"}.fa-vaadin:before{content:"\f408"}.fa-vector-square:before{content:"\f5cb"}.fa-venus:before{content:"\f221"}.fa-venus-double:before{content:"\f226"}.fa-venus-mars:before{content:"\f228"}.fa-viacoin:before{content:"\f237"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-vial:before{content:"\f492"}.fa-vials:before{content:"\f493"}.fa-viber:before{content:"\f409"}.fa-video:before{content:"\f03d"}.fa-video-slash:before{content:"\f4e2"}.fa-vihara:before{content:"\f6a7"}.fa-vimeo:before{content:"\f40a"}.fa-vimeo-square:before{content:"\f194"}.fa-vimeo-v:before{content:"\f27d"}.fa-vine:before{content:"\f1ca"}.fa-vk:before{content:"\f189"}.fa-vnv:before{content:"\f40b"}.fa-volleyball-ball:before{content:"\f45f"}.fa-volume-down:before{content:"\f027"}.fa-volume-off:before{content:"\f026"}.fa-volume-up:before{content:"\f028"}.fa-vuejs:before{content:"\f41f"}.fa-walking:before{content:"\f554"}.fa-wallet:before{content:"\f555"}.fa-warehouse:before{content:"\f494"}.fa-weebly:before{content:"\f5cc"}.fa-weibo:before{content:"\f18a"}.fa-weight:before{content:"\f496"}.fa-weight-hanging:before{content:"\f5cd"}.fa-weixin:before{content:"\f1d7"}.fa-whatsapp:before{content:"\f232"}.fa-whatsapp-square:before{content:"\f40c"}.fa-wheelchair:before{content:"\f193"}.fa-whmcs:before{content:"\f40d"}.fa-wifi:before{content:"\f1eb"}.fa-wikipedia-w:before{content:"\f266"}.fa-window-close:before{content:"\f410"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-windows:before{content:"\f17a"}.fa-wine-glass:before{content:"\f4e3"}.fa-wine-glass-alt:before{content:"\f5ce"}.fa-wix:before{content:"\f5cf"}.fa-wolf-pack-battalion:before{content:"\f514"}.fa-won-sign:before{content:"\f159"}.fa-wordpress:before{content:"\f19a"}.fa-wordpress-simple:before{content:"\f411"}.fa-wpbeginner:before{content:"\f297"}.fa-wpexplorer:before{content:"\f2de"}.fa-wpforms:before{content:"\f298"}.fa-wrench:before{content:"\f0ad"}.fa-x-ray:before{content:"\f497"}.fa-xbox:before{content:"\f412"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-y-combinator:before{content:"\f23b"}.fa-yahoo:before{content:"\f19e"}.fa-yandex:before{content:"\f413"}.fa-yandex-international:before{content:"\f414"}.fa-yelp:before{content:"\f1e9"}.fa-yen-sign:before{content:"\f157"}.fa-yin-yang:before{content:"\f6ad"}.fa-yoast:before{content:"\f2b1"}.fa-youtube:before{content:"\f167"}.fa-youtube-square:before{content:"\f431"}.fa-zhihu:before{content:"\f63f"}.sr-only{border:0;clip:rect(0,0,0,0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.sr-only-focusable:active,.sr-only-focusable:focus{clip:auto;height:auto;margin:0;overflow:visible;position:static;width:auto} \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/css/regular.min.css b/public/assets/lib/@fortawesome/fontawesome-free/css/regular.min.css new file mode 100755 index 0000000..a08c557 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/css/regular.min.css @@ -0,0 +1,5 @@ +/*! + * Font Awesome Free 5.3.1 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + */ +@font-face{font-family:"Font Awesome 5 Free";font-style:normal;font-weight:400;src:url(../webfonts/fa-regular-400.eot);src:url(../webfonts/fa-regular-400.eot?#iefix) format("embedded-opentype"),url(../webfonts/fa-regular-400.woff2) format("woff2"),url(../webfonts/fa-regular-400.woff) format("woff"),url(../webfonts/fa-regular-400.ttf) format("truetype"),url(../webfonts/fa-regular-400.svg#fontawesome) format("svg")}.far{font-family:"Font Awesome 5 Free";font-weight:400} \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/css/solid.min.css b/public/assets/lib/@fortawesome/fontawesome-free/css/solid.min.css new file mode 100755 index 0000000..a389da7 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/css/solid.min.css @@ -0,0 +1,5 @@ +/*! + * Font Awesome Free 5.3.1 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + */ +@font-face{font-family:"Font Awesome 5 Free";font-style:normal;font-weight:900;src:url(../webfonts/fa-solid-900.eot);src:url(../webfonts/fa-solid-900.eot?#iefix) format("embedded-opentype"),url(../webfonts/fa-solid-900.woff2) format("woff2"),url(../webfonts/fa-solid-900.woff) format("woff"),url(../webfonts/fa-solid-900.ttf) format("truetype"),url(../webfonts/fa-solid-900.svg#fontawesome) format("svg")}.fa,.fas{font-family:"Font Awesome 5 Free";font-weight:900} \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/css/svg-with-js.min.css b/public/assets/lib/@fortawesome/fontawesome-free/css/svg-with-js.min.css new file mode 100755 index 0000000..d303435 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/css/svg-with-js.min.css @@ -0,0 +1,5 @@ +/*! + * Font Awesome Free 5.3.1 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + */ +.svg-inline--fa,svg:not(:root).svg-inline--fa{overflow:visible}.svg-inline--fa{display:inline-block;font-size:inherit;height:1em;vertical-align:-.125em}.svg-inline--fa.fa-lg{vertical-align:-.225em}.svg-inline--fa.fa-w-1{width:.0625em}.svg-inline--fa.fa-w-2{width:.125em}.svg-inline--fa.fa-w-3{width:.1875em}.svg-inline--fa.fa-w-4{width:.25em}.svg-inline--fa.fa-w-5{width:.3125em}.svg-inline--fa.fa-w-6{width:.375em}.svg-inline--fa.fa-w-7{width:.4375em}.svg-inline--fa.fa-w-8{width:.5em}.svg-inline--fa.fa-w-9{width:.5625em}.svg-inline--fa.fa-w-10{width:.625em}.svg-inline--fa.fa-w-11{width:.6875em}.svg-inline--fa.fa-w-12{width:.75em}.svg-inline--fa.fa-w-13{width:.8125em}.svg-inline--fa.fa-w-14{width:.875em}.svg-inline--fa.fa-w-15{width:.9375em}.svg-inline--fa.fa-w-16{width:1em}.svg-inline--fa.fa-w-17{width:1.0625em}.svg-inline--fa.fa-w-18{width:1.125em}.svg-inline--fa.fa-w-19{width:1.1875em}.svg-inline--fa.fa-w-20{width:1.25em}.svg-inline--fa.fa-pull-left{margin-right:.3em;width:auto}.svg-inline--fa.fa-pull-right{margin-left:.3em;width:auto}.svg-inline--fa.fa-border{height:1.5em}.svg-inline--fa.fa-li{width:2em}.svg-inline--fa.fa-fw{width:1.25em}.fa-layers svg.svg-inline--fa{bottom:0;left:0;margin:auto;position:absolute;right:0;top:0}.fa-layers{display:inline-block;height:1em;position:relative;text-align:center;vertical-align:-.125em;width:1em}.fa-layers svg.svg-inline--fa{transform-origin:center center}.fa-layers-counter,.fa-layers-text{display:inline-block;position:absolute;text-align:center}.fa-layers-text{left:50%;top:50%;transform:translate(-50%,-50%);transform-origin:center center}.fa-layers-counter{background-color:#ff253a;border-radius:1em;box-sizing:border-box;color:#fff;height:1.5em;line-height:1;max-width:5em;min-width:1.5em;overflow:hidden;padding:.25em;right:0;text-overflow:ellipsis;top:0;transform:scale(.25);transform-origin:top right}.fa-layers-bottom-right{bottom:0;right:0;top:auto;transform:scale(.25);transform-origin:bottom right}.fa-layers-bottom-left{bottom:0;left:0;right:auto;top:auto;transform:scale(.25);transform-origin:bottom left}.fa-layers-top-right{right:0;top:0;transform:scale(.25);transform-origin:top right}.fa-layers-top-left{left:0;right:auto;top:0;transform:scale(.25);transform-origin:top left}.fa-lg{font-size:1.33333em;line-height:.75em;vertical-align:-.0667em}.fa-xs{font-size:.75em}.fa-sm{font-size:.875em}.fa-1x{font-size:1em}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-6x{font-size:6em}.fa-7x{font-size:7em}.fa-8x{font-size:8em}.fa-9x{font-size:9em}.fa-10x{font-size:10em}.fa-fw{text-align:center;width:1.25em}.fa-ul{list-style-type:none;margin-left:2.5em;padding-left:0}.fa-ul>li{position:relative}.fa-li{left:-2em;position:absolute;text-align:center;width:2em;line-height:inherit}.fa-border{border:.08em solid #eee;border-radius:.1em;padding:.2em .25em .15em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left,.fab.fa-pull-left,.fal.fa-pull-left,.far.fa-pull-left,.fas.fa-pull-left{margin-right:.3em}.fa.fa-pull-right,.fab.fa-pull-right,.fal.fa-pull-right,.far.fa-pull-right,.fas.fa-pull-right{margin-left:.3em}.fa-spin{animation:fa-spin 2s infinite linear}.fa-pulse{animation:fa-spin 1s infinite steps(8)}@keyframes fa-spin{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";transform:scaleX(-1)}.fa-flip-vertical{transform:scaleY(-1)}.fa-flip-horizontal.fa-flip-vertical,.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)"}.fa-flip-horizontal.fa-flip-vertical{transform:scale(-1)}:root .fa-flip-horizontal,:root .fa-flip-vertical,:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270{-webkit-filter:none;filter:none}.fa-stack{display:inline-block;height:2em;position:relative;width:2em}.fa-stack-1x,.fa-stack-2x{bottom:0;left:0;margin:auto;position:absolute;right:0;top:0}.svg-inline--fa.fa-stack-1x{height:1em;width:1em}.svg-inline--fa.fa-stack-2x{height:2em;width:2em}.fa-inverse{color:#fff}.sr-only{border:0;clip:rect(0,0,0,0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.sr-only-focusable:active,.sr-only-focusable:focus{clip:auto;height:auto;margin:0;overflow:visible;position:static;width:auto} \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/css/v4-shims.min.css b/public/assets/lib/@fortawesome/fontawesome-free/css/v4-shims.min.css new file mode 100755 index 0000000..5a2cd78 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/css/v4-shims.min.css @@ -0,0 +1,5 @@ +/*! + * Font Awesome Free 5.3.1 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + */ +.fa.fa-glass:before{content:"\f000"}.fa.fa-meetup{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-star-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-star-o:before{content:"\f005"}.fa.fa-close:before,.fa.fa-remove:before{content:"\f00d"}.fa.fa-gear:before{content:"\f013"}.fa.fa-trash-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-trash-o:before{content:"\f2ed"}.fa.fa-file-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-o:before{content:"\f15b"}.fa.fa-clock-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-clock-o:before{content:"\f017"}.fa.fa-arrow-circle-o-down{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-arrow-circle-o-down:before{content:"\f358"}.fa.fa-arrow-circle-o-up{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-arrow-circle-o-up:before{content:"\f35b"}.fa.fa-play-circle-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-play-circle-o:before{content:"\f144"}.fa.fa-repeat:before,.fa.fa-rotate-right:before{content:"\f01e"}.fa.fa-refresh:before{content:"\f021"}.fa.fa-list-alt{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-dedent:before{content:"\f03b"}.fa.fa-video-camera:before{content:"\f03d"}.fa.fa-picture-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-picture-o:before{content:"\f03e"}.fa.fa-photo{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-photo:before{content:"\f03e"}.fa.fa-image{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-image:before{content:"\f03e"}.fa.fa-pencil:before{content:"\f303"}.fa.fa-map-marker:before{content:"\f3c5"}.fa.fa-pencil-square-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-pencil-square-o:before{content:"\f044"}.fa.fa-share-square-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-share-square-o:before{content:"\f14d"}.fa.fa-check-square-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-check-square-o:before{content:"\f14a"}.fa.fa-arrows:before{content:"\f0b2"}.fa.fa-times-circle-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-times-circle-o:before{content:"\f057"}.fa.fa-check-circle-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-check-circle-o:before{content:"\f058"}.fa.fa-mail-forward:before{content:"\f064"}.fa.fa-eye,.fa.fa-eye-slash{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-warning:before{content:"\f071"}.fa.fa-calendar:before{content:"\f073"}.fa.fa-arrows-v:before{content:"\f338"}.fa.fa-arrows-h:before{content:"\f337"}.fa.fa-bar-chart{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-bar-chart:before{content:"\f080"}.fa.fa-bar-chart-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-bar-chart-o:before{content:"\f080"}.fa.fa-facebook-square,.fa.fa-twitter-square{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-gears:before{content:"\f085"}.fa.fa-thumbs-o-up{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-thumbs-o-up:before{content:"\f164"}.fa.fa-thumbs-o-down{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-thumbs-o-down:before{content:"\f165"}.fa.fa-heart-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-heart-o:before{content:"\f004"}.fa.fa-sign-out:before{content:"\f2f5"}.fa.fa-linkedin-square{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-linkedin-square:before{content:"\f08c"}.fa.fa-thumb-tack:before{content:"\f08d"}.fa.fa-external-link:before{content:"\f35d"}.fa.fa-sign-in:before{content:"\f2f6"}.fa.fa-github-square{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-lemon-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-lemon-o:before{content:"\f094"}.fa.fa-square-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-square-o:before{content:"\f0c8"}.fa.fa-bookmark-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-bookmark-o:before{content:"\f02e"}.fa.fa-facebook,.fa.fa-twitter{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-facebook:before{content:"\f39e"}.fa.fa-facebook-f{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-facebook-f:before{content:"\f39e"}.fa.fa-github{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-credit-card{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-feed:before{content:"\f09e"}.fa.fa-hdd-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hdd-o:before{content:"\f0a0"}.fa.fa-hand-o-right{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-o-right:before{content:"\f0a4"}.fa.fa-hand-o-left{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-o-left:before{content:"\f0a5"}.fa.fa-hand-o-up{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-o-up:before{content:"\f0a6"}.fa.fa-hand-o-down{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-o-down:before{content:"\f0a7"}.fa.fa-arrows-alt:before{content:"\f31e"}.fa.fa-group:before{content:"\f0c0"}.fa.fa-chain:before{content:"\f0c1"}.fa.fa-scissors:before{content:"\f0c4"}.fa.fa-files-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-files-o:before{content:"\f0c5"}.fa.fa-floppy-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-floppy-o:before{content:"\f0c7"}.fa.fa-navicon:before,.fa.fa-reorder:before{content:"\f0c9"}.fa.fa-google-plus,.fa.fa-google-plus-square,.fa.fa-pinterest,.fa.fa-pinterest-square{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-google-plus:before{content:"\f0d5"}.fa.fa-money{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-money:before{content:"\f3d1"}.fa.fa-unsorted:before{content:"\f0dc"}.fa.fa-sort-desc:before{content:"\f0dd"}.fa.fa-sort-asc:before{content:"\f0de"}.fa.fa-linkedin{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-linkedin:before{content:"\f0e1"}.fa.fa-rotate-left:before{content:"\f0e2"}.fa.fa-legal:before{content:"\f0e3"}.fa.fa-dashboard:before,.fa.fa-tachometer:before{content:"\f3fd"}.fa.fa-comment-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-comment-o:before{content:"\f075"}.fa.fa-comments-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-comments-o:before{content:"\f086"}.fa.fa-flash:before{content:"\f0e7"}.fa.fa-clipboard,.fa.fa-paste{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-paste:before{content:"\f328"}.fa.fa-lightbulb-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-lightbulb-o:before{content:"\f0eb"}.fa.fa-exchange:before{content:"\f362"}.fa.fa-cloud-download:before{content:"\f381"}.fa.fa-cloud-upload:before{content:"\f382"}.fa.fa-bell-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-bell-o:before{content:"\f0f3"}.fa.fa-cutlery:before{content:"\f2e7"}.fa.fa-file-text-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-text-o:before{content:"\f15c"}.fa.fa-building-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-building-o:before{content:"\f1ad"}.fa.fa-hospital-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hospital-o:before{content:"\f0f8"}.fa.fa-tablet:before{content:"\f3fa"}.fa.fa-mobile-phone:before,.fa.fa-mobile:before{content:"\f3cd"}.fa.fa-circle-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-circle-o:before{content:"\f111"}.fa.fa-mail-reply:before{content:"\f3e5"}.fa.fa-github-alt{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-folder-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-folder-o:before{content:"\f07b"}.fa.fa-folder-open-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-folder-open-o:before{content:"\f07c"}.fa.fa-smile-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-smile-o:before{content:"\f118"}.fa.fa-frown-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-frown-o:before{content:"\f119"}.fa.fa-meh-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-meh-o:before{content:"\f11a"}.fa.fa-keyboard-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-keyboard-o:before{content:"\f11c"}.fa.fa-flag-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-flag-o:before{content:"\f024"}.fa.fa-mail-reply-all:before{content:"\f122"}.fa.fa-star-half-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-star-half-o:before{content:"\f089"}.fa.fa-star-half-empty{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-star-half-empty:before{content:"\f089"}.fa.fa-star-half-full{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-star-half-full:before{content:"\f089"}.fa.fa-code-fork:before{content:"\f126"}.fa.fa-chain-broken:before{content:"\f127"}.fa.fa-shield:before{content:"\f3ed"}.fa.fa-calendar-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-calendar-o:before{content:"\f133"}.fa.fa-css3,.fa.fa-html5,.fa.fa-maxcdn{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-ticket:before{content:"\f3ff"}.fa.fa-minus-square-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-minus-square-o:before{content:"\f146"}.fa.fa-level-up:before{content:"\f3bf"}.fa.fa-level-down:before{content:"\f3be"}.fa.fa-pencil-square:before{content:"\f14b"}.fa.fa-external-link-square:before{content:"\f360"}.fa.fa-compass{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-caret-square-o-down{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-caret-square-o-down:before{content:"\f150"}.fa.fa-toggle-down{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-toggle-down:before{content:"\f150"}.fa.fa-caret-square-o-up{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-caret-square-o-up:before{content:"\f151"}.fa.fa-toggle-up{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-toggle-up:before{content:"\f151"}.fa.fa-caret-square-o-right{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-caret-square-o-right:before{content:"\f152"}.fa.fa-toggle-right{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-toggle-right:before{content:"\f152"}.fa.fa-eur:before,.fa.fa-euro:before{content:"\f153"}.fa.fa-gbp:before{content:"\f154"}.fa.fa-dollar:before,.fa.fa-usd:before{content:"\f155"}.fa.fa-inr:before,.fa.fa-rupee:before{content:"\f156"}.fa.fa-cny:before,.fa.fa-jpy:before,.fa.fa-rmb:before,.fa.fa-yen:before{content:"\f157"}.fa.fa-rouble:before,.fa.fa-rub:before,.fa.fa-ruble:before{content:"\f158"}.fa.fa-krw:before,.fa.fa-won:before{content:"\f159"}.fa.fa-bitcoin,.fa.fa-btc{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-bitcoin:before{content:"\f15a"}.fa.fa-file-text:before{content:"\f15c"}.fa.fa-sort-alpha-asc:before{content:"\f15d"}.fa.fa-sort-alpha-desc:before{content:"\f15e"}.fa.fa-sort-amount-asc:before{content:"\f160"}.fa.fa-sort-amount-desc:before{content:"\f161"}.fa.fa-sort-numeric-asc:before{content:"\f162"}.fa.fa-sort-numeric-desc:before{content:"\f163"}.fa.fa-xing,.fa.fa-xing-square,.fa.fa-youtube,.fa.fa-youtube-play,.fa.fa-youtube-square{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-youtube-play:before{content:"\f167"}.fa.fa-adn,.fa.fa-bitbucket,.fa.fa-bitbucket-square,.fa.fa-dropbox,.fa.fa-flickr,.fa.fa-instagram,.fa.fa-stack-overflow{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-bitbucket-square:before{content:"\f171"}.fa.fa-tumblr,.fa.fa-tumblr-square{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-long-arrow-down:before{content:"\f309"}.fa.fa-long-arrow-up:before{content:"\f30c"}.fa.fa-long-arrow-left:before{content:"\f30a"}.fa.fa-long-arrow-right:before{content:"\f30b"}.fa.fa-android,.fa.fa-apple,.fa.fa-dribbble,.fa.fa-foursquare,.fa.fa-gittip,.fa.fa-gratipay,.fa.fa-linux,.fa.fa-skype,.fa.fa-trello,.fa.fa-windows{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-gittip:before{content:"\f184"}.fa.fa-sun-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-sun-o:before{content:"\f185"}.fa.fa-moon-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-moon-o:before{content:"\f186"}.fa.fa-pagelines,.fa.fa-renren,.fa.fa-stack-exchange,.fa.fa-vk,.fa.fa-weibo{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-arrow-circle-o-right{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-arrow-circle-o-right:before{content:"\f35a"}.fa.fa-arrow-circle-o-left{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-arrow-circle-o-left:before{content:"\f359"}.fa.fa-caret-square-o-left{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-caret-square-o-left:before{content:"\f191"}.fa.fa-toggle-left{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-toggle-left:before{content:"\f191"}.fa.fa-dot-circle-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-dot-circle-o:before{content:"\f192"}.fa.fa-vimeo-square{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-try:before,.fa.fa-turkish-lira:before{content:"\f195"}.fa.fa-plus-square-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-plus-square-o:before{content:"\f0fe"}.fa.fa-openid,.fa.fa-slack,.fa.fa-wordpress{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-bank:before,.fa.fa-institution:before{content:"\f19c"}.fa.fa-mortar-board:before{content:"\f19d"}.fa.fa-delicious,.fa.fa-digg,.fa.fa-drupal,.fa.fa-google,.fa.fa-joomla,.fa.fa-pied-piper-alt,.fa.fa-pied-piper-pp,.fa.fa-reddit,.fa.fa-reddit-square,.fa.fa-stumbleupon,.fa.fa-stumbleupon-circle,.fa.fa-yahoo{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-spoon:before{content:"\f2e5"}.fa.fa-behance,.fa.fa-behance-square,.fa.fa-steam,.fa.fa-steam-square{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-automobile:before{content:"\f1b9"}.fa.fa-cab:before{content:"\f1ba"}.fa.fa-envelope-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-envelope-o:before{content:"\f0e0"}.fa.fa-deviantart,.fa.fa-soundcloud{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-file-pdf-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-pdf-o:before{content:"\f1c1"}.fa.fa-file-word-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-word-o:before{content:"\f1c2"}.fa.fa-file-excel-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-excel-o:before{content:"\f1c3"}.fa.fa-file-powerpoint-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-powerpoint-o:before{content:"\f1c4"}.fa.fa-file-image-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-image-o:before{content:"\f1c5"}.fa.fa-file-photo-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-photo-o:before{content:"\f1c5"}.fa.fa-file-picture-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-picture-o:before{content:"\f1c5"}.fa.fa-file-archive-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-archive-o:before{content:"\f1c6"}.fa.fa-file-zip-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-zip-o:before{content:"\f1c6"}.fa.fa-file-audio-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-audio-o:before{content:"\f1c7"}.fa.fa-file-sound-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-sound-o:before{content:"\f1c7"}.fa.fa-file-video-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-video-o:before{content:"\f1c8"}.fa.fa-file-movie-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-movie-o:before{content:"\f1c8"}.fa.fa-file-code-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-code-o:before{content:"\f1c9"}.fa.fa-codepen,.fa.fa-jsfiddle,.fa.fa-vine{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-life-bouy,.fa.fa-life-ring{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-life-bouy:before{content:"\f1cd"}.fa.fa-life-buoy{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-life-buoy:before{content:"\f1cd"}.fa.fa-life-saver{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-life-saver:before{content:"\f1cd"}.fa.fa-support{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-support:before{content:"\f1cd"}.fa.fa-circle-o-notch:before{content:"\f1ce"}.fa.fa-ra,.fa.fa-rebel{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-ra:before{content:"\f1d0"}.fa.fa-resistance{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-resistance:before{content:"\f1d0"}.fa.fa-empire,.fa.fa-ge{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-ge:before{content:"\f1d1"}.fa.fa-git,.fa.fa-git-square,.fa.fa-hacker-news,.fa.fa-y-combinator-square{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-y-combinator-square:before{content:"\f1d4"}.fa.fa-yc-square{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-yc-square:before{content:"\f1d4"}.fa.fa-qq,.fa.fa-tencent-weibo,.fa.fa-wechat,.fa.fa-weixin{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-wechat:before{content:"\f1d7"}.fa.fa-send:before{content:"\f1d8"}.fa.fa-paper-plane-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-paper-plane-o:before{content:"\f1d8"}.fa.fa-send-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-send-o:before{content:"\f1d8"}.fa.fa-circle-thin{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-circle-thin:before{content:"\f111"}.fa.fa-header:before{content:"\f1dc"}.fa.fa-sliders:before{content:"\f1de"}.fa.fa-futbol-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-futbol-o:before{content:"\f1e3"}.fa.fa-soccer-ball-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-soccer-ball-o:before{content:"\f1e3"}.fa.fa-slideshare,.fa.fa-twitch,.fa.fa-yelp{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-newspaper-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-newspaper-o:before{content:"\f1ea"}.fa.fa-cc-amex,.fa.fa-cc-discover,.fa.fa-cc-mastercard,.fa.fa-cc-paypal,.fa.fa-cc-stripe,.fa.fa-cc-visa,.fa.fa-google-wallet,.fa.fa-paypal{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-bell-slash-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-bell-slash-o:before{content:"\f1f6"}.fa.fa-trash:before{content:"\f2ed"}.fa.fa-copyright{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-eyedropper:before{content:"\f1fb"}.fa.fa-area-chart:before{content:"\f1fe"}.fa.fa-pie-chart:before{content:"\f200"}.fa.fa-line-chart:before{content:"\f201"}.fa.fa-angellist,.fa.fa-ioxhost,.fa.fa-lastfm,.fa.fa-lastfm-square{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-cc{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-cc:before{content:"\f20a"}.fa.fa-ils:before,.fa.fa-shekel:before,.fa.fa-sheqel:before{content:"\f20b"}.fa.fa-meanpath{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-meanpath:before{content:"\f2b4"}.fa.fa-buysellads,.fa.fa-connectdevelop,.fa.fa-dashcube,.fa.fa-forumbee,.fa.fa-leanpub,.fa.fa-sellsy,.fa.fa-shirtsinbulk,.fa.fa-simplybuilt,.fa.fa-skyatlas{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-diamond{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-diamond:before{content:"\f3a5"}.fa.fa-intersex:before{content:"\f224"}.fa.fa-facebook-official{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-facebook-official:before{content:"\f09a"}.fa.fa-pinterest-p,.fa.fa-whatsapp{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-hotel:before{content:"\f236"}.fa.fa-medium,.fa.fa-viacoin,.fa.fa-y-combinator,.fa.fa-yc{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-yc:before{content:"\f23b"}.fa.fa-expeditedssl,.fa.fa-opencart,.fa.fa-optin-monster{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-battery-4:before,.fa.fa-battery:before{content:"\f240"}.fa.fa-battery-3:before{content:"\f241"}.fa.fa-battery-2:before{content:"\f242"}.fa.fa-battery-1:before{content:"\f243"}.fa.fa-battery-0:before{content:"\f244"}.fa.fa-object-group,.fa.fa-object-ungroup,.fa.fa-sticky-note-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-sticky-note-o:before{content:"\f249"}.fa.fa-cc-diners-club,.fa.fa-cc-jcb{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-clone,.fa.fa-hourglass-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hourglass-o:before{content:"\f254"}.fa.fa-hourglass-1:before{content:"\f251"}.fa.fa-hourglass-2:before{content:"\f252"}.fa.fa-hourglass-3:before{content:"\f253"}.fa.fa-hand-rock-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-rock-o:before{content:"\f255"}.fa.fa-hand-grab-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-grab-o:before{content:"\f255"}.fa.fa-hand-paper-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-paper-o:before{content:"\f256"}.fa.fa-hand-stop-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-stop-o:before{content:"\f256"}.fa.fa-hand-scissors-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-scissors-o:before{content:"\f257"}.fa.fa-hand-lizard-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-lizard-o:before{content:"\f258"}.fa.fa-hand-spock-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-spock-o:before{content:"\f259"}.fa.fa-hand-pointer-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-pointer-o:before{content:"\f25a"}.fa.fa-hand-peace-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-peace-o:before{content:"\f25b"}.fa.fa-registered{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-chrome,.fa.fa-creative-commons,.fa.fa-firefox,.fa.fa-get-pocket,.fa.fa-gg,.fa.fa-gg-circle,.fa.fa-internet-explorer,.fa.fa-odnoklassniki,.fa.fa-odnoklassniki-square,.fa.fa-opera,.fa.fa-safari,.fa.fa-tripadvisor,.fa.fa-wikipedia-w{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-television:before{content:"\f26c"}.fa.fa-500px,.fa.fa-amazon,.fa.fa-contao{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-calendar-plus-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-calendar-plus-o:before{content:"\f271"}.fa.fa-calendar-minus-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-calendar-minus-o:before{content:"\f272"}.fa.fa-calendar-times-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-calendar-times-o:before{content:"\f273"}.fa.fa-calendar-check-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-calendar-check-o:before{content:"\f274"}.fa.fa-map-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-map-o:before{content:"\f279"}.fa.fa-commenting{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-commenting:before{content:"\f4ad"}.fa.fa-commenting-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-commenting-o:before{content:"\f4ad"}.fa.fa-houzz,.fa.fa-vimeo{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-vimeo:before{content:"\f27d"}.fa.fa-black-tie,.fa.fa-edge,.fa.fa-fonticons,.fa.fa-reddit-alien{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-credit-card-alt:before{content:"\f09d"}.fa.fa-codiepie,.fa.fa-fort-awesome,.fa.fa-mixcloud,.fa.fa-modx,.fa.fa-product-hunt,.fa.fa-scribd,.fa.fa-usb{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-pause-circle-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-pause-circle-o:before{content:"\f28b"}.fa.fa-stop-circle-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-stop-circle-o:before{content:"\f28d"}.fa.fa-bluetooth,.fa.fa-bluetooth-b,.fa.fa-envira,.fa.fa-gitlab,.fa.fa-wheelchair-alt,.fa.fa-wpbeginner,.fa.fa-wpforms{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-wheelchair-alt:before{content:"\f368"}.fa.fa-question-circle-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-question-circle-o:before{content:"\f059"}.fa.fa-volume-control-phone:before{content:"\f2a0"}.fa.fa-asl-interpreting:before{content:"\f2a3"}.fa.fa-deafness:before,.fa.fa-hard-of-hearing:before{content:"\f2a4"}.fa.fa-glide,.fa.fa-glide-g{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-signing:before{content:"\f2a7"}.fa.fa-first-order,.fa.fa-google-plus-official,.fa.fa-pied-piper,.fa.fa-snapchat,.fa.fa-snapchat-ghost,.fa.fa-snapchat-square,.fa.fa-themeisle,.fa.fa-viadeo,.fa.fa-viadeo-square,.fa.fa-yoast{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-google-plus-official:before{content:"\f2b3"}.fa.fa-google-plus-circle{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-google-plus-circle:before{content:"\f2b3"}.fa.fa-fa,.fa.fa-font-awesome{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-fa:before{content:"\f2b4"}.fa.fa-handshake-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-handshake-o:before{content:"\f2b5"}.fa.fa-envelope-open-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-envelope-open-o:before{content:"\f2b6"}.fa.fa-linode{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-address-book-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-address-book-o:before{content:"\f2b9"}.fa.fa-vcard:before{content:"\f2bb"}.fa.fa-address-card-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-address-card-o:before{content:"\f2bb"}.fa.fa-vcard-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-vcard-o:before{content:"\f2bb"}.fa.fa-user-circle-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-user-circle-o:before{content:"\f2bd"}.fa.fa-user-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-user-o:before{content:"\f007"}.fa.fa-id-badge{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-drivers-license:before{content:"\f2c2"}.fa.fa-id-card-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-id-card-o:before{content:"\f2c2"}.fa.fa-drivers-license-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-drivers-license-o:before{content:"\f2c2"}.fa.fa-free-code-camp,.fa.fa-quora,.fa.fa-telegram{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-thermometer-4:before,.fa.fa-thermometer:before{content:"\f2c7"}.fa.fa-thermometer-3:before{content:"\f2c8"}.fa.fa-thermometer-2:before{content:"\f2c9"}.fa.fa-thermometer-1:before{content:"\f2ca"}.fa.fa-thermometer-0:before{content:"\f2cb"}.fa.fa-bathtub:before,.fa.fa-s15:before{content:"\f2cd"}.fa.fa-window-maximize,.fa.fa-window-restore{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-times-rectangle:before{content:"\f410"}.fa.fa-window-close-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-window-close-o:before{content:"\f410"}.fa.fa-times-rectangle-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-times-rectangle-o:before{content:"\f410"}.fa.fa-bandcamp,.fa.fa-eercast,.fa.fa-etsy,.fa.fa-grav,.fa.fa-imdb,.fa.fa-ravelry{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-eercast:before{content:"\f2da"}.fa.fa-snowflake-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-snowflake-o:before{content:"\f2dc"}.fa.fa-spotify,.fa.fa-superpowers,.fa.fa-wpexplorer{font-family:"Font Awesome 5 Brands";font-weight:400} \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/js/all.min.js b/public/assets/lib/@fortawesome/fontawesome-free/js/all.min.js new file mode 100755 index 0000000..b08e9a6 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/js/all.min.js @@ -0,0 +1,5 @@ +/*! + * Font Awesome Free 5.3.1 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + */ +!function(){"use strict";var c={};try{"undefined"!=typeof window&&(c=window)}catch(c){}var l=(c.navigator||{}).userAgent,h=void 0===l?"":l,z=c,v=(~h.indexOf("MSIE")||h.indexOf("Trident/"),"___FONT_AWESOME___"),m=function(){try{return!0}catch(c){return!1}}(),s=[1,2,3,4,5,6,7,8,9,10],e=s.concat([11,12,13,14,15,16,17,18,19,20]);["xs","sm","lg","fw","ul","li","border","pull-left","pull-right","spin","pulse","rotate-90","rotate-180","rotate-270","flip-horizontal","flip-vertical","stack","stack-1x","stack-2x","inverse","layers","layers-text","layers-counter"].concat(s.map(function(c){return c+"x"})).concat(e.map(function(c){return"w-"+c}));var a=z||{};a[v]||(a[v]={}),a[v].styles||(a[v].styles={}),a[v].hooks||(a[v].hooks={}),a[v].shims||(a[v].shims=[]);var t=a[v],M=Object.assign||function(c){for(var l=1;l>>0;h--;)l[h]=c[h];return l}function U(c){return c.classList?X(c.classList):(c.getAttribute("class")||"").split(" ").filter(function(c){return c})}function K(c,l){var h,z=l.split("-"),v=z[0],m=z.slice(1).join("-");return v!==c||""===m||(h=m,~w.indexOf(h))?null:m}function G(c){return(""+c).replace(/&/g,"&").replace(/"/g,""").replace(/'/g,"'").replace(//g,">")}function J(h){return Object.keys(h||{}).reduce(function(c,l){return c+(l+": ")+h[l]+";"},"")}function Q(c){return c.size!==W.size||c.x!==W.x||c.y!==W.y||c.rotate!==W.rotate||c.flipX||c.flipY}function Z(c){var l=c.transform,h=c.containerWidth,z=c.iconWidth;return{outer:{transform:"translate("+h/2+" 256)"},inner:{transform:"translate("+32*l.x+", "+32*l.y+") "+" "+("scale("+l.size/16*(l.flipX?-1:1)+", "+l.size/16*(l.flipY?-1:1)+") ")+" "+("rotate("+l.rotate+" 0 0)")},path:{transform:"translate("+z/2*-1+" -256)"}}}var $={x:0,y:0,width:"100%",height:"100%"},cc=function(c){var l=c.children,h=c.attributes,z=c.main,v=c.mask,m=c.transform,s=z.width,e=z.icon,a=v.width,t=v.icon,M=Z({transform:m,containerWidth:a,iconWidth:s}),f={tag:"rect",attributes:A({},$,{fill:"white"})},r={tag:"g",attributes:A({},M.inner),children:[{tag:"path",attributes:A({},e.attributes,M.path,{fill:"black"})}]},H={tag:"g",attributes:A({},M.outer),children:[r]},i="mask-"+D(),n="clip-"+D(),V={tag:"defs",children:[{tag:"clipPath",attributes:{id:n},children:[t]},{tag:"mask",attributes:A({},$,{id:i,maskUnits:"userSpaceOnUse",maskContentUnits:"userSpaceOnUse"}),children:[f,H]}]};return l.push(V,{tag:"rect",attributes:A({fill:"currentColor","clip-path":"url(#"+n+")",mask:"url(#"+i+")"},$)}),{children:l,attributes:h}},lc=function(c){var l=c.children,h=c.attributes,z=c.main,v=c.transform,m=J(c.styles);if(0"+s.map(bc).join("")+""}var gc=function(){};function Sc(c){return"string"==typeof(c.getAttribute?c.getAttribute(g):null)}var yc={replace:function(c){var l=c[0],h=c[1].map(function(c){return bc(c)}).join("\n");if(l.parentNode&&l.outerHTML)l.outerHTML=h+(E.keepOriginalSource&&"svg"!==l.tagName.toLowerCase()?"\x3c!-- "+l.outerHTML+" --\x3e":"");else if(l.parentNode){var z=document.createElement("span");l.parentNode.replaceChild(z,l),z.outerHTML=h}},nest:function(c){var l=c[0],h=c[1];if(~U(l).indexOf(E.replacementClass))return yc.replace(c);var z=new RegExp(E.familyPrefix+"-.*");delete h[0].attributes.style;var v=h[0].attributes.class.split(" ").reduce(function(c,l){return l===E.replacementClass||l.match(z)?c.toSvg.push(l):c.toNode.push(l),c},{toNode:[],toSvg:[]});h[0].attributes.class=v.toSvg.join(" ");var m=h.map(function(c){return bc(c)}).join("\n");l.setAttribute("class",v.toNode.join(" ")),l.setAttribute(g,""),l.innerHTML=m}};function wc(h,c){var z="function"==typeof c?c:gc;0===h.length?z():(r.requestAnimationFrame||function(c){return c()})(function(){var c=!0===E.autoReplaceSvg?yc.replace:yc[E.autoReplaceSvg]||yc.replace,l=Mc.begin("mutate");h.map(c),l(),z()})}var kc=!1;var xc=null;function Ac(c){if(e&&E.observeMutations){var v=c.treeCallback,m=c.nodeCallback,s=c.pseudoElementsCallback,l=c.observeMutationsRoot,h=void 0===l?H.body:l;xc=new e(function(c){kc||X(c).forEach(function(c){if("childList"===c.type&&0li{position:relative}.fa-li{left:-2em;position:absolute;text-align:center;width:2em;line-height:inherit}.fa-border{border:solid .08em #eee;border-radius:.1em;padding:.2em .25em .15em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left,.fab.fa-pull-left,.fal.fa-pull-left,.far.fa-pull-left,.fas.fa-pull-left{margin-right:.3em}.fa.fa-pull-right,.fab.fa-pull-right,.fal.fa-pull-right,.far.fa-pull-right,.fas.fa-pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.fa-rotate-90{-webkit-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-webkit-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-webkit-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-webkit-transform:scale(-1,1);transform:scale(-1,1)}.fa-flip-vertical{-webkit-transform:scale(1,-1);transform:scale(1,-1)}.fa-flip-horizontal.fa-flip-vertical{-webkit-transform:scale(-1,-1);transform:scale(-1,-1)}:root .fa-flip-horizontal,:root .fa-flip-vertical,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-rotate-90{-webkit-filter:none;filter:none}.fa-stack{display:inline-block;height:2em;position:relative;width:2em}.fa-stack-1x,.fa-stack-2x{bottom:0;left:0;margin:auto;position:absolute;right:0;top:0}.svg-inline--fa.fa-stack-1x{height:1em;width:1em}.svg-inline--fa.fa-stack-2x{height:2em;width:2em}.fa-inverse{color:#fff}.sr-only{border:0;clip:rect(0,0,0,0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.sr-only-focusable:active,.sr-only-focusable:focus{clip:auto;height:auto;margin:0;overflow:visible;position:static;width:auto}";if("fa"!==l||h!==c){var v=new RegExp("\\.fa\\-","g"),m=new RegExp("\\."+c,"g");z=z.replace(v,"."+l+"-").replace(m,"."+h)}return z};function zl(c){return{found:!0,width:c[0],height:c[1],icon:{tag:"path",attributes:{fill:"currentColor",d:c.slice(4)[0]}}}}function vl(){E.autoAddCss&&!tl&&(Y(hl()),tl=!0)}function ml(l,c){return Object.defineProperty(l,"abstract",{get:c}),Object.defineProperty(l,"html",{get:function(){return l.abstract.map(function(c){return bc(c)})}}),Object.defineProperty(l,"node",{get:function(){if(M){var c=H.createElement("div");return c.innerHTML=l.html,c.children}}}),l}function sl(c){var l=c.prefix,h=void 0===l?"fa":l,z=c.iconName;if(z)return pc(al.definitions,h,z)||pc(T.styles,h,z)}var el,al=new(function(){function c(){k(this,c),this.definitions={}}return x(c,[{key:"add",value:function(){for(var l=this,c=arguments.length,h=Array(c),z=0;z>>0;r--;)e[r]=t[r];return e}function V(t){return t.classList?U(t.classList):(t.getAttribute("class")||"").split(" ").filter(function(t){return t})}function K(t,e){var r,a=e.split("-"),n=a[0],i=a.slice(1).join("-");return n!==t||""===i||(r=i,~M.indexOf(r))?null:i}function G(t){return(""+t).replace(/&/g,"&").replace(/"/g,""").replace(/'/g,"'").replace(//g,">")}function J(r){return Object.keys(r||{}).reduce(function(t,e){return t+(e+": ")+r[e]+";"},"")}function Q(t){return t.size!==D.size||t.x!==D.x||t.y!==D.y||t.rotate!==D.rotate||t.flipX||t.flipY}function Z(t){var e=t.transform,r=t.containerWidth,a=t.iconWidth;return{outer:{transform:"translate("+r/2+" 256)"},inner:{transform:"translate("+32*e.x+", "+32*e.y+") "+" "+("scale("+e.size/16*(e.flipX?-1:1)+", "+e.size/16*(e.flipY?-1:1)+") ")+" "+("rotate("+e.rotate+" 0 0)")},path:{transform:"translate("+a/2*-1+" -256)"}}}var $={x:0,y:0,width:"100%",height:"100%"},tt=function(t){var e=t.children,r=t.attributes,a=t.main,n=t.mask,i=t.transform,o=a.width,s=a.icon,l=n.width,f=n.icon,c=Z({transform:i,containerWidth:l,iconWidth:o}),u={tag:"rect",attributes:E({},$,{fill:"white"})},m={tag:"g",attributes:E({},c.inner),children:[{tag:"path",attributes:E({},s.attributes,c.path,{fill:"black"})}]},d={tag:"g",attributes:E({},c.outer),children:[m]},g="mask-"+q(),h="clip-"+q(),p={tag:"defs",children:[{tag:"clipPath",attributes:{id:h},children:[f]},{tag:"mask",attributes:E({},$,{id:g,maskUnits:"userSpaceOnUse",maskContentUnits:"userSpaceOnUse"}),children:[u,d]}]};return e.push(p,{tag:"rect",attributes:E({fill:"currentColor","clip-path":"url(#"+h+")",mask:"url(#"+g+")"},$)}),{children:e,attributes:r}},et=function(t){var e=t.children,r=t.attributes,a=t.main,n=t.transform,i=J(t.styles);if(0"+o.map(Ct).join("")+""}var At=function(){};function Nt(t){return"string"==typeof(t.getAttribute?t.getAttribute(A):null)}var zt={replace:function(t){var e=t[0],r=t[1].map(function(t){return Ct(t)}).join("\n");if(e.parentNode&&e.outerHTML)e.outerHTML=r+(T.keepOriginalSource&&"svg"!==e.tagName.toLowerCase()?"\x3c!-- "+e.outerHTML+" --\x3e":"");else if(e.parentNode){var a=document.createElement("span");e.parentNode.replaceChild(a,e),a.outerHTML=r}},nest:function(t){var e=t[0],r=t[1];if(~V(e).indexOf(T.replacementClass))return zt.replace(t);var a=new RegExp(T.familyPrefix+"-.*");delete r[0].attributes.style;var n=r[0].attributes.class.split(" ").reduce(function(t,e){return e===T.replacementClass||e.match(a)?t.toSvg.push(e):t.toNode.push(e),t},{toNode:[],toSvg:[]});r[0].attributes.class=n.toSvg.join(" ");var i=r.map(function(t){return Ct(t)}).join("\n");e.setAttribute("class",n.toNode.join(" ")),e.setAttribute(A,""),e.innerHTML=i}};function Mt(r,t){var a="function"==typeof t?t:At;0===r.length?a():(m.requestAnimationFrame||function(t){return t()})(function(){var t=!0===T.autoReplaceSvg?zt.replace:zt[T.autoReplaceSvg]||zt.replace,e=ct.begin("mutate");r.map(t),e(),a()})}var St=!1;var Lt=null;function Et(t){if(s&&T.observeMutations){var n=t.treeCallback,i=t.nodeCallback,o=t.pseudoElementsCallback,e=t.observeMutationsRoot,r=void 0===e?d.body:e;Lt=new s(function(t){St||U(t).forEach(function(t){if("childList"===t.type&&0li{position:relative}.fa-li{left:-2em;position:absolute;text-align:center;width:2em;line-height:inherit}.fa-border{border:solid .08em #eee;border-radius:.1em;padding:.2em .25em .15em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left,.fab.fa-pull-left,.fal.fa-pull-left,.far.fa-pull-left,.fas.fa-pull-left{margin-right:.3em}.fa.fa-pull-right,.fab.fa-pull-right,.fal.fa-pull-right,.far.fa-pull-right,.fas.fa-pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.fa-rotate-90{-webkit-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-webkit-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-webkit-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-webkit-transform:scale(-1,1);transform:scale(-1,1)}.fa-flip-vertical{-webkit-transform:scale(1,-1);transform:scale(1,-1)}.fa-flip-horizontal.fa-flip-vertical{-webkit-transform:scale(-1,-1);transform:scale(-1,-1)}:root .fa-flip-horizontal,:root .fa-flip-vertical,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-rotate-90{-webkit-filter:none;filter:none}.fa-stack{display:inline-block;height:2em;position:relative;width:2em}.fa-stack-1x,.fa-stack-2x{bottom:0;left:0;margin:auto;position:absolute;right:0;top:0}.svg-inline--fa.fa-stack-1x{height:1em;width:1em}.svg-inline--fa.fa-stack-2x{height:2em;width:2em}.fa-inverse{color:#fff}.sr-only{border:0;clip:rect(0,0,0,0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.sr-only-focusable:active,.sr-only-focusable:focus{clip:auto;height:auto;margin:0;overflow:visible;position:static;width:auto}";if("fa"!==e||r!==t){var n=new RegExp("\\.fa\\-","g"),i=new RegExp("\\."+t,"g");a=a.replace(n,"."+e+"-").replace(i,"."+r)}return a};function ae(t){return{found:!0,width:t[0],height:t[1],icon:{tag:"path",attributes:{fill:"currentColor",d:t.slice(4)[0]}}}}function ne(){T.autoAddCss&&!fe&&(W(re()),fe=!0)}function ie(e,t){return Object.defineProperty(e,"abstract",{get:t}),Object.defineProperty(e,"html",{get:function(){return e.abstract.map(function(t){return Ct(t)})}}),Object.defineProperty(e,"node",{get:function(){if(c){var t=d.createElement("div");return t.innerHTML=e.html,t.children}}}),e}function oe(t){var e=t.prefix,r=void 0===e?"fa":e,a=t.iconName;if(a)return kt(le.definitions,r,a)||kt(I.styles,r,a)}var se,le=new(function(){function t(){S(this,t),this.definitions={}}return L(t,[{key:"add",value:function(){for(var e=this,t=arguments.length,r=Array(t),a=0;a + + + + 500px + + + + Accessible Icon + + + + Accusoft + + + + App.net + + + + Adversal + + + + affiliatetheme + + + + Algolia + + + + Alipay + + + + Amazon + + + + Amazon Pay + + + + Amilia + + + + Android + + + + AngelList + + + + Angry Creative + + + + Angular + + + + App Store + + + + iOS App Store + + + + Apper Systems AB + + + + Apple + + + + Apple Pay + + + + Asymmetrik, Ltd. + + + + Audible + + + + Autoprefixer + + + + avianex + + + + Aviato + + + + Amazon Web Services (AWS) + + + + Bandcamp + + + + Behance + + + + Behance Square + + + + BIMobject + + + + Bitbucket + + + + Bitcoin + + + + Bity + + + + Font Awesome Black Tie + + + + BlackBerry + + + + Blogger + + + + Blogger B + + + + Bluetooth + + + + Bluetooth + + + + BTC + + + + Büromöbel-Experte GmbH & Co. KG. + + + + BuySellAds + + + + Amazon Pay Credit Card + + + + American Express Credit Card + + + + Apple Pay Credit Card + + + + Diner's Club Credit Card + + + + Discover Credit Card + + + + JCB Credit Card + + + + MasterCard Credit Card + + + + Paypal Credit Card + + + + Stripe Credit Card + + + + Visa Credit Card + + + + Centercode + + + + Chrome + + + + cloudscale.ch + + + + Cloudsmith + + + + cloudversify + + + + Codepen + + + + Codie Pie + + + + Connect Develop + + + + Contao + + + + cPanel + + + + Creative Commons + + + + Creative Commons Attribution + + + + Creative Commons Noncommercial + + + + Creative Commons Noncommercial (Euro Sign) + + + + Creative Commons Noncommercial (Yen Sign) + + + + Creative Commons No Derivative Works + + + + Creative Commons Public Domain + + + + Creative Commons Public Domain Alternate + + + + Creative Commons Remix + + + + Creative Commons Share Alike + + + + Creative Commons Sampling + + + + Creative Commons Sampling + + + + + Creative Commons Share + + + + CSS 3 Logo + + + + Alternate CSS3 Logo + + + + Cuttlefish + + + + Dungeons & Dragons + + + + DashCube + + + + Delicious Logo + + + + deploy.dog + + + + Deskpro + + + + deviantART + + + + Digg Logo + + + + Digital Ocean + + + + Discord + + + + Discourse + + + + DocHub + + + + Docker + + + + Draft2digital + + + + Dribbble + + + + Dribbble Square + + + + Dropbox + + + + Drupal Logo + + + + Dyalog + + + + Earlybirds + + + + eBay + + + + Edge Browser + + + + Elementor + + + + Ello + + + + Ember + + + + Galactic Empire + + + + Envira Gallery + + + + Erlang + + + + Ethereum + + + + Etsy + + + + ExpeditedSSL + + + + Facebook + + + + Facebook F + + + + Facebook Messenger + + + + Facebook Square + + + + Firefox + + + + First Order + + + + Alternate First Order + + + + firstdraft + + + + Flickr + + + + Flipboard + + + + Fly + + + + Font Awesome + + + + Alternate Font Awesome + + + + Font Awesome Flag + + + + Font Awesome Full Logo + + + + Fonticons + + + + Fonticons Fi + + + + Fort Awesome + + + + Alternate Fort Awesome + + + + Forumbee + + + + Foursquare + + + + Free Code Camp + + + + FreeBSD + + + + Fulcrum + + + + Galactic Republic + + + + Galactic Senate + + + + Get Pocket + + + + GG Currency + + + + GG Currency Circle + + + + Git + + + + Git Square + + + + GitHub + + + + Alternate GitHub + + + + GitHub Square + + + + GitKraken + + + + GitLab + + + + Gitter + + + + Glide + + + + Glide G + + + + Gofore + + + + Goodreads + + + + Goodreads G + + + + Google Logo + + + + Google Drive + + + + Google Play + + + + Google Plus + + + + Google Plus G + + + + Google Plus Square + + + + Google Wallet + + + + Gratipay (Gittip) + + + + Grav + + + + Gripfire, Inc. + + + + Grunt + + + + Gulp + + + + Hacker News + + + + Hacker News Square + + + + Hackerrank + + + + Hips + + + + HireAHelper + + + + Hooli + + + + Hornbill + + + + Hotjar + + + + Houzz + + + + HTML 5 Logo + + + + HubSpot + + + + IMDB + + + + Instagram + + + + Internet-explorer + + + + ioxhost + + + + iTunes + + + + Itunes Note + + + + Java + + + + Jedi Order + + + + Jenkis + + + + Joget + + + + Joomla Logo + + + + JavaScript (JS) + + + + JavaScript (JS) Square + + + + jsFiddle + + + + Kaggle + + + + Keybase + + + + KeyCDN + + + + Kickstarter + + + + Kickstarter K + + + + KORVUE + + + + Laravel + + + + last.fm + + + + last.fm Square + + + + Leanpub + + + + Less + + + + Line + + + + LinkedIn + + + + LinkedIn In + + + + Linode + + + + Linux + + + + lyft + + + + Magento + + + + Mailchimp + + + + Mandalorian + + + + Markdown + + + + Mastodon + + + + MaxCDN + + + + MedApps + + + + Medium + + + + Medium M + + + + MRT + + + + Meetup + + + + Megaport + + + + Microsoft + + + + Mix + + + + Mixcloud + + + + Mizuni + + + + MODX + + + + Monero + + + + Napster + + + + Neos + + + + Nimblr + + + + Nintendo Switch + + + + Node.js + + + + Node.js JS + + + + npm + + + + NS8 + + + + Nutritionix + + + + Odnoklassniki + + + + Odnoklassniki Square + + + + Old Republic + + + + OpenCart + + + + OpenID + + + + Opera + + + + Optin Monster + + + + Open Source Initiative + + + + page4 Corporation + + + + Pagelines + + + + Palfed + + + + Patreon + + + + Paypal + + + + Periscope + + + + Phabricator + + + + Phoenix Framework + + + + Phoenix Squadron + + + + PHP + + + + Pied Piper Logo + + + + Alternate Pied Piper Logo + + + + Pied Piper-hat + + + + Pied Piper PP Logo (Old) + + + + Pinterest + + + + Pinterest P + + + + Pinterest Square + + + + PlayStation + + + + Product Hunt + + + + Pushed + + + + Python + + + + QQ + + + + QuinScape + + + + Quora + + + + R Project + + + + Ravelry + + + + React + + + + ReadMe + + + + Rebel Alliance + + + + red river + + + + reddit Logo + + + + reddit Alien + + + + reddit Square + + + + Rendact + + + + Renren + + + + replyd + + + + Researchgate + + + + Resolving + + + + Rev.io + + + + Rocket.Chat + + + + Rockrms + + + + Safari + + + + Sass + + + + SCHLIX + + + + Scribd + + + + Searchengin + + + + Sellcast + + + + Sellsy + + + + Servicestack + + + + Shirts in Bulk + + + + Shopware + + + + SimplyBuilt + + + + SISTRIX + + + + Sith + + + + skyatlas + + + + Skype + + + + Slack Logo + + + + Slack Hashtag + + + + Slideshare + + + + Snapchat + + + + Snapchat Ghost + + + + Snapchat Square + + + + SoundCloud + + + + Speakap + + + + Spotify + + + + Squarespace + + + + Stack Exchange + + + + Stack Overflow + + + + StayLinked + + + + Steam + + + + Steam Square + + + + Steam Symbol + + + + Sticker Mule + + + + Strava + + + + Stripe + + + + Stripe S + + + + Studio Vinari + + + + StumbleUpon Logo + + + + StumbleUpon Circle + + + + Superpowers + + + + Supple + + + + TeamSpeak + + + + Telegram + + + + Telegram Plane + + + + Tencent Weibo + + + + The Red Yeti + + + + Themeco + + + + ThemeIsle + + + + Trade Federation + + + + Trello + + + + TripAdvisor + + + + Tumblr + + + + Tumblr Square + + + + Twitch + + + + Twitter + + + + Twitter Square + + + + Typo3 + + + + Uber + + + + UIkit + + + + Uniregistry + + + + Untappd + + + + USB + + + + us-Sunnah Foundation + + + + Vaadin + + + + Viacoin + + + + Viadeo + + + + Viadeo Square + + + + Viber + + + + Vimeo + + + + Vimeo Square + + + + Vimeo + + + + Vine + + + + VK + + + + VNV + + + + Vue.js + + + + Weebly + + + + Weibo + + + + Weixin (WeChat) + + + + What's App + + + + What's App Square + + + + WHMCS + + + + Wikipedia W + + + + Windows + + + + Wix + + + + Wolf Pack-battalion + + + + WordPress Logo + + + + Wordpress Simple + + + + WPBeginner + + + + WPExplorer + + + + WPForms + + + + Xbox + + + + Xing + + + + Xing Square + + + + Y Combinator + + + + Yahoo Logo + + + + Yandex + + + + Yandex International + + + + Yelp + + + + Yoast + + + + YouTube + + + + YouTube Square + + + + Zhihu + + + diff --git a/public/assets/lib/@fortawesome/fontawesome-free/sprites/regular.svg b/public/assets/lib/@fortawesome/fontawesome-free/sprites/regular.svg new file mode 100755 index 0000000..8fc01b9 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/sprites/regular.svg @@ -0,0 +1,615 @@ + + + + + Address Book + + + + Address Card + + + + Angry Face + + + + Alternate Arrow Circle Down + + + + Alternate Arrow Circle Left + + + + Alternate Arrow Circle Right + + + + Alternate Arrow Circle Up + + + + bell + + + + Bell Slash + + + + bookmark + + + + Building + + + + Calendar + + + + Alternate Calendar + + + + Calendar Check + + + + Calendar Minus + + + + Calendar Plus + + + + Calendar Times + + + + Caret Square Down + + + + Caret Square Left + + + + Caret Square Right + + + + Caret Square Up + + + + Bar Chart + + + + Check Circle + + + + Check Square + + + + Circle + + + + Clipboard + + + + Clock + + + + Clone + + + + Closed Captioning + + + + comment + + + + Alternate Comment + + + + Comment Dots + + + + comments + + + + Compass + + + + Copy + + + + Copyright + + + + Credit Card + + + + Dizzy Face + + + + Dot Circle + + + + Edit + + + + Envelope + + + + Envelope Open + + + + Eye + + + + Eye Slash + + + + File + + + + Alternate File + + + + Archive File + + + + Audio File + + + + Code File + + + + Excel File + + + + Image File + + + + PDF File + + + + Powerpoint File + + + + Video File + + + + Word File + + + + flag + + + + Flushed Face + + + + Folder + + + + Folder Open + + + + Font Awesome Full Logo + + + + Frowning Face + + + + Frowning Face With Open Mouth + + + + Futbol + + + + Gem + + + + Grimacing Face + + + + Grinning Face + + + + Alternate Grinning Face + + + + Grinning Face With Smiling Eyes + + + + Grinning Face With Sweat + + + + Smiling Face With Heart-Eyes + + + + Grinning Squinting Face + + + + Rolling on the Floor Laughing + + + + Star-Struck + + + + Face With Tears of Joy + + + + Face With Tongue + + + + Squinting Face With Tongue + + + + Winking Face With Tongue + + + + Grinning Winking Face + + + + Lizard (Hand) + + + + Paper (Hand) + + + + Peace (Hand) + + + + Hand Pointing Down + + + + Hand Pointing Left + + + + Hand Pointing Right + + + + Hand Pointing Up + + + + Pointer (Hand) + + + + Rock (Hand) + + + + Scissors (Hand) + + + + Spock (Hand) + + + + Handshake + + + + HDD + + + + Heart + + + + hospital + + + + Hourglass + + + + Identification Badge + + + + Identification Card + + + + Image + + + + Images + + + + Keyboard + + + + Kissing Face + + + + Kissing Face With Smiling Eyes + + + + Face Blowing a Kiss + + + + Grinning Face With Big Eyes + + + + Laugh Face with Beaming Eyes + + + + Laughing Squinting Face + + + + Laughing Winking Face + + + + Lemon + + + + Life Ring + + + + Lightbulb + + + + Alternate List + + + + Map + + + + Neutral Face + + + + Face Without Mouth + + + + Face With Rolling Eyes + + + + Minus Square + + + + Alternate Money Bill + + + + Moon + + + + Newspaper + + + + Object Group + + + + Object Ungroup + + + + Paper Plane + + + + Pause Circle + + + + Play Circle + + + + Plus Square + + + + Question Circle + + + + Registered Trademark + + + + Crying Face + + + + Loudly Crying Face + + + + Save + + + + Share Square + + + + Smiling Face + + + + Beaming Face With Smiling Eyes + + + + Winking Face + + + + Snowflake + + + + Square + + + + Star + + + + star-half + + + + Sticky Note + + + + Stop Circle + + + + Sun + + + + Hushed Face + + + + thumbs-down + + + + thumbs-up + + + + Times Circle + + + + Tired Face + + + + Alternate Trash + + + + User + + + + User Circle + + + + Window Close + + + + Window Maximize + + + + Window Minimize + + + + Window Restore + + + diff --git a/public/assets/lib/@fortawesome/fontawesome-free/sprites/solid.svg b/public/assets/lib/@fortawesome/fontawesome-free/sprites/solid.svg new file mode 100755 index 0000000..08bbfe1 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/sprites/solid.svg @@ -0,0 +1,3251 @@ + + + + + + Address Book + + + + Address Card + + + + adjust + + + + Air Freshener + + + + align-center + + + + align-justify + + + + align-left + + + + align-right + + + + Allergies + + + + ambulance + + + + American Sign Language Interpreting + + + + Anchor + + + + Angle Double Down + + + + Angle Double Left + + + + Angle Double Right + + + + Angle Double Up + + + + angle-down + + + + angle-left + + + + angle-right + + + + angle-up + + + + Angry Face + + + + Ankh + + + + Fruit Apple + + + + Archive + + + + Archway + + + + Alternate Arrow Circle Down + + + + Alternate Arrow Circle Left + + + + Alternate Arrow Circle Right + + + + Alternate Arrow Circle Up + + + + Arrow Circle Down + + + + Arrow Circle Left + + + + Arrow Circle Right + + + + Arrow Circle Up + + + + arrow-down + + + + arrow-left + + + + arrow-right + + + + arrow-up + + + + Alternate Arrows + + + + Alternate Arrows Horizontal + + + + Alternate Arrows Vertical + + + + Assistive Listening Systems + + + + asterisk + + + + At + + + + Atlas + + + + Atom + + + + Audio Description + + + + Award + + + + Backspace + + + + backward + + + + Balance Scale + + + + ban + + + + Band-Aid + + + + barcode + + + + Bars + + + + Baseball Ball + + + + Basketball Ball + + + + Bath + + + + Battery Empty + + + + Battery Full + + + + Battery 1/2 Full + + + + Battery 1/4 Full + + + + Battery 3/4 Full + + + + Bed + + + + beer + + + + bell + + + + Bell Slash + + + + Bezier Curve + + + + Bible + + + + Bicycle + + + + Binoculars + + + + Birthday Cake + + + + Blender + + + + Blind + + + + bold + + + + Lightning Bolt + + + + Bomb + + + + Bone + + + + Bong + + + + book + + + + Book Open + + + + Book Reader + + + + bookmark + + + + Bowling Ball + + + + Box + + + + Box Open + + + + Boxes + + + + Braille + + + + Brain + + + + Briefcase + + + + Medical Briefcase + + + + Broadcast Tower + + + + Broom + + + + Brush + + + + Bug + + + + Building + + + + bullhorn + + + + Bullseye + + + + Burn + + + + Bus + + + + Bus Alt + + + + Business Time + + + + Calculator + + + + Calendar + + + + Alternate Calendar + + + + Calendar Check + + + + Calendar Minus + + + + Calendar Plus + + + + Calendar Times + + + + camera + + + + Retro Camera + + + + Cannabis + + + + Capsules + + + + Car + + + + Car Alt + + + + Car Battery + + + + Car Crash + + + + Car Side + + + + Caret Down + + + + Caret Left + + + + Caret Right + + + + Caret Square Down + + + + Caret Square Left + + + + Caret Square Right + + + + Caret Square Up + + + + Caret Up + + + + Shopping Cart Arrow Down + + + + Add to Shopping Cart + + + + certificate + + + + Chalkboard + + + + Chalkboard Teacher + + + + Charging Station + + + + Area Chart + + + + Bar Chart + + + + Line Chart + + + + Pie Chart + + + + Check + + + + Check Circle + + + + Check Double + + + + Check Square + + + + Chess + + + + Chess Bishop + + + + Chess Board + + + + Chess King + + + + Chess Knight + + + + Chess Pawn + + + + Chess Queen + + + + Chess Rook + + + + Chevron Circle Down + + + + Chevron Circle Left + + + + Chevron Circle Right + + + + Chevron Circle Up + + + + chevron-down + + + + chevron-left + + + + chevron-right + + + + chevron-up + + + + Child + + + + Church + + + + Circle + + + + Circle Notched + + + + City + + + + Clipboard + + + + Clipboard Check + + + + Clipboard List + + + + Clock + + + + Clone + + + + Closed Captioning + + + + Cloud + + + + Alternate Cloud Download + + + + Alternate Cloud Upload + + + + Cocktail + + + + Code + + + + Code Branch + + + + Coffee + + + + cog + + + + cogs + + + + Coins + + + + Columns + + + + comment + + + + Alternate Comment + + + + Comment Dollar + + + + Comment Dots + + + + Comment Slash + + + + comments + + + + Comments Dollar + + + + Compact Disc + + + + Compass + + + + Compress + + + + Concierge Bell + + + + Cookie + + + + Cookie Bite + + + + Copy + + + + Copyright + + + + Couch + + + + Credit Card + + + + crop + + + + Alternate Crop + + + + Cross + + + + Crosshairs + + + + Crow + + + + Crown + + + + Cube + + + + Cubes + + + + Cut + + + + Database + + + + Deaf + + + + Desktop + + + + Dharmachakra + + + + Diagnoses + + + + Dice + + + + Dice Five + + + + Dice Four + + + + Dice One + + + + Dice Six + + + + Dice Three + + + + Dice Two + + + + Digital Tachograph + + + + Directions + + + + Divide + + + + Dizzy Face + + + + DNA + + + + Dollar Sign + + + + Dolly + + + + Dolly Flatbed + + + + + Door Closed + + + + Door Open + + + + Dot Circle + + + + Dove + + + + Download + + + + Drafting Compass + + + + Draw Polygon + + + + Drum + + + + Drum Steelpan + + + + Dumbbell + + + + Edit + + + + eject + + + + Horizontal Ellipsis + + + + Vertical Ellipsis + + + + Envelope + + + + Envelope Open + + + + Envelope Open-text + + + + Envelope Square + + + + Equals + + + + eraser + + + + Euro Sign + + + + Alternate Exchange + + + + exclamation + + + + Exclamation Circle + + + + Exclamation Triangle + + + + Expand + + + + Alternate Expand Arrows + + + + Alternate External Link + + + + Alternate External Link Square + + + + Eye + + + + Eye Dropper + + + + Eye Slash + + + + fast-backward + + + + fast-forward + + + + Fax + + + + Feather + + + + Feather Alt + + + + Female + + + + fighter-jet + + + + File + + + + Alternate File + + + + Archive File + + + + Audio File + + + + Code File + + + + File Contract + + + + File Download + + + + Excel File + + + + File Export + + + + Image File + + + + File Import + + + + File Invoice + + + + File Invoice with US Dollar + + + + Medical File + + + + Alternate Medical File + + + + PDF File + + + + Powerpoint File + + + + File Prescription + + + + File Signature + + + + File Upload + + + + Video File + + + + Word File + + + + Fill + + + + Fill Drip + + + + Film + + + + Filter + + + + Fingerprint + + + + fire + + + + fire-extinguisher + + + + First Aid + + + + Fish + + + + flag + + + + flag-checkered + + + + Flask + + + + Flushed Face + + + + Folder + + + + Folder Minus + + + + Folder Open + + + + Folder Plus + + + + font + + + + Font Awesome Full Logo + + + + Football Ball + + + + forward + + + + Frog + + + + Frowning Face + + + + Frowning Face With Open Mouth + + + + Funnel Dollar + + + + Futbol + + + + Gamepad + + + + Gas Pump + + + + Gavel + + + + Gem + + + + Genderless + + + + gift + + + + Martini Glass + + + + Glass Martini-alt + + + + Glasses + + + + Globe + + + + Globe with Africa shown + + + + Globe with Americas shown + + + + Globe with Asia shown + + + + Golf Ball + + + + Gopuram + + + + Graduation Cap + + + + Greater Than + + + + Greater Than Equal To + + + + Grimacing Face + + + + Grinning Face + + + + Alternate Grinning Face + + + + Grinning Face With Smiling Eyes + + + + Grinning Face With Sweat + + + + Smiling Face With Heart-Eyes + + + + Grinning Squinting Face + + + + Rolling on the Floor Laughing + + + + Star-Struck + + + + Face With Tears of Joy + + + + Face With Tongue + + + + Squinting Face With Tongue + + + + Winking Face With Tongue + + + + Grinning Winking Face + + + + Grip Horizontal + + + + Grip Vertical + + + + H Square + + + + Hamsa + + + + Hand Holding + + + + Hand Holding Heart + + + + Hand Holding US Dollar + + + + Lizard (Hand) + + + + Paper (Hand) + + + + Peace (Hand) + + + + Hand Pointing Down + + + + Hand Pointing Left + + + + Hand Pointing Right + + + + Hand Pointing Up + + + + Pointer (Hand) + + + + Rock (Hand) + + + + Scissors (Hand) + + + + Spock (Hand) + + + + Hands + + + + Helping Hands + + + + Handshake + + + + Hashtag + + + + Haykal + + + + HDD + + + + heading + + + + headphones + + + + Headphones Alt + + + + Headset + + + + Heart + + + + Heartbeat + + + + Helicopter + + + + Highlighter + + + + History + + + + Hockey Puck + + + + home + + + + hospital + + + + Alternate Hospital + + + + Hospital Symbol + + + + Hot Tub + + + + Hotel + + + + Hourglass + + + + Hourglass End + + + + Hourglass Half + + + + Hourglass Start + + + + I Beam Cursor + + + + Identification Badge + + + + Identification Card + + + + Alternate Identification Card + + + + Image + + + + Images + + + + inbox + + + + Indent + + + + Industry + + + + Infinity + + + + Info + + + + Info Circle + + + + italic + + + + Jedi + + + + Joint + + + + Journal of the Whills + + + + Kaaba + + + + key + + + + Keyboard + + + + Khanda + + + + Kissing Face + + + + Kissing Face With Smiling Eyes + + + + Face Blowing a Kiss + + + + Kiwi Bird + + + + Landmark + + + + Language + + + + Laptop + + + + Laptop Code + + + + Grinning Face With Big Eyes + + + + Laugh Face with Beaming Eyes + + + + Laughing Squinting Face + + + + Laughing Winking Face + + + + Layer Group + + + + leaf + + + + Lemon + + + + Less Than + + + + Less Than Equal To + + + + Alternate Level Down + + + + Alternate Level Up + + + + Life Ring + + + + Lightbulb + + + + Link + + + + Turkish Lira Sign + + + + List + + + + Alternate List + + + + list-ol + + + + list-ul + + + + location-arrow + + + + lock + + + + Lock Open + + + + Alternate Long Arrow Down + + + + Alternate Long Arrow Left + + + + Alternate Long Arrow Right + + + + Alternate Long Arrow Up + + + + Low Vision + + + + Luggage Cart + + + + magic + + + + magnet + + + + Mail Bulk + + + + Male + + + + Map + + + + Map Marked + + + + Map Marked-alt + + + + map-marker + + + + Alternate Map Marker + + + + Map Pin + + + + Map Signs + + + + Marker + + + + Mars + + + + Mars Double + + + + Mars Stroke + + + + Mars Stroke Horizontal + + + + Mars Stroke Vertical + + + + Medal + + + + medkit + + + + Neutral Face + + + + Face Without Mouth + + + + Face With Rolling Eyes + + + + Memory + + + + Menorah + + + + Mercury + + + + Microchip + + + + microphone + + + + Alternate Microphone + + + + Alternate Microphone Slash + + + + Microphone Slash + + + + Microscope + + + + minus + + + + Minus Circle + + + + Minus Square + + + + Mobile Phone + + + + Alternate Mobile + + + + Money Bill + + + + Alternate Money Bill + + + + Wavy Money Bill + + + + Alternate Wavy Money Bill + + + + Money Check + + + + Alternate Money Check + + + + Monument + + + + Moon + + + + Mortar Pestle + + + + Mosque + + + + Motorcycle + + + + Mouse Pointer + + + + Music + + + + Neuter + + + + Newspaper + + + + Not Equal + + + + Medical Notes + + + + Object Group + + + + Object Ungroup + + + + Oil Can + + + + Om + + + + Outdent + + + + Paint Brush + + + + Paint Roller + + + + Palette + + + + Pallet + + + + Paper Plane + + + + Paperclip + + + + Parachute Box + + + + paragraph + + + + Parking + + + + Passport + + + + Pastafarianism + + + + Paste + + + + pause + + + + Pause Circle + + + + Paw + + + + Peace + + + + Pen + + + + Alternate Pen + + + + Pen Fancy + + + + Pen Nib + + + + Pen Square + + + + Alternate Pencil + + + + Pencil Ruler + + + + People Carry + + + + Percent + + + + Percentage + + + + Phone + + + + Phone Slash + + + + Phone Square + + + + Phone Volume + + + + Piggy Bank + + + + Pills + + + + Place Of Worship + + + + plane + + + + Plane Arrival + + + + Plane Departure + + + + play + + + + Play Circle + + + + Plug + + + + plus + + + + Plus Circle + + + + Plus Square + + + + Podcast + + + + Poll + + + + Poll H + + + + Poo + + + + Poop + + + + Portrait + + + + Pound Sign + + + + Power Off + + + + Pray + + + + Praying Hands + + + + Prescription + + + + Prescription Bottle + + + + Alternate Prescription Bottle + + + + print + + + + Procedures + + + + Project Diagram + + + + Puzzle Piece + + + + qrcode + + + + Question + + + + Question Circle + + + + Quidditch + + + + quote-left + + + + quote-right + + + + Quran + + + + random + + + + Receipt + + + + Recycle + + + + Redo + + + + Alternate Redo + + + + Registered Trademark + + + + Reply + + + + reply-all + + + + Retweet + + + + Ribbon + + + + road + + + + Robot + + + + rocket + + + + Route + + + + rss + + + + RSS Square + + + + Ruble Sign + + + + Ruler + + + + Ruler Combined + + + + Ruler Horizontal + + + + Ruler Vertical + + + + Indian Rupee Sign + + + + Crying Face + + + + Loudly Crying Face + + + + Save + + + + School + + + + Screwdriver + + + + Search + + + + Search Dollar + + + + Search Location + + + + Search Minus + + + + Search Plus + + + + Seedling + + + + Server + + + + Shapes + + + + Share + + + + Alternate Share + + + + Alternate Share Square + + + + Share Square + + + + Shekel Sign + + + + Alternate Shield + + + + Ship + + + + Shipping Fast + + + + Shoe Prints + + + + Shopping Bag + + + + Shopping Basket + + + + shopping-cart + + + + Shower + + + + Shuttle Van + + + + Sign + + + + Alternate Sign In + + + + Sign Language + + + + Alternate Sign Out + + + + signal + + + + Signature + + + + Sitemap + + + + Skull + + + + Horizontal Sliders + + + + Smiling Face + + + + Beaming Face With Smiling Eyes + + + + Winking Face + + + + Smoking + + + + Smoking Ban + + + + Snowflake + + + + Socks + + + + Solar Panel + + + + Sort + + + + Sort Alpha Down + + + + Sort Alpha Up + + + + Sort Amount Down + + + + Sort Amount Up + + + + Sort Down (Descending) + + + + Sort Numeric Down + + + + Sort Numeric Up + + + + Sort Up (Ascending) + + + + Spa + + + + Space Shuttle + + + + Spinner + + + + Splotch + + + + Spray Can + + + + Square + + + + Square Full + + + + Square Root Alternate + + + + Stamp + + + + Star + + + + Star and Crescent + + + + star-half + + + + Alternate Star Half + + + + Star of David + + + + Star of Life + + + + step-backward + + + + step-forward + + + + Stethoscope + + + + Sticky Note + + + + stop + + + + Stop Circle + + + + Stopwatch + + + + Store + + + + Alternate Store + + + + Stream + + + + Street View + + + + Strikethrough + + + + Stroopwafel + + + + subscript + + + + Subway + + + + Suitcase + + + + Suitcase Rolling + + + + Sun + + + + superscript + + + + Hushed Face + + + + Swatchbook + + + + Swimmer + + + + Swimming Pool + + + + Synagogue + + + + Sync + + + + Alternate Sync + + + + Syringe + + + + table + + + + Table Tennis + + + + tablet + + + + Alternate Tablet + + + + Tablets + + + + Alternate Tachometer + + + + tag + + + + tags + + + + Tape + + + + Tasks + + + + Taxi + + + + Teeth + + + + Teeth Open + + + + Terminal + + + + text-height + + + + text-width + + + + th + + + + th-large + + + + th-list + + + + Theater Masks + + + + Thermometer + + + + Thermometer Empty + + + + Thermometer Full + + + + Thermometer 1/2 Full + + + + Thermometer 1/4 Full + + + + Thermometer 3/4 Full + + + + thumbs-down + + + + thumbs-up + + + + Thumbtack + + + + Alternate Ticket + + + + Times + + + + Times Circle + + + + tint + + + + Tint Slash + + + + Tired Face + + + + Toggle Off + + + + Toggle On + + + + Toolbox + + + + Tooth + + + + Torah + + + + Torii Gate + + + + Trademark + + + + Traffic Light + + + + Train + + + + Transgender + + + + Alternate Transgender + + + + Trash + + + + Alternate Trash + + + + Tree + + + + trophy + + + + truck + + + + Truck Loading + + + + Truck Monster + + + + Truck Moving + + + + Truck Side + + + + T-Shirt + + + + TTY + + + + Television + + + + Umbrella + + + + Umbrella Beach + + + + Underline + + + + Undo + + + + Alternate Undo + + + + Universal Access + + + + University + + + + unlink + + + + unlock + + + + Alternate Unlock + + + + Upload + + + + User + + + + Alternate User + + + + Alternate User Slash + + + + User Astronaut + + + + User Check + + + + User Circle + + + + User Clock + + + + User Cog + + + + User Edit + + + + User Friends + + + + User Graduate + + + + User Lock + + + + user-md + + + + User Minus + + + + User Ninja + + + + User Plus + + + + User Secret + + + + User Shield + + + + User Slash + + + + User Tag + + + + User Tie + + + + Remove User + + + + Users + + + + Users Cog + + + + Utensil Spoon + + + + Utensils + + + + Vector Square + + + + Venus + + + + Venus Double + + + + Venus Mars + + + + Vial + + + + Vials + + + + Video + + + + Video Slash + + + + Vihara + + + + Volleyball Ball + + + + Volume Down + + + + Volume Off + + + + Volume Up + + + + Walking + + + + Wallet + + + + Warehouse + + + + Weight + + + + Hanging Weight + + + + Wheelchair + + + + WiFi + + + + Window Close + + + + Window Maximize + + + + Window Minimize + + + + Window Restore + + + + Wine Glass + + + + Wine Glass-alt + + + + Won Sign + + + + Wrench + + + + X-Ray + + + + Yen Sign + + + + Yin Yang + + + diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/500px.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/500px.svg new file mode 100755 index 0000000..52d1141 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/500px.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/accessible-icon.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/accessible-icon.svg new file mode 100755 index 0000000..eea0fe1 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/accessible-icon.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/accusoft.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/accusoft.svg new file mode 100755 index 0000000..3a32ec9 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/accusoft.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/adn.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/adn.svg new file mode 100755 index 0000000..2fede6d --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/adn.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/adversal.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/adversal.svg new file mode 100755 index 0000000..ef2c8c0 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/adversal.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/affiliatetheme.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/affiliatetheme.svg new file mode 100755 index 0000000..00f2a9c --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/affiliatetheme.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/algolia.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/algolia.svg new file mode 100755 index 0000000..5d71f7c --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/algolia.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/alipay.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/alipay.svg new file mode 100755 index 0000000..a110616 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/alipay.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/amazon-pay.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/amazon-pay.svg new file mode 100755 index 0000000..708ef41 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/amazon-pay.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/amazon.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/amazon.svg new file mode 100755 index 0000000..e8eccf0 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/amazon.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/amilia.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/amilia.svg new file mode 100755 index 0000000..a6dcbfe --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/amilia.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/android.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/android.svg new file mode 100755 index 0000000..e7d3323 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/android.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/angellist.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/angellist.svg new file mode 100755 index 0000000..cfc5610 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/angellist.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/angrycreative.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/angrycreative.svg new file mode 100755 index 0000000..7a721d4 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/angrycreative.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/angular.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/angular.svg new file mode 100755 index 0000000..a5f3a06 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/angular.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/app-store-ios.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/app-store-ios.svg new file mode 100755 index 0000000..a8e4311 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/app-store-ios.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/app-store.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/app-store.svg new file mode 100755 index 0000000..101e394 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/app-store.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/apper.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/apper.svg new file mode 100755 index 0000000..3dcf96a --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/apper.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/apple-pay.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/apple-pay.svg new file mode 100755 index 0000000..f3f8071 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/apple-pay.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/apple.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/apple.svg new file mode 100755 index 0000000..05f58f9 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/apple.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/asymmetrik.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/asymmetrik.svg new file mode 100755 index 0000000..7b45c0b --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/asymmetrik.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/audible.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/audible.svg new file mode 100755 index 0000000..10545cb --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/audible.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/autoprefixer.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/autoprefixer.svg new file mode 100755 index 0000000..130ed0b --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/autoprefixer.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/avianex.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/avianex.svg new file mode 100755 index 0000000..a03c5a4 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/avianex.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/aviato.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/aviato.svg new file mode 100755 index 0000000..e45ea59 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/aviato.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/aws.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/aws.svg new file mode 100755 index 0000000..07e152d --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/aws.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/bandcamp.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/bandcamp.svg new file mode 100755 index 0000000..de965cf --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/bandcamp.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/behance-square.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/behance-square.svg new file mode 100755 index 0000000..a571546 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/behance-square.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/behance.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/behance.svg new file mode 100755 index 0000000..145be7d --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/behance.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/bimobject.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/bimobject.svg new file mode 100755 index 0000000..0136473 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/bimobject.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/bitbucket.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/bitbucket.svg new file mode 100755 index 0000000..11205be --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/bitbucket.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/bitcoin.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/bitcoin.svg new file mode 100755 index 0000000..9d367ff --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/bitcoin.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/bity.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/bity.svg new file mode 100755 index 0000000..bd0a2b1 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/bity.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/black-tie.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/black-tie.svg new file mode 100755 index 0000000..8b472fa --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/black-tie.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/blackberry.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/blackberry.svg new file mode 100755 index 0000000..34a4855 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/blackberry.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/blogger-b.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/blogger-b.svg new file mode 100755 index 0000000..3614e54 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/blogger-b.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/blogger.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/blogger.svg new file mode 100755 index 0000000..24f09c7 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/blogger.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/bluetooth-b.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/bluetooth-b.svg new file mode 100755 index 0000000..6ecba13 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/bluetooth-b.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/bluetooth.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/bluetooth.svg new file mode 100755 index 0000000..14abca9 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/bluetooth.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/btc.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/btc.svg new file mode 100755 index 0000000..f58cd2b --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/btc.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/buromobelexperte.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/buromobelexperte.svg new file mode 100755 index 0000000..2550305 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/buromobelexperte.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/buysellads.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/buysellads.svg new file mode 100755 index 0000000..210986a --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/buysellads.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/cc-amazon-pay.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/cc-amazon-pay.svg new file mode 100755 index 0000000..549bebc --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/cc-amazon-pay.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/cc-amex.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/cc-amex.svg new file mode 100755 index 0000000..22ffdeb --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/cc-amex.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/cc-apple-pay.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/cc-apple-pay.svg new file mode 100755 index 0000000..a37d38c --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/cc-apple-pay.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/cc-diners-club.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/cc-diners-club.svg new file mode 100755 index 0000000..40f2fdb --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/cc-diners-club.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/cc-discover.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/cc-discover.svg new file mode 100755 index 0000000..028b3dd --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/cc-discover.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/cc-jcb.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/cc-jcb.svg new file mode 100755 index 0000000..22628fe --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/cc-jcb.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/cc-mastercard.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/cc-mastercard.svg new file mode 100755 index 0000000..45891ae --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/cc-mastercard.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/cc-paypal.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/cc-paypal.svg new file mode 100755 index 0000000..78c4491 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/cc-paypal.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/cc-stripe.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/cc-stripe.svg new file mode 100755 index 0000000..ea9d14f --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/cc-stripe.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/cc-visa.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/cc-visa.svg new file mode 100755 index 0000000..ba1957a --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/cc-visa.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/centercode.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/centercode.svg new file mode 100755 index 0000000..ce347e4 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/centercode.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/chrome.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/chrome.svg new file mode 100755 index 0000000..328934f --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/chrome.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/cloudscale.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/cloudscale.svg new file mode 100755 index 0000000..f029314 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/cloudscale.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/cloudsmith.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/cloudsmith.svg new file mode 100755 index 0000000..8d67ff3 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/cloudsmith.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/cloudversify.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/cloudversify.svg new file mode 100755 index 0000000..b99ecdf --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/cloudversify.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/codepen.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/codepen.svg new file mode 100755 index 0000000..4a84af7 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/codepen.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/codiepie.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/codiepie.svg new file mode 100755 index 0000000..5dd8782 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/codiepie.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/connectdevelop.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/connectdevelop.svg new file mode 100755 index 0000000..0d00cf9 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/connectdevelop.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/contao.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/contao.svg new file mode 100755 index 0000000..b66ebdd --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/contao.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/cpanel.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/cpanel.svg new file mode 100755 index 0000000..017b859 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/cpanel.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/creative-commons-by.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/creative-commons-by.svg new file mode 100755 index 0000000..214520b --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/creative-commons-by.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/creative-commons-nc-eu.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/creative-commons-nc-eu.svg new file mode 100755 index 0000000..db8b362 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/creative-commons-nc-eu.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/creative-commons-nc-jp.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/creative-commons-nc-jp.svg new file mode 100755 index 0000000..de608d8 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/creative-commons-nc-jp.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/creative-commons-nc.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/creative-commons-nc.svg new file mode 100755 index 0000000..f60d353 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/creative-commons-nc.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/creative-commons-nd.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/creative-commons-nd.svg new file mode 100755 index 0000000..3c31cd1 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/creative-commons-nd.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/creative-commons-pd-alt.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/creative-commons-pd-alt.svg new file mode 100755 index 0000000..a667c34 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/creative-commons-pd-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/creative-commons-pd.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/creative-commons-pd.svg new file mode 100755 index 0000000..a855e6e --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/creative-commons-pd.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/creative-commons-remix.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/creative-commons-remix.svg new file mode 100755 index 0000000..a85da7d --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/creative-commons-remix.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/creative-commons-sa.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/creative-commons-sa.svg new file mode 100755 index 0000000..12bee0b --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/creative-commons-sa.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/creative-commons-sampling-plus.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/creative-commons-sampling-plus.svg new file mode 100755 index 0000000..95f4f48 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/creative-commons-sampling-plus.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/creative-commons-sampling.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/creative-commons-sampling.svg new file mode 100755 index 0000000..9d527fa --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/creative-commons-sampling.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/creative-commons-share.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/creative-commons-share.svg new file mode 100755 index 0000000..acc1710 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/creative-commons-share.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/creative-commons.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/creative-commons.svg new file mode 100755 index 0000000..453f6be --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/creative-commons.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/css3-alt.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/css3-alt.svg new file mode 100755 index 0000000..ba3cefc --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/css3-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/css3.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/css3.svg new file mode 100755 index 0000000..6c0189e --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/css3.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/cuttlefish.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/cuttlefish.svg new file mode 100755 index 0000000..5305f98 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/cuttlefish.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/d-and-d.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/d-and-d.svg new file mode 100755 index 0000000..28d200c --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/d-and-d.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/dashcube.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/dashcube.svg new file mode 100755 index 0000000..f6df397 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/dashcube.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/delicious.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/delicious.svg new file mode 100755 index 0000000..4aeea98 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/delicious.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/deploydog.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/deploydog.svg new file mode 100755 index 0000000..4a3422b --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/deploydog.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/deskpro.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/deskpro.svg new file mode 100755 index 0000000..454415f --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/deskpro.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/deviantart.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/deviantart.svg new file mode 100755 index 0000000..8a153ed --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/deviantart.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/digg.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/digg.svg new file mode 100755 index 0000000..48c93d1 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/digg.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/digital-ocean.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/digital-ocean.svg new file mode 100755 index 0000000..13a4dd2 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/digital-ocean.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/discord.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/discord.svg new file mode 100755 index 0000000..26ff15c --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/discord.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/discourse.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/discourse.svg new file mode 100755 index 0000000..3960cc1 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/discourse.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/dochub.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/dochub.svg new file mode 100755 index 0000000..4e93f92 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/dochub.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/docker.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/docker.svg new file mode 100755 index 0000000..c4e2e84 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/docker.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/draft2digital.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/draft2digital.svg new file mode 100755 index 0000000..e669460 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/draft2digital.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/dribbble-square.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/dribbble-square.svg new file mode 100755 index 0000000..e247881 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/dribbble-square.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/dribbble.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/dribbble.svg new file mode 100755 index 0000000..035b3e2 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/dribbble.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/dropbox.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/dropbox.svg new file mode 100755 index 0000000..dee1b03 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/dropbox.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/drupal.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/drupal.svg new file mode 100755 index 0000000..95ca470 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/drupal.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/dyalog.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/dyalog.svg new file mode 100755 index 0000000..9951469 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/dyalog.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/earlybirds.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/earlybirds.svg new file mode 100755 index 0000000..e7f7aa7 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/earlybirds.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/ebay.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/ebay.svg new file mode 100755 index 0000000..3e43866 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/ebay.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/edge.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/edge.svg new file mode 100755 index 0000000..efc132b --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/edge.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/elementor.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/elementor.svg new file mode 100755 index 0000000..d6f977e --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/elementor.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/ello.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/ello.svg new file mode 100755 index 0000000..63e0051 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/ello.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/ember.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/ember.svg new file mode 100755 index 0000000..fbd2632 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/ember.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/empire.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/empire.svg new file mode 100755 index 0000000..011acfa --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/empire.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/envira.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/envira.svg new file mode 100755 index 0000000..a818549 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/envira.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/erlang.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/erlang.svg new file mode 100755 index 0000000..981c755 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/erlang.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/ethereum.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/ethereum.svg new file mode 100755 index 0000000..549428c --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/ethereum.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/etsy.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/etsy.svg new file mode 100755 index 0000000..9818050 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/etsy.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/expeditedssl.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/expeditedssl.svg new file mode 100755 index 0000000..312f181 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/expeditedssl.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/facebook-f.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/facebook-f.svg new file mode 100755 index 0000000..56bfbc4 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/facebook-f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/facebook-messenger.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/facebook-messenger.svg new file mode 100755 index 0000000..1ab9707 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/facebook-messenger.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/facebook-square.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/facebook-square.svg new file mode 100755 index 0000000..c78d21d --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/facebook-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/facebook.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/facebook.svg new file mode 100755 index 0000000..f6931b6 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/facebook.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/firefox.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/firefox.svg new file mode 100755 index 0000000..6781cd7 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/firefox.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/first-order-alt.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/first-order-alt.svg new file mode 100755 index 0000000..5ebcf48 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/first-order-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/first-order.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/first-order.svg new file mode 100755 index 0000000..50e8532 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/first-order.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/firstdraft.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/firstdraft.svg new file mode 100755 index 0000000..cc8f5fc --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/firstdraft.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/flickr.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/flickr.svg new file mode 100755 index 0000000..0c34a1d --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/flickr.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/flipboard.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/flipboard.svg new file mode 100755 index 0000000..0ca0561 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/flipboard.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/fly.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/fly.svg new file mode 100755 index 0000000..20d136c --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/fly.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/font-awesome-alt.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/font-awesome-alt.svg new file mode 100755 index 0000000..cb73bfb --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/font-awesome-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/font-awesome-flag.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/font-awesome-flag.svg new file mode 100755 index 0000000..7fb3418 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/font-awesome-flag.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/font-awesome-logo-full.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/font-awesome-logo-full.svg new file mode 100755 index 0000000..65e05f3 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/font-awesome-logo-full.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/font-awesome.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/font-awesome.svg new file mode 100755 index 0000000..9f5f27a --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/font-awesome.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/fonticons-fi.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/fonticons-fi.svg new file mode 100755 index 0000000..c21e7e9 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/fonticons-fi.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/fonticons.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/fonticons.svg new file mode 100755 index 0000000..646f2d2 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/fonticons.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/fort-awesome-alt.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/fort-awesome-alt.svg new file mode 100755 index 0000000..cbf3b1a --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/fort-awesome-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/fort-awesome.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/fort-awesome.svg new file mode 100755 index 0000000..c6a3a26 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/fort-awesome.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/forumbee.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/forumbee.svg new file mode 100755 index 0000000..288d3ca --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/forumbee.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/foursquare.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/foursquare.svg new file mode 100755 index 0000000..5b1f1d7 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/foursquare.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/free-code-camp.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/free-code-camp.svg new file mode 100755 index 0000000..a60ea64 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/free-code-camp.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/freebsd.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/freebsd.svg new file mode 100755 index 0000000..60aa32e --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/freebsd.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/fulcrum.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/fulcrum.svg new file mode 100755 index 0000000..8043c5b --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/fulcrum.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/galactic-republic.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/galactic-republic.svg new file mode 100755 index 0000000..ae88b1e --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/galactic-republic.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/galactic-senate.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/galactic-senate.svg new file mode 100755 index 0000000..cb2fd86 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/galactic-senate.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/get-pocket.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/get-pocket.svg new file mode 100755 index 0000000..21ba053 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/get-pocket.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/gg-circle.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/gg-circle.svg new file mode 100755 index 0000000..c685bb6 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/gg-circle.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/gg.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/gg.svg new file mode 100755 index 0000000..df9824a --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/gg.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/git-square.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/git-square.svg new file mode 100755 index 0000000..8cf2edb --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/git-square.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/git.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/git.svg new file mode 100755 index 0000000..15c5f23 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/git.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/github-alt.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/github-alt.svg new file mode 100755 index 0000000..b973251 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/github-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/github-square.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/github-square.svg new file mode 100755 index 0000000..6cb1681 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/github-square.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/github.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/github.svg new file mode 100755 index 0000000..ff26e65 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/github.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/gitkraken.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/gitkraken.svg new file mode 100755 index 0000000..d3e2b4c --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/gitkraken.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/gitlab.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/gitlab.svg new file mode 100755 index 0000000..a482ec5 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/gitlab.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/gitter.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/gitter.svg new file mode 100755 index 0000000..6074a8c --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/gitter.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/glide-g.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/glide-g.svg new file mode 100755 index 0000000..688b2b9 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/glide-g.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/glide.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/glide.svg new file mode 100755 index 0000000..e0bd280 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/glide.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/gofore.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/gofore.svg new file mode 100755 index 0000000..ec03ba7 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/gofore.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/goodreads-g.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/goodreads-g.svg new file mode 100755 index 0000000..6cc8b07 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/goodreads-g.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/goodreads.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/goodreads.svg new file mode 100755 index 0000000..01d493e --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/goodreads.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/google-drive.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/google-drive.svg new file mode 100755 index 0000000..0a4f0fa --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/google-drive.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/google-play.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/google-play.svg new file mode 100755 index 0000000..2a6d5d0 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/google-play.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/google-plus-g.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/google-plus-g.svg new file mode 100755 index 0000000..b710fc4 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/google-plus-g.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/google-plus-square.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/google-plus-square.svg new file mode 100755 index 0000000..0321a45 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/google-plus-square.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/google-plus.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/google-plus.svg new file mode 100755 index 0000000..bc601f4 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/google-plus.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/google-wallet.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/google-wallet.svg new file mode 100755 index 0000000..db3990f --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/google-wallet.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/google.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/google.svg new file mode 100755 index 0000000..cd2759e --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/google.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/gratipay.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/gratipay.svg new file mode 100755 index 0000000..c348b11 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/gratipay.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/grav.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/grav.svg new file mode 100755 index 0000000..0ece50e --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/grav.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/gripfire.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/gripfire.svg new file mode 100755 index 0000000..9290546 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/gripfire.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/grunt.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/grunt.svg new file mode 100755 index 0000000..af34c34 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/grunt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/gulp.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/gulp.svg new file mode 100755 index 0000000..35a6fe2 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/gulp.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/hacker-news-square.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/hacker-news-square.svg new file mode 100755 index 0000000..6f0c842 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/hacker-news-square.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/hacker-news.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/hacker-news.svg new file mode 100755 index 0000000..cdfa459 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/hacker-news.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/hackerrank.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/hackerrank.svg new file mode 100755 index 0000000..b2f6316 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/hackerrank.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/hips.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/hips.svg new file mode 100755 index 0000000..c8cbb4b --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/hips.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/hire-a-helper.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/hire-a-helper.svg new file mode 100755 index 0000000..67ee786 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/hire-a-helper.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/hooli.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/hooli.svg new file mode 100755 index 0000000..d867b03 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/hooli.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/hornbill.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/hornbill.svg new file mode 100755 index 0000000..18dc585 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/hornbill.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/hotjar.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/hotjar.svg new file mode 100755 index 0000000..c28250c --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/hotjar.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/houzz.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/houzz.svg new file mode 100755 index 0000000..7b68ed7 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/houzz.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/html5.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/html5.svg new file mode 100755 index 0000000..f4a0631 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/html5.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/hubspot.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/hubspot.svg new file mode 100755 index 0000000..3f90442 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/hubspot.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/imdb.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/imdb.svg new file mode 100755 index 0000000..1b87053 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/imdb.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/instagram.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/instagram.svg new file mode 100755 index 0000000..143c234 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/instagram.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/internet-explorer.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/internet-explorer.svg new file mode 100755 index 0000000..22d7c11 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/internet-explorer.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/ioxhost.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/ioxhost.svg new file mode 100755 index 0000000..1e2703d --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/ioxhost.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/itunes-note.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/itunes-note.svg new file mode 100755 index 0000000..d9eaf9c --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/itunes-note.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/itunes.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/itunes.svg new file mode 100755 index 0000000..1ccc9be --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/itunes.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/java.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/java.svg new file mode 100755 index 0000000..7cc3739 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/java.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/jedi-order.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/jedi-order.svg new file mode 100755 index 0000000..ae5a80f --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/jedi-order.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/jenkins.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/jenkins.svg new file mode 100755 index 0000000..247f70d --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/jenkins.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/joget.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/joget.svg new file mode 100755 index 0000000..bc37f4a --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/joget.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/joomla.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/joomla.svg new file mode 100755 index 0000000..cf43070 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/joomla.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/js-square.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/js-square.svg new file mode 100755 index 0000000..37a098c --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/js-square.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/js.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/js.svg new file mode 100755 index 0000000..e68efe4 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/js.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/jsfiddle.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/jsfiddle.svg new file mode 100755 index 0000000..3bdb71c --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/jsfiddle.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/kaggle.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/kaggle.svg new file mode 100755 index 0000000..ecc1fd0 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/kaggle.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/keybase.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/keybase.svg new file mode 100755 index 0000000..58cc701 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/keybase.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/keycdn.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/keycdn.svg new file mode 100755 index 0000000..0f4fddf --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/keycdn.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/kickstarter-k.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/kickstarter-k.svg new file mode 100755 index 0000000..f657d61 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/kickstarter-k.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/kickstarter.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/kickstarter.svg new file mode 100755 index 0000000..901325f --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/kickstarter.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/korvue.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/korvue.svg new file mode 100755 index 0000000..4100373 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/korvue.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/laravel.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/laravel.svg new file mode 100755 index 0000000..8e351e7 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/laravel.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/lastfm-square.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/lastfm-square.svg new file mode 100755 index 0000000..e729c57 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/lastfm-square.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/lastfm.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/lastfm.svg new file mode 100755 index 0000000..6dbab07 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/lastfm.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/leanpub.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/leanpub.svg new file mode 100755 index 0000000..a25e63d --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/leanpub.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/less.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/less.svg new file mode 100755 index 0000000..5655d67 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/less.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/line.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/line.svg new file mode 100755 index 0000000..b8e3d2d --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/line.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/linkedin-in.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/linkedin-in.svg new file mode 100755 index 0000000..c3239fe --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/linkedin-in.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/linkedin.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/linkedin.svg new file mode 100755 index 0000000..cd795d1 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/linkedin.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/linode.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/linode.svg new file mode 100755 index 0000000..7f4e98a --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/linode.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/linux.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/linux.svg new file mode 100755 index 0000000..c54f074 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/linux.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/lyft.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/lyft.svg new file mode 100755 index 0000000..cf2f683 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/lyft.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/magento.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/magento.svg new file mode 100755 index 0000000..b44e2e6 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/magento.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/mailchimp.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/mailchimp.svg new file mode 100755 index 0000000..591e48b --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/mailchimp.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/mandalorian.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/mandalorian.svg new file mode 100755 index 0000000..f1c4c16 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/mandalorian.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/markdown.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/markdown.svg new file mode 100755 index 0000000..6e310da --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/markdown.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/mastodon.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/mastodon.svg new file mode 100755 index 0000000..923a459 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/mastodon.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/maxcdn.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/maxcdn.svg new file mode 100755 index 0000000..7de9dfc --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/maxcdn.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/medapps.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/medapps.svg new file mode 100755 index 0000000..6e6b0de --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/medapps.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/medium-m.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/medium-m.svg new file mode 100755 index 0000000..67f4d9f --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/medium-m.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/medium.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/medium.svg new file mode 100755 index 0000000..a995f8c --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/medium.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/medrt.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/medrt.svg new file mode 100755 index 0000000..bb73fb2 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/medrt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/meetup.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/meetup.svg new file mode 100755 index 0000000..c135d68 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/meetup.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/megaport.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/megaport.svg new file mode 100755 index 0000000..12e5951 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/megaport.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/microsoft.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/microsoft.svg new file mode 100755 index 0000000..e366586 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/microsoft.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/mix.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/mix.svg new file mode 100755 index 0000000..e8f7499 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/mix.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/mixcloud.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/mixcloud.svg new file mode 100755 index 0000000..e4ad5e6 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/mixcloud.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/mizuni.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/mizuni.svg new file mode 100755 index 0000000..0624ead --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/mizuni.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/modx.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/modx.svg new file mode 100755 index 0000000..47771c6 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/modx.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/monero.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/monero.svg new file mode 100755 index 0000000..8b56414 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/monero.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/napster.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/napster.svg new file mode 100755 index 0000000..ddbb05b --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/napster.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/neos.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/neos.svg new file mode 100755 index 0000000..cafa02c --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/neos.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/nimblr.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/nimblr.svg new file mode 100755 index 0000000..a7a46fb --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/nimblr.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/nintendo-switch.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/nintendo-switch.svg new file mode 100755 index 0000000..48badf4 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/nintendo-switch.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/node-js.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/node-js.svg new file mode 100755 index 0000000..e1a5697 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/node-js.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/node.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/node.svg new file mode 100755 index 0000000..2d7805c --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/node.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/npm.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/npm.svg new file mode 100755 index 0000000..1882ba3 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/npm.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/ns8.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/ns8.svg new file mode 100755 index 0000000..cd55a60 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/ns8.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/nutritionix.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/nutritionix.svg new file mode 100755 index 0000000..8a8479e --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/nutritionix.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/odnoklassniki-square.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/odnoklassniki-square.svg new file mode 100755 index 0000000..5d92468 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/odnoklassniki-square.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/odnoklassniki.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/odnoklassniki.svg new file mode 100755 index 0000000..096cf0d --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/odnoklassniki.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/old-republic.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/old-republic.svg new file mode 100755 index 0000000..33f3b3c --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/old-republic.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/opencart.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/opencart.svg new file mode 100755 index 0000000..1583a4e --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/opencart.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/openid.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/openid.svg new file mode 100755 index 0000000..783704d --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/openid.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/opera.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/opera.svg new file mode 100755 index 0000000..1706ac3 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/opera.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/optin-monster.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/optin-monster.svg new file mode 100755 index 0000000..5553091 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/optin-monster.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/osi.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/osi.svg new file mode 100755 index 0000000..91f5e01 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/osi.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/page4.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/page4.svg new file mode 100755 index 0000000..0ec6895 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/page4.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/pagelines.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/pagelines.svg new file mode 100755 index 0000000..1e9120c --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/pagelines.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/palfed.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/palfed.svg new file mode 100755 index 0000000..41d3a5c --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/palfed.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/patreon.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/patreon.svg new file mode 100755 index 0000000..34de28e --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/patreon.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/paypal.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/paypal.svg new file mode 100755 index 0000000..3b9dce0 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/paypal.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/periscope.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/periscope.svg new file mode 100755 index 0000000..a84f874 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/periscope.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/phabricator.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/phabricator.svg new file mode 100755 index 0000000..4adb5cd --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/phabricator.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/phoenix-framework.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/phoenix-framework.svg new file mode 100755 index 0000000..a1188f6 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/phoenix-framework.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/phoenix-squadron.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/phoenix-squadron.svg new file mode 100755 index 0000000..31d8c0f --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/phoenix-squadron.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/php.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/php.svg new file mode 100755 index 0000000..4eb8c91 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/php.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/pied-piper-alt.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/pied-piper-alt.svg new file mode 100755 index 0000000..cfdbb86 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/pied-piper-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/pied-piper-hat.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/pied-piper-hat.svg new file mode 100755 index 0000000..9c88c38 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/pied-piper-hat.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/pied-piper-pp.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/pied-piper-pp.svg new file mode 100755 index 0000000..691e3d3 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/pied-piper-pp.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/pied-piper.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/pied-piper.svg new file mode 100755 index 0000000..d4de7de --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/pied-piper.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/pinterest-p.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/pinterest-p.svg new file mode 100755 index 0000000..108182b --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/pinterest-p.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/pinterest-square.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/pinterest-square.svg new file mode 100755 index 0000000..6f585b4 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/pinterest-square.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/pinterest.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/pinterest.svg new file mode 100755 index 0000000..670427d --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/pinterest.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/playstation.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/playstation.svg new file mode 100755 index 0000000..de1f734 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/playstation.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/product-hunt.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/product-hunt.svg new file mode 100755 index 0000000..5d451ea --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/product-hunt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/pushed.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/pushed.svg new file mode 100755 index 0000000..2c215c8 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/pushed.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/python.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/python.svg new file mode 100755 index 0000000..a1806c8 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/python.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/qq.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/qq.svg new file mode 100755 index 0000000..f8ba7c7 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/qq.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/quinscape.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/quinscape.svg new file mode 100755 index 0000000..78dc3b1 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/quinscape.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/quora.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/quora.svg new file mode 100755 index 0000000..80472e1 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/quora.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/r-project.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/r-project.svg new file mode 100755 index 0000000..c373467 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/r-project.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/ravelry.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/ravelry.svg new file mode 100755 index 0000000..e6a59b6 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/ravelry.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/react.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/react.svg new file mode 100755 index 0000000..7062315 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/react.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/readme.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/readme.svg new file mode 100755 index 0000000..d3a23af --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/readme.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/rebel.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/rebel.svg new file mode 100755 index 0000000..75d10e1 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/rebel.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/red-river.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/red-river.svg new file mode 100755 index 0000000..f911d96 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/red-river.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/reddit-alien.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/reddit-alien.svg new file mode 100755 index 0000000..544b90a --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/reddit-alien.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/reddit-square.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/reddit-square.svg new file mode 100755 index 0000000..2d93d6f --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/reddit-square.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/reddit.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/reddit.svg new file mode 100755 index 0000000..2beee35 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/reddit.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/rendact.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/rendact.svg new file mode 100755 index 0000000..3a78e53 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/rendact.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/renren.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/renren.svg new file mode 100755 index 0000000..8246758 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/renren.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/replyd.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/replyd.svg new file mode 100755 index 0000000..9162608 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/replyd.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/researchgate.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/researchgate.svg new file mode 100755 index 0000000..9827bb9 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/researchgate.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/resolving.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/resolving.svg new file mode 100755 index 0000000..f4dd0bb --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/resolving.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/rev.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/rev.svg new file mode 100755 index 0000000..51d713a --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/rev.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/rocketchat.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/rocketchat.svg new file mode 100755 index 0000000..74dbbb0 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/rocketchat.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/rockrms.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/rockrms.svg new file mode 100755 index 0000000..79d8c7a --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/rockrms.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/safari.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/safari.svg new file mode 100755 index 0000000..eb1df1d --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/safari.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/sass.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/sass.svg new file mode 100755 index 0000000..be3b6a1 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/sass.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/schlix.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/schlix.svg new file mode 100755 index 0000000..02dc313 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/schlix.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/scribd.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/scribd.svg new file mode 100755 index 0000000..5774a48 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/scribd.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/searchengin.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/searchengin.svg new file mode 100755 index 0000000..a264055 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/searchengin.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/sellcast.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/sellcast.svg new file mode 100755 index 0000000..451fb4a --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/sellcast.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/sellsy.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/sellsy.svg new file mode 100755 index 0000000..152f5b1 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/sellsy.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/servicestack.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/servicestack.svg new file mode 100755 index 0000000..f8d6b01 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/servicestack.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/shirtsinbulk.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/shirtsinbulk.svg new file mode 100755 index 0000000..3ae273a --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/shirtsinbulk.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/shopware.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/shopware.svg new file mode 100755 index 0000000..9405cbe --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/shopware.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/simplybuilt.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/simplybuilt.svg new file mode 100755 index 0000000..160e37c --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/simplybuilt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/sistrix.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/sistrix.svg new file mode 100755 index 0000000..af5a8a9 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/sistrix.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/sith.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/sith.svg new file mode 100755 index 0000000..9cdc9e3 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/sith.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/skyatlas.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/skyatlas.svg new file mode 100755 index 0000000..2f8c1c0 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/skyatlas.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/skype.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/skype.svg new file mode 100755 index 0000000..7c76a06 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/skype.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/slack-hash.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/slack-hash.svg new file mode 100755 index 0000000..87121c1 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/slack-hash.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/slack.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/slack.svg new file mode 100755 index 0000000..b8c0f1f --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/slack.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/slideshare.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/slideshare.svg new file mode 100755 index 0000000..5044676 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/slideshare.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/snapchat-ghost.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/snapchat-ghost.svg new file mode 100755 index 0000000..2e48db8 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/snapchat-ghost.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/snapchat-square.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/snapchat-square.svg new file mode 100755 index 0000000..ad99c5e --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/snapchat-square.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/snapchat.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/snapchat.svg new file mode 100755 index 0000000..5121af6 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/snapchat.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/soundcloud.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/soundcloud.svg new file mode 100755 index 0000000..28dba43 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/soundcloud.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/speakap.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/speakap.svg new file mode 100755 index 0000000..134b4e4 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/speakap.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/spotify.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/spotify.svg new file mode 100755 index 0000000..bc0af64 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/spotify.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/squarespace.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/squarespace.svg new file mode 100755 index 0000000..d764f2d --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/squarespace.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/stack-exchange.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/stack-exchange.svg new file mode 100755 index 0000000..feb28be --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/stack-exchange.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/stack-overflow.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/stack-overflow.svg new file mode 100755 index 0000000..1b52811 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/stack-overflow.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/staylinked.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/staylinked.svg new file mode 100755 index 0000000..cb5beb2 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/staylinked.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/steam-square.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/steam-square.svg new file mode 100755 index 0000000..b95fc24 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/steam-square.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/steam-symbol.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/steam-symbol.svg new file mode 100755 index 0000000..a4dd97b --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/steam-symbol.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/steam.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/steam.svg new file mode 100755 index 0000000..af3e00d --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/steam.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/sticker-mule.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/sticker-mule.svg new file mode 100755 index 0000000..6b0c0d6 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/sticker-mule.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/strava.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/strava.svg new file mode 100755 index 0000000..a070f8d --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/strava.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/stripe-s.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/stripe-s.svg new file mode 100755 index 0000000..ff54e39 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/stripe-s.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/stripe.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/stripe.svg new file mode 100755 index 0000000..7a593cf --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/stripe.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/studiovinari.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/studiovinari.svg new file mode 100755 index 0000000..dfab800 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/studiovinari.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/stumbleupon-circle.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/stumbleupon-circle.svg new file mode 100755 index 0000000..70e57cb --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/stumbleupon-circle.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/stumbleupon.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/stumbleupon.svg new file mode 100755 index 0000000..aec696b --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/stumbleupon.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/superpowers.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/superpowers.svg new file mode 100755 index 0000000..33976bb --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/superpowers.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/supple.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/supple.svg new file mode 100755 index 0000000..3fa2d1d --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/supple.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/teamspeak.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/teamspeak.svg new file mode 100755 index 0000000..2838c0c --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/teamspeak.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/telegram-plane.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/telegram-plane.svg new file mode 100755 index 0000000..209d587 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/telegram-plane.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/telegram.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/telegram.svg new file mode 100755 index 0000000..15b8f36 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/telegram.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/tencent-weibo.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/tencent-weibo.svg new file mode 100755 index 0000000..0c4c398 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/tencent-weibo.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/the-red-yeti.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/the-red-yeti.svg new file mode 100755 index 0000000..af40b0e --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/the-red-yeti.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/themeco.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/themeco.svg new file mode 100755 index 0000000..4704b6d --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/themeco.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/themeisle.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/themeisle.svg new file mode 100755 index 0000000..05c4420 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/themeisle.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/trade-federation.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/trade-federation.svg new file mode 100755 index 0000000..83dae8a --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/trade-federation.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/trello.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/trello.svg new file mode 100755 index 0000000..62508ed --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/trello.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/tripadvisor.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/tripadvisor.svg new file mode 100755 index 0000000..d8b0f22 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/tripadvisor.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/tumblr-square.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/tumblr-square.svg new file mode 100755 index 0000000..4cbe826 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/tumblr-square.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/tumblr.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/tumblr.svg new file mode 100755 index 0000000..b3ef418 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/tumblr.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/twitch.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/twitch.svg new file mode 100755 index 0000000..8986145 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/twitch.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/twitter-square.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/twitter-square.svg new file mode 100755 index 0000000..6347856 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/twitter-square.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/twitter.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/twitter.svg new file mode 100755 index 0000000..0663c48 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/twitter.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/typo3.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/typo3.svg new file mode 100755 index 0000000..7c3477f --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/typo3.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/uber.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/uber.svg new file mode 100755 index 0000000..89fb0a9 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/uber.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/uikit.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/uikit.svg new file mode 100755 index 0000000..db70193 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/uikit.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/uniregistry.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/uniregistry.svg new file mode 100755 index 0000000..6f6cd1d --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/uniregistry.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/untappd.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/untappd.svg new file mode 100755 index 0000000..fbb136b --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/untappd.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/usb.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/usb.svg new file mode 100755 index 0000000..b37c458 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/usb.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/ussunnah.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/ussunnah.svg new file mode 100755 index 0000000..da9a952 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/ussunnah.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/vaadin.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/vaadin.svg new file mode 100755 index 0000000..73fb90d --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/vaadin.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/viacoin.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/viacoin.svg new file mode 100755 index 0000000..9a33928 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/viacoin.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/viadeo-square.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/viadeo-square.svg new file mode 100755 index 0000000..cea8312 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/viadeo-square.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/viadeo.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/viadeo.svg new file mode 100755 index 0000000..2d5f8ef --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/viadeo.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/viber.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/viber.svg new file mode 100755 index 0000000..6ee24a4 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/viber.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/vimeo-square.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/vimeo-square.svg new file mode 100755 index 0000000..85034f8 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/vimeo-square.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/vimeo-v.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/vimeo-v.svg new file mode 100755 index 0000000..e43a7ad --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/vimeo-v.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/vimeo.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/vimeo.svg new file mode 100755 index 0000000..28977cd --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/vimeo.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/vine.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/vine.svg new file mode 100755 index 0000000..3244710 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/vine.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/vk.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/vk.svg new file mode 100755 index 0000000..e2a54df --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/vk.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/vnv.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/vnv.svg new file mode 100755 index 0000000..0c6cfab --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/vnv.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/vuejs.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/vuejs.svg new file mode 100755 index 0000000..f63cf1a --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/vuejs.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/weebly.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/weebly.svg new file mode 100755 index 0000000..008b653 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/weebly.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/weibo.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/weibo.svg new file mode 100755 index 0000000..363c7b3 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/weibo.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/weixin.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/weixin.svg new file mode 100755 index 0000000..1e5c3f7 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/weixin.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/whatsapp-square.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/whatsapp-square.svg new file mode 100755 index 0000000..6bb5662 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/whatsapp-square.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/whatsapp.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/whatsapp.svg new file mode 100755 index 0000000..a685b05 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/whatsapp.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/whmcs.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/whmcs.svg new file mode 100755 index 0000000..39d1aee --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/whmcs.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/wikipedia-w.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/wikipedia-w.svg new file mode 100755 index 0000000..97ca708 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/wikipedia-w.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/windows.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/windows.svg new file mode 100755 index 0000000..c4961e0 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/windows.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/wix.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/wix.svg new file mode 100755 index 0000000..55b212a --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/wix.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/wolf-pack-battalion.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/wolf-pack-battalion.svg new file mode 100755 index 0000000..dca29ca --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/wolf-pack-battalion.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/wordpress-simple.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/wordpress-simple.svg new file mode 100755 index 0000000..47499d5 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/wordpress-simple.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/wordpress.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/wordpress.svg new file mode 100755 index 0000000..3e99843 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/wordpress.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/wpbeginner.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/wpbeginner.svg new file mode 100755 index 0000000..59d822b --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/wpbeginner.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/wpexplorer.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/wpexplorer.svg new file mode 100755 index 0000000..9e0ff65 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/wpexplorer.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/wpforms.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/wpforms.svg new file mode 100755 index 0000000..f2fb5b4 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/wpforms.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/xbox.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/xbox.svg new file mode 100755 index 0000000..ada1fbf --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/xbox.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/xing-square.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/xing-square.svg new file mode 100755 index 0000000..d3d4b94 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/xing-square.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/xing.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/xing.svg new file mode 100755 index 0000000..39c166f --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/xing.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/y-combinator.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/y-combinator.svg new file mode 100755 index 0000000..b9e3d74 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/y-combinator.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/yahoo.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/yahoo.svg new file mode 100755 index 0000000..4d4aad7 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/yahoo.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/yandex-international.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/yandex-international.svg new file mode 100755 index 0000000..58bc4f8 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/yandex-international.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/yandex.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/yandex.svg new file mode 100755 index 0000000..f702297 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/yandex.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/yelp.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/yelp.svg new file mode 100755 index 0000000..416c600 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/yelp.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/yoast.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/yoast.svg new file mode 100755 index 0000000..d3b7103 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/yoast.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/youtube-square.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/youtube-square.svg new file mode 100755 index 0000000..9168e3c --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/youtube-square.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/youtube.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/youtube.svg new file mode 100755 index 0000000..33ee3f6 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/youtube.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/zhihu.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/zhihu.svg new file mode 100755 index 0000000..b198c2e --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/brands/zhihu.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/address-book.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/address-book.svg new file mode 100755 index 0000000..3d6d434 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/address-book.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/address-card.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/address-card.svg new file mode 100755 index 0000000..96e9963 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/address-card.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/angry.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/angry.svg new file mode 100755 index 0000000..df75cd7 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/angry.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/arrow-alt-circle-down.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/arrow-alt-circle-down.svg new file mode 100755 index 0000000..12d9db1 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/arrow-alt-circle-down.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/arrow-alt-circle-left.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/arrow-alt-circle-left.svg new file mode 100755 index 0000000..3fecacb --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/arrow-alt-circle-left.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/arrow-alt-circle-right.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/arrow-alt-circle-right.svg new file mode 100755 index 0000000..70baf30 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/arrow-alt-circle-right.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/arrow-alt-circle-up.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/arrow-alt-circle-up.svg new file mode 100755 index 0000000..91d2c4e --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/arrow-alt-circle-up.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/bell-slash.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/bell-slash.svg new file mode 100755 index 0000000..9288c13 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/bell-slash.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/bell.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/bell.svg new file mode 100755 index 0000000..3aec82a --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/bell.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/bookmark.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/bookmark.svg new file mode 100755 index 0000000..8380971 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/bookmark.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/building.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/building.svg new file mode 100755 index 0000000..53eab8a --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/building.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/calendar-alt.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/calendar-alt.svg new file mode 100755 index 0000000..ea5c6ce --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/calendar-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/calendar-check.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/calendar-check.svg new file mode 100755 index 0000000..09cda9c --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/calendar-check.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/calendar-minus.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/calendar-minus.svg new file mode 100755 index 0000000..29814f9 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/calendar-minus.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/calendar-plus.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/calendar-plus.svg new file mode 100755 index 0000000..0756baa --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/calendar-plus.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/calendar-times.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/calendar-times.svg new file mode 100755 index 0000000..e59827b --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/calendar-times.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/calendar.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/calendar.svg new file mode 100755 index 0000000..d32d8fa --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/calendar.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/caret-square-down.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/caret-square-down.svg new file mode 100755 index 0000000..e11f131 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/caret-square-down.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/caret-square-left.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/caret-square-left.svg new file mode 100755 index 0000000..398666e --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/caret-square-left.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/caret-square-right.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/caret-square-right.svg new file mode 100755 index 0000000..c0e6ba4 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/caret-square-right.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/caret-square-up.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/caret-square-up.svg new file mode 100755 index 0000000..1524162 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/caret-square-up.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/chart-bar.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/chart-bar.svg new file mode 100755 index 0000000..d177cca --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/chart-bar.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/check-circle.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/check-circle.svg new file mode 100755 index 0000000..960574c --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/check-circle.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/check-square.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/check-square.svg new file mode 100755 index 0000000..7af5e29 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/check-square.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/circle.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/circle.svg new file mode 100755 index 0000000..8c678bb --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/circle.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/clipboard.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/clipboard.svg new file mode 100755 index 0000000..6ef2375 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/clipboard.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/clock.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/clock.svg new file mode 100755 index 0000000..d708ac4 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/clock.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/clone.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/clone.svg new file mode 100755 index 0000000..2b11eb8 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/clone.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/closed-captioning.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/closed-captioning.svg new file mode 100755 index 0000000..7d32e95 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/closed-captioning.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/comment-alt.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/comment-alt.svg new file mode 100755 index 0000000..1ef5d54 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/comment-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/comment-dots.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/comment-dots.svg new file mode 100755 index 0000000..a6acf15 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/comment-dots.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/comment.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/comment.svg new file mode 100755 index 0000000..8157a91 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/comment.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/comments.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/comments.svg new file mode 100755 index 0000000..2b3a292 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/comments.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/compass.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/compass.svg new file mode 100755 index 0000000..54f408a --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/compass.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/copy.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/copy.svg new file mode 100755 index 0000000..f5f8352 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/copy.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/copyright.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/copyright.svg new file mode 100755 index 0000000..c00cbfe --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/copyright.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/credit-card.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/credit-card.svg new file mode 100755 index 0000000..e14d5fd --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/credit-card.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/dizzy.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/dizzy.svg new file mode 100755 index 0000000..c95a8d7 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/dizzy.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/dot-circle.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/dot-circle.svg new file mode 100755 index 0000000..1790840 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/dot-circle.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/edit.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/edit.svg new file mode 100755 index 0000000..4045261 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/edit.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/envelope-open.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/envelope-open.svg new file mode 100755 index 0000000..21dbce2 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/envelope-open.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/envelope.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/envelope.svg new file mode 100755 index 0000000..d88ede5 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/envelope.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/eye-slash.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/eye-slash.svg new file mode 100755 index 0000000..7ec7f5d --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/eye-slash.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/eye.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/eye.svg new file mode 100755 index 0000000..6771024 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/eye.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/file-alt.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/file-alt.svg new file mode 100755 index 0000000..699f00e --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/file-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/file-archive.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/file-archive.svg new file mode 100755 index 0000000..b31d9c4 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/file-archive.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/file-audio.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/file-audio.svg new file mode 100755 index 0000000..05919ba --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/file-audio.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/file-code.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/file-code.svg new file mode 100755 index 0000000..b46a2b8 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/file-code.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/file-excel.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/file-excel.svg new file mode 100755 index 0000000..960dfd9 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/file-excel.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/file-image.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/file-image.svg new file mode 100755 index 0000000..26d35b2 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/file-image.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/file-pdf.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/file-pdf.svg new file mode 100755 index 0000000..b86e68e --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/file-pdf.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/file-powerpoint.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/file-powerpoint.svg new file mode 100755 index 0000000..feaae23 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/file-powerpoint.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/file-video.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/file-video.svg new file mode 100755 index 0000000..d63677e --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/file-video.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/file-word.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/file-word.svg new file mode 100755 index 0000000..bc933f1 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/file-word.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/file.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/file.svg new file mode 100755 index 0000000..da5735a --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/file.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/flag.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/flag.svg new file mode 100755 index 0000000..a8b1ede --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/flag.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/flushed.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/flushed.svg new file mode 100755 index 0000000..41127d6 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/flushed.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/folder-open.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/folder-open.svg new file mode 100755 index 0000000..f55a8ee --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/folder-open.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/folder.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/folder.svg new file mode 100755 index 0000000..b87a49c --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/folder.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/font-awesome-logo-full.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/font-awesome-logo-full.svg new file mode 100755 index 0000000..65e05f3 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/font-awesome-logo-full.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/frown-open.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/frown-open.svg new file mode 100755 index 0000000..b0a705f --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/frown-open.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/frown.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/frown.svg new file mode 100755 index 0000000..f22e206 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/frown.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/futbol.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/futbol.svg new file mode 100755 index 0000000..0a7a56f --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/futbol.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/gem.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/gem.svg new file mode 100755 index 0000000..9c742af --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/gem.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/grimace.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/grimace.svg new file mode 100755 index 0000000..7c61de8 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/grimace.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/grin-alt.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/grin-alt.svg new file mode 100755 index 0000000..ef73218 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/grin-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/grin-beam-sweat.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/grin-beam-sweat.svg new file mode 100755 index 0000000..bdf681e --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/grin-beam-sweat.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/grin-beam.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/grin-beam.svg new file mode 100755 index 0000000..be3f59b --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/grin-beam.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/grin-hearts.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/grin-hearts.svg new file mode 100755 index 0000000..46272f8 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/grin-hearts.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/grin-squint-tears.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/grin-squint-tears.svg new file mode 100755 index 0000000..5793d7e --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/grin-squint-tears.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/grin-squint.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/grin-squint.svg new file mode 100755 index 0000000..2f7c3f6 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/grin-squint.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/grin-stars.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/grin-stars.svg new file mode 100755 index 0000000..f23685a --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/grin-stars.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/grin-tears.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/grin-tears.svg new file mode 100755 index 0000000..da4fc55 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/grin-tears.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/grin-tongue-squint.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/grin-tongue-squint.svg new file mode 100755 index 0000000..9335297 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/grin-tongue-squint.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/grin-tongue-wink.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/grin-tongue-wink.svg new file mode 100755 index 0000000..779a2c8 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/grin-tongue-wink.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/grin-tongue.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/grin-tongue.svg new file mode 100755 index 0000000..fd6121c --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/grin-tongue.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/grin-wink.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/grin-wink.svg new file mode 100755 index 0000000..4ae3090 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/grin-wink.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/grin.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/grin.svg new file mode 100755 index 0000000..4c90550 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/grin.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/hand-lizard.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/hand-lizard.svg new file mode 100755 index 0000000..9e419d0 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/hand-lizard.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/hand-paper.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/hand-paper.svg new file mode 100755 index 0000000..2480623 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/hand-paper.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/hand-peace.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/hand-peace.svg new file mode 100755 index 0000000..701fe3c --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/hand-peace.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/hand-point-down.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/hand-point-down.svg new file mode 100755 index 0000000..c49750a --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/hand-point-down.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/hand-point-left.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/hand-point-left.svg new file mode 100755 index 0000000..d0ace05 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/hand-point-left.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/hand-point-right.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/hand-point-right.svg new file mode 100755 index 0000000..ad414b3 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/hand-point-right.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/hand-point-up.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/hand-point-up.svg new file mode 100755 index 0000000..bfda7e6 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/hand-point-up.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/hand-pointer.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/hand-pointer.svg new file mode 100755 index 0000000..7698950 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/hand-pointer.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/hand-rock.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/hand-rock.svg new file mode 100755 index 0000000..dbc5b9b --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/hand-rock.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/hand-scissors.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/hand-scissors.svg new file mode 100755 index 0000000..52a9f0a --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/hand-scissors.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/hand-spock.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/hand-spock.svg new file mode 100755 index 0000000..b9899fc --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/hand-spock.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/handshake.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/handshake.svg new file mode 100755 index 0000000..093b177 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/handshake.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/hdd.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/hdd.svg new file mode 100755 index 0000000..d6b8ce7 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/hdd.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/heart.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/heart.svg new file mode 100755 index 0000000..a3c1831 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/heart.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/hospital.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/hospital.svg new file mode 100755 index 0000000..ce3cf50 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/hospital.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/hourglass.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/hourglass.svg new file mode 100755 index 0000000..8fa997e --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/hourglass.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/id-badge.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/id-badge.svg new file mode 100755 index 0000000..8c76cab --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/id-badge.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/id-card.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/id-card.svg new file mode 100755 index 0000000..bec9c20 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/id-card.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/image.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/image.svg new file mode 100755 index 0000000..091778e --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/image.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/images.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/images.svg new file mode 100755 index 0000000..8d5117f --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/images.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/keyboard.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/keyboard.svg new file mode 100755 index 0000000..eac627c --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/keyboard.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/kiss-beam.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/kiss-beam.svg new file mode 100755 index 0000000..ddef57c --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/kiss-beam.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/kiss-wink-heart.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/kiss-wink-heart.svg new file mode 100755 index 0000000..d83001e --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/kiss-wink-heart.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/kiss.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/kiss.svg new file mode 100755 index 0000000..0369715 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/kiss.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/laugh-beam.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/laugh-beam.svg new file mode 100755 index 0000000..bf78105 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/laugh-beam.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/laugh-squint.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/laugh-squint.svg new file mode 100755 index 0000000..2d1a6c2 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/laugh-squint.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/laugh-wink.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/laugh-wink.svg new file mode 100755 index 0000000..ba88f35 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/laugh-wink.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/laugh.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/laugh.svg new file mode 100755 index 0000000..53b68db --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/laugh.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/lemon.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/lemon.svg new file mode 100755 index 0000000..3f540b0 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/lemon.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/life-ring.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/life-ring.svg new file mode 100755 index 0000000..6bfd6e0 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/life-ring.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/lightbulb.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/lightbulb.svg new file mode 100755 index 0000000..20d36b5 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/lightbulb.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/list-alt.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/list-alt.svg new file mode 100755 index 0000000..b3cb180 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/list-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/map.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/map.svg new file mode 100755 index 0000000..a667b1a --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/map.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/meh-blank.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/meh-blank.svg new file mode 100755 index 0000000..e87f809 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/meh-blank.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/meh-rolling-eyes.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/meh-rolling-eyes.svg new file mode 100755 index 0000000..83f4530 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/meh-rolling-eyes.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/meh.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/meh.svg new file mode 100755 index 0000000..cf3ee2b --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/meh.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/minus-square.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/minus-square.svg new file mode 100755 index 0000000..396a22a --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/minus-square.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/money-bill-alt.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/money-bill-alt.svg new file mode 100755 index 0000000..3413b72 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/money-bill-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/moon.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/moon.svg new file mode 100755 index 0000000..a49ecf2 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/moon.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/newspaper.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/newspaper.svg new file mode 100755 index 0000000..a11c6d4 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/newspaper.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/object-group.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/object-group.svg new file mode 100755 index 0000000..fa6a8ec --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/object-group.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/object-ungroup.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/object-ungroup.svg new file mode 100755 index 0000000..0a848b3 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/object-ungroup.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/paper-plane.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/paper-plane.svg new file mode 100755 index 0000000..841820e --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/paper-plane.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/pause-circle.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/pause-circle.svg new file mode 100755 index 0000000..814350e --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/pause-circle.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/play-circle.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/play-circle.svg new file mode 100755 index 0000000..ba67239 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/play-circle.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/plus-square.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/plus-square.svg new file mode 100755 index 0000000..a6a49ac --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/plus-square.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/question-circle.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/question-circle.svg new file mode 100755 index 0000000..aa086e9 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/question-circle.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/registered.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/registered.svg new file mode 100755 index 0000000..45ffc69 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/registered.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/sad-cry.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/sad-cry.svg new file mode 100755 index 0000000..a51f9d6 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/sad-cry.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/sad-tear.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/sad-tear.svg new file mode 100755 index 0000000..ce6d7eb --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/sad-tear.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/save.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/save.svg new file mode 100755 index 0000000..f742ffb --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/save.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/share-square.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/share-square.svg new file mode 100755 index 0000000..52c2faa --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/share-square.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/smile-beam.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/smile-beam.svg new file mode 100755 index 0000000..8cce861 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/smile-beam.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/smile-wink.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/smile-wink.svg new file mode 100755 index 0000000..8841482 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/smile-wink.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/smile.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/smile.svg new file mode 100755 index 0000000..9eb5e3a --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/smile.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/snowflake.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/snowflake.svg new file mode 100755 index 0000000..28eea66 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/snowflake.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/square.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/square.svg new file mode 100755 index 0000000..0458912 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/square.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/star-half.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/star-half.svg new file mode 100755 index 0000000..d219e8d --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/star-half.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/star.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/star.svg new file mode 100755 index 0000000..c4fc279 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/star.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/sticky-note.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/sticky-note.svg new file mode 100755 index 0000000..0d666eb --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/sticky-note.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/stop-circle.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/stop-circle.svg new file mode 100755 index 0000000..14c07d5 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/stop-circle.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/sun.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/sun.svg new file mode 100755 index 0000000..9923b1c --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/sun.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/surprise.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/surprise.svg new file mode 100755 index 0000000..00f09b5 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/surprise.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/thumbs-down.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/thumbs-down.svg new file mode 100755 index 0000000..5483895 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/thumbs-down.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/thumbs-up.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/thumbs-up.svg new file mode 100755 index 0000000..cce0ed6 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/thumbs-up.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/times-circle.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/times-circle.svg new file mode 100755 index 0000000..627164b --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/times-circle.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/tired.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/tired.svg new file mode 100755 index 0000000..fda9121 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/tired.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/trash-alt.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/trash-alt.svg new file mode 100755 index 0000000..c5e4405 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/trash-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/user-circle.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/user-circle.svg new file mode 100755 index 0000000..4db0c7e --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/user-circle.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/user.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/user.svg new file mode 100755 index 0000000..750577d --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/user.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/window-close.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/window-close.svg new file mode 100755 index 0000000..42bfeb5 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/window-close.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/window-maximize.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/window-maximize.svg new file mode 100755 index 0000000..6556858 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/window-maximize.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/window-minimize.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/window-minimize.svg new file mode 100755 index 0000000..9bd0d54 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/window-minimize.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/window-restore.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/window-restore.svg new file mode 100755 index 0000000..c2975d2 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/regular/window-restore.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/ad.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/ad.svg new file mode 100755 index 0000000..11fd3bc --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/ad.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/address-book.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/address-book.svg new file mode 100755 index 0000000..b35adaf --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/address-book.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/address-card.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/address-card.svg new file mode 100755 index 0000000..50a5410 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/address-card.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/adjust.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/adjust.svg new file mode 100755 index 0000000..9f0582a --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/adjust.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/air-freshener.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/air-freshener.svg new file mode 100755 index 0000000..0779049 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/air-freshener.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/align-center.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/align-center.svg new file mode 100755 index 0000000..01e6a0a --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/align-center.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/align-justify.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/align-justify.svg new file mode 100755 index 0000000..2f62a9d --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/align-justify.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/align-left.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/align-left.svg new file mode 100755 index 0000000..2a68027 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/align-left.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/align-right.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/align-right.svg new file mode 100755 index 0000000..6703a5a --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/align-right.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/allergies.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/allergies.svg new file mode 100755 index 0000000..ed2ce93 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/allergies.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/ambulance.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/ambulance.svg new file mode 100755 index 0000000..658c588 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/ambulance.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/american-sign-language-interpreting.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/american-sign-language-interpreting.svg new file mode 100755 index 0000000..d95b779 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/american-sign-language-interpreting.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/anchor.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/anchor.svg new file mode 100755 index 0000000..a11596e --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/anchor.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/angle-double-down.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/angle-double-down.svg new file mode 100755 index 0000000..87287ed --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/angle-double-down.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/angle-double-left.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/angle-double-left.svg new file mode 100755 index 0000000..6cff3f9 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/angle-double-left.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/angle-double-right.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/angle-double-right.svg new file mode 100755 index 0000000..5d4a760 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/angle-double-right.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/angle-double-up.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/angle-double-up.svg new file mode 100755 index 0000000..ca3488b --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/angle-double-up.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/angle-down.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/angle-down.svg new file mode 100755 index 0000000..8348e03 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/angle-down.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/angle-left.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/angle-left.svg new file mode 100755 index 0000000..a3c1cc7 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/angle-left.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/angle-right.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/angle-right.svg new file mode 100755 index 0000000..4cff0c9 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/angle-right.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/angle-up.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/angle-up.svg new file mode 100755 index 0000000..50b67d8 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/angle-up.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/angry.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/angry.svg new file mode 100755 index 0000000..c486913 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/angry.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/ankh.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/ankh.svg new file mode 100755 index 0000000..f89cdcd --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/ankh.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/apple-alt.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/apple-alt.svg new file mode 100755 index 0000000..8375aad --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/apple-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/archive.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/archive.svg new file mode 100755 index 0000000..cfe1e62 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/archive.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/archway.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/archway.svg new file mode 100755 index 0000000..e9b1c03 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/archway.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/arrow-alt-circle-down.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/arrow-alt-circle-down.svg new file mode 100755 index 0000000..3e20f1e --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/arrow-alt-circle-down.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/arrow-alt-circle-left.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/arrow-alt-circle-left.svg new file mode 100755 index 0000000..a98dba6 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/arrow-alt-circle-left.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/arrow-alt-circle-right.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/arrow-alt-circle-right.svg new file mode 100755 index 0000000..d1afe82 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/arrow-alt-circle-right.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/arrow-alt-circle-up.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/arrow-alt-circle-up.svg new file mode 100755 index 0000000..e752281 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/arrow-alt-circle-up.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/arrow-circle-down.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/arrow-circle-down.svg new file mode 100755 index 0000000..35455ad --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/arrow-circle-down.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/arrow-circle-left.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/arrow-circle-left.svg new file mode 100755 index 0000000..0e0ad0f --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/arrow-circle-left.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/arrow-circle-right.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/arrow-circle-right.svg new file mode 100755 index 0000000..88297f6 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/arrow-circle-right.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/arrow-circle-up.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/arrow-circle-up.svg new file mode 100755 index 0000000..dd25f8e --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/arrow-circle-up.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/arrow-down.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/arrow-down.svg new file mode 100755 index 0000000..fcda248 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/arrow-down.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/arrow-left.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/arrow-left.svg new file mode 100755 index 0000000..57a171c --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/arrow-left.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/arrow-right.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/arrow-right.svg new file mode 100755 index 0000000..a9d00a5 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/arrow-right.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/arrow-up.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/arrow-up.svg new file mode 100755 index 0000000..ec258b4 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/arrow-up.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/arrows-alt-h.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/arrows-alt-h.svg new file mode 100755 index 0000000..aff6546 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/arrows-alt-h.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/arrows-alt-v.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/arrows-alt-v.svg new file mode 100755 index 0000000..a04daa8 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/arrows-alt-v.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/arrows-alt.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/arrows-alt.svg new file mode 100755 index 0000000..736da6d --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/arrows-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/assistive-listening-systems.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/assistive-listening-systems.svg new file mode 100755 index 0000000..3aee457 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/assistive-listening-systems.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/asterisk.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/asterisk.svg new file mode 100755 index 0000000..444bd45 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/asterisk.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/at.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/at.svg new file mode 100755 index 0000000..c95a4b8 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/at.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/atlas.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/atlas.svg new file mode 100755 index 0000000..27113c5 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/atlas.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/atom.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/atom.svg new file mode 100755 index 0000000..b7d643c --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/atom.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/audio-description.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/audio-description.svg new file mode 100755 index 0000000..eb66cb6 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/audio-description.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/award.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/award.svg new file mode 100755 index 0000000..6cf9017 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/award.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/backspace.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/backspace.svg new file mode 100755 index 0000000..da7b587 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/backspace.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/backward.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/backward.svg new file mode 100755 index 0000000..c838872 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/backward.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/balance-scale.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/balance-scale.svg new file mode 100755 index 0000000..d05d5bb --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/balance-scale.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/ban.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/ban.svg new file mode 100755 index 0000000..888257c --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/ban.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/band-aid.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/band-aid.svg new file mode 100755 index 0000000..99b617c --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/band-aid.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/barcode.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/barcode.svg new file mode 100755 index 0000000..69a2623 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/barcode.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/bars.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/bars.svg new file mode 100755 index 0000000..e27577b --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/bars.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/baseball-ball.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/baseball-ball.svg new file mode 100755 index 0000000..161979b --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/baseball-ball.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/basketball-ball.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/basketball-ball.svg new file mode 100755 index 0000000..4c1f4f7 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/basketball-ball.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/bath.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/bath.svg new file mode 100755 index 0000000..3a315b9 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/bath.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/battery-empty.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/battery-empty.svg new file mode 100755 index 0000000..74f722b --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/battery-empty.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/battery-full.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/battery-full.svg new file mode 100755 index 0000000..53f3c8d --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/battery-full.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/battery-half.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/battery-half.svg new file mode 100755 index 0000000..5175178 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/battery-half.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/battery-quarter.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/battery-quarter.svg new file mode 100755 index 0000000..f7d01a6 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/battery-quarter.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/battery-three-quarters.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/battery-three-quarters.svg new file mode 100755 index 0000000..21c61a4 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/battery-three-quarters.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/bed.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/bed.svg new file mode 100755 index 0000000..9279dd4 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/bed.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/beer.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/beer.svg new file mode 100755 index 0000000..f883d8a --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/beer.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/bell-slash.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/bell-slash.svg new file mode 100755 index 0000000..3bba130 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/bell-slash.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/bell.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/bell.svg new file mode 100755 index 0000000..c51ab33 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/bell.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/bezier-curve.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/bezier-curve.svg new file mode 100755 index 0000000..f4b27c8 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/bezier-curve.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/bible.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/bible.svg new file mode 100755 index 0000000..363500c --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/bible.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/bicycle.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/bicycle.svg new file mode 100755 index 0000000..d85aebd --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/bicycle.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/binoculars.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/binoculars.svg new file mode 100755 index 0000000..fd0b753 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/binoculars.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/birthday-cake.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/birthday-cake.svg new file mode 100755 index 0000000..922bd2d --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/birthday-cake.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/blender.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/blender.svg new file mode 100755 index 0000000..1a0f8f1 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/blender.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/blind.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/blind.svg new file mode 100755 index 0000000..ac576e4 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/blind.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/bold.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/bold.svg new file mode 100755 index 0000000..e0205a7 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/bold.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/bolt.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/bolt.svg new file mode 100755 index 0000000..804487f --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/bolt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/bomb.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/bomb.svg new file mode 100755 index 0000000..21ad5a1 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/bomb.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/bone.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/bone.svg new file mode 100755 index 0000000..7a4255e --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/bone.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/bong.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/bong.svg new file mode 100755 index 0000000..d4eb181 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/bong.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/book-open.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/book-open.svg new file mode 100755 index 0000000..6251c0c --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/book-open.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/book-reader.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/book-reader.svg new file mode 100755 index 0000000..9689f77 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/book-reader.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/book.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/book.svg new file mode 100755 index 0000000..4c06213 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/book.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/bookmark.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/bookmark.svg new file mode 100755 index 0000000..96149bd --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/bookmark.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/bowling-ball.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/bowling-ball.svg new file mode 100755 index 0000000..238f467 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/bowling-ball.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/box-open.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/box-open.svg new file mode 100755 index 0000000..7dc7589 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/box-open.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/box.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/box.svg new file mode 100755 index 0000000..1efa5ed --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/box.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/boxes.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/boxes.svg new file mode 100755 index 0000000..e5d2367 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/boxes.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/braille.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/braille.svg new file mode 100755 index 0000000..ea8e021 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/braille.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/brain.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/brain.svg new file mode 100755 index 0000000..7912dd9 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/brain.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/briefcase-medical.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/briefcase-medical.svg new file mode 100755 index 0000000..abc47fc --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/briefcase-medical.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/briefcase.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/briefcase.svg new file mode 100755 index 0000000..9174908 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/briefcase.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/broadcast-tower.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/broadcast-tower.svg new file mode 100755 index 0000000..2accd99 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/broadcast-tower.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/broom.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/broom.svg new file mode 100755 index 0000000..d547d4a --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/broom.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/brush.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/brush.svg new file mode 100755 index 0000000..4f07971 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/brush.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/bug.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/bug.svg new file mode 100755 index 0000000..fb9c16d --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/bug.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/building.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/building.svg new file mode 100755 index 0000000..380e936 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/building.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/bullhorn.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/bullhorn.svg new file mode 100755 index 0000000..74365bc --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/bullhorn.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/bullseye.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/bullseye.svg new file mode 100755 index 0000000..4c8f64f --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/bullseye.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/burn.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/burn.svg new file mode 100755 index 0000000..6541fc5 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/burn.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/bus-alt.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/bus-alt.svg new file mode 100755 index 0000000..0367654 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/bus-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/bus.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/bus.svg new file mode 100755 index 0000000..be30a6e --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/bus.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/business-time.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/business-time.svg new file mode 100755 index 0000000..7db511c --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/business-time.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/calculator.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/calculator.svg new file mode 100755 index 0000000..b337b60 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/calculator.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/calendar-alt.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/calendar-alt.svg new file mode 100755 index 0000000..18a0b51 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/calendar-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/calendar-check.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/calendar-check.svg new file mode 100755 index 0000000..50f3e40 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/calendar-check.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/calendar-minus.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/calendar-minus.svg new file mode 100755 index 0000000..71de2b8 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/calendar-minus.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/calendar-plus.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/calendar-plus.svg new file mode 100755 index 0000000..609e055 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/calendar-plus.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/calendar-times.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/calendar-times.svg new file mode 100755 index 0000000..c304148 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/calendar-times.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/calendar.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/calendar.svg new file mode 100755 index 0000000..9c38a11 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/calendar.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/camera-retro.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/camera-retro.svg new file mode 100755 index 0000000..c804445 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/camera-retro.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/camera.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/camera.svg new file mode 100755 index 0000000..2837a87 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/camera.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/cannabis.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/cannabis.svg new file mode 100755 index 0000000..fbc8f67 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/cannabis.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/capsules.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/capsules.svg new file mode 100755 index 0000000..e34bed8 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/capsules.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/car-alt.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/car-alt.svg new file mode 100755 index 0000000..09d3c3b --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/car-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/car-battery.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/car-battery.svg new file mode 100755 index 0000000..41dd5d0 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/car-battery.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/car-crash.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/car-crash.svg new file mode 100755 index 0000000..96b0c3e --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/car-crash.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/car-side.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/car-side.svg new file mode 100755 index 0000000..56d98ab --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/car-side.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/car.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/car.svg new file mode 100755 index 0000000..c607241 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/car.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/caret-down.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/caret-down.svg new file mode 100755 index 0000000..b571f1a --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/caret-down.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/caret-left.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/caret-left.svg new file mode 100755 index 0000000..d914366 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/caret-left.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/caret-right.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/caret-right.svg new file mode 100755 index 0000000..a36afd9 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/caret-right.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/caret-square-down.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/caret-square-down.svg new file mode 100755 index 0000000..e069ef2 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/caret-square-down.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/caret-square-left.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/caret-square-left.svg new file mode 100755 index 0000000..5206e46 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/caret-square-left.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/caret-square-right.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/caret-square-right.svg new file mode 100755 index 0000000..3e3d81c --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/caret-square-right.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/caret-square-up.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/caret-square-up.svg new file mode 100755 index 0000000..633f0bf --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/caret-square-up.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/caret-up.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/caret-up.svg new file mode 100755 index 0000000..dd70ab6 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/caret-up.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/cart-arrow-down.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/cart-arrow-down.svg new file mode 100755 index 0000000..bf31c0a --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/cart-arrow-down.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/cart-plus.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/cart-plus.svg new file mode 100755 index 0000000..98f1100 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/cart-plus.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/certificate.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/certificate.svg new file mode 100755 index 0000000..e3a8339 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/certificate.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/chalkboard-teacher.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/chalkboard-teacher.svg new file mode 100755 index 0000000..3e30833 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/chalkboard-teacher.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/chalkboard.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/chalkboard.svg new file mode 100755 index 0000000..0bcb73a --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/chalkboard.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/charging-station.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/charging-station.svg new file mode 100755 index 0000000..e186b30 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/charging-station.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/chart-area.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/chart-area.svg new file mode 100755 index 0000000..33384aa --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/chart-area.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/chart-bar.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/chart-bar.svg new file mode 100755 index 0000000..b70715a --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/chart-bar.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/chart-line.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/chart-line.svg new file mode 100755 index 0000000..7f951de --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/chart-line.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/chart-pie.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/chart-pie.svg new file mode 100755 index 0000000..276c9aa --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/chart-pie.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/check-circle.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/check-circle.svg new file mode 100755 index 0000000..1ad2922 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/check-circle.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/check-double.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/check-double.svg new file mode 100755 index 0000000..1d99122 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/check-double.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/check-square.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/check-square.svg new file mode 100755 index 0000000..4b7aa55 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/check-square.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/check.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/check.svg new file mode 100755 index 0000000..6f93b7b --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/check.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/chess-bishop.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/chess-bishop.svg new file mode 100755 index 0000000..8e60c23 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/chess-bishop.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/chess-board.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/chess-board.svg new file mode 100755 index 0000000..b708687 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/chess-board.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/chess-king.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/chess-king.svg new file mode 100755 index 0000000..3b33c30 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/chess-king.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/chess-knight.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/chess-knight.svg new file mode 100755 index 0000000..5159817 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/chess-knight.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/chess-pawn.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/chess-pawn.svg new file mode 100755 index 0000000..8555be5 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/chess-pawn.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/chess-queen.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/chess-queen.svg new file mode 100755 index 0000000..943bc11 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/chess-queen.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/chess-rook.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/chess-rook.svg new file mode 100755 index 0000000..8c3df7a --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/chess-rook.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/chess.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/chess.svg new file mode 100755 index 0000000..96ff364 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/chess.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/chevron-circle-down.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/chevron-circle-down.svg new file mode 100755 index 0000000..fc49f88 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/chevron-circle-down.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/chevron-circle-left.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/chevron-circle-left.svg new file mode 100755 index 0000000..d1e012f --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/chevron-circle-left.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/chevron-circle-right.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/chevron-circle-right.svg new file mode 100755 index 0000000..097623e --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/chevron-circle-right.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/chevron-circle-up.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/chevron-circle-up.svg new file mode 100755 index 0000000..9d1b157 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/chevron-circle-up.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/chevron-down.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/chevron-down.svg new file mode 100755 index 0000000..989f2c0 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/chevron-down.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/chevron-left.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/chevron-left.svg new file mode 100755 index 0000000..7c5f3c1 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/chevron-left.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/chevron-right.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/chevron-right.svg new file mode 100755 index 0000000..9a1e0c5 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/chevron-right.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/chevron-up.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/chevron-up.svg new file mode 100755 index 0000000..01c9155 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/chevron-up.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/child.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/child.svg new file mode 100755 index 0000000..f9da762 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/child.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/church.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/church.svg new file mode 100755 index 0000000..e14ec35 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/church.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/circle-notch.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/circle-notch.svg new file mode 100755 index 0000000..fc8cffe --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/circle-notch.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/circle.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/circle.svg new file mode 100755 index 0000000..9157fe8 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/circle.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/city.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/city.svg new file mode 100755 index 0000000..2014396 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/city.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/clipboard-check.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/clipboard-check.svg new file mode 100755 index 0000000..7c892d4 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/clipboard-check.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/clipboard-list.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/clipboard-list.svg new file mode 100755 index 0000000..830355f --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/clipboard-list.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/clipboard.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/clipboard.svg new file mode 100755 index 0000000..a5f1a93 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/clipboard.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/clock.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/clock.svg new file mode 100755 index 0000000..c0571de --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/clock.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/clone.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/clone.svg new file mode 100755 index 0000000..6c94fce --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/clone.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/closed-captioning.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/closed-captioning.svg new file mode 100755 index 0000000..f1da7a6 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/closed-captioning.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/cloud-download-alt.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/cloud-download-alt.svg new file mode 100755 index 0000000..54a872c --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/cloud-download-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/cloud-upload-alt.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/cloud-upload-alt.svg new file mode 100755 index 0000000..ed0803b --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/cloud-upload-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/cloud.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/cloud.svg new file mode 100755 index 0000000..fc48ad4 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/cloud.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/cocktail.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/cocktail.svg new file mode 100755 index 0000000..2defd35 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/cocktail.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/code-branch.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/code-branch.svg new file mode 100755 index 0000000..da22bf1 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/code-branch.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/code.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/code.svg new file mode 100755 index 0000000..908afd8 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/code.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/coffee.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/coffee.svg new file mode 100755 index 0000000..5908d7b --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/coffee.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/cog.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/cog.svg new file mode 100755 index 0000000..c800d8a --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/cog.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/cogs.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/cogs.svg new file mode 100755 index 0000000..3d3bc5d --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/cogs.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/coins.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/coins.svg new file mode 100755 index 0000000..0cb4fc0 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/coins.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/columns.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/columns.svg new file mode 100755 index 0000000..ae6f6d8 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/columns.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/comment-alt.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/comment-alt.svg new file mode 100755 index 0000000..ffbf759 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/comment-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/comment-dollar.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/comment-dollar.svg new file mode 100755 index 0000000..0a3eb29 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/comment-dollar.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/comment-dots.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/comment-dots.svg new file mode 100755 index 0000000..bbd5ed7 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/comment-dots.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/comment-slash.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/comment-slash.svg new file mode 100755 index 0000000..1767390 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/comment-slash.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/comment.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/comment.svg new file mode 100755 index 0000000..ca7aafa --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/comment.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/comments-dollar.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/comments-dollar.svg new file mode 100755 index 0000000..268cab1 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/comments-dollar.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/comments.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/comments.svg new file mode 100755 index 0000000..b444e09 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/comments.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/compact-disc.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/compact-disc.svg new file mode 100755 index 0000000..d8bf25a --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/compact-disc.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/compass.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/compass.svg new file mode 100755 index 0000000..5a2c5af --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/compass.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/compress.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/compress.svg new file mode 100755 index 0000000..251aa23 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/compress.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/concierge-bell.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/concierge-bell.svg new file mode 100755 index 0000000..586c92e --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/concierge-bell.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/cookie-bite.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/cookie-bite.svg new file mode 100755 index 0000000..b46e719 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/cookie-bite.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/cookie.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/cookie.svg new file mode 100755 index 0000000..c49305d --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/cookie.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/copy.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/copy.svg new file mode 100755 index 0000000..0c38103 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/copy.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/copyright.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/copyright.svg new file mode 100755 index 0000000..d5ea053 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/copyright.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/couch.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/couch.svg new file mode 100755 index 0000000..9b224ca --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/couch.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/credit-card.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/credit-card.svg new file mode 100755 index 0000000..d3483a6 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/credit-card.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/crop-alt.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/crop-alt.svg new file mode 100755 index 0000000..a52f32f --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/crop-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/crop.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/crop.svg new file mode 100755 index 0000000..2d69ba5 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/crop.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/cross.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/cross.svg new file mode 100755 index 0000000..f4691e7 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/cross.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/crosshairs.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/crosshairs.svg new file mode 100755 index 0000000..c13dc51 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/crosshairs.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/crow.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/crow.svg new file mode 100755 index 0000000..479663b --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/crow.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/crown.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/crown.svg new file mode 100755 index 0000000..b6f54a8 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/crown.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/cube.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/cube.svg new file mode 100755 index 0000000..0695abe --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/cube.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/cubes.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/cubes.svg new file mode 100755 index 0000000..5f54330 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/cubes.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/cut.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/cut.svg new file mode 100755 index 0000000..631819e --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/cut.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/database.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/database.svg new file mode 100755 index 0000000..d0af600 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/database.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/deaf.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/deaf.svg new file mode 100755 index 0000000..d6f7f8a --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/deaf.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/desktop.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/desktop.svg new file mode 100755 index 0000000..de176c7 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/desktop.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/dharmachakra.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/dharmachakra.svg new file mode 100755 index 0000000..f5c667d --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/dharmachakra.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/diagnoses.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/diagnoses.svg new file mode 100755 index 0000000..7df06eb --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/diagnoses.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/dice-five.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/dice-five.svg new file mode 100755 index 0000000..2053206 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/dice-five.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/dice-four.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/dice-four.svg new file mode 100755 index 0000000..808fceb --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/dice-four.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/dice-one.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/dice-one.svg new file mode 100755 index 0000000..836d957 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/dice-one.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/dice-six.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/dice-six.svg new file mode 100755 index 0000000..320dd4a --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/dice-six.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/dice-three.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/dice-three.svg new file mode 100755 index 0000000..c15ca3d --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/dice-three.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/dice-two.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/dice-two.svg new file mode 100755 index 0000000..bc02676 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/dice-two.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/dice.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/dice.svg new file mode 100755 index 0000000..7f115bd --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/dice.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/digital-tachograph.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/digital-tachograph.svg new file mode 100755 index 0000000..3150243 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/digital-tachograph.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/directions.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/directions.svg new file mode 100755 index 0000000..b284deb --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/directions.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/divide.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/divide.svg new file mode 100755 index 0000000..412c1ad --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/divide.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/dizzy.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/dizzy.svg new file mode 100755 index 0000000..e830c05 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/dizzy.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/dna.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/dna.svg new file mode 100755 index 0000000..3e9f8cf --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/dna.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/dollar-sign.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/dollar-sign.svg new file mode 100755 index 0000000..cd68494 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/dollar-sign.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/dolly-flatbed.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/dolly-flatbed.svg new file mode 100755 index 0000000..30f06c3 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/dolly-flatbed.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/dolly.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/dolly.svg new file mode 100755 index 0000000..66c52e7 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/dolly.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/donate.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/donate.svg new file mode 100755 index 0000000..403f939 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/donate.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/door-closed.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/door-closed.svg new file mode 100755 index 0000000..df313ed --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/door-closed.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/door-open.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/door-open.svg new file mode 100755 index 0000000..e7b8890 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/door-open.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/dot-circle.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/dot-circle.svg new file mode 100755 index 0000000..6af4c79 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/dot-circle.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/dove.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/dove.svg new file mode 100755 index 0000000..49468a4 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/dove.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/download.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/download.svg new file mode 100755 index 0000000..fafbf38 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/download.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/drafting-compass.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/drafting-compass.svg new file mode 100755 index 0000000..113846f --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/drafting-compass.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/draw-polygon.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/draw-polygon.svg new file mode 100755 index 0000000..c962c25 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/draw-polygon.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/drum-steelpan.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/drum-steelpan.svg new file mode 100755 index 0000000..285f424 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/drum-steelpan.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/drum.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/drum.svg new file mode 100755 index 0000000..6ba7b5f --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/drum.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/dumbbell.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/dumbbell.svg new file mode 100755 index 0000000..5f82aeb --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/dumbbell.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/edit.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/edit.svg new file mode 100755 index 0000000..a7e535d --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/edit.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/eject.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/eject.svg new file mode 100755 index 0000000..15a9a15 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/eject.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/ellipsis-h.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/ellipsis-h.svg new file mode 100755 index 0000000..c666658 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/ellipsis-h.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/ellipsis-v.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/ellipsis-v.svg new file mode 100755 index 0000000..2dafe84 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/ellipsis-v.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/envelope-open-text.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/envelope-open-text.svg new file mode 100755 index 0000000..0830b06 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/envelope-open-text.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/envelope-open.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/envelope-open.svg new file mode 100755 index 0000000..a187422 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/envelope-open.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/envelope-square.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/envelope-square.svg new file mode 100755 index 0000000..bddebea --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/envelope-square.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/envelope.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/envelope.svg new file mode 100755 index 0000000..a78481a --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/envelope.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/equals.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/equals.svg new file mode 100755 index 0000000..175bf34 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/equals.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/eraser.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/eraser.svg new file mode 100755 index 0000000..6f7ef3f --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/eraser.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/euro-sign.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/euro-sign.svg new file mode 100755 index 0000000..21b9478 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/euro-sign.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/exchange-alt.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/exchange-alt.svg new file mode 100755 index 0000000..492c3d8 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/exchange-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/exclamation-circle.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/exclamation-circle.svg new file mode 100755 index 0000000..637f780 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/exclamation-circle.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/exclamation-triangle.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/exclamation-triangle.svg new file mode 100755 index 0000000..be6ddbf --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/exclamation-triangle.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/exclamation.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/exclamation.svg new file mode 100755 index 0000000..7652c8a --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/exclamation.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/expand-arrows-alt.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/expand-arrows-alt.svg new file mode 100755 index 0000000..25120ef --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/expand-arrows-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/expand.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/expand.svg new file mode 100755 index 0000000..070a7aa --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/expand.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/external-link-alt.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/external-link-alt.svg new file mode 100755 index 0000000..f821f4d --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/external-link-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/external-link-square-alt.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/external-link-square-alt.svg new file mode 100755 index 0000000..536989a --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/external-link-square-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/eye-dropper.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/eye-dropper.svg new file mode 100755 index 0000000..f266828 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/eye-dropper.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/eye-slash.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/eye-slash.svg new file mode 100755 index 0000000..a80f536 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/eye-slash.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/eye.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/eye.svg new file mode 100755 index 0000000..1bfc398 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/eye.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/fast-backward.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/fast-backward.svg new file mode 100755 index 0000000..dfe10e5 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/fast-backward.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/fast-forward.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/fast-forward.svg new file mode 100755 index 0000000..57c072a --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/fast-forward.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/fax.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/fax.svg new file mode 100755 index 0000000..12386de --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/fax.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/feather-alt.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/feather-alt.svg new file mode 100755 index 0000000..934033b --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/feather-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/feather.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/feather.svg new file mode 100755 index 0000000..583425b --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/feather.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/female.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/female.svg new file mode 100755 index 0000000..3e3fbda --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/female.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/fighter-jet.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/fighter-jet.svg new file mode 100755 index 0000000..61e4c4f --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/fighter-jet.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/file-alt.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/file-alt.svg new file mode 100755 index 0000000..3952aaa --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/file-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/file-archive.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/file-archive.svg new file mode 100755 index 0000000..f739651 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/file-archive.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/file-audio.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/file-audio.svg new file mode 100755 index 0000000..e2933bd --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/file-audio.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/file-code.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/file-code.svg new file mode 100755 index 0000000..e7600e2 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/file-code.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/file-contract.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/file-contract.svg new file mode 100755 index 0000000..475e90d --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/file-contract.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/file-download.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/file-download.svg new file mode 100755 index 0000000..9e84c3b --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/file-download.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/file-excel.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/file-excel.svg new file mode 100755 index 0000000..1a5cc28 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/file-excel.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/file-export.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/file-export.svg new file mode 100755 index 0000000..be19d97 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/file-export.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/file-image.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/file-image.svg new file mode 100755 index 0000000..1951a01 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/file-image.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/file-import.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/file-import.svg new file mode 100755 index 0000000..a2484f6 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/file-import.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/file-invoice-dollar.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/file-invoice-dollar.svg new file mode 100755 index 0000000..96c8a69 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/file-invoice-dollar.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/file-invoice.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/file-invoice.svg new file mode 100755 index 0000000..51963b9 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/file-invoice.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/file-medical-alt.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/file-medical-alt.svg new file mode 100755 index 0000000..9da3886 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/file-medical-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/file-medical.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/file-medical.svg new file mode 100755 index 0000000..bd71cb9 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/file-medical.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/file-pdf.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/file-pdf.svg new file mode 100755 index 0000000..a3bc43c --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/file-pdf.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/file-powerpoint.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/file-powerpoint.svg new file mode 100755 index 0000000..6d41800 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/file-powerpoint.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/file-prescription.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/file-prescription.svg new file mode 100755 index 0000000..bfc7904 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/file-prescription.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/file-signature.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/file-signature.svg new file mode 100755 index 0000000..1950124 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/file-signature.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/file-upload.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/file-upload.svg new file mode 100755 index 0000000..5aad888 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/file-upload.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/file-video.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/file-video.svg new file mode 100755 index 0000000..46ecd9c --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/file-video.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/file-word.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/file-word.svg new file mode 100755 index 0000000..ffed9b0 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/file-word.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/file.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/file.svg new file mode 100755 index 0000000..b8f22ac --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/file.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/fill-drip.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/fill-drip.svg new file mode 100755 index 0000000..bc48477 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/fill-drip.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/fill.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/fill.svg new file mode 100755 index 0000000..0653676 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/fill.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/film.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/film.svg new file mode 100755 index 0000000..42cd0c2 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/film.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/filter.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/filter.svg new file mode 100755 index 0000000..7ccd09f --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/filter.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/fingerprint.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/fingerprint.svg new file mode 100755 index 0000000..6f11738 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/fingerprint.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/fire-extinguisher.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/fire-extinguisher.svg new file mode 100755 index 0000000..4815e24 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/fire-extinguisher.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/fire.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/fire.svg new file mode 100755 index 0000000..59dfef3 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/fire.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/first-aid.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/first-aid.svg new file mode 100755 index 0000000..c6814e5 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/first-aid.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/fish.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/fish.svg new file mode 100755 index 0000000..3553091 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/fish.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/flag-checkered.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/flag-checkered.svg new file mode 100755 index 0000000..40a0328 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/flag-checkered.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/flag.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/flag.svg new file mode 100755 index 0000000..7d928c1 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/flag.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/flask.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/flask.svg new file mode 100755 index 0000000..b1f40c4 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/flask.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/flushed.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/flushed.svg new file mode 100755 index 0000000..76111ed --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/flushed.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/folder-minus.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/folder-minus.svg new file mode 100755 index 0000000..f6c50b7 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/folder-minus.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/folder-open.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/folder-open.svg new file mode 100755 index 0000000..5689733 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/folder-open.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/folder-plus.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/folder-plus.svg new file mode 100755 index 0000000..83dabdb --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/folder-plus.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/folder.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/folder.svg new file mode 100755 index 0000000..4256b30 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/folder.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/font-awesome-logo-full.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/font-awesome-logo-full.svg new file mode 100755 index 0000000..65e05f3 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/font-awesome-logo-full.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/font.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/font.svg new file mode 100755 index 0000000..cd0b723 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/font.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/football-ball.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/football-ball.svg new file mode 100755 index 0000000..6787e71 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/football-ball.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/forward.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/forward.svg new file mode 100755 index 0000000..feddaa5 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/forward.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/frog.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/frog.svg new file mode 100755 index 0000000..2095d48 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/frog.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/frown-open.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/frown-open.svg new file mode 100755 index 0000000..7b6dc2d --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/frown-open.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/frown.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/frown.svg new file mode 100755 index 0000000..0559e0e --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/frown.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/funnel-dollar.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/funnel-dollar.svg new file mode 100755 index 0000000..abafe3b --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/funnel-dollar.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/futbol.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/futbol.svg new file mode 100755 index 0000000..8213041 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/futbol.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/gamepad.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/gamepad.svg new file mode 100755 index 0000000..fe36250 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/gamepad.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/gas-pump.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/gas-pump.svg new file mode 100755 index 0000000..0a155b8 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/gas-pump.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/gavel.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/gavel.svg new file mode 100755 index 0000000..a697238 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/gavel.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/gem.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/gem.svg new file mode 100755 index 0000000..330fbd9 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/gem.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/genderless.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/genderless.svg new file mode 100755 index 0000000..3d78748 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/genderless.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/gift.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/gift.svg new file mode 100755 index 0000000..8c3d9b2 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/gift.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/glass-martini-alt.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/glass-martini-alt.svg new file mode 100755 index 0000000..72c4e38 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/glass-martini-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/glass-martini.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/glass-martini.svg new file mode 100755 index 0000000..5c67c12 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/glass-martini.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/glasses.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/glasses.svg new file mode 100755 index 0000000..907abac --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/glasses.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/globe-africa.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/globe-africa.svg new file mode 100755 index 0000000..ce2928c --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/globe-africa.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/globe-americas.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/globe-americas.svg new file mode 100755 index 0000000..448171c --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/globe-americas.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/globe-asia.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/globe-asia.svg new file mode 100755 index 0000000..3595f97 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/globe-asia.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/globe.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/globe.svg new file mode 100755 index 0000000..9a5e6a5 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/globe.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/golf-ball.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/golf-ball.svg new file mode 100755 index 0000000..3f2a8d1 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/golf-ball.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/gopuram.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/gopuram.svg new file mode 100755 index 0000000..a3084ca --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/gopuram.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/graduation-cap.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/graduation-cap.svg new file mode 100755 index 0000000..480b3d1 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/graduation-cap.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/greater-than-equal.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/greater-than-equal.svg new file mode 100755 index 0000000..2e0bfb6 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/greater-than-equal.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/greater-than.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/greater-than.svg new file mode 100755 index 0000000..8be984d --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/greater-than.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/grimace.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/grimace.svg new file mode 100755 index 0000000..d54aa70 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/grimace.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/grin-alt.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/grin-alt.svg new file mode 100755 index 0000000..28eab85 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/grin-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/grin-beam-sweat.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/grin-beam-sweat.svg new file mode 100755 index 0000000..2121909 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/grin-beam-sweat.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/grin-beam.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/grin-beam.svg new file mode 100755 index 0000000..e1bec3a --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/grin-beam.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/grin-hearts.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/grin-hearts.svg new file mode 100755 index 0000000..26d5311 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/grin-hearts.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/grin-squint-tears.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/grin-squint-tears.svg new file mode 100755 index 0000000..eec62b0 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/grin-squint-tears.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/grin-squint.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/grin-squint.svg new file mode 100755 index 0000000..c142f0d --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/grin-squint.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/grin-stars.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/grin-stars.svg new file mode 100755 index 0000000..1e58c9a --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/grin-stars.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/grin-tears.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/grin-tears.svg new file mode 100755 index 0000000..582a630 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/grin-tears.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/grin-tongue-squint.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/grin-tongue-squint.svg new file mode 100755 index 0000000..261267f --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/grin-tongue-squint.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/grin-tongue-wink.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/grin-tongue-wink.svg new file mode 100755 index 0000000..4014d38 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/grin-tongue-wink.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/grin-tongue.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/grin-tongue.svg new file mode 100755 index 0000000..b0d0c61 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/grin-tongue.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/grin-wink.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/grin-wink.svg new file mode 100755 index 0000000..9f91819 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/grin-wink.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/grin.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/grin.svg new file mode 100755 index 0000000..777ead8 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/grin.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/grip-horizontal.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/grip-horizontal.svg new file mode 100755 index 0000000..50993fa --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/grip-horizontal.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/grip-vertical.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/grip-vertical.svg new file mode 100755 index 0000000..fffc27e --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/grip-vertical.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/h-square.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/h-square.svg new file mode 100755 index 0000000..bbf5369 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/h-square.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/hamsa.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/hamsa.svg new file mode 100755 index 0000000..67a1d0e --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/hamsa.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/hand-holding-heart.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/hand-holding-heart.svg new file mode 100755 index 0000000..79ae5f4 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/hand-holding-heart.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/hand-holding-usd.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/hand-holding-usd.svg new file mode 100755 index 0000000..3641822 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/hand-holding-usd.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/hand-holding.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/hand-holding.svg new file mode 100755 index 0000000..3ad890e --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/hand-holding.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/hand-lizard.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/hand-lizard.svg new file mode 100755 index 0000000..e79e46c --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/hand-lizard.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/hand-paper.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/hand-paper.svg new file mode 100755 index 0000000..e034ad0 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/hand-paper.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/hand-peace.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/hand-peace.svg new file mode 100755 index 0000000..048f45a --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/hand-peace.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/hand-point-down.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/hand-point-down.svg new file mode 100755 index 0000000..206d309 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/hand-point-down.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/hand-point-left.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/hand-point-left.svg new file mode 100755 index 0000000..b9f34d9 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/hand-point-left.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/hand-point-right.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/hand-point-right.svg new file mode 100755 index 0000000..13d3f42 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/hand-point-right.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/hand-point-up.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/hand-point-up.svg new file mode 100755 index 0000000..dec69f3 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/hand-point-up.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/hand-pointer.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/hand-pointer.svg new file mode 100755 index 0000000..dd81bf7 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/hand-pointer.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/hand-rock.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/hand-rock.svg new file mode 100755 index 0000000..0990f57 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/hand-rock.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/hand-scissors.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/hand-scissors.svg new file mode 100755 index 0000000..cc5813f --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/hand-scissors.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/hand-spock.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/hand-spock.svg new file mode 100755 index 0000000..9e474e2 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/hand-spock.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/hands-helping.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/hands-helping.svg new file mode 100755 index 0000000..09e2a8f --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/hands-helping.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/hands.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/hands.svg new file mode 100755 index 0000000..4b0b416 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/hands.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/handshake.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/handshake.svg new file mode 100755 index 0000000..727b750 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/handshake.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/hashtag.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/hashtag.svg new file mode 100755 index 0000000..9840176 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/hashtag.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/haykal.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/haykal.svg new file mode 100755 index 0000000..0000f4a --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/haykal.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/hdd.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/hdd.svg new file mode 100755 index 0000000..176cdcb --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/hdd.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/heading.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/heading.svg new file mode 100755 index 0000000..41a9c14 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/heading.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/headphones-alt.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/headphones-alt.svg new file mode 100755 index 0000000..648d467 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/headphones-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/headphones.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/headphones.svg new file mode 100755 index 0000000..f7b6b7e --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/headphones.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/headset.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/headset.svg new file mode 100755 index 0000000..cb3bf7f --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/headset.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/heart.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/heart.svg new file mode 100755 index 0000000..9f8fed2 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/heart.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/heartbeat.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/heartbeat.svg new file mode 100755 index 0000000..9c8219f --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/heartbeat.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/helicopter.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/helicopter.svg new file mode 100755 index 0000000..1775b84 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/helicopter.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/highlighter.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/highlighter.svg new file mode 100755 index 0000000..309f385 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/highlighter.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/history.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/history.svg new file mode 100755 index 0000000..4cd7d00 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/history.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/hockey-puck.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/hockey-puck.svg new file mode 100755 index 0000000..d437dec --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/hockey-puck.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/home.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/home.svg new file mode 100755 index 0000000..e776e9c --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/home.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/hospital-alt.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/hospital-alt.svg new file mode 100755 index 0000000..4f2fa40 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/hospital-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/hospital-symbol.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/hospital-symbol.svg new file mode 100755 index 0000000..ab3587f --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/hospital-symbol.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/hospital.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/hospital.svg new file mode 100755 index 0000000..d13b9fb --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/hospital.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/hot-tub.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/hot-tub.svg new file mode 100755 index 0000000..d9b81dd --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/hot-tub.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/hotel.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/hotel.svg new file mode 100755 index 0000000..e52308a --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/hotel.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/hourglass-end.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/hourglass-end.svg new file mode 100755 index 0000000..dfa6d4f --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/hourglass-end.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/hourglass-half.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/hourglass-half.svg new file mode 100755 index 0000000..c6acfed --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/hourglass-half.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/hourglass-start.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/hourglass-start.svg new file mode 100755 index 0000000..3a585ba --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/hourglass-start.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/hourglass.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/hourglass.svg new file mode 100755 index 0000000..afac008 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/hourglass.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/i-cursor.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/i-cursor.svg new file mode 100755 index 0000000..5c94b89 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/i-cursor.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/id-badge.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/id-badge.svg new file mode 100755 index 0000000..5081043 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/id-badge.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/id-card-alt.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/id-card-alt.svg new file mode 100755 index 0000000..63dd220 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/id-card-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/id-card.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/id-card.svg new file mode 100755 index 0000000..0b4680c --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/id-card.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/image.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/image.svg new file mode 100755 index 0000000..745ee73 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/image.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/images.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/images.svg new file mode 100755 index 0000000..1e18dba --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/images.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/inbox.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/inbox.svg new file mode 100755 index 0000000..c28adcf --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/inbox.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/indent.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/indent.svg new file mode 100755 index 0000000..b55698d --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/indent.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/industry.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/industry.svg new file mode 100755 index 0000000..3fff008 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/industry.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/infinity.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/infinity.svg new file mode 100755 index 0000000..2276f35 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/infinity.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/info-circle.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/info-circle.svg new file mode 100755 index 0000000..4469156 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/info-circle.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/info.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/info.svg new file mode 100755 index 0000000..27e8ad6 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/info.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/italic.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/italic.svg new file mode 100755 index 0000000..cc8b992 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/italic.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/jedi.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/jedi.svg new file mode 100755 index 0000000..feca2b6 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/jedi.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/joint.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/joint.svg new file mode 100755 index 0000000..6bf3aef --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/joint.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/journal-whills.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/journal-whills.svg new file mode 100755 index 0000000..92f922b --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/journal-whills.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/kaaba.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/kaaba.svg new file mode 100755 index 0000000..884b2ee --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/kaaba.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/key.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/key.svg new file mode 100755 index 0000000..7848ac2 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/key.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/keyboard.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/keyboard.svg new file mode 100755 index 0000000..dc00d6c --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/keyboard.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/khanda.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/khanda.svg new file mode 100755 index 0000000..e1b77dc --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/khanda.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/kiss-beam.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/kiss-beam.svg new file mode 100755 index 0000000..16ff2b8 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/kiss-beam.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/kiss-wink-heart.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/kiss-wink-heart.svg new file mode 100755 index 0000000..8d9c5d7 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/kiss-wink-heart.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/kiss.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/kiss.svg new file mode 100755 index 0000000..be52976 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/kiss.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/kiwi-bird.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/kiwi-bird.svg new file mode 100755 index 0000000..59c933b --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/kiwi-bird.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/landmark.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/landmark.svg new file mode 100755 index 0000000..3c6d8d8 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/landmark.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/language.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/language.svg new file mode 100755 index 0000000..5f7bbd9 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/language.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/laptop-code.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/laptop-code.svg new file mode 100755 index 0000000..828a11a --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/laptop-code.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/laptop.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/laptop.svg new file mode 100755 index 0000000..627c23f --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/laptop.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/laugh-beam.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/laugh-beam.svg new file mode 100755 index 0000000..74679b8 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/laugh-beam.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/laugh-squint.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/laugh-squint.svg new file mode 100755 index 0000000..678ba90 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/laugh-squint.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/laugh-wink.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/laugh-wink.svg new file mode 100755 index 0000000..2f3f774 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/laugh-wink.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/laugh.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/laugh.svg new file mode 100755 index 0000000..68c2fd4 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/laugh.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/layer-group.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/layer-group.svg new file mode 100755 index 0000000..4d7022e --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/layer-group.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/leaf.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/leaf.svg new file mode 100755 index 0000000..8ddae69 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/leaf.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/lemon.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/lemon.svg new file mode 100755 index 0000000..f83a561 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/lemon.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/less-than-equal.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/less-than-equal.svg new file mode 100755 index 0000000..5517bdc --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/less-than-equal.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/less-than.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/less-than.svg new file mode 100755 index 0000000..4b6b083 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/less-than.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/level-down-alt.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/level-down-alt.svg new file mode 100755 index 0000000..b047155 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/level-down-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/level-up-alt.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/level-up-alt.svg new file mode 100755 index 0000000..81dfe73 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/level-up-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/life-ring.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/life-ring.svg new file mode 100755 index 0000000..ff5895e --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/life-ring.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/lightbulb.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/lightbulb.svg new file mode 100755 index 0000000..982d15f --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/lightbulb.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/link.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/link.svg new file mode 100755 index 0000000..07d6a8b --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/link.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/lira-sign.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/lira-sign.svg new file mode 100755 index 0000000..25aa89b --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/lira-sign.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/list-alt.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/list-alt.svg new file mode 100755 index 0000000..db950f3 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/list-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/list-ol.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/list-ol.svg new file mode 100755 index 0000000..29e4379 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/list-ol.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/list-ul.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/list-ul.svg new file mode 100755 index 0000000..9222857 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/list-ul.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/list.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/list.svg new file mode 100755 index 0000000..978f5b8 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/list.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/location-arrow.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/location-arrow.svg new file mode 100755 index 0000000..7805c7e --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/location-arrow.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/lock-open.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/lock-open.svg new file mode 100755 index 0000000..1adab57 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/lock-open.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/lock.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/lock.svg new file mode 100755 index 0000000..c16a18e --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/lock.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/long-arrow-alt-down.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/long-arrow-alt-down.svg new file mode 100755 index 0000000..9af5a0a --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/long-arrow-alt-down.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/long-arrow-alt-left.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/long-arrow-alt-left.svg new file mode 100755 index 0000000..c88240d --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/long-arrow-alt-left.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/long-arrow-alt-right.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/long-arrow-alt-right.svg new file mode 100755 index 0000000..1612d8e --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/long-arrow-alt-right.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/long-arrow-alt-up.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/long-arrow-alt-up.svg new file mode 100755 index 0000000..6a746ca --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/long-arrow-alt-up.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/low-vision.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/low-vision.svg new file mode 100755 index 0000000..0b667d7 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/low-vision.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/luggage-cart.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/luggage-cart.svg new file mode 100755 index 0000000..b1aacd7 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/luggage-cart.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/magic.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/magic.svg new file mode 100755 index 0000000..7eae9d4 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/magic.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/magnet.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/magnet.svg new file mode 100755 index 0000000..f80e9b4 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/magnet.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/mail-bulk.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/mail-bulk.svg new file mode 100755 index 0000000..9517005 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/mail-bulk.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/male.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/male.svg new file mode 100755 index 0000000..67b2fa0 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/male.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/map-marked-alt.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/map-marked-alt.svg new file mode 100755 index 0000000..00f47fe --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/map-marked-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/map-marked.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/map-marked.svg new file mode 100755 index 0000000..3462e9e --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/map-marked.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/map-marker-alt.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/map-marker-alt.svg new file mode 100755 index 0000000..a97f6a9 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/map-marker-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/map-marker.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/map-marker.svg new file mode 100755 index 0000000..3cabfa5 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/map-marker.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/map-pin.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/map-pin.svg new file mode 100755 index 0000000..10e8505 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/map-pin.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/map-signs.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/map-signs.svg new file mode 100755 index 0000000..40cec83 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/map-signs.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/map.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/map.svg new file mode 100755 index 0000000..2af1486 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/map.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/marker.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/marker.svg new file mode 100755 index 0000000..35c181d --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/marker.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/mars-double.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/mars-double.svg new file mode 100755 index 0000000..e3a5a82 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/mars-double.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/mars-stroke-h.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/mars-stroke-h.svg new file mode 100755 index 0000000..ca4b96a --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/mars-stroke-h.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/mars-stroke-v.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/mars-stroke-v.svg new file mode 100755 index 0000000..5457af6 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/mars-stroke-v.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/mars-stroke.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/mars-stroke.svg new file mode 100755 index 0000000..8b8d34a --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/mars-stroke.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/mars.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/mars.svg new file mode 100755 index 0000000..030ed04 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/mars.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/medal.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/medal.svg new file mode 100755 index 0000000..3045035 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/medal.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/medkit.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/medkit.svg new file mode 100755 index 0000000..09dff8a --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/medkit.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/meh-blank.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/meh-blank.svg new file mode 100755 index 0000000..4040548 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/meh-blank.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/meh-rolling-eyes.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/meh-rolling-eyes.svg new file mode 100755 index 0000000..6d94187 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/meh-rolling-eyes.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/meh.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/meh.svg new file mode 100755 index 0000000..fcd7538 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/meh.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/memory.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/memory.svg new file mode 100755 index 0000000..fc3d87d --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/memory.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/menorah.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/menorah.svg new file mode 100755 index 0000000..7294e70 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/menorah.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/mercury.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/mercury.svg new file mode 100755 index 0000000..36a00a5 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/mercury.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/microchip.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/microchip.svg new file mode 100755 index 0000000..c620b7a --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/microchip.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/microphone-alt-slash.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/microphone-alt-slash.svg new file mode 100755 index 0000000..2b1d8a5 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/microphone-alt-slash.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/microphone-alt.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/microphone-alt.svg new file mode 100755 index 0000000..24197fe --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/microphone-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/microphone-slash.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/microphone-slash.svg new file mode 100755 index 0000000..42b52e3 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/microphone-slash.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/microphone.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/microphone.svg new file mode 100755 index 0000000..aae37a6 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/microphone.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/microscope.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/microscope.svg new file mode 100755 index 0000000..2c2237b --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/microscope.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/minus-circle.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/minus-circle.svg new file mode 100755 index 0000000..b30757f --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/minus-circle.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/minus-square.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/minus-square.svg new file mode 100755 index 0000000..93344da --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/minus-square.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/minus.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/minus.svg new file mode 100755 index 0000000..e4555a4 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/minus.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/mobile-alt.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/mobile-alt.svg new file mode 100755 index 0000000..71368b3 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/mobile-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/mobile.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/mobile.svg new file mode 100755 index 0000000..c33932b --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/mobile.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/money-bill-alt.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/money-bill-alt.svg new file mode 100755 index 0000000..9c1dd4c --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/money-bill-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/money-bill-wave-alt.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/money-bill-wave-alt.svg new file mode 100755 index 0000000..e088dc3 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/money-bill-wave-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/money-bill-wave.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/money-bill-wave.svg new file mode 100755 index 0000000..fbfdd23 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/money-bill-wave.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/money-bill.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/money-bill.svg new file mode 100755 index 0000000..0e91fcd --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/money-bill.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/money-check-alt.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/money-check-alt.svg new file mode 100755 index 0000000..c777f97 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/money-check-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/money-check.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/money-check.svg new file mode 100755 index 0000000..533981b --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/money-check.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/monument.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/monument.svg new file mode 100755 index 0000000..1a690ab --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/monument.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/moon.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/moon.svg new file mode 100755 index 0000000..4c4f483 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/moon.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/mortar-pestle.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/mortar-pestle.svg new file mode 100755 index 0000000..d3769bf --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/mortar-pestle.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/mosque.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/mosque.svg new file mode 100755 index 0000000..5934c3b --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/mosque.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/motorcycle.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/motorcycle.svg new file mode 100755 index 0000000..93dd16b --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/motorcycle.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/mouse-pointer.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/mouse-pointer.svg new file mode 100755 index 0000000..e9215b6 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/mouse-pointer.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/music.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/music.svg new file mode 100755 index 0000000..11f303b --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/music.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/neuter.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/neuter.svg new file mode 100755 index 0000000..7a44e32 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/neuter.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/newspaper.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/newspaper.svg new file mode 100755 index 0000000..2c9b97b --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/newspaper.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/not-equal.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/not-equal.svg new file mode 100755 index 0000000..945efd8 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/not-equal.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/notes-medical.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/notes-medical.svg new file mode 100755 index 0000000..dbcb87c --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/notes-medical.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/object-group.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/object-group.svg new file mode 100755 index 0000000..afc5ae7 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/object-group.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/object-ungroup.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/object-ungroup.svg new file mode 100755 index 0000000..5aedd2b --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/object-ungroup.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/oil-can.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/oil-can.svg new file mode 100755 index 0000000..c759e02 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/oil-can.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/om.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/om.svg new file mode 100755 index 0000000..0f089b2 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/om.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/outdent.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/outdent.svg new file mode 100755 index 0000000..42c459e --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/outdent.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/paint-brush.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/paint-brush.svg new file mode 100755 index 0000000..2cd7826 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/paint-brush.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/paint-roller.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/paint-roller.svg new file mode 100755 index 0000000..a6011b9 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/paint-roller.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/palette.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/palette.svg new file mode 100755 index 0000000..b7982ab --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/palette.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/pallet.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/pallet.svg new file mode 100755 index 0000000..4a3f8ff --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/pallet.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/paper-plane.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/paper-plane.svg new file mode 100755 index 0000000..6613e07 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/paper-plane.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/paperclip.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/paperclip.svg new file mode 100755 index 0000000..f94ca07 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/paperclip.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/parachute-box.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/parachute-box.svg new file mode 100755 index 0000000..f4c2a03 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/parachute-box.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/paragraph.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/paragraph.svg new file mode 100755 index 0000000..c17bd01 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/paragraph.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/parking.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/parking.svg new file mode 100755 index 0000000..46bf7f9 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/parking.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/passport.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/passport.svg new file mode 100755 index 0000000..665f440 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/passport.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/pastafarianism.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/pastafarianism.svg new file mode 100755 index 0000000..6a3b4ce --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/pastafarianism.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/paste.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/paste.svg new file mode 100755 index 0000000..16e8fae --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/paste.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/pause-circle.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/pause-circle.svg new file mode 100755 index 0000000..8278902 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/pause-circle.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/pause.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/pause.svg new file mode 100755 index 0000000..324a99e --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/pause.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/paw.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/paw.svg new file mode 100755 index 0000000..00eace8 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/paw.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/peace.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/peace.svg new file mode 100755 index 0000000..8d0cb41 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/peace.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/pen-alt.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/pen-alt.svg new file mode 100755 index 0000000..88c9358 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/pen-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/pen-fancy.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/pen-fancy.svg new file mode 100755 index 0000000..af9d7b7 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/pen-fancy.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/pen-nib.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/pen-nib.svg new file mode 100755 index 0000000..0c4406e --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/pen-nib.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/pen-square.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/pen-square.svg new file mode 100755 index 0000000..16055a7 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/pen-square.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/pen.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/pen.svg new file mode 100755 index 0000000..2ec3e99 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/pen.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/pencil-alt.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/pencil-alt.svg new file mode 100755 index 0000000..58abe03 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/pencil-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/pencil-ruler.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/pencil-ruler.svg new file mode 100755 index 0000000..3239800 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/pencil-ruler.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/people-carry.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/people-carry.svg new file mode 100755 index 0000000..8637513 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/people-carry.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/percent.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/percent.svg new file mode 100755 index 0000000..f624de9 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/percent.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/percentage.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/percentage.svg new file mode 100755 index 0000000..a70816f --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/percentage.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/phone-slash.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/phone-slash.svg new file mode 100755 index 0000000..b13c132 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/phone-slash.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/phone-square.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/phone-square.svg new file mode 100755 index 0000000..762f51b --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/phone-square.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/phone-volume.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/phone-volume.svg new file mode 100755 index 0000000..2a846c2 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/phone-volume.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/phone.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/phone.svg new file mode 100755 index 0000000..d59ff68 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/phone.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/piggy-bank.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/piggy-bank.svg new file mode 100755 index 0000000..4a1f230 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/piggy-bank.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/pills.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/pills.svg new file mode 100755 index 0000000..92234b2 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/pills.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/place-of-worship.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/place-of-worship.svg new file mode 100755 index 0000000..9a00b55 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/place-of-worship.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/plane-arrival.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/plane-arrival.svg new file mode 100755 index 0000000..6f209f9 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/plane-arrival.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/plane-departure.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/plane-departure.svg new file mode 100755 index 0000000..4fc53d1 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/plane-departure.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/plane.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/plane.svg new file mode 100755 index 0000000..01c117d --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/plane.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/play-circle.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/play-circle.svg new file mode 100755 index 0000000..2f53f23 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/play-circle.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/play.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/play.svg new file mode 100755 index 0000000..2ad868b --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/play.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/plug.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/plug.svg new file mode 100755 index 0000000..fb8141c --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/plug.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/plus-circle.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/plus-circle.svg new file mode 100755 index 0000000..eb8d6da --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/plus-circle.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/plus-square.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/plus-square.svg new file mode 100755 index 0000000..8f67cfd --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/plus-square.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/plus.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/plus.svg new file mode 100755 index 0000000..afe5d63 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/plus.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/podcast.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/podcast.svg new file mode 100755 index 0000000..524f890 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/podcast.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/poll-h.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/poll-h.svg new file mode 100755 index 0000000..4c0d548 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/poll-h.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/poll.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/poll.svg new file mode 100755 index 0000000..5d824b4 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/poll.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/poo.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/poo.svg new file mode 100755 index 0000000..7c8084e --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/poo.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/poop.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/poop.svg new file mode 100755 index 0000000..10203fe --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/poop.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/portrait.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/portrait.svg new file mode 100755 index 0000000..91e4f62 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/portrait.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/pound-sign.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/pound-sign.svg new file mode 100755 index 0000000..acdab05 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/pound-sign.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/power-off.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/power-off.svg new file mode 100755 index 0000000..8d7863a --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/power-off.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/pray.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/pray.svg new file mode 100755 index 0000000..f00b5f8 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/pray.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/praying-hands.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/praying-hands.svg new file mode 100755 index 0000000..b434b98 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/praying-hands.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/prescription-bottle-alt.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/prescription-bottle-alt.svg new file mode 100755 index 0000000..a9a2e34 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/prescription-bottle-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/prescription-bottle.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/prescription-bottle.svg new file mode 100755 index 0000000..69ba225 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/prescription-bottle.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/prescription.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/prescription.svg new file mode 100755 index 0000000..d880c37 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/prescription.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/print.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/print.svg new file mode 100755 index 0000000..882a110 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/print.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/procedures.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/procedures.svg new file mode 100755 index 0000000..a2da404 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/procedures.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/project-diagram.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/project-diagram.svg new file mode 100755 index 0000000..aca0e42 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/project-diagram.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/puzzle-piece.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/puzzle-piece.svg new file mode 100755 index 0000000..d0e1d72 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/puzzle-piece.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/qrcode.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/qrcode.svg new file mode 100755 index 0000000..da2b188 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/qrcode.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/question-circle.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/question-circle.svg new file mode 100755 index 0000000..f9d22b2 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/question-circle.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/question.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/question.svg new file mode 100755 index 0000000..79aa261 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/question.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/quidditch.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/quidditch.svg new file mode 100755 index 0000000..c9c73c5 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/quidditch.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/quote-left.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/quote-left.svg new file mode 100755 index 0000000..20a63f3 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/quote-left.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/quote-right.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/quote-right.svg new file mode 100755 index 0000000..c62ecc3 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/quote-right.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/quran.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/quran.svg new file mode 100755 index 0000000..e118592 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/quran.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/random.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/random.svg new file mode 100755 index 0000000..1a7aa91 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/random.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/receipt.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/receipt.svg new file mode 100755 index 0000000..cc3458f --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/receipt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/recycle.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/recycle.svg new file mode 100755 index 0000000..13f8f80 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/recycle.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/redo-alt.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/redo-alt.svg new file mode 100755 index 0000000..a4fc8fd --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/redo-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/redo.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/redo.svg new file mode 100755 index 0000000..a1fa47f --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/redo.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/registered.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/registered.svg new file mode 100755 index 0000000..5b7edcb --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/registered.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/reply-all.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/reply-all.svg new file mode 100755 index 0000000..eec675f --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/reply-all.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/reply.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/reply.svg new file mode 100755 index 0000000..3d452dc --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/reply.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/retweet.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/retweet.svg new file mode 100755 index 0000000..8e26eb5 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/retweet.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/ribbon.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/ribbon.svg new file mode 100755 index 0000000..34496fd --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/ribbon.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/road.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/road.svg new file mode 100755 index 0000000..c9a67d6 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/road.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/robot.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/robot.svg new file mode 100755 index 0000000..e4016d4 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/robot.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/rocket.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/rocket.svg new file mode 100755 index 0000000..01b598f --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/rocket.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/route.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/route.svg new file mode 100755 index 0000000..825281a --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/route.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/rss-square.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/rss-square.svg new file mode 100755 index 0000000..4ea6017 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/rss-square.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/rss.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/rss.svg new file mode 100755 index 0000000..aef8825 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/rss.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/ruble-sign.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/ruble-sign.svg new file mode 100755 index 0000000..d25a191 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/ruble-sign.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/ruler-combined.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/ruler-combined.svg new file mode 100755 index 0000000..ac99f00 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/ruler-combined.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/ruler-horizontal.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/ruler-horizontal.svg new file mode 100755 index 0000000..d6d9e20 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/ruler-horizontal.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/ruler-vertical.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/ruler-vertical.svg new file mode 100755 index 0000000..37eabb1 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/ruler-vertical.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/ruler.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/ruler.svg new file mode 100755 index 0000000..6e43136 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/ruler.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/rupee-sign.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/rupee-sign.svg new file mode 100755 index 0000000..7b4d1e5 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/rupee-sign.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/sad-cry.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/sad-cry.svg new file mode 100755 index 0000000..4281e9d --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/sad-cry.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/sad-tear.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/sad-tear.svg new file mode 100755 index 0000000..96e4eb4 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/sad-tear.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/save.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/save.svg new file mode 100755 index 0000000..fba5c0d --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/save.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/school.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/school.svg new file mode 100755 index 0000000..6089ddb --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/school.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/screwdriver.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/screwdriver.svg new file mode 100755 index 0000000..91dc746 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/screwdriver.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/search-dollar.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/search-dollar.svg new file mode 100755 index 0000000..fc8f5ca --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/search-dollar.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/search-location.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/search-location.svg new file mode 100755 index 0000000..0f0e418 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/search-location.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/search-minus.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/search-minus.svg new file mode 100755 index 0000000..bfcb87c --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/search-minus.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/search-plus.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/search-plus.svg new file mode 100755 index 0000000..bc8d129 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/search-plus.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/search.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/search.svg new file mode 100755 index 0000000..e6d1c27 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/search.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/seedling.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/seedling.svg new file mode 100755 index 0000000..0bc19ce --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/seedling.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/server.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/server.svg new file mode 100755 index 0000000..b07aa77 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/server.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/shapes.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/shapes.svg new file mode 100755 index 0000000..b9cdc87 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/shapes.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/share-alt-square.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/share-alt-square.svg new file mode 100755 index 0000000..3cd7039 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/share-alt-square.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/share-alt.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/share-alt.svg new file mode 100755 index 0000000..edbb48b --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/share-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/share-square.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/share-square.svg new file mode 100755 index 0000000..f31bb4c --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/share-square.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/share.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/share.svg new file mode 100755 index 0000000..163e993 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/share.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/shekel-sign.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/shekel-sign.svg new file mode 100755 index 0000000..5e8386f --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/shekel-sign.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/shield-alt.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/shield-alt.svg new file mode 100755 index 0000000..129b689 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/shield-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/ship.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/ship.svg new file mode 100755 index 0000000..4f68501 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/ship.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/shipping-fast.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/shipping-fast.svg new file mode 100755 index 0000000..b59b4c8 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/shipping-fast.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/shoe-prints.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/shoe-prints.svg new file mode 100755 index 0000000..e053edb --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/shoe-prints.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/shopping-bag.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/shopping-bag.svg new file mode 100755 index 0000000..c62ae8b --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/shopping-bag.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/shopping-basket.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/shopping-basket.svg new file mode 100755 index 0000000..92e6124 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/shopping-basket.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/shopping-cart.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/shopping-cart.svg new file mode 100755 index 0000000..fbdd5db --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/shopping-cart.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/shower.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/shower.svg new file mode 100755 index 0000000..e14d813 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/shower.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/shuttle-van.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/shuttle-van.svg new file mode 100755 index 0000000..15724bf --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/shuttle-van.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/sign-in-alt.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/sign-in-alt.svg new file mode 100755 index 0000000..0565f6b --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/sign-in-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/sign-language.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/sign-language.svg new file mode 100755 index 0000000..7955fc2 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/sign-language.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/sign-out-alt.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/sign-out-alt.svg new file mode 100755 index 0000000..b281e8f --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/sign-out-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/sign.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/sign.svg new file mode 100755 index 0000000..f2977ba --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/sign.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/signal.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/signal.svg new file mode 100755 index 0000000..8b4a09e --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/signal.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/signature.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/signature.svg new file mode 100755 index 0000000..a736fb4 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/signature.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/sitemap.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/sitemap.svg new file mode 100755 index 0000000..56363e8 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/sitemap.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/skull.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/skull.svg new file mode 100755 index 0000000..9268f70 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/skull.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/sliders-h.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/sliders-h.svg new file mode 100755 index 0000000..7e42e73 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/sliders-h.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/smile-beam.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/smile-beam.svg new file mode 100755 index 0000000..e8d019c --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/smile-beam.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/smile-wink.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/smile-wink.svg new file mode 100755 index 0000000..60796e0 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/smile-wink.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/smile.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/smile.svg new file mode 100755 index 0000000..bd47c28 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/smile.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/smoking-ban.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/smoking-ban.svg new file mode 100755 index 0000000..ae7bc45 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/smoking-ban.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/smoking.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/smoking.svg new file mode 100755 index 0000000..7cbd48f --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/smoking.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/snowflake.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/snowflake.svg new file mode 100755 index 0000000..2201803 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/snowflake.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/socks.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/socks.svg new file mode 100755 index 0000000..7634c69 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/socks.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/solar-panel.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/solar-panel.svg new file mode 100755 index 0000000..4064d3b --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/solar-panel.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/sort-alpha-down.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/sort-alpha-down.svg new file mode 100755 index 0000000..f86e485 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/sort-alpha-down.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/sort-alpha-up.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/sort-alpha-up.svg new file mode 100755 index 0000000..58626df --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/sort-alpha-up.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/sort-amount-down.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/sort-amount-down.svg new file mode 100755 index 0000000..0b16e0e --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/sort-amount-down.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/sort-amount-up.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/sort-amount-up.svg new file mode 100755 index 0000000..4905c7c --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/sort-amount-up.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/sort-down.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/sort-down.svg new file mode 100755 index 0000000..eab2d91 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/sort-down.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/sort-numeric-down.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/sort-numeric-down.svg new file mode 100755 index 0000000..8a7c4e8 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/sort-numeric-down.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/sort-numeric-up.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/sort-numeric-up.svg new file mode 100755 index 0000000..f678110 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/sort-numeric-up.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/sort-up.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/sort-up.svg new file mode 100755 index 0000000..6bc566e --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/sort-up.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/sort.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/sort.svg new file mode 100755 index 0000000..54345f9 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/sort.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/spa.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/spa.svg new file mode 100755 index 0000000..779291b --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/spa.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/space-shuttle.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/space-shuttle.svg new file mode 100755 index 0000000..0babc57 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/space-shuttle.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/spinner.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/spinner.svg new file mode 100755 index 0000000..4bd8d39 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/spinner.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/splotch.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/splotch.svg new file mode 100755 index 0000000..a8227bb --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/splotch.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/spray-can.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/spray-can.svg new file mode 100755 index 0000000..05c9840 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/spray-can.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/square-full.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/square-full.svg new file mode 100755 index 0000000..d61d0df --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/square-full.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/square-root-alt.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/square-root-alt.svg new file mode 100755 index 0000000..dd43adc --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/square-root-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/square.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/square.svg new file mode 100755 index 0000000..d2f4e3b --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/square.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/stamp.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/stamp.svg new file mode 100755 index 0000000..f133dff --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/stamp.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/star-and-crescent.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/star-and-crescent.svg new file mode 100755 index 0000000..88061a1 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/star-and-crescent.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/star-half-alt.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/star-half-alt.svg new file mode 100755 index 0000000..ca68119 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/star-half-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/star-half.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/star-half.svg new file mode 100755 index 0000000..f68c8c7 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/star-half.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/star-of-david.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/star-of-david.svg new file mode 100755 index 0000000..1830f50 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/star-of-david.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/star-of-life.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/star-of-life.svg new file mode 100755 index 0000000..0bcddae --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/star-of-life.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/star.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/star.svg new file mode 100755 index 0000000..400f76e --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/star.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/step-backward.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/step-backward.svg new file mode 100755 index 0000000..c8a5394 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/step-backward.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/step-forward.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/step-forward.svg new file mode 100755 index 0000000..8a25b3a --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/step-forward.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/stethoscope.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/stethoscope.svg new file mode 100755 index 0000000..b8da1d1 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/stethoscope.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/sticky-note.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/sticky-note.svg new file mode 100755 index 0000000..4441aec --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/sticky-note.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/stop-circle.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/stop-circle.svg new file mode 100755 index 0000000..55b28e3 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/stop-circle.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/stop.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/stop.svg new file mode 100755 index 0000000..d2f4e3b --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/stop.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/stopwatch.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/stopwatch.svg new file mode 100755 index 0000000..5abf08a --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/stopwatch.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/store-alt.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/store-alt.svg new file mode 100755 index 0000000..0f0344a --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/store-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/store.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/store.svg new file mode 100755 index 0000000..298b4b0 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/store.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/stream.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/stream.svg new file mode 100755 index 0000000..b3cfb7e --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/stream.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/street-view.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/street-view.svg new file mode 100755 index 0000000..eb9f3ed --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/street-view.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/strikethrough.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/strikethrough.svg new file mode 100755 index 0000000..2d36b30 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/strikethrough.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/stroopwafel.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/stroopwafel.svg new file mode 100755 index 0000000..7ab30b0 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/stroopwafel.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/subscript.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/subscript.svg new file mode 100755 index 0000000..4686b27 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/subscript.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/subway.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/subway.svg new file mode 100755 index 0000000..2d16c50 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/subway.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/suitcase-rolling.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/suitcase-rolling.svg new file mode 100755 index 0000000..1d5fa0c --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/suitcase-rolling.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/suitcase.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/suitcase.svg new file mode 100755 index 0000000..0c4089a --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/suitcase.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/sun.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/sun.svg new file mode 100755 index 0000000..50ab337 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/sun.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/superscript.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/superscript.svg new file mode 100755 index 0000000..d150d12 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/superscript.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/surprise.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/surprise.svg new file mode 100755 index 0000000..a280dde --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/surprise.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/swatchbook.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/swatchbook.svg new file mode 100755 index 0000000..58c7a89 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/swatchbook.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/swimmer.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/swimmer.svg new file mode 100755 index 0000000..11673e5 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/swimmer.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/swimming-pool.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/swimming-pool.svg new file mode 100755 index 0000000..8f930db --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/swimming-pool.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/synagogue.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/synagogue.svg new file mode 100755 index 0000000..8513dd3 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/synagogue.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/sync-alt.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/sync-alt.svg new file mode 100755 index 0000000..fa82f10 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/sync-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/sync.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/sync.svg new file mode 100755 index 0000000..7e1b7ff --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/sync.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/syringe.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/syringe.svg new file mode 100755 index 0000000..c2145aa --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/syringe.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/table-tennis.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/table-tennis.svg new file mode 100755 index 0000000..fc16a9d --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/table-tennis.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/table.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/table.svg new file mode 100755 index 0000000..17de4d1 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/table.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/tablet-alt.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/tablet-alt.svg new file mode 100755 index 0000000..9637a84 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/tablet-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/tablet.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/tablet.svg new file mode 100755 index 0000000..b1d1b0c --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/tablet.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/tablets.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/tablets.svg new file mode 100755 index 0000000..3673804 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/tablets.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/tachometer-alt.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/tachometer-alt.svg new file mode 100755 index 0000000..81df888 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/tachometer-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/tag.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/tag.svg new file mode 100755 index 0000000..1689911 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/tag.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/tags.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/tags.svg new file mode 100755 index 0000000..70015b2 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/tags.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/tape.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/tape.svg new file mode 100755 index 0000000..aeabdad --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/tape.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/tasks.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/tasks.svg new file mode 100755 index 0000000..67a0203 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/tasks.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/taxi.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/taxi.svg new file mode 100755 index 0000000..6fa95c7 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/taxi.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/teeth-open.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/teeth-open.svg new file mode 100755 index 0000000..8f5826c --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/teeth-open.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/teeth.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/teeth.svg new file mode 100755 index 0000000..cd2f9d7 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/teeth.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/terminal.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/terminal.svg new file mode 100755 index 0000000..04d13ff --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/terminal.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/text-height.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/text-height.svg new file mode 100755 index 0000000..f2cdd49 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/text-height.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/text-width.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/text-width.svg new file mode 100755 index 0000000..ca33e75 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/text-width.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/th-large.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/th-large.svg new file mode 100755 index 0000000..c9d51d2 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/th-large.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/th-list.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/th-list.svg new file mode 100755 index 0000000..6fd3038 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/th-list.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/th.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/th.svg new file mode 100755 index 0000000..e223b83 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/th.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/theater-masks.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/theater-masks.svg new file mode 100755 index 0000000..e8c6770 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/theater-masks.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/thermometer-empty.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/thermometer-empty.svg new file mode 100755 index 0000000..930c9d1 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/thermometer-empty.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/thermometer-full.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/thermometer-full.svg new file mode 100755 index 0000000..1d54d1e --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/thermometer-full.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/thermometer-half.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/thermometer-half.svg new file mode 100755 index 0000000..6451735 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/thermometer-half.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/thermometer-quarter.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/thermometer-quarter.svg new file mode 100755 index 0000000..9bcf2e3 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/thermometer-quarter.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/thermometer-three-quarters.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/thermometer-three-quarters.svg new file mode 100755 index 0000000..27aa4ff --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/thermometer-three-quarters.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/thermometer.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/thermometer.svg new file mode 100755 index 0000000..4927aa9 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/thermometer.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/thumbs-down.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/thumbs-down.svg new file mode 100755 index 0000000..3ec85e3 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/thumbs-down.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/thumbs-up.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/thumbs-up.svg new file mode 100755 index 0000000..276c968 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/thumbs-up.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/thumbtack.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/thumbtack.svg new file mode 100755 index 0000000..e07e12f --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/thumbtack.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/ticket-alt.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/ticket-alt.svg new file mode 100755 index 0000000..36ee2be --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/ticket-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/times-circle.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/times-circle.svg new file mode 100755 index 0000000..17e21f5 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/times-circle.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/times.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/times.svg new file mode 100755 index 0000000..79af4cf --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/times.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/tint-slash.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/tint-slash.svg new file mode 100755 index 0000000..9ef9faa --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/tint-slash.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/tint.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/tint.svg new file mode 100755 index 0000000..680a73e --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/tint.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/tired.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/tired.svg new file mode 100755 index 0000000..0adfc2b --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/tired.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/toggle-off.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/toggle-off.svg new file mode 100755 index 0000000..7dfa880 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/toggle-off.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/toggle-on.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/toggle-on.svg new file mode 100755 index 0000000..d44f809 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/toggle-on.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/toolbox.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/toolbox.svg new file mode 100755 index 0000000..15c5e63 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/toolbox.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/tooth.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/tooth.svg new file mode 100755 index 0000000..c56ef40 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/tooth.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/torah.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/torah.svg new file mode 100755 index 0000000..ae2c29f --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/torah.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/torii-gate.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/torii-gate.svg new file mode 100755 index 0000000..71b567a --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/torii-gate.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/trademark.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/trademark.svg new file mode 100755 index 0000000..4a556f9 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/trademark.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/traffic-light.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/traffic-light.svg new file mode 100755 index 0000000..1359709 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/traffic-light.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/train.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/train.svg new file mode 100755 index 0000000..f5cb410 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/train.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/transgender-alt.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/transgender-alt.svg new file mode 100755 index 0000000..365de7f --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/transgender-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/transgender.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/transgender.svg new file mode 100755 index 0000000..79d3dda --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/transgender.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/trash-alt.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/trash-alt.svg new file mode 100755 index 0000000..e097c5d --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/trash-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/trash.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/trash.svg new file mode 100755 index 0000000..8efd879 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/trash.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/tree.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/tree.svg new file mode 100755 index 0000000..8509812 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/tree.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/trophy.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/trophy.svg new file mode 100755 index 0000000..b52fa15 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/trophy.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/truck-loading.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/truck-loading.svg new file mode 100755 index 0000000..c5ed4cd --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/truck-loading.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/truck-monster.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/truck-monster.svg new file mode 100755 index 0000000..72e0365 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/truck-monster.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/truck-moving.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/truck-moving.svg new file mode 100755 index 0000000..a0ba387 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/truck-moving.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/truck-pickup.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/truck-pickup.svg new file mode 100755 index 0000000..593a136 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/truck-pickup.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/truck.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/truck.svg new file mode 100755 index 0000000..6daeae9 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/truck.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/tshirt.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/tshirt.svg new file mode 100755 index 0000000..3f53fa6 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/tshirt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/tty.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/tty.svg new file mode 100755 index 0000000..876e61b --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/tty.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/tv.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/tv.svg new file mode 100755 index 0000000..993b2ba --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/tv.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/umbrella-beach.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/umbrella-beach.svg new file mode 100755 index 0000000..f1eb336 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/umbrella-beach.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/umbrella.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/umbrella.svg new file mode 100755 index 0000000..1500f78 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/umbrella.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/underline.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/underline.svg new file mode 100755 index 0000000..55c453b --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/underline.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/undo-alt.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/undo-alt.svg new file mode 100755 index 0000000..5d29a8c --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/undo-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/undo.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/undo.svg new file mode 100755 index 0000000..4d47b73 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/undo.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/universal-access.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/universal-access.svg new file mode 100755 index 0000000..cfcd712 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/universal-access.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/university.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/university.svg new file mode 100755 index 0000000..8dd4c23 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/university.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/unlink.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/unlink.svg new file mode 100755 index 0000000..548330b --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/unlink.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/unlock-alt.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/unlock-alt.svg new file mode 100755 index 0000000..860240f --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/unlock-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/unlock.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/unlock.svg new file mode 100755 index 0000000..b39c92b --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/unlock.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/upload.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/upload.svg new file mode 100755 index 0000000..05cad1c --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/upload.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/user-alt-slash.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/user-alt-slash.svg new file mode 100755 index 0000000..e227b41 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/user-alt-slash.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/user-alt.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/user-alt.svg new file mode 100755 index 0000000..e5043d2 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/user-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/user-astronaut.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/user-astronaut.svg new file mode 100755 index 0000000..6844484 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/user-astronaut.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/user-check.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/user-check.svg new file mode 100755 index 0000000..1c98f06 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/user-check.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/user-circle.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/user-circle.svg new file mode 100755 index 0000000..9efdccb --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/user-circle.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/user-clock.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/user-clock.svg new file mode 100755 index 0000000..5b9ecd4 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/user-clock.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/user-cog.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/user-cog.svg new file mode 100755 index 0000000..0b9d5eb --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/user-cog.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/user-edit.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/user-edit.svg new file mode 100755 index 0000000..8494c70 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/user-edit.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/user-friends.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/user-friends.svg new file mode 100755 index 0000000..e3fba7d --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/user-friends.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/user-graduate.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/user-graduate.svg new file mode 100755 index 0000000..c7c6a04 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/user-graduate.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/user-lock.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/user-lock.svg new file mode 100755 index 0000000..2c90c32 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/user-lock.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/user-md.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/user-md.svg new file mode 100755 index 0000000..1734343 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/user-md.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/user-minus.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/user-minus.svg new file mode 100755 index 0000000..3d7dd9e --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/user-minus.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/user-ninja.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/user-ninja.svg new file mode 100755 index 0000000..4154d95 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/user-ninja.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/user-plus.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/user-plus.svg new file mode 100755 index 0000000..1f9cc0a --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/user-plus.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/user-secret.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/user-secret.svg new file mode 100755 index 0000000..f00804e --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/user-secret.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/user-shield.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/user-shield.svg new file mode 100755 index 0000000..3fb6197 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/user-shield.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/user-slash.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/user-slash.svg new file mode 100755 index 0000000..6c4cd56 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/user-slash.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/user-tag.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/user-tag.svg new file mode 100755 index 0000000..bb5b02c --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/user-tag.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/user-tie.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/user-tie.svg new file mode 100755 index 0000000..c35a2c8 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/user-tie.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/user-times.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/user-times.svg new file mode 100755 index 0000000..59cdec3 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/user-times.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/user.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/user.svg new file mode 100755 index 0000000..ad379d4 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/user.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/users-cog.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/users-cog.svg new file mode 100755 index 0000000..3cac803 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/users-cog.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/users.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/users.svg new file mode 100755 index 0000000..1c3235b --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/users.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/utensil-spoon.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/utensil-spoon.svg new file mode 100755 index 0000000..dc4af7c --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/utensil-spoon.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/utensils.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/utensils.svg new file mode 100755 index 0000000..4140b2e --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/utensils.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/vector-square.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/vector-square.svg new file mode 100755 index 0000000..9b12d56 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/vector-square.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/venus-double.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/venus-double.svg new file mode 100755 index 0000000..70f31f5 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/venus-double.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/venus-mars.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/venus-mars.svg new file mode 100755 index 0000000..098bbf5 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/venus-mars.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/venus.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/venus.svg new file mode 100755 index 0000000..80545b6 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/venus.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/vial.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/vial.svg new file mode 100755 index 0000000..86d371f --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/vial.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/vials.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/vials.svg new file mode 100755 index 0000000..d7baf3e --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/vials.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/video-slash.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/video-slash.svg new file mode 100755 index 0000000..8af6e9e --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/video-slash.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/video.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/video.svg new file mode 100755 index 0000000..e404138 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/video.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/vihara.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/vihara.svg new file mode 100755 index 0000000..adc86b5 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/vihara.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/volleyball-ball.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/volleyball-ball.svg new file mode 100755 index 0000000..84e0dcd --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/volleyball-ball.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/volume-down.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/volume-down.svg new file mode 100755 index 0000000..9878989 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/volume-down.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/volume-off.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/volume-off.svg new file mode 100755 index 0000000..69ed07e --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/volume-off.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/volume-up.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/volume-up.svg new file mode 100755 index 0000000..1a7dd64 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/volume-up.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/walking.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/walking.svg new file mode 100755 index 0000000..956bf93 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/walking.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/wallet.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/wallet.svg new file mode 100755 index 0000000..89619d1 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/wallet.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/warehouse.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/warehouse.svg new file mode 100755 index 0000000..2dbe203 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/warehouse.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/weight-hanging.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/weight-hanging.svg new file mode 100755 index 0000000..ade120c --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/weight-hanging.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/weight.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/weight.svg new file mode 100755 index 0000000..ddcb7f9 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/weight.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/wheelchair.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/wheelchair.svg new file mode 100755 index 0000000..d774e21 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/wheelchair.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/wifi.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/wifi.svg new file mode 100755 index 0000000..34a3bf8 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/wifi.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/window-close.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/window-close.svg new file mode 100755 index 0000000..5269124 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/window-close.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/window-maximize.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/window-maximize.svg new file mode 100755 index 0000000..c67a356 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/window-maximize.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/window-minimize.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/window-minimize.svg new file mode 100755 index 0000000..c3e4ad0 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/window-minimize.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/window-restore.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/window-restore.svg new file mode 100755 index 0000000..064dd9f --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/window-restore.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/wine-glass-alt.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/wine-glass-alt.svg new file mode 100755 index 0000000..08a8651 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/wine-glass-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/wine-glass.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/wine-glass.svg new file mode 100755 index 0000000..838ac22 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/wine-glass.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/won-sign.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/won-sign.svg new file mode 100755 index 0000000..82e2e32 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/won-sign.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/wrench.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/wrench.svg new file mode 100755 index 0000000..53b1d17 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/wrench.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/x-ray.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/x-ray.svg new file mode 100755 index 0000000..088d449 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/x-ray.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/yen-sign.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/yen-sign.svg new file mode 100755 index 0000000..c25d94d --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/yen-sign.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/yin-yang.svg b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/yin-yang.svg new file mode 100755 index 0000000..cafe50d --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/svgs/solid/yin-yang.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/@fortawesome/fontawesome-free/webfonts/fa-brands-400.eot b/public/assets/lib/@fortawesome/fontawesome-free/webfonts/fa-brands-400.eot new file mode 100755 index 0000000..086c4a7 Binary files /dev/null and b/public/assets/lib/@fortawesome/fontawesome-free/webfonts/fa-brands-400.eot differ diff --git a/public/assets/lib/@fortawesome/fontawesome-free/webfonts/fa-brands-400.svg b/public/assets/lib/@fortawesome/fontawesome-free/webfonts/fa-brands-400.svg new file mode 100755 index 0000000..10f7cdc --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/webfonts/fa-brands-400.svg @@ -0,0 +1,1154 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/@fortawesome/fontawesome-free/webfonts/fa-brands-400.ttf b/public/assets/lib/@fortawesome/fontawesome-free/webfonts/fa-brands-400.ttf new file mode 100755 index 0000000..ecbc761 Binary files /dev/null and b/public/assets/lib/@fortawesome/fontawesome-free/webfonts/fa-brands-400.ttf differ diff --git a/public/assets/lib/@fortawesome/fontawesome-free/webfonts/fa-brands-400.woff b/public/assets/lib/@fortawesome/fontawesome-free/webfonts/fa-brands-400.woff new file mode 100755 index 0000000..21c2dd3 Binary files /dev/null and b/public/assets/lib/@fortawesome/fontawesome-free/webfonts/fa-brands-400.woff differ diff --git a/public/assets/lib/@fortawesome/fontawesome-free/webfonts/fa-brands-400.woff2 b/public/assets/lib/@fortawesome/fontawesome-free/webfonts/fa-brands-400.woff2 new file mode 100755 index 0000000..8d8c89e Binary files /dev/null and b/public/assets/lib/@fortawesome/fontawesome-free/webfonts/fa-brands-400.woff2 differ diff --git a/public/assets/lib/@fortawesome/fontawesome-free/webfonts/fa-regular-400.eot b/public/assets/lib/@fortawesome/fontawesome-free/webfonts/fa-regular-400.eot new file mode 100755 index 0000000..656e9a0 Binary files /dev/null and b/public/assets/lib/@fortawesome/fontawesome-free/webfonts/fa-regular-400.eot differ diff --git a/public/assets/lib/@fortawesome/fontawesome-free/webfonts/fa-regular-400.svg b/public/assets/lib/@fortawesome/fontawesome-free/webfonts/fa-regular-400.svg new file mode 100755 index 0000000..0085843 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/webfonts/fa-regular-400.svg @@ -0,0 +1,467 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/@fortawesome/fontawesome-free/webfonts/fa-regular-400.ttf b/public/assets/lib/@fortawesome/fontawesome-free/webfonts/fa-regular-400.ttf new file mode 100755 index 0000000..36a7de3 Binary files /dev/null and b/public/assets/lib/@fortawesome/fontawesome-free/webfonts/fa-regular-400.ttf differ diff --git a/public/assets/lib/@fortawesome/fontawesome-free/webfonts/fa-regular-400.woff b/public/assets/lib/@fortawesome/fontawesome-free/webfonts/fa-regular-400.woff new file mode 100755 index 0000000..f7fab85 Binary files /dev/null and b/public/assets/lib/@fortawesome/fontawesome-free/webfonts/fa-regular-400.woff differ diff --git a/public/assets/lib/@fortawesome/fontawesome-free/webfonts/fa-regular-400.woff2 b/public/assets/lib/@fortawesome/fontawesome-free/webfonts/fa-regular-400.woff2 new file mode 100755 index 0000000..719a712 Binary files /dev/null and b/public/assets/lib/@fortawesome/fontawesome-free/webfonts/fa-regular-400.woff2 differ diff --git a/public/assets/lib/@fortawesome/fontawesome-free/webfonts/fa-solid-900.eot b/public/assets/lib/@fortawesome/fontawesome-free/webfonts/fa-solid-900.eot new file mode 100755 index 0000000..4e4cbb2 Binary files /dev/null and b/public/assets/lib/@fortawesome/fontawesome-free/webfonts/fa-solid-900.eot differ diff --git a/public/assets/lib/@fortawesome/fontawesome-free/webfonts/fa-solid-900.svg b/public/assets/lib/@fortawesome/fontawesome-free/webfonts/fa-solid-900.svg new file mode 100755 index 0000000..4f5aa88 --- /dev/null +++ b/public/assets/lib/@fortawesome/fontawesome-free/webfonts/fa-solid-900.svg @@ -0,0 +1,2444 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/@fortawesome/fontawesome-free/webfonts/fa-solid-900.ttf b/public/assets/lib/@fortawesome/fontawesome-free/webfonts/fa-solid-900.ttf new file mode 100755 index 0000000..2a05512 Binary files /dev/null and b/public/assets/lib/@fortawesome/fontawesome-free/webfonts/fa-solid-900.ttf differ diff --git a/public/assets/lib/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff b/public/assets/lib/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff new file mode 100755 index 0000000..839528c Binary files /dev/null and b/public/assets/lib/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff differ diff --git a/public/assets/lib/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2 b/public/assets/lib/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2 new file mode 100755 index 0000000..3aae386 Binary files /dev/null and b/public/assets/lib/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2 differ diff --git a/public/assets/lib/amazeui-datetimepicker/css/amazeui.datetimepicker.css b/public/assets/lib/amazeui-datetimepicker/css/amazeui.datetimepicker.css new file mode 100755 index 0000000..9fa16a7 --- /dev/null +++ b/public/assets/lib/amazeui-datetimepicker/css/amazeui.datetimepicker.css @@ -0,0 +1,10 @@ +/*! + * Datetimepicker for Amaze UI + * + * Copyright 2012 Stefan Petre + * Improvements by Andrew Rowls + * Improvements by Sébastien Malot + * Licensed under the Apache License v2.0 + * http://www.apache.org/licenses/LICENSE-2.0 + */ +.datetimepicker{margin-top:10px;border-radius:2px;-webkit-box-shadow:0 0 6px #ccc;box-shadow:0 0 6px #ccc;text-align:center}.datetimepicker:before{content:'';display:inline-block;width:0;height:0;vertical-align:middle;border-bottom:7px solid #3bb4f2;border-right:7px solid transparent;border-left:7px solid transparent;border-top:0 dotted;-webkit-transform:rotate(360deg);-ms-transform:rotate(360deg);transform:rotate(360deg);position:absolute}.datetimepicker.datetimepicker-rtl{direction:rtl}.datetimepicker.datetimepicker-rtl table tr td span{float:right}.datetimepicker>div{display:none}.datetimepicker table{width:238px;background:#3bb4f2;border-radius:2px}.datetimepicker table th,.datetimepicker table th.next,.datetimepicker table th.prev{-webkit-transition:background-color 300ms ease-out;transition:background-color 300ms ease-out}.datetimepicker table th{width:34px;height:40px;text-align:center;font-weight:400}.datetimepicker table th.switch{width:170px;background:#3bb4f2;color:#fff;cursor:pointer}.datetimepicker table th.next:hover,.datetimepicker table th.prev:hover,.datetimepicker table th.switch:hover{background:rgba(16,160,234,.5);color:#0084c7}.datetimepicker table th.next,.datetimepicker table th.prev{background:#3bb4f2;color:#fff;cursor:pointer}.datetimepicker table th.next i,.datetimepicker table th.prev i{width:34px;height:34px;display:inline-block}.datetimepicker table th.next{border-top-right-radius:2px}.datetimepicker table th.prev{border-top-left-radius:2px}.datetimepicker table th.dow{color:#3bb4f2;background:#fff}.datetimepicker table th.today{background:#fff;color:#3bb4f2;cursor:pointer}.datetimepicker table th.today:hover,.datetimepicker-days td:hover,.datetimepicker-hours span.hour:hover,.datetimepicker-hours span.minute:hover,.datetimepicker-hours span.month:hover,.datetimepicker-hours span.year:hover,.datetimepicker-minutes span.hour:hover,.datetimepicker-minutes span.minute:hover,.datetimepicker-minutes span.month:hover,.datetimepicker-minutes span.year:hover,.datetimepicker-months span.hour:hover,.datetimepicker-months span.minute:hover,.datetimepicker-months span.month:hover,.datetimepicker-months span.year:hover,.datetimepicker-years span.hour:hover,.datetimepicker-years span.minute:hover,.datetimepicker-years span.month:hover,.datetimepicker-years span.year:hover{background:#f0f0f0}.datetimepicker table .icon-arrow-left:before,.datetimepicker table .icon-arrow-right:before{display:inline-block;font:1.6rem/1 "FontAwesome",sans-serif;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-transform:translate(0,0);-ms-transform:translate(0,0);transform:translate(0,0);content:"\f053";vertical-align:bottom}.datetimepicker table .icon-arrow-right:before{content:"\f054"}.datetimepicker table td{width:34px;height:34px;cursor:pointer;font-size:1.4rem;color:#555;background:#fff}.datetimepicker table td.today{background:rgba(16,160,234,.5);color:#fff}.datetimepicker table span.active,.datetimepicker table td.active{background:#ececec;color:#3bb4f2}.datetimepicker table .new,.datetimepicker table .old{color:#89d7ff}.datetimepicker table .disabled{background:#fafafa;color:#999;cursor:not-allowed}.datetimepicker-hours table td,.datetimepicker-minutes table td,.datetimepicker-months table td,.datetimepicker-years table td{height:auto;background:#fff}.datetimepicker-hours table td:after,.datetimepicker-hours table td:before,.datetimepicker-minutes table td:after,.datetimepicker-minutes table td:before,.datetimepicker-months table td:after,.datetimepicker-months table td:before,.datetimepicker-years table td:after,.datetimepicker-years table td:before{content:" ";display:table}.datetimepicker-hours table td:after,.datetimepicker-minutes table td:after,.datetimepicker-months table td:after,.datetimepicker-years table td:after{clear:both}.datetimepicker-hours span.hour,.datetimepicker-hours span.minute,.datetimepicker-hours span.month,.datetimepicker-hours span.year,.datetimepicker-minutes span.hour,.datetimepicker-minutes span.minute,.datetimepicker-minutes span.month,.datetimepicker-minutes span.year,.datetimepicker-months span.hour,.datetimepicker-months span.minute,.datetimepicker-months span.month,.datetimepicker-months span.year,.datetimepicker-years span.hour,.datetimepicker-years span.minute,.datetimepicker-years span.month,.datetimepicker-years span.year{float:left;height:38px;width:59.5px;line-height:38px}.datetimepicker-hours fieldset,.datetimepicker-hours legend,.datetimepicker-minutes fieldset,.datetimepicker-minutes legend{margin:0;padding:0}.datetimepicker-inline{width:238px}.datetimepicker-inline:before{content:none}.datetimepicker-dropdown-bottom-right:before{top:-7px;left:10px}.datetimepicker-dropdown-bottom-left:before{top:-7px;right:10px}.datetimepicker-dropdown-top-left,.datetimepicker-dropdown-top-right{margin-top:0}.datetimepicker-dropdown-top-left:before,.datetimepicker-dropdown-top-right:before{display:inline-block;width:0;height:0;vertical-align:middle;border-top:7px solid #fff;border-right:7px solid transparent;border-left:7px solid transparent;border-bottom:0 dotted;-webkit-transform:rotate(360deg);-ms-transform:rotate(360deg);transform:rotate(360deg);bottom:-7px;right:10px}.am-input-group.date span.add-on{cursor:pointer}.dropdown-menu{position:absolute;display:none}@media only screen and (max-width:640px){.datetimepicker{width:100%;left:0!important}.datetimepicker table{width:100%}.datetimepicker td span.hour,.datetimepicker td span.minute,.datetimepicker td span.month,.datetimepicker td span.year{width:25%}.datetimepicker:before{content:none}.next,.prev{width:44px;height:44px}} \ No newline at end of file diff --git a/public/assets/lib/amazeui-datetimepicker/js/amazeui.datetimepicker.min.js b/public/assets/lib/amazeui-datetimepicker/js/amazeui.datetimepicker.min.js new file mode 100755 index 0000000..ae5ef84 --- /dev/null +++ b/public/assets/lib/amazeui-datetimepicker/js/amazeui.datetimepicker.min.js @@ -0,0 +1 @@ +(function(a){if(typeof define==="function"&&define.amd){define(["jquery"],a)}else{if(typeof exports==="object"){a(require("jquery"))}else{a(jQuery)}}}(function(f,c){if(!("indexOf" in Array.prototype)){Array.prototype.indexOf=function(k,j){if(j===c){j=0}if(j<0){j+=this.length}if(j<0){j=0}for(var l=this.length;j=this.startDate&&j<=this.endDate){this.date=j;this.setValue();this.viewDate=this.date;this.fill()}else{this.element.trigger({type:"outOfRange",date:j,startDate:this.startDate,endDate:this.endDate})}},setFormat:function(k){this.format=g.parseFormat(k,this.formatType);var j;if(this.isInput){j=this.element}else{if(this.component){j=this.element.find("input")}}if(j&&j.val()){this.setValue()}},setValue:function(){var j=this.getFormattedDate();if(!this.isInput){if(this.component){this.element.find("input").val(j)}this.element.data("date",j)}else{this.element.val(j)}if(this.linkField){f("#"+this.linkField).val(this.getFormattedDate(this.linkFormat))}},getFormattedDate:function(j){if(j==c){j=this.format}return g.formatDate(this.date,j,this.language,this.formatType)},setStartDate:function(j){this.startDate=j||-Infinity;if(this.startDate!==-Infinity){this.startDate=g.parseDate(this.startDate,this.format,this.language,this.formatType)}this.update();this.updateNavArrows()},setEndDate:function(j){this.endDate=j||Infinity;if(this.endDate!==Infinity){this.endDate=g.parseDate(this.endDate,this.format,this.language,this.formatType)}this.update();this.updateNavArrows()},setDatesDisabled:function(j){this.datesDisabled=j||[];if(!f.isArray(this.datesDisabled)){this.datesDisabled=this.datesDisabled.split(/,\s*/)}this.datesDisabled=f.map(this.datesDisabled,function(k){return g.parseDate(k,this.format,this.language,this.formatType).toDateString()});this.update();this.updateNavArrows()},setTitle:function(j,k){return this.picker.find(j).find("th:eq(1)").text(this.title===false?k:this.title)},setDaysOfWeekDisabled:function(j){this.daysOfWeekDisabled=j||[];if(!f.isArray(this.daysOfWeekDisabled)){this.daysOfWeekDisabled=this.daysOfWeekDisabled.split(/,\s*/)}this.daysOfWeekDisabled=f.map(this.daysOfWeekDisabled,function(k){return parseInt(k,10)});this.update();this.updateNavArrows()},setMinutesDisabled:function(j){this.minutesDisabled=j||[];if(!f.isArray(this.minutesDisabled)){this.minutesDisabled=this.minutesDisabled.split(/,\s*/)}this.minutesDisabled=f.map(this.minutesDisabled,function(k){return parseInt(k,10)});this.update();this.updateNavArrows()},setHoursDisabled:function(j){this.hoursDisabled=j||[];if(!f.isArray(this.hoursDisabled)){this.hoursDisabled=this.hoursDisabled.split(/,\s*/)}this.hoursDisabled=f.map(this.hoursDisabled,function(k){return parseInt(k,10)});this.update();this.updateNavArrows()},place:function(){if(this.isInline){return}if(!this.zIndex){var k=0;f("div").each(function(){var p=parseInt(f(this).css("zIndex"),10);if(p>k){k=p}});this.zIndex=k+10}var o,n,m,l;if(this.container instanceof f){l=this.container.offset()}else{l=f(this.container).offset()}if(this.component){o=this.component.offset();m=o.left;if(this.pickerPosition=="bottom-left"||this.pickerPosition=="top-left"){m+=this.component.outerWidth()-this.picker.outerWidth()}}else{o=this.element.offset();m=o.left;if(this.pickerPosition=="bottom-left"||this.pickerPosition=="top-left"){m+=this.element.outerWidth()-this.picker.outerWidth()}}var j=document.body.clientWidth||window.innerWidth;if(m+220>j){m=j-220}if(this.pickerPosition=="top-left"||this.pickerPosition=="top-right"){n=o.top-this.picker.outerHeight()}else{n=o.top+this.height}n=n-l.top;m=m-l.left;this.picker.css({top:n,left:m,zIndex:this.zIndex})},update:function(){var j,k=false;if(arguments&&arguments.length&&(typeof arguments[0]==="string"||arguments[0] instanceof Date)){j=arguments[0];k=true}else{j=(this.isInput?this.element.val():this.element.find("input").val())||this.element.data("date")||this.initialDate;if(typeof j=="string"||j instanceof String){j=j.replace(/^\s+|\s+$/g,"")}}if(!j){j=new Date();k=false}this.date=g.parseDate(j,this.format,this.language,this.formatType);if(k){this.setValue()}if(this.datethis.endDate){this.viewDate=new Date(this.endDate)}else{this.viewDate=new Date(this.date)}}this.fill()},fillDow:function(){var j=this.weekStart,k="";while(j'+a[this.language].daysMin[(j++)%7]+""}k+="";this.picker.find(".datetimepicker-days thead").append(k)},fillMonths:function(){var k="",j=0;while(j<12){k+=''+a[this.language].monthsShort[j++]+""}this.picker.find(".datetimepicker-months td").html(k)},fill:function(){if(this.date==null||this.viewDate==null){return}var H=new Date(this.viewDate),u=H.getUTCFullYear(),I=H.getUTCMonth(),n=H.getUTCDate(),D=H.getUTCHours(),y=H.getUTCMinutes(),z=this.startDate!==-Infinity?this.startDate.getUTCFullYear():-Infinity,E=this.startDate!==-Infinity?this.startDate.getUTCMonth()+1:-Infinity,q=this.endDate!==Infinity?this.endDate.getUTCFullYear():Infinity,A=this.endDate!==Infinity?this.endDate.getUTCMonth()+1:Infinity,r=(new h(this.date.getUTCFullYear(),this.date.getUTCMonth(),this.date.getUTCDate())).valueOf(),G=new Date();this.setTitle(".datetimepicker-days",a[this.language].months[I]+" "+u);if(this.formatViewType=="time"){var k=this.getFormattedDate();this.setTitle(".datetimepicker-hours",k);this.setTitle(".datetimepicker-minutes",k)}else{this.setTitle(".datetimepicker-hours",n+" "+a[this.language].months[I]+" "+u);this.setTitle(".datetimepicker-minutes",n+" "+a[this.language].months[I]+" "+u)}this.picker.find("tfoot th.today").text(a[this.language].today||a.en.today).toggle(this.todayBtn!==false);this.picker.find("tfoot th.clear").text(a[this.language].clear||a.en.clear).toggle(this.clearBtn!==false);this.updateNavArrows();this.fillMonths();var K=h(u,I-1,28,0,0,0,0),C=g.getDaysInMonth(K.getUTCFullYear(),K.getUTCMonth());K.setUTCDate(C);K.setUTCDate(C-(K.getUTCDay()-this.weekStart+7)%7);var j=new Date(K);j.setUTCDate(j.getUTCDate()+42);j=j.valueOf();var s=[];var v;while(K.valueOf()")}v="";if(K.getUTCFullYear()u||(K.getUTCFullYear()==u&&K.getUTCMonth()>I)){v+=" new"}}if(this.todayHighlight&&K.getUTCFullYear()==G.getFullYear()&&K.getUTCMonth()==G.getMonth()&&K.getUTCDate()==G.getDate()){v+=" today"}if(K.valueOf()==r){v+=" active"}if((K.valueOf()+86400000)<=this.startDate||K.valueOf()>this.endDate||f.inArray(K.getUTCDay(),this.daysOfWeekDisabled)!==-1||f.inArray(K.toDateString(),this.datesDisabled)!==-1){v+=" disabled"}s.push(''+K.getUTCDate()+"");if(K.getUTCDay()==this.weekEnd){s.push("")}K.setUTCDate(K.getUTCDate()+1)}this.picker.find(".datetimepicker-days tbody").empty().append(s.join(""));s=[];var w="",F="",t="";var l=this.hoursDisabled||[];for(var B=0;B<24;B++){if(l.indexOf(B)!==-1){continue}var x=h(u,I,n,B);v="";if((x.valueOf()+3600000)<=this.startDate||x.valueOf()>this.endDate){v+=" disabled"}else{if(D==B){v+=" active"}}if(this.showMeridian&&a[this.language].meridiem.length==2){F=(B<12?a[this.language].meridiem[0]:a[this.language].meridiem[1]);if(F!=t){if(t!=""){s.push("")}s.push('
'+F.toUpperCase()+"")}t=F;w=(B%12?B%12:12);s.push(''+w+"");if(B==23){s.push("
")}}else{w=B+":00";s.push(''+w+"")}}this.picker.find(".datetimepicker-hours td").html(s.join(""));s=[];w="",F="",t="";var m=this.minutesDisabled||[];for(var B=0;B<60;B+=this.minuteStep){if(m.indexOf(B)!==-1){continue}var x=h(u,I,n,D,B,0);v="";if(x.valueOf()this.endDate){v+=" disabled"}else{if(Math.floor(y/this.minuteStep)==Math.floor(B/this.minuteStep)){v+=" active"}}if(this.showMeridian&&a[this.language].meridiem.length==2){F=(D<12?a[this.language].meridiem[0]:a[this.language].meridiem[1]);if(F!=t){if(t!=""){s.push("")}s.push('
'+F.toUpperCase()+"")}t=F;w=(D%12?D%12:12);s.push(''+w+":"+(B<10?"0"+B:B)+"");if(B==59){s.push("
")}}else{w=B+":00";s.push(''+D+":"+(B<10?"0"+B:B)+"")}}this.picker.find(".datetimepicker-minutes td").html(s.join(""));var L=this.date.getUTCFullYear();var p=this.setTitle(".datetimepicker-months",u).end().find("span").removeClass("active");if(L==u){var o=p.length-12;p.eq(this.date.getUTCMonth()+o).addClass("active")}if(uq){p.addClass("disabled")}if(u==z){p.slice(0,E+1).addClass("disabled")}if(u==q){p.slice(A).addClass("disabled")}s="";u=parseInt(u/10,10)*10;var J=this.setTitle(".datetimepicker-years",u+"-"+(u+9)).end().find("td");u-=1;for(var B=-1;B<11;B++){s+='q?" disabled":"")+'">'+u+"";u+=1}J.html(s);this.place()},updateNavArrows:function(){var n=new Date(this.viewDate),l=n.getUTCFullYear(),m=n.getUTCMonth(),k=n.getUTCDate(),j=n.getUTCHours();switch(this.viewMode){case 0:if(this.startDate!==-Infinity&&l<=this.startDate.getUTCFullYear()&&m<=this.startDate.getUTCMonth()&&k<=this.startDate.getUTCDate()&&j<=this.startDate.getUTCHours()){this.picker.find(".prev").css({visibility:"hidden"})}else{this.picker.find(".prev").css({visibility:"visible"})}if(this.endDate!==Infinity&&l>=this.endDate.getUTCFullYear()&&m>=this.endDate.getUTCMonth()&&k>=this.endDate.getUTCDate()&&j>=this.endDate.getUTCHours()){this.picker.find(".next").css({visibility:"hidden"})}else{this.picker.find(".next").css({visibility:"visible"})}break;case 1:if(this.startDate!==-Infinity&&l<=this.startDate.getUTCFullYear()&&m<=this.startDate.getUTCMonth()&&k<=this.startDate.getUTCDate()){this.picker.find(".prev").css({visibility:"hidden"})}else{this.picker.find(".prev").css({visibility:"visible"})}if(this.endDate!==Infinity&&l>=this.endDate.getUTCFullYear()&&m>=this.endDate.getUTCMonth()&&k>=this.endDate.getUTCDate()){this.picker.find(".next").css({visibility:"hidden"})}else{this.picker.find(".next").css({visibility:"visible"})}break;case 2:if(this.startDate!==-Infinity&&l<=this.startDate.getUTCFullYear()&&m<=this.startDate.getUTCMonth()){this.picker.find(".prev").css({visibility:"hidden"})}else{this.picker.find(".prev").css({visibility:"visible"})}if(this.endDate!==Infinity&&l>=this.endDate.getUTCFullYear()&&m>=this.endDate.getUTCMonth()){this.picker.find(".next").css({visibility:"hidden"})}else{this.picker.find(".next").css({visibility:"visible"})}break;case 3:case 4:if(this.startDate!==-Infinity&&l<=this.startDate.getUTCFullYear()){this.picker.find(".prev").css({visibility:"hidden"})}else{this.picker.find(".prev").css({visibility:"visible"})}if(this.endDate!==Infinity&&l>=this.endDate.getUTCFullYear()){this.picker.find(".next").css({visibility:"hidden"})}else{this.picker.find(".next").css({visibility:"visible"})}break}},mousewheel:function(k){k.preventDefault();k.stopPropagation();if(this.wheelPause){return}this.wheelPause=true;var j=k.originalEvent;var m=j.wheelDelta;var l=m>0?1:(m===0)?0:-1;if(this.wheelViewModeNavigationInverseDirection){l=-l}this.showMode(l);setTimeout(f.proxy(function(){this.wheelPause=false},this),this.wheelViewModeNavigationDelay)},click:function(n){n.stopPropagation();n.preventDefault();var o=f(n.target).closest("span, td, th, legend");if(o.is("."+this.icontype)){o=f(o).parent().closest("span, td, th, legend")}if(o.length==1){if(o.is(".disabled")){this.element.trigger({type:"outOfRange",date:this.viewDate,startDate:this.startDate,endDate:this.endDate});return}switch(o[0].nodeName.toLowerCase()){case"th":switch(o[0].className){case"switch":this.showMode(1);break;case"prev":case"next":var j=g.modes[this.viewMode].navStep*(o[0].className=="prev"?-1:1);switch(this.viewMode){case 0:this.viewDate=this.moveHour(this.viewDate,j);break;case 1:this.viewDate=this.moveDate(this.viewDate,j);break;case 2:this.viewDate=this.moveMonth(this.viewDate,j);break;case 3:case 4:this.viewDate=this.moveYear(this.viewDate,j);break}this.fill();this.element.trigger({type:o[0].className+":"+this.convertViewModeText(this.viewMode),date:this.viewDate,startDate:this.startDate,endDate:this.endDate});break;case"clear":this.reset();if(this.autoclose){this.hide()}break;case"today":var k=new Date();k=h(k.getFullYear(),k.getMonth(),k.getDate(),k.getHours(),k.getMinutes(),k.getSeconds(),0);if(kthis.endDate){k=this.endDate}}this.viewMode=this.startViewMode;this.showMode(0);this._setDate(k);this.fill();if(this.autoclose){this.hide()}break}break;case"span":if(!o.is(".disabled")){var q=this.viewDate.getUTCFullYear(),p=this.viewDate.getUTCMonth(),r=this.viewDate.getUTCDate(),s=this.viewDate.getUTCHours(),l=this.viewDate.getUTCMinutes(),t=this.viewDate.getUTCSeconds();if(o.is(".month")){this.viewDate.setUTCDate(1);p=o.parent().find("span").index(o);r=this.viewDate.getUTCDate();this.viewDate.setUTCMonth(p);this.element.trigger({type:"changeMonth",date:this.viewDate});if(this.viewSelect>=3){this._setDate(h(q,p,r,s,l,t,0))}}else{if(o.is(".year")){this.viewDate.setUTCDate(1);q=parseInt(o.text(),10)||0;this.viewDate.setUTCFullYear(q);this.element.trigger({type:"changeYear",date:this.viewDate});if(this.viewSelect>=4){this._setDate(h(q,p,r,s,l,t,0))}}else{if(o.is(".hour")){s=parseInt(o.text(),10)||0;if(o.hasClass("hour_am")||o.hasClass("hour_pm")){if(s==12&&o.hasClass("hour_am")){s=0}else{if(s!=12&&o.hasClass("hour_pm")){s+=12}}}this.viewDate.setUTCHours(s);this.element.trigger({type:"changeHour",date:this.viewDate});if(this.viewSelect>=1){this._setDate(h(q,p,r,s,l,t,0))}}else{if(o.is(".minute")){l=parseInt(o.text().substr(o.text().indexOf(":")+1),10)||0;this.viewDate.setUTCMinutes(l);this.element.trigger({type:"changeMinute",date:this.viewDate});if(this.viewSelect>=0){this._setDate(h(q,p,r,s,l,t,0))}}}}}if(this.viewMode!=0){var m=this.viewMode;this.showMode(-1);this.fill();if(m==this.viewMode&&this.autoclose){this.hide()}}else{this.fill();if(this.autoclose){this.hide()}}}break;case"td":if(o.is(".day")&&!o.is(".disabled")){var r=parseInt(o.text(),10)||1;var q=this.viewDate.getUTCFullYear(),p=this.viewDate.getUTCMonth(),s=this.viewDate.getUTCHours(),l=this.viewDate.getUTCMinutes(),t=this.viewDate.getUTCSeconds();if(o.is(".old")){if(p===0){p=11;q-=1}else{p-=1}}else{if(o.is(".new")){if(p==11){p=0;q+=1}else{p+=1}}}this.viewDate.setUTCFullYear(q);this.viewDate.setUTCMonth(p,r);this.element.trigger({type:"changeDay",date:this.viewDate});if(this.viewSelect>=2){this._setDate(h(q,p,r,s,l,t,0))}}var m=this.viewMode;this.showMode(-1);this.fill();if(m==this.viewMode&&this.autoclose){this.hide()}break}}},_setDate:function(j,l){if(!l||l=="date"){this.date=j}if(!l||l=="view"){this.viewDate=j}this.fill();this.setValue();var k;if(this.isInput){k=this.element}else{if(this.component){k=this.element.find("input")}}if(k){k.change();if(this.autoclose&&(!l||l=="date")){}}this.element.trigger({type:"changeDate",date:this.getDate()});if(j==null){this.date=this.viewDate}},moveMinute:function(k,j){if(!j){return k}var l=new Date(k.valueOf());l.setUTCMinutes(l.getUTCMinutes()+(j*this.minuteStep));return l},moveHour:function(k,j){if(!j){return k}var l=new Date(k.valueOf());l.setUTCHours(l.getUTCHours()+j);return l},moveDate:function(k,j){if(!j){return k}var l=new Date(k.valueOf());l.setUTCDate(l.getUTCDate()+j);return l},moveMonth:function(j,k){if(!k){return j}var n=new Date(j.valueOf()),r=n.getUTCDate(),o=n.getUTCMonth(),m=Math.abs(k),q,p;k=k>0?1:-1;if(m==1){p=k==-1?function(){return n.getUTCMonth()==o}:function(){return n.getUTCMonth()!=q};q=o+k;n.setUTCMonth(q);if(q<0||q>11){q=(q+12)%12}}else{for(var l=0;l=this.startDate&&j<=this.endDate},keydown:function(n){if(this.picker.is(":not(:visible)")){if(n.keyCode==27){this.show()}return}var p=false,k,q,o,r,j;switch(n.keyCode){case 27:this.hide();n.preventDefault();break;case 37:case 39:if(!this.keyboardNavigation){break}k=n.keyCode==37?-1:1;viewMode=this.viewMode;if(n.ctrlKey){viewMode+=2}else{if(n.shiftKey){viewMode+=1}}if(viewMode==4){r=this.moveYear(this.date,k);j=this.moveYear(this.viewDate,k)}else{if(viewMode==3){r=this.moveMonth(this.date,k);j=this.moveMonth(this.viewDate,k)}else{if(viewMode==2){r=this.moveDate(this.date,k);j=this.moveDate(this.viewDate,k)}else{if(viewMode==1){r=this.moveHour(this.date,k);j=this.moveHour(this.viewDate,k)}else{if(viewMode==0){r=this.moveMinute(this.date,k);j=this.moveMinute(this.viewDate,k)}}}}}if(this.dateWithinRange(r)){this.date=r;this.viewDate=j;this.setValue();this.update();n.preventDefault();p=true}break;case 38:case 40:if(!this.keyboardNavigation){break}k=n.keyCode==38?-1:1;viewMode=this.viewMode;if(n.ctrlKey){viewMode+=2}else{if(n.shiftKey){viewMode+=1}}if(viewMode==4){r=this.moveYear(this.date,k);j=this.moveYear(this.viewDate,k)}else{if(viewMode==3){r=this.moveMonth(this.date,k);j=this.moveMonth(this.viewDate,k)}else{if(viewMode==2){r=this.moveDate(this.date,k*7);j=this.moveDate(this.viewDate,k*7)}else{if(viewMode==1){if(this.showMeridian){r=this.moveHour(this.date,k*6);j=this.moveHour(this.viewDate,k*6)}else{r=this.moveHour(this.date,k*4);j=this.moveHour(this.viewDate,k*4)}}else{if(viewMode==0){r=this.moveMinute(this.date,k*4);j=this.moveMinute(this.viewDate,k*4)}}}}}if(this.dateWithinRange(r)){this.date=r;this.viewDate=j;this.setValue();this.update();n.preventDefault();p=true}break;case 13:if(this.viewMode!=0){var m=this.viewMode;this.showMode(-1);this.fill();if(m==this.viewMode&&this.autoclose){this.hide()}}else{this.fill();if(this.autoclose){this.hide()}}n.preventDefault();break;case 9:this.hide();break}if(p){var l;if(this.isInput){l=this.element}else{if(this.component){l=this.element.find("input")}}if(l){l.change()}this.element.trigger({type:"changeDate",date:this.getDate()})}},showMode:function(j){if(j){var k=Math.max(0,Math.min(g.modes.length-1,this.viewMode+j));if(k>=this.minView&&k<=this.maxView){this.element.trigger({type:"changeMode",date:this.viewDate,oldViewMode:this.viewMode,newViewMode:k});this.viewMode=k}}this.picker.find(">div").hide().filter(".datetimepicker-"+g.modes[this.viewMode].clsName).css("display","block");this.updateNavArrows()},reset:function(j){this._setDate(null,"date")},convertViewModeText:function(j){switch(j){case 4:return"decade";case 3:return"year";case 2:return"month";case 1:return"day";case 0:return"hour"}}};var b=f.fn.datetimepicker;f.fn.datetimepicker=function(l){var j=Array.apply(null,arguments);j.shift();var k;this.each(function(){var o=f(this),n=o.data("datetimepicker"),m=typeof l=="object"&&l;if(!n){o.data("datetimepicker",(n=new i(this,f.extend({},f.fn.datetimepicker.defaults,m))))}if(typeof l=="string"&&typeof n[l]=="function"){k=n[l].apply(n,j);if(k!==c){return false}}});if(k!==c){return k}else{return this}};f.fn.datetimepicker.defaults={};f.fn.datetimepicker.Constructor=i;var a=f.fn.datetimepicker.dates={en:{days:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday","Sunday"],daysShort:["Sun","Mon","Tue","Wed","Thu","Fri","Sat","Sun"],daysMin:["Su","Mo","Tu","We","Th","Fr","Sa","Su"],months:["January","February","March","April","May","June","July","August","September","October","November","December"],monthsShort:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],meridiem:["am","pm"],suffix:["st","nd","rd","th"],today:"Today",clear:"Clear"}};var g={modes:[{clsName:"minutes",navFnc:"Hours",navStep:1},{clsName:"hours",navFnc:"Date",navStep:1},{clsName:"days",navFnc:"Month",navStep:1},{clsName:"months",navFnc:"FullYear",navStep:1},{clsName:"years",navFnc:"FullYear",navStep:10}],isLeapYear:function(j){return(((j%4===0)&&(j%100!==0))||(j%400===0))},getDaysInMonth:function(j,k){return[31,(g.isLeapYear(j)?29:28),31,30,31,30,31,31,30,31,30,31][k]},getDefaultFormat:function(j,k){if(j=="standard"){if(k=="input"){return"yyyy-mm-dd hh:ii"}else{return"yyyy-mm-dd hh:ii:ss"}}else{if(j=="php"){if(k=="input"){return"Y-m-d H:i"}else{return"Y-m-d H:i:s"}}else{throw new Error("Invalid format type.")}}},validParts:function(j){if(j=="standard"){return/t|hh?|HH?|p|P|ii?|ss?|dd?|DD?|mm?|MM?|yy(?:yy)?/g}else{if(j=="php"){return/[dDjlNwzFmMnStyYaABgGhHis]/g}else{throw new Error("Invalid format type.")}}},nonpunctuation:/[^ -\/:-@\[-`{-~\t\n\rTZ]+/g,parseFormat:function(m,k){var j=m.replace(this.validParts(k),"\0").split("\0"),l=m.match(this.validParts(k));if(!j||!j.length||!l||l.length==0){throw new Error("Invalid date format.")}return{separators:j,parts:l}},parseDate:function(n,w,q,u){if(n instanceof Date){var y=new Date(n.valueOf()-n.getTimezoneOffset()*60000);y.setMilliseconds(0);return y}if(/^\d{4}\-\d{1,2}\-\d{1,2}$/.test(n)){w=this.parseFormat("yyyy-mm-dd",u)}if(/^\d{4}\-\d{1,2}\-\d{1,2}[T ]\d{1,2}\:\d{1,2}$/.test(n)){w=this.parseFormat("yyyy-mm-dd hh:ii",u)}if(/^\d{4}\-\d{1,2}\-\d{1,2}[T ]\d{1,2}\:\d{1,2}\:\d{1,2}[Z]{0,1}$/.test(n)){w=this.parseFormat("yyyy-mm-dd hh:ii:ss",u)}if(/^[-+]\d+[dmwy]([\s,]+[-+]\d+[dmwy])*$/.test(n)){var z=/([-+]\d+)([dmwy])/,o=n.match(/([-+]\d+)([dmwy])/g),j,m;n=new Date();for(var p=0;p',headTemplateV3:' ',contTemplate:'',footTemplate:''};g.template='
'+g.headTemplate+g.contTemplate+g.footTemplate+'
'+g.headTemplate+g.contTemplate+g.footTemplate+'
'+g.headTemplate+""+g.footTemplate+'
'+g.headTemplate+g.contTemplate+g.footTemplate+'
'+g.headTemplate+g.contTemplate+g.footTemplate+"
";g.templateV3='
'+g.headTemplateV3+g.contTemplate+g.footTemplate+'
'+g.headTemplateV3+g.contTemplate+g.footTemplate+'
'+g.headTemplateV3+""+g.footTemplate+'
'+g.headTemplateV3+g.contTemplate+g.footTemplate+'
'+g.headTemplateV3+g.contTemplate+g.footTemplate+"
";f.fn.datetimepicker.DPGlobal=g;f.fn.datetimepicker.noConflict=function(){f.fn.datetimepicker=b;return this};f(document).on("focus.datetimepicker.data-api click.datetimepicker.data-api",'[data-provide="datetimepicker"]',function(k){var j=f(this);if(j.data("datetimepicker")){return}k.preventDefault();j.datetimepicker("show")});f(function(){f('[data-provide="datetimepicker-inline"]').datetimepicker()})})); \ No newline at end of file diff --git a/public/assets/lib/amazeui-datetimepicker/js/locales/amazeui.datetimepicker.ar.js b/public/assets/lib/amazeui-datetimepicker/js/locales/amazeui.datetimepicker.ar.js new file mode 100755 index 0000000..2e1614a --- /dev/null +++ b/public/assets/lib/amazeui-datetimepicker/js/locales/amazeui.datetimepicker.ar.js @@ -0,0 +1,17 @@ +/** +* Arabic translation for bootstrap-datetimepicker +* Ala' Mohammad +*/ +;(function($){ + $.fn.datetimepicker.dates['ar'] = { + days: ["الأحد", "الاثنين", "الثلاثاء", "الأربعاء", "الخميس", "الجمعة", "السبت", "الأحد"], + daysShort: ["أحد", "اثنين", "ثلاثاء", "أربعاء", "خميس", "جمعة", "سبت", "أحد"], + daysMin: ["أح", "إث", "ث", "أر", "خ", "ج", "س", "أح"], + months: ["يناير", "فبراير", "مارس", "أبريل", "مايو", "يونيو", "يوليو", "أغسطس", "سبتمبر", "أكتوبر", "نوفمبر", "ديسمبر"], + monthsShort: ["يناير", "فبراير", "مارس", "أبريل", "مايو", "يونيو", "يوليو", "أغسطس", "سبتمبر", "أكتوبر", "نوفمبر", "ديسمبر"], + today: "هذا اليوم", + suffix: [], + meridiem: [], + rtl: true + }; +}(jQuery)); diff --git a/public/assets/lib/amazeui-datetimepicker/js/locales/amazeui.datetimepicker.az.js b/public/assets/lib/amazeui-datetimepicker/js/locales/amazeui.datetimepicker.az.js new file mode 100755 index 0000000..6a85207 --- /dev/null +++ b/public/assets/lib/amazeui-datetimepicker/js/locales/amazeui.datetimepicker.az.js @@ -0,0 +1,16 @@ +/** + * Azerbaijani translation for bootstrap-datetimepicker + * Konstantin Kaluzhnikov + */ +;(function($){ + $.fn.datetimepicker.dates['az'] = { + days: ["Bazar", "Bazar ertəsi", "Çərşənbə axşamı", "Çərşənbə", "Cümə axşamı", "Cümə", "Şənbə", "Bazar"], + daysShort: ["B", "Be", "Ça", "Ç", "Ca", "C", "Ş", "B"], + daysMin: ["B", "Be", "Ça", "Ç", "Ca", "C", "Ş", "B"], + months: ["Yanvar", "Fevral", "Mart", "Aprel", "May", "İyun", "İyul", "Avqust", "Sentyabr", "Oktyabr", "Noyabr", "Dekabr"], + monthsShort: ["Yan", "Fev", "Mar", "Apr", "May", "İyun", "İyul", "Avq", "Sen", "Okt", "Noy", "Dek"], + today: "Bugün", + suffix: [], + meridiem: [] + }; +}(jQuery)); diff --git a/public/assets/lib/amazeui-datetimepicker/js/locales/amazeui.datetimepicker.bg.js b/public/assets/lib/amazeui-datetimepicker/js/locales/amazeui.datetimepicker.bg.js new file mode 100755 index 0000000..106462e --- /dev/null +++ b/public/assets/lib/amazeui-datetimepicker/js/locales/amazeui.datetimepicker.bg.js @@ -0,0 +1,16 @@ +/** + * Bulgarian translation for bootstrap-datetimepicker + * Apostol Apostolov + */ +;(function($){ + $.fn.datetimepicker.dates['bg'] = { + days: ["Неделя", "Понеделник", "Вторник", "Сряда", "Четвъртък", "Петък", "Събота", "Неделя"], + daysShort: ["Нед", "Пон", "Вто", "Сря", "Чет", "Пет", "Съб", "Нед"], + daysMin: ["Н", "П", "В", "С", "Ч", "П", "С", "Н"], + months: ["Януари", "Февруари", "Март", "Април", "Май", "Юни", "Юли", "Август", "Септември", "Октомври", "Ноември", "Декември"], + monthsShort: ["Ян", "Фев", "Мар", "Апр", "Май", "Юни", "Юли", "Авг", "Сеп", "Окт", "Ное", "Дек"], + today: "днес", + suffix: [], + meridiem: [] + }; +}(jQuery)); diff --git a/public/assets/lib/amazeui-datetimepicker/js/locales/amazeui.datetimepicker.bn.js b/public/assets/lib/amazeui-datetimepicker/js/locales/amazeui.datetimepicker.bn.js new file mode 100755 index 0000000..1dfc315 --- /dev/null +++ b/public/assets/lib/amazeui-datetimepicker/js/locales/amazeui.datetimepicker.bn.js @@ -0,0 +1,16 @@ +/** + * Bangla(Bangladesh) translation for bootstrap-datetimepicker + * Mahbub Rabbani + */ +;(function($){ + $.fn.datetimepicker.dates['bn'] = { + days: ["রবিবার", "সোমবার", "মঙ্গলবার", "বুধবার", "বৃহষ্পতিবার", "শুক্রবার", "শনিবার", "রবিবার"], + daysShort: ["রবি", "সোম", "মঙ্গল", "বুধ", " বৃহঃ", "শুক্র", "শনি", "রবি"], + daysMin: ["রবি", "সোম", "মঙ্গ", "বুধ", "বৃহ", "শুক্র", "শনি", "রবি"], + months: ['জানুয়ারী', 'ফেব্রুয়ারী', 'মার্চ', 'এপ্রিল', 'মে', 'জুন', 'জুলাই', 'অগাস্ট', 'সেপ্টেম্বর', 'অক্টোবর', 'নভেম্বর', 'ডিসেম্বর' ], + monthsShort: ['জানু', 'ফেব্রু', 'মার্চ', 'এপ্রি', 'মে', 'জুন', 'জুলা', 'অগা', 'সেপ্টে', 'অক্টো', 'নভে', 'ডিসে' ], + today: "আজ", + suffix: [], + meridiem: ['পূর্বাহ্ণ', 'অপরাহ্ন'] + }; +}(jQuery)); \ No newline at end of file diff --git a/public/assets/lib/amazeui-datetimepicker/js/locales/amazeui.datetimepicker.ca.js b/public/assets/lib/amazeui-datetimepicker/js/locales/amazeui.datetimepicker.ca.js new file mode 100755 index 0000000..508676c --- /dev/null +++ b/public/assets/lib/amazeui-datetimepicker/js/locales/amazeui.datetimepicker.ca.js @@ -0,0 +1,16 @@ +/** + * Catalan translation for bootstrap-datetimepicker + * J. Garcia + */ +;(function($){ + $.fn.datetimepicker.dates['ca'] = { + days: ["Diumenge", "Dilluns", "Dimarts", "Dimecres", "Dijous", "Divendres", "Dissabte", "Diumenge"], + daysShort: ["Diu", "Dil", "Dmt", "Dmc", "Dij", "Div", "Dis", "Diu"], + daysMin: ["dg", "dl", "dt", "dc", "dj", "dv", "ds", "dg"], + months: ["Gener", "Febrer", "Març", "Abril", "Maig", "Juny", "Juliol", "Agost", "Setembre", "Octubre", "Novembre", "Desembre"], + monthsShort: ["Gen", "Feb", "Mar", "Abr", "Mai", "Jun", "Jul", "Ago", "Set", "Oct", "Nov", "Des"], + today: "Avui", + suffix: [], + meridiem: [] + }; +}(jQuery)); diff --git a/public/assets/lib/amazeui-datetimepicker/js/locales/amazeui.datetimepicker.cs.js b/public/assets/lib/amazeui-datetimepicker/js/locales/amazeui.datetimepicker.cs.js new file mode 100755 index 0000000..723ab85 --- /dev/null +++ b/public/assets/lib/amazeui-datetimepicker/js/locales/amazeui.datetimepicker.cs.js @@ -0,0 +1,19 @@ +/** + * Czech translation for bootstrap-datetimepicker + * Matěj Koubík + * Fixes by Michal Remiš + */ +;(function($){ + $.fn.datetimepicker.dates['cs'] = { + days: ["Neděle", "Pondělí", "Úterý", "Středa", "Čtvrtek", "Pátek", "Sobota", "Neděle"], + daysShort: ["Ned", "Pon", "Úte", "Stř", "Čtv", "Pát", "Sob", "Ned"], + daysMin: ["Ne", "Po", "Út", "St", "Čt", "Pá", "So", "Ne"], + months: ["Leden", "Únor", "Březen", "Duben", "Květen", "Červen", "Červenec", "Srpen", "Září", "Říjen", "Listopad", "Prosinec"], + monthsShort: ["Led", "Úno", "Bře", "Dub", "Kvě", "Čer", "Čnc", "Srp", "Zář", "Říj", "Lis", "Pro"], + today: "Dnes", + suffix: [], + meridiem: [], + weekStart: 1, + format: "dd.mm.yyyy" + }; +}(jQuery)); diff --git a/public/assets/lib/amazeui-datetimepicker/js/locales/amazeui.datetimepicker.da.js b/public/assets/lib/amazeui-datetimepicker/js/locales/amazeui.datetimepicker.da.js new file mode 100755 index 0000000..981e2d6 --- /dev/null +++ b/public/assets/lib/amazeui-datetimepicker/js/locales/amazeui.datetimepicker.da.js @@ -0,0 +1,16 @@ +/** + * Danish translation for bootstrap-datetimepicker + * Christian Pedersen + */ +;(function($){ + $.fn.datetimepicker.dates['da'] = { + days: ["Søndag", "Mandag", "Tirsdag", "Onsdag", "Torsdag", "Fredag", "Lørdag", "Søndag"], + daysShort: ["Søn", "Man", "Tir", "Ons", "Tor", "Fre", "Lør", "Søn"], + daysMin: ["Sø", "Ma", "Ti", "On", "To", "Fr", "Lø", "Sø"], + months: ["Januar", "Februar", "Marts", "April", "Maj", "Juni", "Juli", "August", "September", "Oktober", "November", "December"], + monthsShort: ["Jan", "Feb", "Mar", "Apr", "Maj", "Jun", "Jul", "Aug", "Sep", "Okt", "Nov", "Dec"], + today: "I Dag", + suffix: [], + meridiem: [] + }; +}(jQuery)); \ No newline at end of file diff --git a/public/assets/lib/amazeui-datetimepicker/js/locales/amazeui.datetimepicker.de.js b/public/assets/lib/amazeui-datetimepicker/js/locales/amazeui.datetimepicker.de.js new file mode 100755 index 0000000..92ed1a2 --- /dev/null +++ b/public/assets/lib/amazeui-datetimepicker/js/locales/amazeui.datetimepicker.de.js @@ -0,0 +1,18 @@ +/** + * German translation for bootstrap-datetimepicker + * Sam Zurcher + */ +;(function($){ + $.fn.datetimepicker.dates['de'] = { + days: ["Sonntag", "Montag", "Dienstag", "Mittwoch", "Donnerstag", "Freitag", "Samstag", "Sonntag"], + daysShort: ["Son", "Mon", "Die", "Mit", "Don", "Fre", "Sam", "Son"], + daysMin: ["So", "Mo", "Di", "Mi", "Do", "Fr", "Sa", "So"], + months: ["Januar", "Februar", "März", "April", "Mai", "Juni", "Juli", "August", "September", "Oktober", "November", "Dezember"], + monthsShort: ["Jan", "Feb", "Mär", "Apr", "Mai", "Jun", "Jul", "Aug", "Sep", "Okt", "Nov", "Dez"], + today: "Heute", + suffix: [], + meridiem: [], + weekStart: 1, + format: "dd.mm.yyyy" + }; +}(jQuery)); diff --git a/public/assets/lib/amazeui-datetimepicker/js/locales/amazeui.datetimepicker.ee.js b/public/assets/lib/amazeui-datetimepicker/js/locales/amazeui.datetimepicker.ee.js new file mode 100755 index 0000000..5a38b6d --- /dev/null +++ b/public/assets/lib/amazeui-datetimepicker/js/locales/amazeui.datetimepicker.ee.js @@ -0,0 +1,18 @@ +/** + * Estonian translation for bootstrap-datetimepicker + * Rene Korss + */ +;(function($){ + $.fn.datetimepicker.dates['ee'] = { + days: ["Pühapäev", "Esmaspäev", "Teisipäev", "Kolmapäev", "Neljapäev", "Reede", "Laupäev", "Pühapäev"], + daysShort: ["P", "E", "T", "K", "N", "R", "L", "P"], + daysMin: ["P", "E", "T", "K", "N", "R", "L", "P"], + months: ["Jaanuar", "Veebruar", "Märts", "Aprill", "Mai", "Juuni", "Juuli", "August", "September", "Oktoober", "November", "Detsember"], + monthsShort: ["Jaan", "Veebr", "Märts", "Apr", "Mai", "Juuni", "Juuli", "Aug", "Sept", "Okt", "Nov", "Dets"], + today: "Täna", + suffix: [], + meridiem: [], + weekStart: 1, + format: "dd.mm.yyyy hh:ii" + }; +}(jQuery)); \ No newline at end of file diff --git a/public/assets/lib/amazeui-datetimepicker/js/locales/amazeui.datetimepicker.el.js b/public/assets/lib/amazeui-datetimepicker/js/locales/amazeui.datetimepicker.el.js new file mode 100755 index 0000000..b422f03 --- /dev/null +++ b/public/assets/lib/amazeui-datetimepicker/js/locales/amazeui.datetimepicker.el.js @@ -0,0 +1,15 @@ +/** +* Greek translation for bootstrap-datetimepicker +*/ +;(function($){ + $.fn.datetimepicker.dates['el'] = { + days: ["Κυριακή", "Δευτέρα", "Τρίτη", "Τετάρτη", "Πέμπτη", "Παρασκευή", "Σάββατο", "Κυριακή"], + daysShort: ["Κυρ", "Δευ", "Τρι", "Τετ", "Πεμ", "Παρ", "Σαβ", "Κυρ"], + daysMin: ["Κυ", "Δε", "Τρ", "Τε", "Πε", "Πα", "Σα", "Κυ"], + months: ["Ιανουάριος", "Φεβρουάριος", "Μάρτιος", "Απρίλιος", "Μάιος", "Ιούνιος", "Ιούλιος", "Αύγουστος", "Σεπτέμβριος", "Οκτώβριος", "Νοέμβριος", "Δεκέμβριος"], + monthsShort: ["Ιαν", "Φεβ", "Μαρ", "Απρ", "Μάι", "Ιουν", "Ιουλ", "Αυγ", "Σεπ", "Οκτ", "Νοε", "Δεκ"], + today: "Σήμερα", + suffix: [], + meridiem: [] + }; +}(jQuery)); \ No newline at end of file diff --git a/public/assets/lib/amazeui-datetimepicker/js/locales/amazeui.datetimepicker.es.js b/public/assets/lib/amazeui-datetimepicker/js/locales/amazeui.datetimepicker.es.js new file mode 100755 index 0000000..6dafee2 --- /dev/null +++ b/public/assets/lib/amazeui-datetimepicker/js/locales/amazeui.datetimepicker.es.js @@ -0,0 +1,16 @@ +/** + * Spanish translation for bootstrap-datetimepicker + * Bruno Bonamin + */ +;(function($){ + $.fn.datetimepicker.dates['es'] = { + days: ["Domingo", "Lunes", "Martes", "Miércoles", "Jueves", "Viernes", "Sábado", "Domingo"], + daysShort: ["Dom", "Lun", "Mar", "Mié", "Jue", "Vie", "Sáb", "Dom"], + daysMin: ["Do", "Lu", "Ma", "Mi", "Ju", "Vi", "Sa", "Do"], + months: ["Enero", "Febrero", "Marzo", "Abril", "Mayo", "Junio", "Julio", "Agosto", "Septiembre", "Octubre", "Noviembre", "Diciembre"], + monthsShort: ["Ene", "Feb", "Mar", "Abr", "May", "Jun", "Jul", "Ago", "Sep", "Oct", "Nov", "Dic"], + today: "Hoy", + suffix: [], + meridiem: [] + }; +}(jQuery)); diff --git a/public/assets/lib/amazeui-datetimepicker/js/locales/amazeui.datetimepicker.fi.js b/public/assets/lib/amazeui-datetimepicker/js/locales/amazeui.datetimepicker.fi.js new file mode 100755 index 0000000..641d042 --- /dev/null +++ b/public/assets/lib/amazeui-datetimepicker/js/locales/amazeui.datetimepicker.fi.js @@ -0,0 +1,16 @@ +/** + * Finnish translation for bootstrap-datetimepicker + * Jaakko Salonen + */ +;(function($){ + $.fn.datetimepicker.dates['fi'] = { + days: ["sunnuntai", "maanantai", "tiistai", "keskiviikko", "torstai", "perjantai", "lauantai", "sunnuntai"], + daysShort: ["sun", "maa", "tii", "kes", "tor", "per", "lau", "sun"], + daysMin: ["su", "ma", "ti", "ke", "to", "pe", "la", "su"], + months: ["tammikuu", "helmikuu", "maaliskuu", "huhtikuu", "toukokuu", "kesäkuu", "heinäkuu", "elokuu", "syyskuu", "lokakuu", "marraskuu", "joulukuu"], + monthsShort: ["tam", "hel", "maa", "huh", "tou", "kes", "hei", "elo", "syy", "lok", "mar", "jou"], + today: "tänään", + suffix: [], + meridiem: [] + }; +}(jQuery)); diff --git a/public/assets/lib/amazeui-datetimepicker/js/locales/amazeui.datetimepicker.fr.js b/public/assets/lib/amazeui-datetimepicker/js/locales/amazeui.datetimepicker.fr.js new file mode 100755 index 0000000..f74e9ee --- /dev/null +++ b/public/assets/lib/amazeui-datetimepicker/js/locales/amazeui.datetimepicker.fr.js @@ -0,0 +1,18 @@ +/** + * French translation for bootstrap-datetimepicker + * Nico Mollet + */ +;(function($){ + $.fn.datetimepicker.dates['fr'] = { + days: ["Dimanche", "Lundi", "Mardi", "Mercredi", "Jeudi", "Vendredi", "Samedi", "Dimanche"], + daysShort: ["Dim", "Lun", "Mar", "Mer", "Jeu", "Ven", "Sam", "Dim"], + daysMin: ["D", "L", "Ma", "Me", "J", "V", "S", "D"], + months: ["Janvier", "Février", "Mars", "Avril", "Mai", "Juin", "Juillet", "Août", "Septembre", "Octobre", "Novembre", "Décembre"], + monthsShort: ["Jan", "Fev", "Mar", "Avr", "Mai", "Jui", "Jul", "Aou", "Sep", "Oct", "Nov", "Dec"], + today: "Aujourd'hui", + suffix: [], + meridiem: ["am", "pm"], + weekStart: 1, + format: "dd/mm/yyyy hh:ii" + }; +}(jQuery)); diff --git a/public/assets/lib/amazeui-datetimepicker/js/locales/amazeui.datetimepicker.he.js b/public/assets/lib/amazeui-datetimepicker/js/locales/amazeui.datetimepicker.he.js new file mode 100755 index 0000000..aec649f --- /dev/null +++ b/public/assets/lib/amazeui-datetimepicker/js/locales/amazeui.datetimepicker.he.js @@ -0,0 +1,17 @@ +/** + * Hebrew translation for bootstrap-datetimepicker + * Sagie Maoz + */ +;(function($){ + $.fn.datetimepicker.dates['he'] = { + days: ["ראשון", "שני", "שלישי", "רביעי", "חמישי", "שישי", "שבת", "ראשון"], + daysShort: ["א", "ב", "ג", "ד", "ה", "ו", "ש", "א"], + daysMin: ["א", "ב", "ג", "ד", "ה", "ו", "ש", "א"], + months: ["ינואר", "פברואר", "מרץ", "אפריל", "מאי", "יוני", "יולי", "אוגוסט", "ספטמבר", "אוקטובר", "נובמבר", "דצמבר"], + monthsShort: ["ינו", "פבר", "מרץ", "אפר", "מאי", "יונ", "יול", "אוג", "ספט", "אוק", "נוב", "דצמ"], + today: "היום", + suffix: [], + meridiem: [], + rtl: true + }; +}(jQuery)); diff --git a/public/assets/lib/amazeui-datetimepicker/js/locales/amazeui.datetimepicker.hr.js b/public/assets/lib/amazeui-datetimepicker/js/locales/amazeui.datetimepicker.hr.js new file mode 100755 index 0000000..ba36875 --- /dev/null +++ b/public/assets/lib/amazeui-datetimepicker/js/locales/amazeui.datetimepicker.hr.js @@ -0,0 +1,15 @@ +/** + * Croatian localisation + */ +;(function($){ + $.fn.datetimepicker.dates['hr'] = { + days: ["Nedjelja", "Ponedjelja", "Utorak", "Srijeda", "Četrtak", "Petak", "Subota", "Nedjelja"], + daysShort: ["Ned", "Pon", "Uto", "Srr", "Čet", "Pet", "Sub", "Ned"], + daysMin: ["Ne", "Po", "Ut", "Sr", "Če", "Pe", "Su", "Ne"], + months: ["Siječanj", "Veljača", "Ožujak", "Travanj", "Svibanj", "Lipanj", "Srpanj", "Kolovoz", "Rujan", "Listopad", "Studeni", "Prosinac"], + monthsShort: ["Sije", "Velj", "Ožu", "Tra", "Svi", "Lip", "Jul", "Kol", "Ruj", "Lis", "Stu", "Pro"], + today: "Danas", + suffix: [], + meridiem: [] + }; +}(jQuery)); diff --git a/public/assets/lib/amazeui-datetimepicker/js/locales/amazeui.datetimepicker.hu.js b/public/assets/lib/amazeui-datetimepicker/js/locales/amazeui.datetimepicker.hu.js new file mode 100755 index 0000000..0b5bd39 --- /dev/null +++ b/public/assets/lib/amazeui-datetimepicker/js/locales/amazeui.datetimepicker.hu.js @@ -0,0 +1,17 @@ +/** + * Hungarian translation for bootstrap-datetimepicker + * darevish + */ +;(function($){ + $.fn.datetimepicker.dates['hu'] = { + days: ["Vasárnap", "Hétfő", "Kedd", "Szerda", "Csütörtök", "Péntek", "Szombat", "Vasárnap"], + daysShort: ["Vas", "Hét", "Ked", "Sze", "Csü", "Pén", "Szo", "Vas"], + daysMin: ["V", "H", "K", "Sze", "Cs", "P", "Szo", "V"], + months: ["Január", "Február", "Március", "Április", "Május", "Június", "Július", "Augusztus", "Szeptember", "Október", "November", "December"], + monthsShort: ["Jan", "Feb", "Már", "Ápr", "Máj", "Jún", "Júl", "Aug", "Sze", "Okt", "Nov", "Dec"], + today: "Ma", + suffix: [], + meridiem: [], + weekStart: 1 + }; +}(jQuery)); diff --git a/public/assets/lib/amazeui-datetimepicker/js/locales/amazeui.datetimepicker.hy.js b/public/assets/lib/amazeui-datetimepicker/js/locales/amazeui.datetimepicker.hy.js new file mode 100755 index 0000000..eea01ec --- /dev/null +++ b/public/assets/lib/amazeui-datetimepicker/js/locales/amazeui.datetimepicker.hy.js @@ -0,0 +1,16 @@ +/** + * Armenian translation for bootstrap-datepicker + * Hayk Chamyan + */ +;(function($){ + $.fn.datetimepicker.dates['hy'] = { + days: ["Կիրակի", "Երկուշաբթի", "Երեքշաբթի", "Չորեքշաբթի", "Հինգշաբթի", "Ուրբաթ", "Շաբաթ", "Կիրակի"], + daysShort: ["Կիր", "Երկ", "Երք", "Չոր", "Հնգ", "Ուր", "Շաբ", "Կիր"], + daysMin: ["Կի", "Եկ", "Եք", "Չո", "Հի", "Ու", "Շա", "Կի"], + months: ["Հունվար", "Փետրվար", "Մարտ", "Ապրիլ", "Մայիս", "Հունիս", "Հուլիս", "Օգոստոս", "Սեպտեմբեր", "Հոկտեմբեր", "Նոյեմբեր", "Դեկտեմբեր"], + monthsShort: ["Հնվ", "Փետ", "Մար", "Ապր", "Մայ", "Հուն", "Հուլ", "Օգս", "Սեպ", "Հոկ", "Նոյ", "Դեկ"], + today: "Այսօր", + suffix: [], + meridiem: [] + }; +}(jQuery)); diff --git a/public/assets/lib/amazeui-datetimepicker/js/locales/amazeui.datetimepicker.id.js b/public/assets/lib/amazeui-datetimepicker/js/locales/amazeui.datetimepicker.id.js new file mode 100755 index 0000000..493a1be --- /dev/null +++ b/public/assets/lib/amazeui-datetimepicker/js/locales/amazeui.datetimepicker.id.js @@ -0,0 +1,19 @@ +/** + * Bahasa translation for bootstrap-datetimepicker + * Azwar Akbar + * Addtional by Yulian Sutopo + */ +;(function($){ + $.fn.datetimepicker.dates['id'] = { + days: ["Minggu", "Senin", "Selasa", "Rabu", "Kamis", "Jumat", "Sabtu", "Minggu"], + daysShort: ["Mng", "Sen", "Sel", "Rab", "Kam", "Jum", "Sab", "Mng"], + daysMin: ["Mg", "Sn", "Sl", "Ra", "Ka", "Ju", "Sa", "Mg"], + months: ["Januari", "Februari", "Maret", "April", "Mei", "Juni", "Juli", "Agustus", "September", "Oktober", "November", "Desember"], + monthsShort: ["Jan", "Feb", "Mar", "Apr", "Mei", "Jun", "Jul", "Ags", "Sep", "Okt", "Nov", "Des"], + today: "Hari Ini", + suffix: [], + meridiem: [], + weekStart: 1, + format: "dd/mm/yyyy hh:ii:ss" + }; +}(jQuery)); diff --git a/public/assets/lib/amazeui-datetimepicker/js/locales/amazeui.datetimepicker.is.js b/public/assets/lib/amazeui-datetimepicker/js/locales/amazeui.datetimepicker.is.js new file mode 100755 index 0000000..e25c4d3 --- /dev/null +++ b/public/assets/lib/amazeui-datetimepicker/js/locales/amazeui.datetimepicker.is.js @@ -0,0 +1,16 @@ +/** + * Icelandic translation for bootstrap-datetimepicker + * Hinrik Örn Sigurðsson + */ +;(function($){ + $.fn.datetimepicker.dates['is'] = { + days: ["Sunnudagur", "Mánudagur", "Þriðjudagur", "Miðvikudagur", "Fimmtudagur", "Föstudagur", "Laugardagur", "Sunnudagur"], + daysShort: ["Sun", "Mán", "Þri", "Mið", "Fim", "Fös", "Lau", "Sun"], + daysMin: ["Su", "Má", "Þr", "Mi", "Fi", "Fö", "La", "Su"], + months: ["Janúar", "Febrúar", "Mars", "Apríl", "Maí", "Júní", "Júlí", "Ágúst", "September", "Október", "Nóvember", "Desember"], + monthsShort: ["Jan", "Feb", "Mar", "Apr", "Maí", "Jún", "Júl", "Ágú", "Sep", "Okt", "Nóv", "Des"], + today: "Í Dag", + suffix: [], + meridiem: [] + }; +}(jQuery)); diff --git a/public/assets/lib/amazeui-datetimepicker/js/locales/amazeui.datetimepicker.it.js b/public/assets/lib/amazeui-datetimepicker/js/locales/amazeui.datetimepicker.it.js new file mode 100755 index 0000000..f635e9e --- /dev/null +++ b/public/assets/lib/amazeui-datetimepicker/js/locales/amazeui.datetimepicker.it.js @@ -0,0 +1,18 @@ +/** + * Italian translation for bootstrap-datetimepicker + * Enrico Rubboli + */ +;(function($){ + $.fn.datetimepicker.dates['it'] = { + days: ["Domenica", "Lunedi", "Martedi", "Mercoledi", "Giovedi", "Venerdi", "Sabato", "Domenica"], + daysShort: ["Dom", "Lun", "Mar", "Mer", "Gio", "Ven", "Sab", "Dom"], + daysMin: ["Do", "Lu", "Ma", "Me", "Gi", "Ve", "Sa", "Do"], + months: ["Gennaio", "Febbraio", "Marzo", "Aprile", "Maggio", "Giugno", "Luglio", "Agosto", "Settembre", "Ottobre", "Novembre", "Dicembre"], + monthsShort: ["Gen", "Feb", "Mar", "Apr", "Mag", "Giu", "Lug", "Ago", "Set", "Ott", "Nov", "Dic"], + today: "Oggi", + suffix: [], + meridiem: [], + weekStart: 1, + format: "dd/mm/yyyy hh:ii:ss" + }; +}(jQuery)); diff --git a/public/assets/lib/amazeui-datetimepicker/js/locales/amazeui.datetimepicker.ja.js b/public/assets/lib/amazeui-datetimepicker/js/locales/amazeui.datetimepicker.ja.js new file mode 100755 index 0000000..a5f2d1b --- /dev/null +++ b/public/assets/lib/amazeui-datetimepicker/js/locales/amazeui.datetimepicker.ja.js @@ -0,0 +1,16 @@ +/** + * Japanese translation for bootstrap-datetimepicker + * Norio Suzuki + */ +;(function($){ + $.fn.datetimepicker.dates['ja'] = { + days: ["日曜", "月曜", "火曜", "水曜", "木曜", "金曜", "土曜", "日曜"], + daysShort: ["日", "月", "火", "水", "木", "金", "土", "日"], + daysMin: ["日", "月", "火", "水", "木", "金", "土", "日"], + months: ["1月", "2月", "3月", "4月", "5月", "6月", "7月", "8月", "9月", "10月", "11月", "12月"], + monthsShort: ["1月", "2月", "3月", "4月", "5月", "6月", "7月", "8月", "9月", "10月", "11月", "12月"], + today: "今日", + suffix: [], + meridiem: [] + }; +}(jQuery)); diff --git a/public/assets/lib/amazeui-datetimepicker/js/locales/amazeui.datetimepicker.ka.js b/public/assets/lib/amazeui-datetimepicker/js/locales/amazeui.datetimepicker.ka.js new file mode 100755 index 0000000..40917b2 --- /dev/null +++ b/public/assets/lib/amazeui-datetimepicker/js/locales/amazeui.datetimepicker.ka.js @@ -0,0 +1,16 @@ +/** + * Georgian translation for bootstrap-datetimepicker + * Zura Jijavadze + */ +;(function($){ + $.fn.datetimepicker.dates['ka'] = { + days: ["კვირა", "ორშაბათი", "სამშაბათი", "ოთხშაბათი", "ხუთშაბათი", "პარასკევი", "შაბათი", "კვირა"], + daysShort: ["კვი", "ორშ", "სამ", "ოთხ", "ხუთ", "პარ", "შაბ", "კვი"], + daysMin: ["კვ", "ორ", "სა", "ოთ", "ხუ", "პა", "შა", "კვ"], + months: ["იანვარი", "თებერვალი", "მარტი", "აპრილი", "მაისი", "ივნისი", "ივლისი", "აგვისტო", "სექტემბერი", "ოქტომბერი", "ნოემბერი", "დეკემბერი"], + monthsShort: ["იან", "თებ", "მარ", "აპრ", "მაი", "ივნ", "ივლ", "აგვ", "სექ", "ოქტ", "ნოე", "დეკ"], + today: "დღეს", + suffix: [], + meridiem: [] + }; +}(jQuery)); \ No newline at end of file diff --git a/public/assets/lib/amazeui-datetimepicker/js/locales/amazeui.datetimepicker.ko.js b/public/assets/lib/amazeui-datetimepicker/js/locales/amazeui.datetimepicker.ko.js new file mode 100755 index 0000000..acdd01a --- /dev/null +++ b/public/assets/lib/amazeui-datetimepicker/js/locales/amazeui.datetimepicker.ko.js @@ -0,0 +1,17 @@ +/** + * Korean translation for bootstrap-datetimepicker + * Gu Youn + * Baekjoon Choi + */ +;(function($){ + $.fn.datetimepicker.dates['ko'] = { + days: ["일요일", "월요일", "화요일", "수요일", "목요일", "금요일", "토요일", "일요일"], + daysShort: ["일", "월", "화", "수", "목", "금", "토", "일"], + daysMin: ["일", "월", "화", "수", "목", "금", "토", "일"], + months: ["1월", "2월", "3월", "4월", "5월", "6월", "7월", "8월", "9월", "10월", "11월", "12월"], + monthsShort: ["1월", "2월", "3월", "4월", "5월", "6월", "7월", "8월", "9월", "10월", "11월", "12월"], + suffix: [], + meridiem: ["오전", "오후"], + today: "오늘", + }; +}(jQuery)); diff --git a/public/assets/lib/amazeui-datetimepicker/js/locales/amazeui.datetimepicker.lt.js b/public/assets/lib/amazeui-datetimepicker/js/locales/amazeui.datetimepicker.lt.js new file mode 100755 index 0000000..d4792b9 --- /dev/null +++ b/public/assets/lib/amazeui-datetimepicker/js/locales/amazeui.datetimepicker.lt.js @@ -0,0 +1,18 @@ +/** + * Lithuanian translation for bootstrap-datetimepicker + * Šarūnas Gliebus + */ + +;(function($){ + $.fn.datetimepicker.dates['lt'] = { + days: ["Sekmadienis", "Pirmadienis", "Antradienis", "Trečiadienis", "Ketvirtadienis", "Penktadienis", "Šeštadienis", "Sekmadienis"], + daysShort: ["S", "Pr", "A", "T", "K", "Pn", "Š", "S"], + daysMin: ["Sk", "Pr", "An", "Tr", "Ke", "Pn", "Št", "Sk"], + months: ["Sausis", "Vasaris", "Kovas", "Balandis", "Gegužė", "Birželis", "Liepa", "Rugpjūtis", "Rugsėjis", "Spalis", "Lapkritis", "Gruodis"], + monthsShort: ["Sau", "Vas", "Kov", "Bal", "Geg", "Bir", "Lie", "Rugp", "Rugs", "Spa", "Lap", "Gru"], + today: "Šiandien", + suffix: [], + meridiem: [], + weekStart: 1 + }; +}(jQuery)); diff --git a/public/assets/lib/amazeui-datetimepicker/js/locales/amazeui.datetimepicker.lv.js b/public/assets/lib/amazeui-datetimepicker/js/locales/amazeui.datetimepicker.lv.js new file mode 100755 index 0000000..5ae6810 --- /dev/null +++ b/public/assets/lib/amazeui-datetimepicker/js/locales/amazeui.datetimepicker.lv.js @@ -0,0 +1,18 @@ +/** + * Latvian translation for bootstrap-datetimepicker + * Artis Avotins + */ + +;(function($){ + $.fn.datetimepicker.dates['lv'] = { + days: ["Svētdiena", "Pirmdiena", "Otrdiena", "Trešdiena", "Ceturtdiena", "Piektdiena", "Sestdiena", "Svētdiena"], + daysShort: ["Sv", "P", "O", "T", "C", "Pk", "S", "Sv"], + daysMin: ["Sv", "Pr", "Ot", "Tr", "Ce", "Pk", "St", "Sv"], + months: ["Janvāris", "Februāris", "Marts", "Aprīlis", "Maijs", "Jūnijs", "Jūlijs", "Augusts", "Septembris", "Oktobris", "Novembris", "Decembris"], + monthsShort: ["Jan", "Feb", "Mar", "Apr", "Mai", "Jūn", "Jūl", "Aug", "Sep", "Okt", "Nov", "Dec."], + today: "Šodien", + suffix: [], + meridiem: [], + weekStart: 1 + }; +}(jQuery)); \ No newline at end of file diff --git a/public/assets/lib/amazeui-datetimepicker/js/locales/amazeui.datetimepicker.ms.js b/public/assets/lib/amazeui-datetimepicker/js/locales/amazeui.datetimepicker.ms.js new file mode 100755 index 0000000..d1231fe --- /dev/null +++ b/public/assets/lib/amazeui-datetimepicker/js/locales/amazeui.datetimepicker.ms.js @@ -0,0 +1,16 @@ +/** + * Malay translation for bootstrap-datetimepicker + * Ateman Faiz + */ +;(function($){ + $.fn.datetimepicker.dates['ms'] = { + days: ["Ahad", "Isnin", "Selasa", "Rabu", "Khamis", "Jumaat", "Sabtu", "Ahad"], + daysShort: ["Aha", "Isn", "Sel", "Rab", "Kha", "Jum", "Sab", "Aha"], + daysMin: ["Ah", "Is", "Se", "Ra", "Kh", "Ju", "Sa", "Ah"], + months: ["Januari", "Februari", "Mac", "April", "Mei", "Jun", "Julai", "Ogos", "September", "Oktober", "November", "Disember"], + monthsShort: ["Jan", "Feb", "Mar", "Apr", "Mei", "Jun", "Jul", "Ogo", "Sep", "Okt", "Nov", "Dis"], + today: "Hari Ini", + suffix: [], + meridiem: [] + }; +}(jQuery)); diff --git a/public/assets/lib/amazeui-datetimepicker/js/locales/amazeui.datetimepicker.nb.js b/public/assets/lib/amazeui-datetimepicker/js/locales/amazeui.datetimepicker.nb.js new file mode 100755 index 0000000..ff54c89 --- /dev/null +++ b/public/assets/lib/amazeui-datetimepicker/js/locales/amazeui.datetimepicker.nb.js @@ -0,0 +1,16 @@ +/** + * Norwegian (bokmål) translation for bootstrap-datetimepicker + * Fredrik Sundmyhr + */ +;(function($){ + $.fn.datetimepicker.dates['nb'] = { + days: ["Søndag", "Mandag", "Tirsdag", "Onsdag", "Torsdag", "Fredag", "Lørdag", "Søndag"], + daysShort: ["Søn", "Man", "Tir", "Ons", "Tor", "Fre", "Lør", "Søn"], + daysMin: ["Sø", "Ma", "Ti", "On", "To", "Fr", "Lø", "Sø"], + months: ["Januar", "Februar", "Mars", "April", "Mai", "Juni", "Juli", "August", "September", "Oktober", "November", "Desember"], + monthsShort: ["Jan", "Feb", "Mar", "Apr", "Mai", "Jun", "Jul", "Aug", "Sep", "Okt", "Nov", "Des"], + today: "I Dag", + suffix: [], + meridiem: [] + }; +}(jQuery)); \ No newline at end of file diff --git a/public/assets/lib/amazeui-datetimepicker/js/locales/amazeui.datetimepicker.nl.js b/public/assets/lib/amazeui-datetimepicker/js/locales/amazeui.datetimepicker.nl.js new file mode 100755 index 0000000..d4ee009 --- /dev/null +++ b/public/assets/lib/amazeui-datetimepicker/js/locales/amazeui.datetimepicker.nl.js @@ -0,0 +1,16 @@ +/** + * Dutch translation for bootstrap-datetimepicker + * Reinier Goltstein + */ +;(function($){ + $.fn.datetimepicker.dates['nl'] = { + days: ["Zondag", "Maandag", "Dinsdag", "Woensdag", "Donderdag", "Vrijdag", "Zaterdag", "Zondag"], + daysShort: ["Zo", "Ma", "Di", "Wo", "Do", "Vr", "Za", "Zo"], + daysMin: ["Zo", "Ma", "Di", "Wo", "Do", "Vr", "Za", "Zo"], + months: ["Januari", "Februari", "Maart", "April", "Mei", "Juni", "Juli", "Augustus", "September", "Oktober", "November", "December"], + monthsShort: ["Jan", "Feb", "Mrt", "Apr", "Mei", "Jun", "Jul", "Aug", "Sep", "Okt", "Nov", "Dec"], + today: "Vandaag", + suffix: [], + meridiem: [] + }; +}(jQuery)); diff --git a/public/assets/lib/amazeui-datetimepicker/js/locales/amazeui.datetimepicker.no.js b/public/assets/lib/amazeui-datetimepicker/js/locales/amazeui.datetimepicker.no.js new file mode 100755 index 0000000..18d8a82 --- /dev/null +++ b/public/assets/lib/amazeui-datetimepicker/js/locales/amazeui.datetimepicker.no.js @@ -0,0 +1,16 @@ +/** + * Norwegian translation for bootstrap-datetimepicker + * Rune Warhuus + */ +;(function($){ + $.fn.datetimepicker.dates['no'] = { + days: ["Søndag", "Mandag", "Tirsdag", "Onsdag", "Torsdag", "Fredag", "Lørdag", "Søndag"], + daysShort: ["Søn", "Man", "Tir", "Ons", "Tor", "Fre", "Lør", "Søn"], + daysMin: ["Sø", "Ma", "Ti", "On", "To", "Fr", "Lø", "Sø"], + months: ["Januar", "Februar", "Mars", "April", "Mai", "Juni", "Juli", "August", "September", "Oktober", "November", "Desember"], + monthsShort: ["Jan", "Feb", "Mar", "Apr", "Mai", "Jun", "Jul", "Aug", "Sep", "Okt", "Nov", "Des"], + today: "I Dag", + suffix: [], + meridiem: [] + }; +}(jQuery)); diff --git a/public/assets/lib/amazeui-datetimepicker/js/locales/amazeui.datetimepicker.pl.js b/public/assets/lib/amazeui-datetimepicker/js/locales/amazeui.datetimepicker.pl.js new file mode 100755 index 0000000..f85e08d --- /dev/null +++ b/public/assets/lib/amazeui-datetimepicker/js/locales/amazeui.datetimepicker.pl.js @@ -0,0 +1,17 @@ +/** + * Polish translation for bootstrap-datetimepicker + * Robert + */ +;(function($){ +$.fn.datetimepicker.dates['pl'] = { + days: ["Niedziela", "Poniedziałek", "Wtorek", "Środa", "Czwartek", "Piątek", "Sobota", "Niedziela"], + daysShort: ["Nie", "Pn", "Wt", "Śr", "Czw", "Pt", "So", "Nie"], + daysMin: ["N", "Pn", "Wt", "Śr", "Cz", "Pt", "So", "N"], + months: ["Styczeń", "Luty", "Marzec", "Kwiecień", "Maj", "Czerwiec", "Lipiec", "Sierpień", "Wrzesień", "Październik", "Listopad", "Grudzień"], + monthsShort: ["Sty", "Lu", "Mar", "Kw", "Maj", "Cze", "Lip", "Sie", "Wrz", "Pa", "Lis", "Gru"], + today: "Dzisiaj", + suffix: [], + meridiem: [], + weekStart: 1 +}; +}(jQuery)); diff --git a/public/assets/lib/amazeui-datetimepicker/js/locales/amazeui.datetimepicker.pt-BR.js b/public/assets/lib/amazeui-datetimepicker/js/locales/amazeui.datetimepicker.pt-BR.js new file mode 100755 index 0000000..f482a8f --- /dev/null +++ b/public/assets/lib/amazeui-datetimepicker/js/locales/amazeui.datetimepicker.pt-BR.js @@ -0,0 +1,17 @@ +/** + * Brazilian translation for bootstrap-datetimepicker + * Cauan Cabral + */ +;(function($){ + $.fn.datetimepicker.dates['pt-BR'] = { + format: 'dd/mm/yyyy', + days: ["Domingo", "Segunda", "Terça", "Quarta", "Quinta", "Sexta", "Sábado", "Domingo"], + daysShort: ["Dom", "Seg", "Ter", "Qua", "Qui", "Sex", "Sáb", "Dom"], + daysMin: ["Do", "Se", "Te", "Qu", "Qu", "Se", "Sa", "Do"], + months: ["Janeiro", "Fevereiro", "Março", "Abril", "Maio", "Junho", "Julho", "Agosto", "Setembro", "Outubro", "Novembro", "Dezembro"], + monthsShort: ["Jan", "Fev", "Mar", "Abr", "Mai", "Jun", "Jul", "Ago", "Set", "Out", "Nov", "Dez"], + today: "Hoje", + suffix: [], + meridiem: [] + }; +}(jQuery)); diff --git a/public/assets/lib/amazeui-datetimepicker/js/locales/amazeui.datetimepicker.pt.js b/public/assets/lib/amazeui-datetimepicker/js/locales/amazeui.datetimepicker.pt.js new file mode 100755 index 0000000..e10a39a --- /dev/null +++ b/public/assets/lib/amazeui-datetimepicker/js/locales/amazeui.datetimepicker.pt.js @@ -0,0 +1,17 @@ +/** + * Portuguese translation for bootstrap-datetimepicker + * Original code: Cauan Cabral + * Tiago Melo + */ +;(function($){ + $.fn.datetimepicker.dates['pt'] = { + days: ["Domingo", "Segunda", "Terça", "Quarta", "Quinta", "Sexta", "Sábado", "Domingo"], + daysShort: ["Dom", "Seg", "Ter", "Qua", "Qui", "Sex", "Sáb", "Dom"], + daysMin: ["Do", "Se", "Te", "Qu", "Qu", "Se", "Sa", "Do"], + months: ["Janeiro", "Fevereiro", "Março", "Abril", "Maio", "Junho", "Julho", "Agosto", "Setembro", "Outubro", "Novembro", "Dezembro"], + monthsShort: ["Jan", "Fev", "Mar", "Abr", "Mai", "Jun", "Jul", "Ago", "Set", "Out", "Nov", "Dez"], + suffix: [], + meridiem: ["am","pm"], + today: "Hoje" + }; +}(jQuery)); diff --git a/public/assets/lib/amazeui-datetimepicker/js/locales/amazeui.datetimepicker.ro.js b/public/assets/lib/amazeui-datetimepicker/js/locales/amazeui.datetimepicker.ro.js new file mode 100755 index 0000000..e0a2e1c --- /dev/null +++ b/public/assets/lib/amazeui-datetimepicker/js/locales/amazeui.datetimepicker.ro.js @@ -0,0 +1,17 @@ +/** + * Romanian translation for bootstrap-datetimepicker + * Cristian Vasile + */ +;(function($){ + $.fn.datetimepicker.dates['ro'] = { + days: ["Duminică", "Luni", "Marţi", "Miercuri", "Joi", "Vineri", "Sâmbătă", "Duminică"], + daysShort: ["Dum", "Lun", "Mar", "Mie", "Joi", "Vin", "Sâm", "Dum"], + daysMin: ["Du", "Lu", "Ma", "Mi", "Jo", "Vi", "Sâ", "Du"], + months: ["Ianuarie", "Februarie", "Martie", "Aprilie", "Mai", "Iunie", "Iulie", "August", "Septembrie", "Octombrie", "Noiembrie", "Decembrie"], + monthsShort: ["Ian", "Feb", "Mar", "Apr", "Mai", "Iun", "Iul", "Aug", "Sep", "Oct", "Nov", "Dec"], + today: "Astăzi", + suffix: [], + meridiem: [], + weekStart: 1 + }; +}(jQuery)); diff --git a/public/assets/lib/amazeui-datetimepicker/js/locales/amazeui.datetimepicker.rs-latin.js b/public/assets/lib/amazeui-datetimepicker/js/locales/amazeui.datetimepicker.rs-latin.js new file mode 100755 index 0000000..eaca334 --- /dev/null +++ b/public/assets/lib/amazeui-datetimepicker/js/locales/amazeui.datetimepicker.rs-latin.js @@ -0,0 +1,16 @@ +/** + * Serbian latin translation for bootstrap-datetimepicker + * Bojan Milosavlević + */ +;(function($){ + $.fn.datetimepicker.dates['rs'] = { + days: ["Nedelja","Ponedeljak", "Utorak", "Sreda", "Četvrtak", "Petak", "Subota", "Nedelja"], + daysShort: ["Ned", "Pon", "Uto", "Sre", "Čet", "Pet", "Sub", "Ned"], + daysMin: ["N", "Po", "U", "Sr", "Č", "Pe", "Su", "N"], + months: ["Januar", "Februar", "Mart", "April", "Maj", "Jun", "Jul", "Avgust", "Septembar", "Oktobar", "Novembar", "Decembar"], + monthsShort: ["Jan", "Feb", "Mar", "Apr", "Maj", "Jun", "Jul", "Avg", "Sep", "Okt", "Nov", "Dec"], + today: "Danas", + suffix: [], + meridiem: [] + }; +}(jQuery)); diff --git a/public/assets/lib/amazeui-datetimepicker/js/locales/amazeui.datetimepicker.rs.js b/public/assets/lib/amazeui-datetimepicker/js/locales/amazeui.datetimepicker.rs.js new file mode 100755 index 0000000..76ee5a0 --- /dev/null +++ b/public/assets/lib/amazeui-datetimepicker/js/locales/amazeui.datetimepicker.rs.js @@ -0,0 +1,16 @@ +/** + * Serbian cyrillic translation for bootstrap-datetimepicker + * Bojan Milosavlević + */ +;(function($){ + $.fn.datetimepicker.dates['rs'] = { + days: ["Недеља","Понедељак", "Уторак", "Среда", "Четвртак", "Петак", "Субота", "Недеља"], + daysShort: ["Нед", "Пон", "Уто", "Сре", "Чет", "Пет", "Суб", "Нед"], + daysMin: ["Н", "По", "У", "Ср", "Ч", "Пе", "Су", "Н"], + months: ["Јануар", "Фебруар", "Март", "Април", "Мај", "Јун", "Јул", "Август", "Септембар", "Октобар", "Новембар", "Децембар"], + monthsShort: ["Јан", "Феб", "Мар", "Апр", "Мај", "Јун", "Јул", "Авг", "Сеп", "Окт", "Нов", "Дец"], + today: "Данас", + suffix: [], + meridiem: [] + }; +}(jQuery)); diff --git a/public/assets/lib/amazeui-datetimepicker/js/locales/amazeui.datetimepicker.ru.js b/public/assets/lib/amazeui-datetimepicker/js/locales/amazeui.datetimepicker.ru.js new file mode 100755 index 0000000..7602268 --- /dev/null +++ b/public/assets/lib/amazeui-datetimepicker/js/locales/amazeui.datetimepicker.ru.js @@ -0,0 +1,16 @@ +/** + * Russian translation for bootstrap-datetimepicker + * Victor Taranenko + */ +;(function($){ + $.fn.datetimepicker.dates['ru'] = { + days: ["Воскресенье", "Понедельник", "Вторник", "Среда", "Четверг", "Пятница", "Суббота", "Воскресенье"], + daysShort: ["Вск", "Пнд", "Втр", "Срд", "Чтв", "Птн", "Суб", "Вск"], + daysMin: ["Вс", "Пн", "Вт", "Ср", "Чт", "Пт", "Сб", "Вс"], + months: ["Январь", "Февраль", "Март", "Апрель", "Май", "Июнь", "Июль", "Август", "Сентябрь", "Октябрь", "Ноябрь", "Декабрь"], + monthsShort: ["Янв", "Фев", "Мар", "Апр", "Май", "Июн", "Июл", "Авг", "Сен", "Окт", "Ноя", "Дек"], + today: "Сегодня", + suffix: [], + meridiem: [] + }; +}(jQuery)); \ No newline at end of file diff --git a/public/assets/lib/amazeui-datetimepicker/js/locales/amazeui.datetimepicker.sk.js b/public/assets/lib/amazeui-datetimepicker/js/locales/amazeui.datetimepicker.sk.js new file mode 100755 index 0000000..b023e28 --- /dev/null +++ b/public/assets/lib/amazeui-datetimepicker/js/locales/amazeui.datetimepicker.sk.js @@ -0,0 +1,19 @@ +/** + * Slovak translation for bootstrap-datetimepicker + * Marek Lichtner + * Fixes by Michal Remiš + */ +;(function($){ + $.fn.datetimepicker.dates["sk"] = { + days: ["Nedeľa", "Pondelok", "Utorok", "Streda", "Štvrtok", "Piatok", "Sobota", "Nedeľa"], + daysShort: ["Ned", "Pon", "Uto", "Str", "Štv", "Pia", "Sob", "Ned"], + daysMin: ["Ne", "Po", "Ut", "St", "Št", "Pi", "So", "Ne"], + months: ["Január", "Február", "Marec", "Apríl", "Máj", "Jún", "Júl", "August", "September", "Október", "November", "December"], + monthsShort: ["Jan", "Feb", "Mar", "Apr", "Máj", "Jún", "Júl", "Aug", "Sep", "Okt", "Nov", "Dec"], + today: "Dnes", + suffix: [], + meridiem: [], + weekStart: 1, + format: "dd.mm.yyyy" + }; +}(jQuery)); diff --git a/public/assets/lib/amazeui-datetimepicker/js/locales/amazeui.datetimepicker.sl.js b/public/assets/lib/amazeui-datetimepicker/js/locales/amazeui.datetimepicker.sl.js new file mode 100755 index 0000000..ffefcf0 --- /dev/null +++ b/public/assets/lib/amazeui-datetimepicker/js/locales/amazeui.datetimepicker.sl.js @@ -0,0 +1,16 @@ +/** + * Slovene translation for bootstrap-datetimepicker + * Gregor Rudolf + */ +;(function($){ + $.fn.datetimepicker.dates['sl'] = { + days: ["Nedelja", "Ponedeljek", "Torek", "Sreda", "Četrtek", "Petek", "Sobota", "Nedelja"], + daysShort: ["Ned", "Pon", "Tor", "Sre", "Čet", "Pet", "Sob", "Ned"], + daysMin: ["Ne", "Po", "To", "Sr", "Če", "Pe", "So", "Ne"], + months: ["Januar", "Februar", "Marec", "April", "Maj", "Junij", "Julij", "Avgust", "September", "Oktober", "November", "December"], + monthsShort: ["Jan", "Feb", "Mar", "Apr", "Maj", "Jun", "Jul", "Avg", "Sep", "Okt", "Nov", "Dec"], + today: "Danes", + suffix: [], + meridiem: [] + }; +}(jQuery)); diff --git a/public/assets/lib/amazeui-datetimepicker/js/locales/amazeui.datetimepicker.sv.js b/public/assets/lib/amazeui-datetimepicker/js/locales/amazeui.datetimepicker.sv.js new file mode 100755 index 0000000..a979dd2 --- /dev/null +++ b/public/assets/lib/amazeui-datetimepicker/js/locales/amazeui.datetimepicker.sv.js @@ -0,0 +1,16 @@ +/** + * Swedish translation for bootstrap-datetimepicker + * Patrik Ragnarsson + */ +;(function($){ + $.fn.datetimepicker.dates['sv'] = { + days: ["Söndag", "Måndag", "Tisdag", "Onsdag", "Torsdag", "Fredag", "Lördag", "Söndag"], + daysShort: ["Sön", "Mån", "Tis", "Ons", "Tor", "Fre", "Lör", "Sön"], + daysMin: ["Sö", "Må", "Ti", "On", "To", "Fr", "Lö", "Sö"], + months: ["Januari", "Februari", "Mars", "April", "Maj", "Juni", "Juli", "Augusti", "September", "Oktober", "November", "December"], + monthsShort: ["Jan", "Feb", "Mar", "Apr", "Maj", "Jun", "Jul", "Aug", "Sep", "Okt", "Nov", "Dec"], + today: "I Dag", + suffix: [], + meridiem: [] + }; +}(jQuery)); diff --git a/public/assets/lib/amazeui-datetimepicker/js/locales/amazeui.datetimepicker.sw.js b/public/assets/lib/amazeui-datetimepicker/js/locales/amazeui.datetimepicker.sw.js new file mode 100755 index 0000000..8e395b9 --- /dev/null +++ b/public/assets/lib/amazeui-datetimepicker/js/locales/amazeui.datetimepicker.sw.js @@ -0,0 +1,17 @@ +/** + * Swahili translation for bootstrap-datetimepicker + * Edwin Mugendi + * Source: http://scriptsource.org/cms/scripts/page.php?item_id=entry_detail&uid=xnfaqyzcku + */ +;(function($){ + $.fn.datetimepicker.dates['sw'] = { + days: ["Jumapili", "Jumatatu", "Jumanne", "Jumatano", "Alhamisi", "Ijumaa", "Jumamosi", "Jumapili"], + daysShort: ["J2", "J3", "J4", "J5", "Alh", "Ij", "J1", "J2"], + daysMin: ["2", "3", "4", "5", "A", "I", "1", "2"], + months: ["Januari", "Februari", "Machi", "Aprili", "Mei", "Juni", "Julai", "Agosti", "Septemba", "Oktoba", "Novemba", "Desemba"], + monthsShort: ["Jan", "Feb", "Mac", "Apr", "Mei", "Jun", "Jul", "Ago", "Sep", "Okt", "Nov", "Des"], + today: "Leo", + suffix: [], + meridiem: [] + }; +}(jQuery)); diff --git a/public/assets/lib/amazeui-datetimepicker/js/locales/amazeui.datetimepicker.th.js b/public/assets/lib/amazeui-datetimepicker/js/locales/amazeui.datetimepicker.th.js new file mode 100755 index 0000000..4b404a5 --- /dev/null +++ b/public/assets/lib/amazeui-datetimepicker/js/locales/amazeui.datetimepicker.th.js @@ -0,0 +1,16 @@ +/** + * Thai translation for bootstrap-datetimepicker + * Suchau Jiraprapot + */ +;(function($){ + $.fn.datetimepicker.dates['th'] = { + days: ["อาทิตย์", "จันทร์", "อังคาร", "พุธ", "พฤหัส", "ศุกร์", "เสาร์", "อาทิตย์"], + daysShort: ["อา", "จ", "อ", "พ", "พฤ", "ศ", "ส", "อา"], + daysMin: ["อา", "จ", "อ", "พ", "พฤ", "ศ", "ส", "อา"], + months: ["มกราคม", "กุมภาพันธ์", "มีนาคม", "เมษายน", "พฤษภาคม", "มิถุนายน", "กรกฎาคม", "สิงหาคม", "กันยายน", "ตุลาคม", "พฤศจิกายน", "ธันวาคม"], + monthsShort: ["ม.ค.", "ก.พ.", "มี.ค.", "เม.ย.", "พ.ค.", "มิ.ย.", "ก.ค.", "ส.ค.", "ก.ย.", "ต.ค.", "พ.ย.", "ธ.ค."], + today: "วันนี้", + suffix: [], + meridiem: [] + }; +}(jQuery)); diff --git a/public/assets/lib/amazeui-datetimepicker/js/locales/amazeui.datetimepicker.tr.js b/public/assets/lib/amazeui-datetimepicker/js/locales/amazeui.datetimepicker.tr.js new file mode 100755 index 0000000..94d63da --- /dev/null +++ b/public/assets/lib/amazeui-datetimepicker/js/locales/amazeui.datetimepicker.tr.js @@ -0,0 +1,17 @@ +/** + * Turkish translation for bootstrap-datetimepicker + * Serkan Algur + */ +;(function($){ + $.fn.datetimepicker.dates['tr'] = { + days: ["Pazar", "Pazartesi", "Salı", "Çarşamba", "Perşembe", "Cuma", "Cumartesi", "Pazar"], + daysShort: ["Pz", "Pzt", "Sal", "Çrş", "Prş", "Cu", "Cts", "Pz"], + daysMin: ["Pz", "Pzt", "Sa", "Çr", "Pr", "Cu", "Ct", "Pz"], + months: ["Ocak", "Şubat", "Mart", "Nisan", "Mayıs", "Haziran", "Temmuz", "Ağustos", "Eylül", "Ekim", "Kasım", "Aralık"], + monthsShort: ["Oca", "Şub", "Mar", "Nis", "May", "Haz", "Tem", "Ağu", "Eyl", "Eki", "Kas", "Ara"], + today: "Bugün", + suffix: [], + meridiem: [] + }; +}(jQuery)); + diff --git a/public/assets/lib/amazeui-datetimepicker/js/locales/amazeui.datetimepicker.ua.js b/public/assets/lib/amazeui-datetimepicker/js/locales/amazeui.datetimepicker.ua.js new file mode 100755 index 0000000..b21968b --- /dev/null +++ b/public/assets/lib/amazeui-datetimepicker/js/locales/amazeui.datetimepicker.ua.js @@ -0,0 +1,15 @@ +/** + * Ukrainian translation for bootstrap-datepicker + * Igor Polynets + */ +;(function($){ + $.fn.datetimepicker.dates['ua'] = { + days: ["Неділя", "Понеділок", "Вівторок", "Середа", "Четверг", "П'ятниця", "Субота", "Неділя"], + daysShort: ["Нед", "Пнд", "Втр", "Срд", "Чтв", "Птн", "Суб", "Нед"], + daysMin: ["Нд", "Пн", "Вт", "Ср", "Чт", "Пт", "Сб", "Нд"], + months: ["Cічень", "Лютий", "Березень", "Квітень", "Травень", "Червень", "Липень", "Серпень", "Вересень", "Жовтень", "Листопад", "Грудень"], + monthsShort: ["Січ", "Лют", "Бер", "Квт", "Трв", "Чер", "Лип", "Сер", "Вер", "Жов", "Лис", "Грд"], + today: "Сьогодні", + weekStart: 1 + }; +}(jQuery)); diff --git a/public/assets/lib/amazeui-datetimepicker/js/locales/amazeui.datetimepicker.uk.js b/public/assets/lib/amazeui-datetimepicker/js/locales/amazeui.datetimepicker.uk.js new file mode 100755 index 0000000..1990f21 --- /dev/null +++ b/public/assets/lib/amazeui-datetimepicker/js/locales/amazeui.datetimepicker.uk.js @@ -0,0 +1,16 @@ +/** + * Ukrainian translation for bootstrap-datetimepicker + * Andrey Vityuk + */ +;(function($){ + $.fn.datetimepicker.dates['uk'] = { + days: ["Неділя", "Понеділок", "Вівторок", "Середа", "Четвер", "П'ятниця", "Субота", "Неділя"], + daysShort: ["Нед", "Пнд", "Втр", "Срд", "Чтв", "Птн", "Суб", "Нед"], + daysMin: ["Нд", "Пн", "Вт", "Ср", "Чт", "Пт", "Сб", "Нд"], + months: ["Січень", "Лютий", "Березень", "Квітень", "Травень", "Червень", "Липень", "Серпень", "Вересень", "Жовтень", "Листопад", "Грудень"], + monthsShort: ["Січ", "Лют", "Бер", "Кві", "Тра", "Чер", "Лип", "Сер", "Вер", "Жов", "Лис", "Гру"], + today: "Сьогодні", + suffix: [], + meridiem: [] + }; +}(jQuery)); \ No newline at end of file diff --git a/public/assets/lib/amazeui-datetimepicker/js/locales/amazeui.datetimepicker.zh-CN.js b/public/assets/lib/amazeui-datetimepicker/js/locales/amazeui.datetimepicker.zh-CN.js new file mode 100755 index 0000000..d2beb67 --- /dev/null +++ b/public/assets/lib/amazeui-datetimepicker/js/locales/amazeui.datetimepicker.zh-CN.js @@ -0,0 +1,16 @@ +/** + * Simplified Chinese translation for bootstrap-datetimepicker + * Yuan Cheung + */ +;(function($){ + $.fn.datetimepicker.dates['zh-CN'] = { + days: ["星期日", "星期一", "星期二", "星期三", "星期四", "星期五", "星期六", "星期日"], + daysShort: ["周日", "周一", "周二", "周三", "周四", "周五", "周六", "周日"], + daysMin: ["日", "一", "二", "三", "四", "五", "六", "日"], + months: ["一月", "二月", "三月", "四月", "五月", "六月", "七月", "八月", "九月", "十月", "十一月", "十二月"], + monthsShort: ["一月", "二月", "三月", "四月", "五月", "六月", "七月", "八月", "九月", "十月", "十一月", "十二月"], + today: "今天", + suffix: [], + meridiem: ["上午", "下午"] + }; +}(jQuery)); diff --git a/public/assets/lib/amazeui-datetimepicker/js/locales/amazeui.datetimepicker.zh-TW.js b/public/assets/lib/amazeui-datetimepicker/js/locales/amazeui.datetimepicker.zh-TW.js new file mode 100755 index 0000000..08aaa5b --- /dev/null +++ b/public/assets/lib/amazeui-datetimepicker/js/locales/amazeui.datetimepicker.zh-TW.js @@ -0,0 +1,16 @@ +/** + * Traditional Chinese translation for bootstrap-datetimepicker + * Rung-Sheng Jang + */ +;(function($){ + $.fn.datetimepicker.dates['zh-TW'] = { + days: ["星期日", "星期一", "星期二", "星期三", "星期四", "星期五", "星期六", "星期日"], + daysShort: ["周日", "周一", "周二", "周三", "周四", "周五", "周六", "周日"], + daysMin: ["日", "一", "二", "三", "四", "五", "六", "日"], + months: ["一月", "二月", "三月", "四月", "五月", "六月", "七月", "八月", "九月", "十月", "十一月", "十二月"], + monthsShort: ["一月", "二月", "三月", "四月", "五月", "六月", "七月", "八月", "九月", "十月", "十一月", "十二月"], + today: "今天", + suffix: [], + meridiem: ["上午", "下午"] + }; +}(jQuery)); diff --git a/public/assets/lib/bootstrap/css/bootstrap-grid.min.css b/public/assets/lib/bootstrap/css/bootstrap-grid.min.css new file mode 100755 index 0000000..63e1bc6 --- /dev/null +++ b/public/assets/lib/bootstrap/css/bootstrap-grid.min.css @@ -0,0 +1,7 @@ +/*! + * Bootstrap Grid v4.1.3 (https://getbootstrap.com/) + * Copyright 2011-2018 The Bootstrap Authors + * Copyright 2011-2018 Twitter, Inc. + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) + */@-ms-viewport{width:device-width}html{box-sizing:border-box;-ms-overflow-style:scrollbar}*,::after,::before{box-sizing:inherit}.container{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width:576px){.container{max-width:540px}}@media (min-width:768px){.container{max-width:720px}}@media (min-width:992px){.container{max-width:960px}}@media (min-width:1200px){.container{max-width:1140px}}.container-fluid{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}.row{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-right:-15px;margin-left:-15px}.no-gutters{margin-right:0;margin-left:0}.no-gutters>.col,.no-gutters>[class*=col-]{padding-right:0;padding-left:0}.col,.col-1,.col-10,.col-11,.col-12,.col-2,.col-3,.col-4,.col-5,.col-6,.col-7,.col-8,.col-9,.col-auto,.col-lg,.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-auto,.col-md,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-auto,.col-sm,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-auto,.col-xl,.col-xl-1,.col-xl-10,.col-xl-11,.col-xl-12,.col-xl-2,.col-xl-3,.col-xl-4,.col-xl-5,.col-xl-6,.col-xl-7,.col-xl-8,.col-xl-9,.col-xl-auto{position:relative;width:100%;min-height:1px;padding-right:15px;padding-left:15px}.col{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:none}.col-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-first{-ms-flex-order:-1;order:-1}.order-last{-ms-flex-order:13;order:13}.order-0{-ms-flex-order:0;order:0}.order-1{-ms-flex-order:1;order:1}.order-2{-ms-flex-order:2;order:2}.order-3{-ms-flex-order:3;order:3}.order-4{-ms-flex-order:4;order:4}.order-5{-ms-flex-order:5;order:5}.order-6{-ms-flex-order:6;order:6}.order-7{-ms-flex-order:7;order:7}.order-8{-ms-flex-order:8;order:8}.order-9{-ms-flex-order:9;order:9}.order-10{-ms-flex-order:10;order:10}.order-11{-ms-flex-order:11;order:11}.order-12{-ms-flex-order:12;order:12}.offset-1{margin-left:8.333333%}.offset-2{margin-left:16.666667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.333333%}.offset-5{margin-left:41.666667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.333333%}.offset-8{margin-left:66.666667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.333333%}.offset-11{margin-left:91.666667%}@media (min-width:576px){.col-sm{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-sm-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:none}.col-sm-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-sm-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-sm-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-sm-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-sm-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-sm-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-sm-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-sm-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-sm-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-sm-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-sm-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-sm-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-sm-first{-ms-flex-order:-1;order:-1}.order-sm-last{-ms-flex-order:13;order:13}.order-sm-0{-ms-flex-order:0;order:0}.order-sm-1{-ms-flex-order:1;order:1}.order-sm-2{-ms-flex-order:2;order:2}.order-sm-3{-ms-flex-order:3;order:3}.order-sm-4{-ms-flex-order:4;order:4}.order-sm-5{-ms-flex-order:5;order:5}.order-sm-6{-ms-flex-order:6;order:6}.order-sm-7{-ms-flex-order:7;order:7}.order-sm-8{-ms-flex-order:8;order:8}.order-sm-9{-ms-flex-order:9;order:9}.order-sm-10{-ms-flex-order:10;order:10}.order-sm-11{-ms-flex-order:11;order:11}.order-sm-12{-ms-flex-order:12;order:12}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.333333%}.offset-sm-2{margin-left:16.666667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.333333%}.offset-sm-5{margin-left:41.666667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.333333%}.offset-sm-8{margin-left:66.666667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.333333%}.offset-sm-11{margin-left:91.666667%}}@media (min-width:768px){.col-md{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-md-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:none}.col-md-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-md-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-md-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-md-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-md-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-md-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-md-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-md-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-md-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-md-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-md-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-md-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-md-first{-ms-flex-order:-1;order:-1}.order-md-last{-ms-flex-order:13;order:13}.order-md-0{-ms-flex-order:0;order:0}.order-md-1{-ms-flex-order:1;order:1}.order-md-2{-ms-flex-order:2;order:2}.order-md-3{-ms-flex-order:3;order:3}.order-md-4{-ms-flex-order:4;order:4}.order-md-5{-ms-flex-order:5;order:5}.order-md-6{-ms-flex-order:6;order:6}.order-md-7{-ms-flex-order:7;order:7}.order-md-8{-ms-flex-order:8;order:8}.order-md-9{-ms-flex-order:9;order:9}.order-md-10{-ms-flex-order:10;order:10}.order-md-11{-ms-flex-order:11;order:11}.order-md-12{-ms-flex-order:12;order:12}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.333333%}.offset-md-2{margin-left:16.666667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.333333%}.offset-md-5{margin-left:41.666667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.333333%}.offset-md-8{margin-left:66.666667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.333333%}.offset-md-11{margin-left:91.666667%}}@media (min-width:992px){.col-lg{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-lg-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:none}.col-lg-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-lg-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-lg-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-lg-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-lg-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-lg-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-lg-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-lg-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-lg-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-lg-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-lg-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-lg-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-lg-first{-ms-flex-order:-1;order:-1}.order-lg-last{-ms-flex-order:13;order:13}.order-lg-0{-ms-flex-order:0;order:0}.order-lg-1{-ms-flex-order:1;order:1}.order-lg-2{-ms-flex-order:2;order:2}.order-lg-3{-ms-flex-order:3;order:3}.order-lg-4{-ms-flex-order:4;order:4}.order-lg-5{-ms-flex-order:5;order:5}.order-lg-6{-ms-flex-order:6;order:6}.order-lg-7{-ms-flex-order:7;order:7}.order-lg-8{-ms-flex-order:8;order:8}.order-lg-9{-ms-flex-order:9;order:9}.order-lg-10{-ms-flex-order:10;order:10}.order-lg-11{-ms-flex-order:11;order:11}.order-lg-12{-ms-flex-order:12;order:12}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.333333%}.offset-lg-2{margin-left:16.666667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.333333%}.offset-lg-5{margin-left:41.666667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.333333%}.offset-lg-8{margin-left:66.666667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.333333%}.offset-lg-11{margin-left:91.666667%}}@media (min-width:1200px){.col-xl{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-xl-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:none}.col-xl-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-xl-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-xl-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-xl-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-xl-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-xl-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-xl-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-xl-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-xl-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-xl-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-xl-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-xl-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-xl-first{-ms-flex-order:-1;order:-1}.order-xl-last{-ms-flex-order:13;order:13}.order-xl-0{-ms-flex-order:0;order:0}.order-xl-1{-ms-flex-order:1;order:1}.order-xl-2{-ms-flex-order:2;order:2}.order-xl-3{-ms-flex-order:3;order:3}.order-xl-4{-ms-flex-order:4;order:4}.order-xl-5{-ms-flex-order:5;order:5}.order-xl-6{-ms-flex-order:6;order:6}.order-xl-7{-ms-flex-order:7;order:7}.order-xl-8{-ms-flex-order:8;order:8}.order-xl-9{-ms-flex-order:9;order:9}.order-xl-10{-ms-flex-order:10;order:10}.order-xl-11{-ms-flex-order:11;order:11}.order-xl-12{-ms-flex-order:12;order:12}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.333333%}.offset-xl-2{margin-left:16.666667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.333333%}.offset-xl-5{margin-left:41.666667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.333333%}.offset-xl-8{margin-left:66.666667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.333333%}.offset-xl-11{margin-left:91.666667%}}.d-none{display:none!important}.d-inline{display:inline!important}.d-inline-block{display:inline-block!important}.d-block{display:block!important}.d-table{display:table!important}.d-table-row{display:table-row!important}.d-table-cell{display:table-cell!important}.d-flex{display:-ms-flexbox!important;display:flex!important}.d-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}@media (min-width:576px){.d-sm-none{display:none!important}.d-sm-inline{display:inline!important}.d-sm-inline-block{display:inline-block!important}.d-sm-block{display:block!important}.d-sm-table{display:table!important}.d-sm-table-row{display:table-row!important}.d-sm-table-cell{display:table-cell!important}.d-sm-flex{display:-ms-flexbox!important;display:flex!important}.d-sm-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}@media (min-width:768px){.d-md-none{display:none!important}.d-md-inline{display:inline!important}.d-md-inline-block{display:inline-block!important}.d-md-block{display:block!important}.d-md-table{display:table!important}.d-md-table-row{display:table-row!important}.d-md-table-cell{display:table-cell!important}.d-md-flex{display:-ms-flexbox!important;display:flex!important}.d-md-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}@media (min-width:992px){.d-lg-none{display:none!important}.d-lg-inline{display:inline!important}.d-lg-inline-block{display:inline-block!important}.d-lg-block{display:block!important}.d-lg-table{display:table!important}.d-lg-table-row{display:table-row!important}.d-lg-table-cell{display:table-cell!important}.d-lg-flex{display:-ms-flexbox!important;display:flex!important}.d-lg-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}@media (min-width:1200px){.d-xl-none{display:none!important}.d-xl-inline{display:inline!important}.d-xl-inline-block{display:inline-block!important}.d-xl-block{display:block!important}.d-xl-table{display:table!important}.d-xl-table-row{display:table-row!important}.d-xl-table-cell{display:table-cell!important}.d-xl-flex{display:-ms-flexbox!important;display:flex!important}.d-xl-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}@media print{.d-print-none{display:none!important}.d-print-inline{display:inline!important}.d-print-inline-block{display:inline-block!important}.d-print-block{display:block!important}.d-print-table{display:table!important}.d-print-table-row{display:table-row!important}.d-print-table-cell{display:table-cell!important}.d-print-flex{display:-ms-flexbox!important;display:flex!important}.d-print-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}.flex-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.flex-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-center{-ms-flex-align:center!important;align-items:center!important}.align-items-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}@media (min-width:576px){.flex-sm-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-sm-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-sm-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-sm-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-sm-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-sm-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-sm-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-sm-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-sm-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-sm-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.flex-sm-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-sm-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-sm-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-sm-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-sm-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-sm-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-sm-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-sm-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-sm-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-sm-center{-ms-flex-align:center!important;align-items:center!important}.align-items-sm-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-sm-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-sm-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-sm-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-sm-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-sm-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-sm-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-sm-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-sm-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-sm-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-sm-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-sm-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-sm-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-sm-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}@media (min-width:768px){.flex-md-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-md-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-md-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-md-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-md-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-md-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-md-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-md-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-md-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-md-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.flex-md-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-md-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-md-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-md-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-md-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-md-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-md-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-md-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-md-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-md-center{-ms-flex-align:center!important;align-items:center!important}.align-items-md-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-md-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-md-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-md-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-md-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-md-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-md-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-md-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-md-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-md-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-md-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-md-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-md-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-md-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}@media (min-width:992px){.flex-lg-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-lg-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-lg-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-lg-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-lg-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-lg-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-lg-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-lg-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-lg-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-lg-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.flex-lg-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-lg-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-lg-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-lg-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-lg-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-lg-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-lg-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-lg-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-lg-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-lg-center{-ms-flex-align:center!important;align-items:center!important}.align-items-lg-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-lg-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-lg-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-lg-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-lg-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-lg-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-lg-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-lg-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-lg-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-lg-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-lg-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-lg-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-lg-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-lg-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}@media (min-width:1200px){.flex-xl-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-xl-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-xl-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-xl-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-xl-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-xl-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-xl-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-xl-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-xl-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-xl-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.flex-xl-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-xl-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-xl-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-xl-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-xl-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-xl-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-xl-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-xl-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-xl-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-xl-center{-ms-flex-align:center!important;align-items:center!important}.align-items-xl-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-xl-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-xl-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-xl-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-xl-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-xl-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-xl-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-xl-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-xl-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-xl-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-xl-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-xl-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-xl-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-xl-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}} +/*# sourceMappingURL=bootstrap-grid.min.css.map */ \ No newline at end of file diff --git a/public/assets/lib/bootstrap/css/bootstrap-reboot.min.css b/public/assets/lib/bootstrap/css/bootstrap-reboot.min.css new file mode 100755 index 0000000..402715d --- /dev/null +++ b/public/assets/lib/bootstrap/css/bootstrap-reboot.min.css @@ -0,0 +1,8 @@ +/*! + * Bootstrap Reboot v4.1.3 (https://getbootstrap.com/) + * Copyright 2011-2018 The Bootstrap Authors + * Copyright 2011-2018 Twitter, Inc. + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) + * Forked from Normalize.css, licensed MIT (https://github.com/necolas/normalize.css/blob/master/LICENSE.md) + */*,::after,::before{box-sizing:border-box}html{font-family:sans-serif;line-height:1.15;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%;-ms-overflow-style:scrollbar;-webkit-tap-highlight-color:transparent}@-ms-viewport{width:device-width}article,aside,figcaption,figure,footer,header,hgroup,main,nav,section{display:block}body{margin:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-size:1rem;font-weight:400;line-height:1.5;color:#212529;text-align:left;background-color:#fff}[tabindex="-1"]:focus{outline:0!important}hr{box-sizing:content-box;height:0;overflow:visible}h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:.5rem}p{margin-top:0;margin-bottom:1rem}abbr[data-original-title],abbr[title]{text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:help;border-bottom:0}address{margin-bottom:1rem;font-style:normal;line-height:inherit}dl,ol,ul{margin-top:0;margin-bottom:1rem}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem}dfn{font-style:italic}b,strong{font-weight:bolder}small{font-size:80%}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{color:#007bff;text-decoration:none;background-color:transparent;-webkit-text-decoration-skip:objects}a:hover{color:#0056b3;text-decoration:underline}a:not([href]):not([tabindex]){color:inherit;text-decoration:none}a:not([href]):not([tabindex]):focus,a:not([href]):not([tabindex]):hover{color:inherit;text-decoration:none}a:not([href]):not([tabindex]):focus{outline:0}code,kbd,pre,samp{font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;font-size:1em}pre{margin-top:0;margin-bottom:1rem;overflow:auto;-ms-overflow-style:scrollbar}figure{margin:0 0 1rem}img{vertical-align:middle;border-style:none}svg{overflow:hidden;vertical-align:middle}table{border-collapse:collapse}caption{padding-top:.75rem;padding-bottom:.75rem;color:#6c757d;text-align:left;caption-side:bottom}th{text-align:inherit}label{display:inline-block;margin-bottom:.5rem}button{border-radius:0}button:focus{outline:1px dotted;outline:5px auto -webkit-focus-ring-color}button,input,optgroup,select,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,input{overflow:visible}button,select{text-transform:none}[type=reset],[type=submit],button,html [type=button]{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{padding:0;border-style:none}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=date],input[type=datetime-local],input[type=month],input[type=time]{-webkit-appearance:listbox}textarea{overflow:auto;resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{display:block;width:100%;max-width:100%;padding:0;margin-bottom:.5rem;font-size:1.5rem;line-height:inherit;color:inherit;white-space:normal}progress{vertical-align:baseline}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{outline-offset:-2px;-webkit-appearance:none}[type=search]::-webkit-search-cancel-button,[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}output{display:inline-block}summary{display:list-item;cursor:pointer}template{display:none}[hidden]{display:none!important} +/*# sourceMappingURL=bootstrap-reboot.min.css.map */ \ No newline at end of file diff --git a/public/assets/lib/bootstrap/css/bootstrap.min.css b/public/assets/lib/bootstrap/css/bootstrap.min.css new file mode 100755 index 0000000..8826912 --- /dev/null +++ b/public/assets/lib/bootstrap/css/bootstrap.min.css @@ -0,0 +1,7 @@ +/*! + * Bootstrap v4.1.3 (https://getbootstrap.com/) + * Copyright 2011-2018 The Bootstrap Authors + * Copyright 2011-2018 Twitter, Inc. + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) + */:root{--blue:#007bff;--indigo:#6610f2;--purple:#6f42c1;--pink:#e83e8c;--red:#dc3545;--orange:#fd7e14;--yellow:#ffc107;--green:#28a745;--teal:#20c997;--cyan:#17a2b8;--white:#fff;--gray:#6c757d;--gray-dark:#343a40;--primary:#007bff;--secondary:#6c757d;--success:#28a745;--info:#17a2b8;--warning:#ffc107;--danger:#dc3545;--light:#f8f9fa;--dark:#343a40;--breakpoint-xs:0;--breakpoint-sm:576px;--breakpoint-md:768px;--breakpoint-lg:992px;--breakpoint-xl:1200px;--font-family-sans-serif:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";--font-family-monospace:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace}*,::after,::before{box-sizing:border-box}html{font-family:sans-serif;line-height:1.15;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%;-ms-overflow-style:scrollbar;-webkit-tap-highlight-color:transparent}@-ms-viewport{width:device-width}article,aside,figcaption,figure,footer,header,hgroup,main,nav,section{display:block}body{margin:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-size:1rem;font-weight:400;line-height:1.5;color:#212529;text-align:left;background-color:#fff}[tabindex="-1"]:focus{outline:0!important}hr{box-sizing:content-box;height:0;overflow:visible}h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:.5rem}p{margin-top:0;margin-bottom:1rem}abbr[data-original-title],abbr[title]{text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:help;border-bottom:0}address{margin-bottom:1rem;font-style:normal;line-height:inherit}dl,ol,ul{margin-top:0;margin-bottom:1rem}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem}dfn{font-style:italic}b,strong{font-weight:bolder}small{font-size:80%}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{color:#007bff;text-decoration:none;background-color:transparent;-webkit-text-decoration-skip:objects}a:hover{color:#0056b3;text-decoration:underline}a:not([href]):not([tabindex]){color:inherit;text-decoration:none}a:not([href]):not([tabindex]):focus,a:not([href]):not([tabindex]):hover{color:inherit;text-decoration:none}a:not([href]):not([tabindex]):focus{outline:0}code,kbd,pre,samp{font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;font-size:1em}pre{margin-top:0;margin-bottom:1rem;overflow:auto;-ms-overflow-style:scrollbar}figure{margin:0 0 1rem}img{vertical-align:middle;border-style:none}svg{overflow:hidden;vertical-align:middle}table{border-collapse:collapse}caption{padding-top:.75rem;padding-bottom:.75rem;color:#6c757d;text-align:left;caption-side:bottom}th{text-align:inherit}label{display:inline-block;margin-bottom:.5rem}button{border-radius:0}button:focus{outline:1px dotted;outline:5px auto -webkit-focus-ring-color}button,input,optgroup,select,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,input{overflow:visible}button,select{text-transform:none}[type=reset],[type=submit],button,html [type=button]{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{padding:0;border-style:none}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=date],input[type=datetime-local],input[type=month],input[type=time]{-webkit-appearance:listbox}textarea{overflow:auto;resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{display:block;width:100%;max-width:100%;padding:0;margin-bottom:.5rem;font-size:1.5rem;line-height:inherit;color:inherit;white-space:normal}progress{vertical-align:baseline}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{outline-offset:-2px;-webkit-appearance:none}[type=search]::-webkit-search-cancel-button,[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}output{display:inline-block}summary{display:list-item;cursor:pointer}template{display:none}[hidden]{display:none!important}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{margin-bottom:.5rem;font-family:inherit;font-weight:500;line-height:1.2;color:inherit}.h1,h1{font-size:2.5rem}.h2,h2{font-size:2rem}.h3,h3{font-size:1.75rem}.h4,h4{font-size:1.5rem}.h5,h5{font-size:1.25rem}.h6,h6{font-size:1rem}.lead{font-size:1.25rem;font-weight:300}.display-1{font-size:6rem;font-weight:300;line-height:1.2}.display-2{font-size:5.5rem;font-weight:300;line-height:1.2}.display-3{font-size:4.5rem;font-weight:300;line-height:1.2}.display-4{font-size:3.5rem;font-weight:300;line-height:1.2}hr{margin-top:1rem;margin-bottom:1rem;border:0;border-top:1px solid rgba(0,0,0,.1)}.small,small{font-size:80%;font-weight:400}.mark,mark{padding:.2em;background-color:#fcf8e3}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;list-style:none}.list-inline-item{display:inline-block}.list-inline-item:not(:last-child){margin-right:.5rem}.initialism{font-size:90%;text-transform:uppercase}.blockquote{margin-bottom:1rem;font-size:1.25rem}.blockquote-footer{display:block;font-size:80%;color:#6c757d}.blockquote-footer::before{content:"\2014 \00A0"}.img-fluid{max-width:100%;height:auto}.img-thumbnail{padding:.25rem;background-color:#fff;border:1px solid #dee2e6;border-radius:.25rem;max-width:100%;height:auto}.figure{display:inline-block}.figure-img{margin-bottom:.5rem;line-height:1}.figure-caption{font-size:90%;color:#6c757d}code{font-size:87.5%;color:#e83e8c;word-break:break-word}a>code{color:inherit}kbd{padding:.2rem .4rem;font-size:87.5%;color:#fff;background-color:#212529;border-radius:.2rem}kbd kbd{padding:0;font-size:100%;font-weight:700}pre{display:block;font-size:87.5%;color:#212529}pre code{font-size:inherit;color:inherit;word-break:normal}.pre-scrollable{max-height:340px;overflow-y:scroll}.container{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width:576px){.container{max-width:540px}}@media (min-width:768px){.container{max-width:720px}}@media (min-width:992px){.container{max-width:960px}}@media (min-width:1200px){.container{max-width:1140px}}.container-fluid{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}.row{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-right:-15px;margin-left:-15px}.no-gutters{margin-right:0;margin-left:0}.no-gutters>.col,.no-gutters>[class*=col-]{padding-right:0;padding-left:0}.col,.col-1,.col-10,.col-11,.col-12,.col-2,.col-3,.col-4,.col-5,.col-6,.col-7,.col-8,.col-9,.col-auto,.col-lg,.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-auto,.col-md,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-auto,.col-sm,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-auto,.col-xl,.col-xl-1,.col-xl-10,.col-xl-11,.col-xl-12,.col-xl-2,.col-xl-3,.col-xl-4,.col-xl-5,.col-xl-6,.col-xl-7,.col-xl-8,.col-xl-9,.col-xl-auto{position:relative;width:100%;min-height:1px;padding-right:15px;padding-left:15px}.col{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:none}.col-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-first{-ms-flex-order:-1;order:-1}.order-last{-ms-flex-order:13;order:13}.order-0{-ms-flex-order:0;order:0}.order-1{-ms-flex-order:1;order:1}.order-2{-ms-flex-order:2;order:2}.order-3{-ms-flex-order:3;order:3}.order-4{-ms-flex-order:4;order:4}.order-5{-ms-flex-order:5;order:5}.order-6{-ms-flex-order:6;order:6}.order-7{-ms-flex-order:7;order:7}.order-8{-ms-flex-order:8;order:8}.order-9{-ms-flex-order:9;order:9}.order-10{-ms-flex-order:10;order:10}.order-11{-ms-flex-order:11;order:11}.order-12{-ms-flex-order:12;order:12}.offset-1{margin-left:8.333333%}.offset-2{margin-left:16.666667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.333333%}.offset-5{margin-left:41.666667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.333333%}.offset-8{margin-left:66.666667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.333333%}.offset-11{margin-left:91.666667%}@media (min-width:576px){.col-sm{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-sm-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:none}.col-sm-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-sm-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-sm-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-sm-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-sm-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-sm-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-sm-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-sm-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-sm-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-sm-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-sm-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-sm-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-sm-first{-ms-flex-order:-1;order:-1}.order-sm-last{-ms-flex-order:13;order:13}.order-sm-0{-ms-flex-order:0;order:0}.order-sm-1{-ms-flex-order:1;order:1}.order-sm-2{-ms-flex-order:2;order:2}.order-sm-3{-ms-flex-order:3;order:3}.order-sm-4{-ms-flex-order:4;order:4}.order-sm-5{-ms-flex-order:5;order:5}.order-sm-6{-ms-flex-order:6;order:6}.order-sm-7{-ms-flex-order:7;order:7}.order-sm-8{-ms-flex-order:8;order:8}.order-sm-9{-ms-flex-order:9;order:9}.order-sm-10{-ms-flex-order:10;order:10}.order-sm-11{-ms-flex-order:11;order:11}.order-sm-12{-ms-flex-order:12;order:12}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.333333%}.offset-sm-2{margin-left:16.666667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.333333%}.offset-sm-5{margin-left:41.666667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.333333%}.offset-sm-8{margin-left:66.666667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.333333%}.offset-sm-11{margin-left:91.666667%}}@media (min-width:768px){.col-md{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-md-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:none}.col-md-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-md-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-md-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-md-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-md-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-md-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-md-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-md-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-md-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-md-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-md-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-md-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-md-first{-ms-flex-order:-1;order:-1}.order-md-last{-ms-flex-order:13;order:13}.order-md-0{-ms-flex-order:0;order:0}.order-md-1{-ms-flex-order:1;order:1}.order-md-2{-ms-flex-order:2;order:2}.order-md-3{-ms-flex-order:3;order:3}.order-md-4{-ms-flex-order:4;order:4}.order-md-5{-ms-flex-order:5;order:5}.order-md-6{-ms-flex-order:6;order:6}.order-md-7{-ms-flex-order:7;order:7}.order-md-8{-ms-flex-order:8;order:8}.order-md-9{-ms-flex-order:9;order:9}.order-md-10{-ms-flex-order:10;order:10}.order-md-11{-ms-flex-order:11;order:11}.order-md-12{-ms-flex-order:12;order:12}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.333333%}.offset-md-2{margin-left:16.666667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.333333%}.offset-md-5{margin-left:41.666667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.333333%}.offset-md-8{margin-left:66.666667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.333333%}.offset-md-11{margin-left:91.666667%}}@media (min-width:992px){.col-lg{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-lg-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:none}.col-lg-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-lg-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-lg-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-lg-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-lg-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-lg-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-lg-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-lg-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-lg-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-lg-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-lg-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-lg-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-lg-first{-ms-flex-order:-1;order:-1}.order-lg-last{-ms-flex-order:13;order:13}.order-lg-0{-ms-flex-order:0;order:0}.order-lg-1{-ms-flex-order:1;order:1}.order-lg-2{-ms-flex-order:2;order:2}.order-lg-3{-ms-flex-order:3;order:3}.order-lg-4{-ms-flex-order:4;order:4}.order-lg-5{-ms-flex-order:5;order:5}.order-lg-6{-ms-flex-order:6;order:6}.order-lg-7{-ms-flex-order:7;order:7}.order-lg-8{-ms-flex-order:8;order:8}.order-lg-9{-ms-flex-order:9;order:9}.order-lg-10{-ms-flex-order:10;order:10}.order-lg-11{-ms-flex-order:11;order:11}.order-lg-12{-ms-flex-order:12;order:12}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.333333%}.offset-lg-2{margin-left:16.666667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.333333%}.offset-lg-5{margin-left:41.666667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.333333%}.offset-lg-8{margin-left:66.666667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.333333%}.offset-lg-11{margin-left:91.666667%}}@media (min-width:1200px){.col-xl{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-xl-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:none}.col-xl-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-xl-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-xl-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-xl-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-xl-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-xl-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-xl-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-xl-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-xl-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-xl-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-xl-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-xl-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-xl-first{-ms-flex-order:-1;order:-1}.order-xl-last{-ms-flex-order:13;order:13}.order-xl-0{-ms-flex-order:0;order:0}.order-xl-1{-ms-flex-order:1;order:1}.order-xl-2{-ms-flex-order:2;order:2}.order-xl-3{-ms-flex-order:3;order:3}.order-xl-4{-ms-flex-order:4;order:4}.order-xl-5{-ms-flex-order:5;order:5}.order-xl-6{-ms-flex-order:6;order:6}.order-xl-7{-ms-flex-order:7;order:7}.order-xl-8{-ms-flex-order:8;order:8}.order-xl-9{-ms-flex-order:9;order:9}.order-xl-10{-ms-flex-order:10;order:10}.order-xl-11{-ms-flex-order:11;order:11}.order-xl-12{-ms-flex-order:12;order:12}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.333333%}.offset-xl-2{margin-left:16.666667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.333333%}.offset-xl-5{margin-left:41.666667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.333333%}.offset-xl-8{margin-left:66.666667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.333333%}.offset-xl-11{margin-left:91.666667%}}.table{width:100%;margin-bottom:1rem;background-color:transparent}.table td,.table th{padding:.75rem;vertical-align:top;border-top:1px solid #dee2e6}.table thead th{vertical-align:bottom;border-bottom:2px solid #dee2e6}.table tbody+tbody{border-top:2px solid #dee2e6}.table .table{background-color:#fff}.table-sm td,.table-sm th{padding:.3rem}.table-bordered{border:1px solid #dee2e6}.table-bordered td,.table-bordered th{border:1px solid #dee2e6}.table-bordered thead td,.table-bordered thead th{border-bottom-width:2px}.table-borderless tbody+tbody,.table-borderless td,.table-borderless th,.table-borderless thead th{border:0}.table-striped tbody tr:nth-of-type(odd){background-color:rgba(0,0,0,.05)}.table-hover tbody tr:hover{background-color:rgba(0,0,0,.075)}.table-primary,.table-primary>td,.table-primary>th{background-color:#b8daff}.table-hover .table-primary:hover{background-color:#9fcdff}.table-hover .table-primary:hover>td,.table-hover .table-primary:hover>th{background-color:#9fcdff}.table-secondary,.table-secondary>td,.table-secondary>th{background-color:#d6d8db}.table-hover .table-secondary:hover{background-color:#c8cbcf}.table-hover .table-secondary:hover>td,.table-hover .table-secondary:hover>th{background-color:#c8cbcf}.table-success,.table-success>td,.table-success>th{background-color:#c3e6cb}.table-hover .table-success:hover{background-color:#b1dfbb}.table-hover .table-success:hover>td,.table-hover .table-success:hover>th{background-color:#b1dfbb}.table-info,.table-info>td,.table-info>th{background-color:#bee5eb}.table-hover .table-info:hover{background-color:#abdde5}.table-hover .table-info:hover>td,.table-hover .table-info:hover>th{background-color:#abdde5}.table-warning,.table-warning>td,.table-warning>th{background-color:#ffeeba}.table-hover .table-warning:hover{background-color:#ffe8a1}.table-hover .table-warning:hover>td,.table-hover .table-warning:hover>th{background-color:#ffe8a1}.table-danger,.table-danger>td,.table-danger>th{background-color:#f5c6cb}.table-hover .table-danger:hover{background-color:#f1b0b7}.table-hover .table-danger:hover>td,.table-hover .table-danger:hover>th{background-color:#f1b0b7}.table-light,.table-light>td,.table-light>th{background-color:#fdfdfe}.table-hover .table-light:hover{background-color:#ececf6}.table-hover .table-light:hover>td,.table-hover .table-light:hover>th{background-color:#ececf6}.table-dark,.table-dark>td,.table-dark>th{background-color:#c6c8ca}.table-hover .table-dark:hover{background-color:#b9bbbe}.table-hover .table-dark:hover>td,.table-hover .table-dark:hover>th{background-color:#b9bbbe}.table-active,.table-active>td,.table-active>th{background-color:rgba(0,0,0,.075)}.table-hover .table-active:hover{background-color:rgba(0,0,0,.075)}.table-hover .table-active:hover>td,.table-hover .table-active:hover>th{background-color:rgba(0,0,0,.075)}.table .thead-dark th{color:#fff;background-color:#212529;border-color:#32383e}.table .thead-light th{color:#495057;background-color:#e9ecef;border-color:#dee2e6}.table-dark{color:#fff;background-color:#212529}.table-dark td,.table-dark th,.table-dark thead th{border-color:#32383e}.table-dark.table-bordered{border:0}.table-dark.table-striped tbody tr:nth-of-type(odd){background-color:rgba(255,255,255,.05)}.table-dark.table-hover tbody tr:hover{background-color:rgba(255,255,255,.075)}@media (max-width:575.98px){.table-responsive-sm{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar}.table-responsive-sm>.table-bordered{border:0}}@media (max-width:767.98px){.table-responsive-md{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar}.table-responsive-md>.table-bordered{border:0}}@media (max-width:991.98px){.table-responsive-lg{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar}.table-responsive-lg>.table-bordered{border:0}}@media (max-width:1199.98px){.table-responsive-xl{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar}.table-responsive-xl>.table-bordered{border:0}}.table-responsive{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar}.table-responsive>.table-bordered{border:0}.form-control{display:block;width:100%;height:calc(2.25rem + 2px);padding:.375rem .75rem;font-size:1rem;line-height:1.5;color:#495057;background-color:#fff;background-clip:padding-box;border:1px solid #ced4da;border-radius:.25rem;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media screen and (prefers-reduced-motion:reduce){.form-control{transition:none}}.form-control::-ms-expand{background-color:transparent;border:0}.form-control:focus{color:#495057;background-color:#fff;border-color:#80bdff;outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.form-control::-webkit-input-placeholder{color:#6c757d;opacity:1}.form-control::-moz-placeholder{color:#6c757d;opacity:1}.form-control:-ms-input-placeholder{color:#6c757d;opacity:1}.form-control::-ms-input-placeholder{color:#6c757d;opacity:1}.form-control::placeholder{color:#6c757d;opacity:1}.form-control:disabled,.form-control[readonly]{background-color:#e9ecef;opacity:1}select.form-control:focus::-ms-value{color:#495057;background-color:#fff}.form-control-file,.form-control-range{display:block;width:100%}.col-form-label{padding-top:calc(.375rem + 1px);padding-bottom:calc(.375rem + 1px);margin-bottom:0;font-size:inherit;line-height:1.5}.col-form-label-lg{padding-top:calc(.5rem + 1px);padding-bottom:calc(.5rem + 1px);font-size:1.25rem;line-height:1.5}.col-form-label-sm{padding-top:calc(.25rem + 1px);padding-bottom:calc(.25rem + 1px);font-size:.875rem;line-height:1.5}.form-control-plaintext{display:block;width:100%;padding-top:.375rem;padding-bottom:.375rem;margin-bottom:0;line-height:1.5;color:#212529;background-color:transparent;border:solid transparent;border-width:1px 0}.form-control-plaintext.form-control-lg,.form-control-plaintext.form-control-sm{padding-right:0;padding-left:0}.form-control-sm{height:calc(1.8125rem + 2px);padding:.25rem .5rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}.form-control-lg{height:calc(2.875rem + 2px);padding:.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:.3rem}select.form-control[multiple],select.form-control[size]{height:auto}textarea.form-control{height:auto}.form-group{margin-bottom:1rem}.form-text{display:block;margin-top:.25rem}.form-row{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-right:-5px;margin-left:-5px}.form-row>.col,.form-row>[class*=col-]{padding-right:5px;padding-left:5px}.form-check{position:relative;display:block;padding-left:1.25rem}.form-check-input{position:absolute;margin-top:.3rem;margin-left:-1.25rem}.form-check-input:disabled~.form-check-label{color:#6c757d}.form-check-label{margin-bottom:0}.form-check-inline{display:-ms-inline-flexbox;display:inline-flex;-ms-flex-align:center;align-items:center;padding-left:0;margin-right:.75rem}.form-check-inline .form-check-input{position:static;margin-top:0;margin-right:.3125rem;margin-left:0}.valid-feedback{display:none;width:100%;margin-top:.25rem;font-size:80%;color:#28a745}.valid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;line-height:1.5;color:#fff;background-color:rgba(40,167,69,.9);border-radius:.25rem}.custom-select.is-valid,.form-control.is-valid,.was-validated .custom-select:valid,.was-validated .form-control:valid{border-color:#28a745}.custom-select.is-valid:focus,.form-control.is-valid:focus,.was-validated .custom-select:valid:focus,.was-validated .form-control:valid:focus{border-color:#28a745;box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}.custom-select.is-valid~.valid-feedback,.custom-select.is-valid~.valid-tooltip,.form-control.is-valid~.valid-feedback,.form-control.is-valid~.valid-tooltip,.was-validated .custom-select:valid~.valid-feedback,.was-validated .custom-select:valid~.valid-tooltip,.was-validated .form-control:valid~.valid-feedback,.was-validated .form-control:valid~.valid-tooltip{display:block}.form-control-file.is-valid~.valid-feedback,.form-control-file.is-valid~.valid-tooltip,.was-validated .form-control-file:valid~.valid-feedback,.was-validated .form-control-file:valid~.valid-tooltip{display:block}.form-check-input.is-valid~.form-check-label,.was-validated .form-check-input:valid~.form-check-label{color:#28a745}.form-check-input.is-valid~.valid-feedback,.form-check-input.is-valid~.valid-tooltip,.was-validated .form-check-input:valid~.valid-feedback,.was-validated .form-check-input:valid~.valid-tooltip{display:block}.custom-control-input.is-valid~.custom-control-label,.was-validated .custom-control-input:valid~.custom-control-label{color:#28a745}.custom-control-input.is-valid~.custom-control-label::before,.was-validated .custom-control-input:valid~.custom-control-label::before{background-color:#71dd8a}.custom-control-input.is-valid~.valid-feedback,.custom-control-input.is-valid~.valid-tooltip,.was-validated .custom-control-input:valid~.valid-feedback,.was-validated .custom-control-input:valid~.valid-tooltip{display:block}.custom-control-input.is-valid:checked~.custom-control-label::before,.was-validated .custom-control-input:valid:checked~.custom-control-label::before{background-color:#34ce57}.custom-control-input.is-valid:focus~.custom-control-label::before,.was-validated .custom-control-input:valid:focus~.custom-control-label::before{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(40,167,69,.25)}.custom-file-input.is-valid~.custom-file-label,.was-validated .custom-file-input:valid~.custom-file-label{border-color:#28a745}.custom-file-input.is-valid~.custom-file-label::after,.was-validated .custom-file-input:valid~.custom-file-label::after{border-color:inherit}.custom-file-input.is-valid~.valid-feedback,.custom-file-input.is-valid~.valid-tooltip,.was-validated .custom-file-input:valid~.valid-feedback,.was-validated .custom-file-input:valid~.valid-tooltip{display:block}.custom-file-input.is-valid:focus~.custom-file-label,.was-validated .custom-file-input:valid:focus~.custom-file-label{box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}.invalid-feedback{display:none;width:100%;margin-top:.25rem;font-size:80%;color:#dc3545}.invalid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;line-height:1.5;color:#fff;background-color:rgba(220,53,69,.9);border-radius:.25rem}.custom-select.is-invalid,.form-control.is-invalid,.was-validated .custom-select:invalid,.was-validated .form-control:invalid{border-color:#dc3545}.custom-select.is-invalid:focus,.form-control.is-invalid:focus,.was-validated .custom-select:invalid:focus,.was-validated .form-control:invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}.custom-select.is-invalid~.invalid-feedback,.custom-select.is-invalid~.invalid-tooltip,.form-control.is-invalid~.invalid-feedback,.form-control.is-invalid~.invalid-tooltip,.was-validated .custom-select:invalid~.invalid-feedback,.was-validated .custom-select:invalid~.invalid-tooltip,.was-validated .form-control:invalid~.invalid-feedback,.was-validated .form-control:invalid~.invalid-tooltip{display:block}.form-control-file.is-invalid~.invalid-feedback,.form-control-file.is-invalid~.invalid-tooltip,.was-validated .form-control-file:invalid~.invalid-feedback,.was-validated .form-control-file:invalid~.invalid-tooltip{display:block}.form-check-input.is-invalid~.form-check-label,.was-validated .form-check-input:invalid~.form-check-label{color:#dc3545}.form-check-input.is-invalid~.invalid-feedback,.form-check-input.is-invalid~.invalid-tooltip,.was-validated .form-check-input:invalid~.invalid-feedback,.was-validated .form-check-input:invalid~.invalid-tooltip{display:block}.custom-control-input.is-invalid~.custom-control-label,.was-validated .custom-control-input:invalid~.custom-control-label{color:#dc3545}.custom-control-input.is-invalid~.custom-control-label::before,.was-validated .custom-control-input:invalid~.custom-control-label::before{background-color:#efa2a9}.custom-control-input.is-invalid~.invalid-feedback,.custom-control-input.is-invalid~.invalid-tooltip,.was-validated .custom-control-input:invalid~.invalid-feedback,.was-validated .custom-control-input:invalid~.invalid-tooltip{display:block}.custom-control-input.is-invalid:checked~.custom-control-label::before,.was-validated .custom-control-input:invalid:checked~.custom-control-label::before{background-color:#e4606d}.custom-control-input.is-invalid:focus~.custom-control-label::before,.was-validated .custom-control-input:invalid:focus~.custom-control-label::before{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(220,53,69,.25)}.custom-file-input.is-invalid~.custom-file-label,.was-validated .custom-file-input:invalid~.custom-file-label{border-color:#dc3545}.custom-file-input.is-invalid~.custom-file-label::after,.was-validated .custom-file-input:invalid~.custom-file-label::after{border-color:inherit}.custom-file-input.is-invalid~.invalid-feedback,.custom-file-input.is-invalid~.invalid-tooltip,.was-validated .custom-file-input:invalid~.invalid-feedback,.was-validated .custom-file-input:invalid~.invalid-tooltip{display:block}.custom-file-input.is-invalid:focus~.custom-file-label,.was-validated .custom-file-input:invalid:focus~.custom-file-label{box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}.form-inline{display:-ms-flexbox;display:flex;-ms-flex-flow:row wrap;flex-flow:row wrap;-ms-flex-align:center;align-items:center}.form-inline .form-check{width:100%}@media (min-width:576px){.form-inline label{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;margin-bottom:0}.form-inline .form-group{display:-ms-flexbox;display:flex;-ms-flex:0 0 auto;flex:0 0 auto;-ms-flex-flow:row wrap;flex-flow:row wrap;-ms-flex-align:center;align-items:center;margin-bottom:0}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-control-plaintext{display:inline-block}.form-inline .custom-select,.form-inline .input-group{width:auto}.form-inline .form-check{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;width:auto;padding-left:0}.form-inline .form-check-input{position:relative;margin-top:0;margin-right:.25rem;margin-left:0}.form-inline .custom-control{-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center}.form-inline .custom-control-label{margin-bottom:0}}.btn{display:inline-block;font-weight:400;text-align:center;white-space:nowrap;vertical-align:middle;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;padding:.375rem .75rem;font-size:1rem;line-height:1.5;border-radius:.25rem;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media screen and (prefers-reduced-motion:reduce){.btn{transition:none}}.btn:focus,.btn:hover{text-decoration:none}.btn.focus,.btn:focus{outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.btn.disabled,.btn:disabled{opacity:.65}.btn:not(:disabled):not(.disabled){cursor:pointer}a.btn.disabled,fieldset:disabled a.btn{pointer-events:none}.btn-primary{color:#fff;background-color:#007bff;border-color:#007bff}.btn-primary:hover{color:#fff;background-color:#0069d9;border-color:#0062cc}.btn-primary.focus,.btn-primary:focus{box-shadow:0 0 0 .2rem rgba(0,123,255,.5)}.btn-primary.disabled,.btn-primary:disabled{color:#fff;background-color:#007bff;border-color:#007bff}.btn-primary:not(:disabled):not(.disabled).active,.btn-primary:not(:disabled):not(.disabled):active,.show>.btn-primary.dropdown-toggle{color:#fff;background-color:#0062cc;border-color:#005cbf}.btn-primary:not(:disabled):not(.disabled).active:focus,.btn-primary:not(:disabled):not(.disabled):active:focus,.show>.btn-primary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(0,123,255,.5)}.btn-secondary{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-secondary:hover{color:#fff;background-color:#5a6268;border-color:#545b62}.btn-secondary.focus,.btn-secondary:focus{box-shadow:0 0 0 .2rem rgba(108,117,125,.5)}.btn-secondary.disabled,.btn-secondary:disabled{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-secondary:not(:disabled):not(.disabled).active,.btn-secondary:not(:disabled):not(.disabled):active,.show>.btn-secondary.dropdown-toggle{color:#fff;background-color:#545b62;border-color:#4e555b}.btn-secondary:not(:disabled):not(.disabled).active:focus,.btn-secondary:not(:disabled):not(.disabled):active:focus,.show>.btn-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(108,117,125,.5)}.btn-success{color:#fff;background-color:#28a745;border-color:#28a745}.btn-success:hover{color:#fff;background-color:#218838;border-color:#1e7e34}.btn-success.focus,.btn-success:focus{box-shadow:0 0 0 .2rem rgba(40,167,69,.5)}.btn-success.disabled,.btn-success:disabled{color:#fff;background-color:#28a745;border-color:#28a745}.btn-success:not(:disabled):not(.disabled).active,.btn-success:not(:disabled):not(.disabled):active,.show>.btn-success.dropdown-toggle{color:#fff;background-color:#1e7e34;border-color:#1c7430}.btn-success:not(:disabled):not(.disabled).active:focus,.btn-success:not(:disabled):not(.disabled):active:focus,.show>.btn-success.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(40,167,69,.5)}.btn-info{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-info:hover{color:#fff;background-color:#138496;border-color:#117a8b}.btn-info.focus,.btn-info:focus{box-shadow:0 0 0 .2rem rgba(23,162,184,.5)}.btn-info.disabled,.btn-info:disabled{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-info:not(:disabled):not(.disabled).active,.btn-info:not(:disabled):not(.disabled):active,.show>.btn-info.dropdown-toggle{color:#fff;background-color:#117a8b;border-color:#10707f}.btn-info:not(:disabled):not(.disabled).active:focus,.btn-info:not(:disabled):not(.disabled):active:focus,.show>.btn-info.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(23,162,184,.5)}.btn-warning{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-warning:hover{color:#212529;background-color:#e0a800;border-color:#d39e00}.btn-warning.focus,.btn-warning:focus{box-shadow:0 0 0 .2rem rgba(255,193,7,.5)}.btn-warning.disabled,.btn-warning:disabled{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-warning:not(:disabled):not(.disabled).active,.btn-warning:not(:disabled):not(.disabled):active,.show>.btn-warning.dropdown-toggle{color:#212529;background-color:#d39e00;border-color:#c69500}.btn-warning:not(:disabled):not(.disabled).active:focus,.btn-warning:not(:disabled):not(.disabled):active:focus,.show>.btn-warning.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,193,7,.5)}.btn-danger{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-danger:hover{color:#fff;background-color:#c82333;border-color:#bd2130}.btn-danger.focus,.btn-danger:focus{box-shadow:0 0 0 .2rem rgba(220,53,69,.5)}.btn-danger.disabled,.btn-danger:disabled{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-danger:not(:disabled):not(.disabled).active,.btn-danger:not(:disabled):not(.disabled):active,.show>.btn-danger.dropdown-toggle{color:#fff;background-color:#bd2130;border-color:#b21f2d}.btn-danger:not(:disabled):not(.disabled).active:focus,.btn-danger:not(:disabled):not(.disabled):active:focus,.show>.btn-danger.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(220,53,69,.5)}.btn-light{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-light:hover{color:#212529;background-color:#e2e6ea;border-color:#dae0e5}.btn-light.focus,.btn-light:focus{box-shadow:0 0 0 .2rem rgba(248,249,250,.5)}.btn-light.disabled,.btn-light:disabled{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-light:not(:disabled):not(.disabled).active,.btn-light:not(:disabled):not(.disabled):active,.show>.btn-light.dropdown-toggle{color:#212529;background-color:#dae0e5;border-color:#d3d9df}.btn-light:not(:disabled):not(.disabled).active:focus,.btn-light:not(:disabled):not(.disabled):active:focus,.show>.btn-light.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(248,249,250,.5)}.btn-dark{color:#fff;background-color:#343a40;border-color:#343a40}.btn-dark:hover{color:#fff;background-color:#23272b;border-color:#1d2124}.btn-dark.focus,.btn-dark:focus{box-shadow:0 0 0 .2rem rgba(52,58,64,.5)}.btn-dark.disabled,.btn-dark:disabled{color:#fff;background-color:#343a40;border-color:#343a40}.btn-dark:not(:disabled):not(.disabled).active,.btn-dark:not(:disabled):not(.disabled):active,.show>.btn-dark.dropdown-toggle{color:#fff;background-color:#1d2124;border-color:#171a1d}.btn-dark:not(:disabled):not(.disabled).active:focus,.btn-dark:not(:disabled):not(.disabled):active:focus,.show>.btn-dark.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(52,58,64,.5)}.btn-outline-primary{color:#007bff;background-color:transparent;background-image:none;border-color:#007bff}.btn-outline-primary:hover{color:#fff;background-color:#007bff;border-color:#007bff}.btn-outline-primary.focus,.btn-outline-primary:focus{box-shadow:0 0 0 .2rem rgba(0,123,255,.5)}.btn-outline-primary.disabled,.btn-outline-primary:disabled{color:#007bff;background-color:transparent}.btn-outline-primary:not(:disabled):not(.disabled).active,.btn-outline-primary:not(:disabled):not(.disabled):active,.show>.btn-outline-primary.dropdown-toggle{color:#fff;background-color:#007bff;border-color:#007bff}.btn-outline-primary:not(:disabled):not(.disabled).active:focus,.btn-outline-primary:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-primary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(0,123,255,.5)}.btn-outline-secondary{color:#6c757d;background-color:transparent;background-image:none;border-color:#6c757d}.btn-outline-secondary:hover{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-outline-secondary.focus,.btn-outline-secondary:focus{box-shadow:0 0 0 .2rem rgba(108,117,125,.5)}.btn-outline-secondary.disabled,.btn-outline-secondary:disabled{color:#6c757d;background-color:transparent}.btn-outline-secondary:not(:disabled):not(.disabled).active,.btn-outline-secondary:not(:disabled):not(.disabled):active,.show>.btn-outline-secondary.dropdown-toggle{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-outline-secondary:not(:disabled):not(.disabled).active:focus,.btn-outline-secondary:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(108,117,125,.5)}.btn-outline-success{color:#28a745;background-color:transparent;background-image:none;border-color:#28a745}.btn-outline-success:hover{color:#fff;background-color:#28a745;border-color:#28a745}.btn-outline-success.focus,.btn-outline-success:focus{box-shadow:0 0 0 .2rem rgba(40,167,69,.5)}.btn-outline-success.disabled,.btn-outline-success:disabled{color:#28a745;background-color:transparent}.btn-outline-success:not(:disabled):not(.disabled).active,.btn-outline-success:not(:disabled):not(.disabled):active,.show>.btn-outline-success.dropdown-toggle{color:#fff;background-color:#28a745;border-color:#28a745}.btn-outline-success:not(:disabled):not(.disabled).active:focus,.btn-outline-success:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-success.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(40,167,69,.5)}.btn-outline-info{color:#17a2b8;background-color:transparent;background-image:none;border-color:#17a2b8}.btn-outline-info:hover{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-outline-info.focus,.btn-outline-info:focus{box-shadow:0 0 0 .2rem rgba(23,162,184,.5)}.btn-outline-info.disabled,.btn-outline-info:disabled{color:#17a2b8;background-color:transparent}.btn-outline-info:not(:disabled):not(.disabled).active,.btn-outline-info:not(:disabled):not(.disabled):active,.show>.btn-outline-info.dropdown-toggle{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-outline-info:not(:disabled):not(.disabled).active:focus,.btn-outline-info:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-info.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(23,162,184,.5)}.btn-outline-warning{color:#ffc107;background-color:transparent;background-image:none;border-color:#ffc107}.btn-outline-warning:hover{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-outline-warning.focus,.btn-outline-warning:focus{box-shadow:0 0 0 .2rem rgba(255,193,7,.5)}.btn-outline-warning.disabled,.btn-outline-warning:disabled{color:#ffc107;background-color:transparent}.btn-outline-warning:not(:disabled):not(.disabled).active,.btn-outline-warning:not(:disabled):not(.disabled):active,.show>.btn-outline-warning.dropdown-toggle{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-outline-warning:not(:disabled):not(.disabled).active:focus,.btn-outline-warning:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-warning.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,193,7,.5)}.btn-outline-danger{color:#dc3545;background-color:transparent;background-image:none;border-color:#dc3545}.btn-outline-danger:hover{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-outline-danger.focus,.btn-outline-danger:focus{box-shadow:0 0 0 .2rem rgba(220,53,69,.5)}.btn-outline-danger.disabled,.btn-outline-danger:disabled{color:#dc3545;background-color:transparent}.btn-outline-danger:not(:disabled):not(.disabled).active,.btn-outline-danger:not(:disabled):not(.disabled):active,.show>.btn-outline-danger.dropdown-toggle{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-outline-danger:not(:disabled):not(.disabled).active:focus,.btn-outline-danger:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-danger.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(220,53,69,.5)}.btn-outline-light{color:#f8f9fa;background-color:transparent;background-image:none;border-color:#f8f9fa}.btn-outline-light:hover{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light.focus,.btn-outline-light:focus{box-shadow:0 0 0 .2rem rgba(248,249,250,.5)}.btn-outline-light.disabled,.btn-outline-light:disabled{color:#f8f9fa;background-color:transparent}.btn-outline-light:not(:disabled):not(.disabled).active,.btn-outline-light:not(:disabled):not(.disabled):active,.show>.btn-outline-light.dropdown-toggle{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light:not(:disabled):not(.disabled).active:focus,.btn-outline-light:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-light.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(248,249,250,.5)}.btn-outline-dark{color:#343a40;background-color:transparent;background-image:none;border-color:#343a40}.btn-outline-dark:hover{color:#fff;background-color:#343a40;border-color:#343a40}.btn-outline-dark.focus,.btn-outline-dark:focus{box-shadow:0 0 0 .2rem rgba(52,58,64,.5)}.btn-outline-dark.disabled,.btn-outline-dark:disabled{color:#343a40;background-color:transparent}.btn-outline-dark:not(:disabled):not(.disabled).active,.btn-outline-dark:not(:disabled):not(.disabled):active,.show>.btn-outline-dark.dropdown-toggle{color:#fff;background-color:#343a40;border-color:#343a40}.btn-outline-dark:not(:disabled):not(.disabled).active:focus,.btn-outline-dark:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-dark.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(52,58,64,.5)}.btn-link{font-weight:400;color:#007bff;background-color:transparent}.btn-link:hover{color:#0056b3;text-decoration:underline;background-color:transparent;border-color:transparent}.btn-link.focus,.btn-link:focus{text-decoration:underline;border-color:transparent;box-shadow:none}.btn-link.disabled,.btn-link:disabled{color:#6c757d;pointer-events:none}.btn-group-lg>.btn,.btn-lg{padding:.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:.3rem}.btn-group-sm>.btn,.btn-sm{padding:.25rem .5rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:.5rem}input[type=button].btn-block,input[type=reset].btn-block,input[type=submit].btn-block{width:100%}.fade{transition:opacity .15s linear}@media screen and (prefers-reduced-motion:reduce){.fade{transition:none}}.fade:not(.show){opacity:0}.collapse:not(.show){display:none}.collapsing{position:relative;height:0;overflow:hidden;transition:height .35s ease}@media screen and (prefers-reduced-motion:reduce){.collapsing{transition:none}}.dropdown,.dropleft,.dropright,.dropup{position:relative}.dropdown-toggle::after{display:inline-block;width:0;height:0;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid;border-right:.3em solid transparent;border-bottom:0;border-left:.3em solid transparent}.dropdown-toggle:empty::after{margin-left:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:10rem;padding:.5rem 0;margin:.125rem 0 0;font-size:1rem;color:#212529;text-align:left;list-style:none;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.15);border-radius:.25rem}.dropdown-menu-right{right:0;left:auto}.dropup .dropdown-menu{top:auto;bottom:100%;margin-top:0;margin-bottom:.125rem}.dropup .dropdown-toggle::after{display:inline-block;width:0;height:0;margin-left:.255em;vertical-align:.255em;content:"";border-top:0;border-right:.3em solid transparent;border-bottom:.3em solid;border-left:.3em solid transparent}.dropup .dropdown-toggle:empty::after{margin-left:0}.dropright .dropdown-menu{top:0;right:auto;left:100%;margin-top:0;margin-left:.125rem}.dropright .dropdown-toggle::after{display:inline-block;width:0;height:0;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:0;border-bottom:.3em solid transparent;border-left:.3em solid}.dropright .dropdown-toggle:empty::after{margin-left:0}.dropright .dropdown-toggle::after{vertical-align:0}.dropleft .dropdown-menu{top:0;right:100%;left:auto;margin-top:0;margin-right:.125rem}.dropleft .dropdown-toggle::after{display:inline-block;width:0;height:0;margin-left:.255em;vertical-align:.255em;content:""}.dropleft .dropdown-toggle::after{display:none}.dropleft .dropdown-toggle::before{display:inline-block;width:0;height:0;margin-right:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:.3em solid;border-bottom:.3em solid transparent}.dropleft .dropdown-toggle:empty::after{margin-left:0}.dropleft .dropdown-toggle::before{vertical-align:0}.dropdown-menu[x-placement^=bottom],.dropdown-menu[x-placement^=left],.dropdown-menu[x-placement^=right],.dropdown-menu[x-placement^=top]{right:auto;bottom:auto}.dropdown-divider{height:0;margin:.5rem 0;overflow:hidden;border-top:1px solid #e9ecef}.dropdown-item{display:block;width:100%;padding:.25rem 1.5rem;clear:both;font-weight:400;color:#212529;text-align:inherit;white-space:nowrap;background-color:transparent;border:0}.dropdown-item:focus,.dropdown-item:hover{color:#16181b;text-decoration:none;background-color:#f8f9fa}.dropdown-item.active,.dropdown-item:active{color:#fff;text-decoration:none;background-color:#007bff}.dropdown-item.disabled,.dropdown-item:disabled{color:#6c757d;background-color:transparent}.dropdown-menu.show{display:block}.dropdown-header{display:block;padding:.5rem 1.5rem;margin-bottom:0;font-size:.875rem;color:#6c757d;white-space:nowrap}.dropdown-item-text{display:block;padding:.25rem 1.5rem;color:#212529}.btn-group,.btn-group-vertical{position:relative;display:-ms-inline-flexbox;display:inline-flex;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{position:relative;-ms-flex:0 1 auto;flex:0 1 auto}.btn-group-vertical>.btn:hover,.btn-group>.btn:hover{z-index:1}.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus{z-index:1}.btn-group .btn+.btn,.btn-group .btn+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+.btn-group,.btn-group-vertical .btn+.btn,.btn-group-vertical .btn+.btn-group,.btn-group-vertical .btn-group+.btn,.btn-group-vertical .btn-group+.btn-group{margin-left:-1px}.btn-toolbar{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-pack:start;justify-content:flex-start}.btn-toolbar .input-group{width:auto}.btn-group>.btn:first-child{margin-left:0}.btn-group>.btn-group:not(:last-child)>.btn,.btn-group>.btn:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn-group:not(:first-child)>.btn,.btn-group>.btn:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.dropdown-toggle-split{padding-right:.5625rem;padding-left:.5625rem}.dropdown-toggle-split::after,.dropright .dropdown-toggle-split::after,.dropup .dropdown-toggle-split::after{margin-left:0}.dropleft .dropdown-toggle-split::before{margin-right:0}.btn-group-sm>.btn+.dropdown-toggle-split,.btn-sm+.dropdown-toggle-split{padding-right:.375rem;padding-left:.375rem}.btn-group-lg>.btn+.dropdown-toggle-split,.btn-lg+.dropdown-toggle-split{padding-right:.75rem;padding-left:.75rem}.btn-group-vertical{-ms-flex-direction:column;flex-direction:column;-ms-flex-align:start;align-items:flex-start;-ms-flex-pack:center;justify-content:center}.btn-group-vertical .btn,.btn-group-vertical .btn-group{width:100%}.btn-group-vertical>.btn+.btn,.btn-group-vertical>.btn+.btn-group,.btn-group-vertical>.btn-group+.btn,.btn-group-vertical>.btn-group+.btn-group{margin-top:-1px;margin-left:0}.btn-group-vertical>.btn-group:not(:last-child)>.btn,.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:not(:first-child)>.btn,.btn-group-vertical>.btn:not(:first-child){border-top-left-radius:0;border-top-right-radius:0}.btn-group-toggle>.btn,.btn-group-toggle>.btn-group>.btn{margin-bottom:0}.btn-group-toggle>.btn input[type=checkbox],.btn-group-toggle>.btn input[type=radio],.btn-group-toggle>.btn-group>.btn input[type=checkbox],.btn-group-toggle>.btn-group>.btn input[type=radio]{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.input-group{position:relative;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-align:stretch;align-items:stretch;width:100%}.input-group>.custom-file,.input-group>.custom-select,.input-group>.form-control{position:relative;-ms-flex:1 1 auto;flex:1 1 auto;width:1%;margin-bottom:0}.input-group>.custom-file+.custom-file,.input-group>.custom-file+.custom-select,.input-group>.custom-file+.form-control,.input-group>.custom-select+.custom-file,.input-group>.custom-select+.custom-select,.input-group>.custom-select+.form-control,.input-group>.form-control+.custom-file,.input-group>.form-control+.custom-select,.input-group>.form-control+.form-control{margin-left:-1px}.input-group>.custom-file .custom-file-input:focus~.custom-file-label,.input-group>.custom-select:focus,.input-group>.form-control:focus{z-index:3}.input-group>.custom-file .custom-file-input:focus{z-index:4}.input-group>.custom-select:not(:last-child),.input-group>.form-control:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.custom-select:not(:first-child),.input-group>.form-control:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.input-group>.custom-file{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center}.input-group>.custom-file:not(:last-child) .custom-file-label,.input-group>.custom-file:not(:last-child) .custom-file-label::after{border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.custom-file:not(:first-child) .custom-file-label{border-top-left-radius:0;border-bottom-left-radius:0}.input-group-append,.input-group-prepend{display:-ms-flexbox;display:flex}.input-group-append .btn,.input-group-prepend .btn{position:relative;z-index:2}.input-group-append .btn+.btn,.input-group-append .btn+.input-group-text,.input-group-append .input-group-text+.btn,.input-group-append .input-group-text+.input-group-text,.input-group-prepend .btn+.btn,.input-group-prepend .btn+.input-group-text,.input-group-prepend .input-group-text+.btn,.input-group-prepend .input-group-text+.input-group-text{margin-left:-1px}.input-group-prepend{margin-right:-1px}.input-group-append{margin-left:-1px}.input-group-text{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;padding:.375rem .75rem;margin-bottom:0;font-size:1rem;font-weight:400;line-height:1.5;color:#495057;text-align:center;white-space:nowrap;background-color:#e9ecef;border:1px solid #ced4da;border-radius:.25rem}.input-group-text input[type=checkbox],.input-group-text input[type=radio]{margin-top:0}.input-group-lg>.form-control,.input-group-lg>.input-group-append>.btn,.input-group-lg>.input-group-append>.input-group-text,.input-group-lg>.input-group-prepend>.btn,.input-group-lg>.input-group-prepend>.input-group-text{height:calc(2.875rem + 2px);padding:.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:.3rem}.input-group-sm>.form-control,.input-group-sm>.input-group-append>.btn,.input-group-sm>.input-group-append>.input-group-text,.input-group-sm>.input-group-prepend>.btn,.input-group-sm>.input-group-prepend>.input-group-text{height:calc(1.8125rem + 2px);padding:.25rem .5rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}.input-group>.input-group-append:last-child>.btn:not(:last-child):not(.dropdown-toggle),.input-group>.input-group-append:last-child>.input-group-text:not(:last-child),.input-group>.input-group-append:not(:last-child)>.btn,.input-group>.input-group-append:not(:last-child)>.input-group-text,.input-group>.input-group-prepend>.btn,.input-group>.input-group-prepend>.input-group-text{border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.input-group-append>.btn,.input-group>.input-group-append>.input-group-text,.input-group>.input-group-prepend:first-child>.btn:not(:first-child),.input-group>.input-group-prepend:first-child>.input-group-text:not(:first-child),.input-group>.input-group-prepend:not(:first-child)>.btn,.input-group>.input-group-prepend:not(:first-child)>.input-group-text{border-top-left-radius:0;border-bottom-left-radius:0}.custom-control{position:relative;display:block;min-height:1.5rem;padding-left:1.5rem}.custom-control-inline{display:-ms-inline-flexbox;display:inline-flex;margin-right:1rem}.custom-control-input{position:absolute;z-index:-1;opacity:0}.custom-control-input:checked~.custom-control-label::before{color:#fff;background-color:#007bff}.custom-control-input:focus~.custom-control-label::before{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,.25)}.custom-control-input:active~.custom-control-label::before{color:#fff;background-color:#b3d7ff}.custom-control-input:disabled~.custom-control-label{color:#6c757d}.custom-control-input:disabled~.custom-control-label::before{background-color:#e9ecef}.custom-control-label{position:relative;margin-bottom:0}.custom-control-label::before{position:absolute;top:.25rem;left:-1.5rem;display:block;width:1rem;height:1rem;pointer-events:none;content:"";-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-color:#dee2e6}.custom-control-label::after{position:absolute;top:.25rem;left:-1.5rem;display:block;width:1rem;height:1rem;content:"";background-repeat:no-repeat;background-position:center center;background-size:50% 50%}.custom-checkbox .custom-control-label::before{border-radius:.25rem}.custom-checkbox .custom-control-input:checked~.custom-control-label::before{background-color:#007bff}.custom-checkbox .custom-control-input:checked~.custom-control-label::after{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E")}.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::before{background-color:#007bff}.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::after{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3E%3Cpath stroke='%23fff' d='M0 2h4'/%3E%3C/svg%3E")}.custom-checkbox .custom-control-input:disabled:checked~.custom-control-label::before{background-color:rgba(0,123,255,.5)}.custom-checkbox .custom-control-input:disabled:indeterminate~.custom-control-label::before{background-color:rgba(0,123,255,.5)}.custom-radio .custom-control-label::before{border-radius:50%}.custom-radio .custom-control-input:checked~.custom-control-label::before{background-color:#007bff}.custom-radio .custom-control-input:checked~.custom-control-label::after{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%23fff'/%3E%3C/svg%3E")}.custom-radio .custom-control-input:disabled:checked~.custom-control-label::before{background-color:rgba(0,123,255,.5)}.custom-select{display:inline-block;width:100%;height:calc(2.25rem + 2px);padding:.375rem 1.75rem .375rem .75rem;line-height:1.5;color:#495057;vertical-align:middle;background:#fff url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat right .75rem center;background-size:8px 10px;border:1px solid #ced4da;border-radius:.25rem;-webkit-appearance:none;-moz-appearance:none;appearance:none}.custom-select:focus{border-color:#80bdff;outline:0;box-shadow:0 0 0 .2rem rgba(128,189,255,.5)}.custom-select:focus::-ms-value{color:#495057;background-color:#fff}.custom-select[multiple],.custom-select[size]:not([size="1"]){height:auto;padding-right:.75rem;background-image:none}.custom-select:disabled{color:#6c757d;background-color:#e9ecef}.custom-select::-ms-expand{opacity:0}.custom-select-sm{height:calc(1.8125rem + 2px);padding-top:.375rem;padding-bottom:.375rem;font-size:75%}.custom-select-lg{height:calc(2.875rem + 2px);padding-top:.375rem;padding-bottom:.375rem;font-size:125%}.custom-file{position:relative;display:inline-block;width:100%;height:calc(2.25rem + 2px);margin-bottom:0}.custom-file-input{position:relative;z-index:2;width:100%;height:calc(2.25rem + 2px);margin:0;opacity:0}.custom-file-input:focus~.custom-file-label{border-color:#80bdff;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.custom-file-input:focus~.custom-file-label::after{border-color:#80bdff}.custom-file-input:disabled~.custom-file-label{background-color:#e9ecef}.custom-file-input:lang(en)~.custom-file-label::after{content:"Browse"}.custom-file-label{position:absolute;top:0;right:0;left:0;z-index:1;height:calc(2.25rem + 2px);padding:.375rem .75rem;line-height:1.5;color:#495057;background-color:#fff;border:1px solid #ced4da;border-radius:.25rem}.custom-file-label::after{position:absolute;top:0;right:0;bottom:0;z-index:3;display:block;height:2.25rem;padding:.375rem .75rem;line-height:1.5;color:#495057;content:"Browse";background-color:#e9ecef;border-left:1px solid #ced4da;border-radius:0 .25rem .25rem 0}.custom-range{width:100%;padding-left:0;background-color:transparent;-webkit-appearance:none;-moz-appearance:none;appearance:none}.custom-range:focus{outline:0}.custom-range:focus::-webkit-slider-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,.25)}.custom-range:focus::-moz-range-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,.25)}.custom-range:focus::-ms-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,.25)}.custom-range::-moz-focus-outer{border:0}.custom-range::-webkit-slider-thumb{width:1rem;height:1rem;margin-top:-.25rem;background-color:#007bff;border:0;border-radius:1rem;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-webkit-appearance:none;appearance:none}@media screen and (prefers-reduced-motion:reduce){.custom-range::-webkit-slider-thumb{transition:none}}.custom-range::-webkit-slider-thumb:active{background-color:#b3d7ff}.custom-range::-webkit-slider-runnable-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.custom-range::-moz-range-thumb{width:1rem;height:1rem;background-color:#007bff;border:0;border-radius:1rem;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-moz-appearance:none;appearance:none}@media screen and (prefers-reduced-motion:reduce){.custom-range::-moz-range-thumb{transition:none}}.custom-range::-moz-range-thumb:active{background-color:#b3d7ff}.custom-range::-moz-range-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.custom-range::-ms-thumb{width:1rem;height:1rem;margin-top:0;margin-right:.2rem;margin-left:.2rem;background-color:#007bff;border:0;border-radius:1rem;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;appearance:none}@media screen and (prefers-reduced-motion:reduce){.custom-range::-ms-thumb{transition:none}}.custom-range::-ms-thumb:active{background-color:#b3d7ff}.custom-range::-ms-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:transparent;border-color:transparent;border-width:.5rem}.custom-range::-ms-fill-lower{background-color:#dee2e6;border-radius:1rem}.custom-range::-ms-fill-upper{margin-right:15px;background-color:#dee2e6;border-radius:1rem}.custom-control-label::before,.custom-file-label,.custom-select{transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media screen and (prefers-reduced-motion:reduce){.custom-control-label::before,.custom-file-label,.custom-select{transition:none}}.nav{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;padding-left:0;margin-bottom:0;list-style:none}.nav-link{display:block;padding:.5rem 1rem}.nav-link:focus,.nav-link:hover{text-decoration:none}.nav-link.disabled{color:#6c757d}.nav-tabs{border-bottom:1px solid #dee2e6}.nav-tabs .nav-item{margin-bottom:-1px}.nav-tabs .nav-link{border:1px solid transparent;border-top-left-radius:.25rem;border-top-right-radius:.25rem}.nav-tabs .nav-link:focus,.nav-tabs .nav-link:hover{border-color:#e9ecef #e9ecef #dee2e6}.nav-tabs .nav-link.disabled{color:#6c757d;background-color:transparent;border-color:transparent}.nav-tabs .nav-item.show .nav-link,.nav-tabs .nav-link.active{color:#495057;background-color:#fff;border-color:#dee2e6 #dee2e6 #fff}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.nav-pills .nav-link{border-radius:.25rem}.nav-pills .nav-link.active,.nav-pills .show>.nav-link{color:#fff;background-color:#007bff}.nav-fill .nav-item{-ms-flex:1 1 auto;flex:1 1 auto;text-align:center}.nav-justified .nav-item{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;text-align:center}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.navbar{position:relative;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-align:center;align-items:center;-ms-flex-pack:justify;justify-content:space-between;padding:.5rem 1rem}.navbar>.container,.navbar>.container-fluid{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-align:center;align-items:center;-ms-flex-pack:justify;justify-content:space-between}.navbar-brand{display:inline-block;padding-top:.3125rem;padding-bottom:.3125rem;margin-right:1rem;font-size:1.25rem;line-height:inherit;white-space:nowrap}.navbar-brand:focus,.navbar-brand:hover{text-decoration:none}.navbar-nav{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;padding-left:0;margin-bottom:0;list-style:none}.navbar-nav .nav-link{padding-right:0;padding-left:0}.navbar-nav .dropdown-menu{position:static;float:none}.navbar-text{display:inline-block;padding-top:.5rem;padding-bottom:.5rem}.navbar-collapse{-ms-flex-preferred-size:100%;flex-basis:100%;-ms-flex-positive:1;flex-grow:1;-ms-flex-align:center;align-items:center}.navbar-toggler{padding:.25rem .75rem;font-size:1.25rem;line-height:1;background-color:transparent;border:1px solid transparent;border-radius:.25rem}.navbar-toggler:focus,.navbar-toggler:hover{text-decoration:none}.navbar-toggler:not(:disabled):not(.disabled){cursor:pointer}.navbar-toggler-icon{display:inline-block;width:1.5em;height:1.5em;vertical-align:middle;content:"";background:no-repeat center center;background-size:100% 100%}@media (max-width:575.98px){.navbar-expand-sm>.container,.navbar-expand-sm>.container-fluid{padding-right:0;padding-left:0}}@media (min-width:576px){.navbar-expand-sm{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-sm .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand-sm .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-sm .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-sm>.container,.navbar-expand-sm>.container-fluid{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-sm .navbar-collapse{display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-sm .navbar-toggler{display:none}}@media (max-width:767.98px){.navbar-expand-md>.container,.navbar-expand-md>.container-fluid{padding-right:0;padding-left:0}}@media (min-width:768px){.navbar-expand-md{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-md .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand-md .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-md .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-md>.container,.navbar-expand-md>.container-fluid{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-md .navbar-collapse{display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-md .navbar-toggler{display:none}}@media (max-width:991.98px){.navbar-expand-lg>.container,.navbar-expand-lg>.container-fluid{padding-right:0;padding-left:0}}@media (min-width:992px){.navbar-expand-lg{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-lg .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand-lg .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-lg .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-lg>.container,.navbar-expand-lg>.container-fluid{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-lg .navbar-collapse{display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-lg .navbar-toggler{display:none}}@media (max-width:1199.98px){.navbar-expand-xl>.container,.navbar-expand-xl>.container-fluid{padding-right:0;padding-left:0}}@media (min-width:1200px){.navbar-expand-xl{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-xl .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand-xl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xl .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-xl>.container,.navbar-expand-xl>.container-fluid{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-xl .navbar-collapse{display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-xl .navbar-toggler{display:none}}.navbar-expand{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand>.container,.navbar-expand>.container-fluid{padding-right:0;padding-left:0}.navbar-expand .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand .navbar-nav .dropdown-menu{position:absolute}.navbar-expand .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand>.container,.navbar-expand>.container-fluid{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand .navbar-collapse{display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand .navbar-toggler{display:none}.navbar-light .navbar-brand{color:rgba(0,0,0,.9)}.navbar-light .navbar-brand:focus,.navbar-light .navbar-brand:hover{color:rgba(0,0,0,.9)}.navbar-light .navbar-nav .nav-link{color:rgba(0,0,0,.5)}.navbar-light .navbar-nav .nav-link:focus,.navbar-light .navbar-nav .nav-link:hover{color:rgba(0,0,0,.7)}.navbar-light .navbar-nav .nav-link.disabled{color:rgba(0,0,0,.3)}.navbar-light .navbar-nav .active>.nav-link,.navbar-light .navbar-nav .nav-link.active,.navbar-light .navbar-nav .nav-link.show,.navbar-light .navbar-nav .show>.nav-link{color:rgba(0,0,0,.9)}.navbar-light .navbar-toggler{color:rgba(0,0,0,.5);border-color:rgba(0,0,0,.1)}.navbar-light .navbar-toggler-icon{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 0, 0, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E")}.navbar-light .navbar-text{color:rgba(0,0,0,.5)}.navbar-light .navbar-text a{color:rgba(0,0,0,.9)}.navbar-light .navbar-text a:focus,.navbar-light .navbar-text a:hover{color:rgba(0,0,0,.9)}.navbar-dark .navbar-brand{color:#fff}.navbar-dark .navbar-brand:focus,.navbar-dark .navbar-brand:hover{color:#fff}.navbar-dark .navbar-nav .nav-link{color:rgba(255,255,255,.5)}.navbar-dark .navbar-nav .nav-link:focus,.navbar-dark .navbar-nav .nav-link:hover{color:rgba(255,255,255,.75)}.navbar-dark .navbar-nav .nav-link.disabled{color:rgba(255,255,255,.25)}.navbar-dark .navbar-nav .active>.nav-link,.navbar-dark .navbar-nav .nav-link.active,.navbar-dark .navbar-nav .nav-link.show,.navbar-dark .navbar-nav .show>.nav-link{color:#fff}.navbar-dark .navbar-toggler{color:rgba(255,255,255,.5);border-color:rgba(255,255,255,.1)}.navbar-dark .navbar-toggler-icon{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E")}.navbar-dark .navbar-text{color:rgba(255,255,255,.5)}.navbar-dark .navbar-text a{color:#fff}.navbar-dark .navbar-text a:focus,.navbar-dark .navbar-text a:hover{color:#fff}.card{position:relative;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;min-width:0;word-wrap:break-word;background-color:#fff;background-clip:border-box;border:1px solid rgba(0,0,0,.125);border-radius:.25rem}.card>hr{margin-right:0;margin-left:0}.card>.list-group:first-child .list-group-item:first-child{border-top-left-radius:.25rem;border-top-right-radius:.25rem}.card>.list-group:last-child .list-group-item:last-child{border-bottom-right-radius:.25rem;border-bottom-left-radius:.25rem}.card-body{-ms-flex:1 1 auto;flex:1 1 auto;padding:1.25rem}.card-title{margin-bottom:.75rem}.card-subtitle{margin-top:-.375rem;margin-bottom:0}.card-text:last-child{margin-bottom:0}.card-link:hover{text-decoration:none}.card-link+.card-link{margin-left:1.25rem}.card-header{padding:.75rem 1.25rem;margin-bottom:0;background-color:rgba(0,0,0,.03);border-bottom:1px solid rgba(0,0,0,.125)}.card-header:first-child{border-radius:calc(.25rem - 1px) calc(.25rem - 1px) 0 0}.card-header+.list-group .list-group-item:first-child{border-top:0}.card-footer{padding:.75rem 1.25rem;background-color:rgba(0,0,0,.03);border-top:1px solid rgba(0,0,0,.125)}.card-footer:last-child{border-radius:0 0 calc(.25rem - 1px) calc(.25rem - 1px)}.card-header-tabs{margin-right:-.625rem;margin-bottom:-.75rem;margin-left:-.625rem;border-bottom:0}.card-header-pills{margin-right:-.625rem;margin-left:-.625rem}.card-img-overlay{position:absolute;top:0;right:0;bottom:0;left:0;padding:1.25rem}.card-img{width:100%;border-radius:calc(.25rem - 1px)}.card-img-top{width:100%;border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.card-img-bottom{width:100%;border-bottom-right-radius:calc(.25rem - 1px);border-bottom-left-radius:calc(.25rem - 1px)}.card-deck{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column}.card-deck .card{margin-bottom:15px}@media (min-width:576px){.card-deck{-ms-flex-flow:row wrap;flex-flow:row wrap;margin-right:-15px;margin-left:-15px}.card-deck .card{display:-ms-flexbox;display:flex;-ms-flex:1 0 0%;flex:1 0 0%;-ms-flex-direction:column;flex-direction:column;margin-right:15px;margin-bottom:0;margin-left:15px}}.card-group{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column}.card-group>.card{margin-bottom:15px}@media (min-width:576px){.card-group{-ms-flex-flow:row wrap;flex-flow:row wrap}.card-group>.card{-ms-flex:1 0 0%;flex:1 0 0%;margin-bottom:0}.card-group>.card+.card{margin-left:0;border-left:0}.card-group>.card:first-child{border-top-right-radius:0;border-bottom-right-radius:0}.card-group>.card:first-child .card-header,.card-group>.card:first-child .card-img-top{border-top-right-radius:0}.card-group>.card:first-child .card-footer,.card-group>.card:first-child .card-img-bottom{border-bottom-right-radius:0}.card-group>.card:last-child{border-top-left-radius:0;border-bottom-left-radius:0}.card-group>.card:last-child .card-header,.card-group>.card:last-child .card-img-top{border-top-left-radius:0}.card-group>.card:last-child .card-footer,.card-group>.card:last-child .card-img-bottom{border-bottom-left-radius:0}.card-group>.card:only-child{border-radius:.25rem}.card-group>.card:only-child .card-header,.card-group>.card:only-child .card-img-top{border-top-left-radius:.25rem;border-top-right-radius:.25rem}.card-group>.card:only-child .card-footer,.card-group>.card:only-child .card-img-bottom{border-bottom-right-radius:.25rem;border-bottom-left-radius:.25rem}.card-group>.card:not(:first-child):not(:last-child):not(:only-child){border-radius:0}.card-group>.card:not(:first-child):not(:last-child):not(:only-child) .card-footer,.card-group>.card:not(:first-child):not(:last-child):not(:only-child) .card-header,.card-group>.card:not(:first-child):not(:last-child):not(:only-child) .card-img-bottom,.card-group>.card:not(:first-child):not(:last-child):not(:only-child) .card-img-top{border-radius:0}}.card-columns .card{margin-bottom:.75rem}@media (min-width:576px){.card-columns{-webkit-column-count:3;-moz-column-count:3;column-count:3;-webkit-column-gap:1.25rem;-moz-column-gap:1.25rem;column-gap:1.25rem;orphans:1;widows:1}.card-columns .card{display:inline-block;width:100%}}.accordion .card:not(:first-of-type):not(:last-of-type){border-bottom:0;border-radius:0}.accordion .card:not(:first-of-type) .card-header:first-child{border-radius:0}.accordion .card:first-of-type{border-bottom:0;border-bottom-right-radius:0;border-bottom-left-radius:0}.accordion .card:last-of-type{border-top-left-radius:0;border-top-right-radius:0}.breadcrumb{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;padding:.75rem 1rem;margin-bottom:1rem;list-style:none;background-color:#e9ecef;border-radius:.25rem}.breadcrumb-item+.breadcrumb-item{padding-left:.5rem}.breadcrumb-item+.breadcrumb-item::before{display:inline-block;padding-right:.5rem;color:#6c757d;content:"/"}.breadcrumb-item+.breadcrumb-item:hover::before{text-decoration:underline}.breadcrumb-item+.breadcrumb-item:hover::before{text-decoration:none}.breadcrumb-item.active{color:#6c757d}.pagination{display:-ms-flexbox;display:flex;padding-left:0;list-style:none;border-radius:.25rem}.page-link{position:relative;display:block;padding:.5rem .75rem;margin-left:-1px;line-height:1.25;color:#007bff;background-color:#fff;border:1px solid #dee2e6}.page-link:hover{z-index:2;color:#0056b3;text-decoration:none;background-color:#e9ecef;border-color:#dee2e6}.page-link:focus{z-index:2;outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.page-link:not(:disabled):not(.disabled){cursor:pointer}.page-item:first-child .page-link{margin-left:0;border-top-left-radius:.25rem;border-bottom-left-radius:.25rem}.page-item:last-child .page-link{border-top-right-radius:.25rem;border-bottom-right-radius:.25rem}.page-item.active .page-link{z-index:1;color:#fff;background-color:#007bff;border-color:#007bff}.page-item.disabled .page-link{color:#6c757d;pointer-events:none;cursor:auto;background-color:#fff;border-color:#dee2e6}.pagination-lg .page-link{padding:.75rem 1.5rem;font-size:1.25rem;line-height:1.5}.pagination-lg .page-item:first-child .page-link{border-top-left-radius:.3rem;border-bottom-left-radius:.3rem}.pagination-lg .page-item:last-child .page-link{border-top-right-radius:.3rem;border-bottom-right-radius:.3rem}.pagination-sm .page-link{padding:.25rem .5rem;font-size:.875rem;line-height:1.5}.pagination-sm .page-item:first-child .page-link{border-top-left-radius:.2rem;border-bottom-left-radius:.2rem}.pagination-sm .page-item:last-child .page-link{border-top-right-radius:.2rem;border-bottom-right-radius:.2rem}.badge{display:inline-block;padding:.25em .4em;font-size:75%;font-weight:700;line-height:1;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25rem}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.badge-pill{padding-right:.6em;padding-left:.6em;border-radius:10rem}.badge-primary{color:#fff;background-color:#007bff}.badge-primary[href]:focus,.badge-primary[href]:hover{color:#fff;text-decoration:none;background-color:#0062cc}.badge-secondary{color:#fff;background-color:#6c757d}.badge-secondary[href]:focus,.badge-secondary[href]:hover{color:#fff;text-decoration:none;background-color:#545b62}.badge-success{color:#fff;background-color:#28a745}.badge-success[href]:focus,.badge-success[href]:hover{color:#fff;text-decoration:none;background-color:#1e7e34}.badge-info{color:#fff;background-color:#17a2b8}.badge-info[href]:focus,.badge-info[href]:hover{color:#fff;text-decoration:none;background-color:#117a8b}.badge-warning{color:#212529;background-color:#ffc107}.badge-warning[href]:focus,.badge-warning[href]:hover{color:#212529;text-decoration:none;background-color:#d39e00}.badge-danger{color:#fff;background-color:#dc3545}.badge-danger[href]:focus,.badge-danger[href]:hover{color:#fff;text-decoration:none;background-color:#bd2130}.badge-light{color:#212529;background-color:#f8f9fa}.badge-light[href]:focus,.badge-light[href]:hover{color:#212529;text-decoration:none;background-color:#dae0e5}.badge-dark{color:#fff;background-color:#343a40}.badge-dark[href]:focus,.badge-dark[href]:hover{color:#fff;text-decoration:none;background-color:#1d2124}.jumbotron{padding:2rem 1rem;margin-bottom:2rem;background-color:#e9ecef;border-radius:.3rem}@media (min-width:576px){.jumbotron{padding:4rem 2rem}}.jumbotron-fluid{padding-right:0;padding-left:0;border-radius:0}.alert{position:relative;padding:.75rem 1.25rem;margin-bottom:1rem;border:1px solid transparent;border-radius:.25rem}.alert-heading{color:inherit}.alert-link{font-weight:700}.alert-dismissible{padding-right:4rem}.alert-dismissible .close{position:absolute;top:0;right:0;padding:.75rem 1.25rem;color:inherit}.alert-primary{color:#004085;background-color:#cce5ff;border-color:#b8daff}.alert-primary hr{border-top-color:#9fcdff}.alert-primary .alert-link{color:#002752}.alert-secondary{color:#383d41;background-color:#e2e3e5;border-color:#d6d8db}.alert-secondary hr{border-top-color:#c8cbcf}.alert-secondary .alert-link{color:#202326}.alert-success{color:#155724;background-color:#d4edda;border-color:#c3e6cb}.alert-success hr{border-top-color:#b1dfbb}.alert-success .alert-link{color:#0b2e13}.alert-info{color:#0c5460;background-color:#d1ecf1;border-color:#bee5eb}.alert-info hr{border-top-color:#abdde5}.alert-info .alert-link{color:#062c33}.alert-warning{color:#856404;background-color:#fff3cd;border-color:#ffeeba}.alert-warning hr{border-top-color:#ffe8a1}.alert-warning .alert-link{color:#533f03}.alert-danger{color:#721c24;background-color:#f8d7da;border-color:#f5c6cb}.alert-danger hr{border-top-color:#f1b0b7}.alert-danger .alert-link{color:#491217}.alert-light{color:#818182;background-color:#fefefe;border-color:#fdfdfe}.alert-light hr{border-top-color:#ececf6}.alert-light .alert-link{color:#686868}.alert-dark{color:#1b1e21;background-color:#d6d8d9;border-color:#c6c8ca}.alert-dark hr{border-top-color:#b9bbbe}.alert-dark .alert-link{color:#040505}@-webkit-keyframes progress-bar-stripes{from{background-position:1rem 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:1rem 0}to{background-position:0 0}}.progress{display:-ms-flexbox;display:flex;height:1rem;overflow:hidden;font-size:.75rem;background-color:#e9ecef;border-radius:.25rem}.progress-bar{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-pack:center;justify-content:center;color:#fff;text-align:center;white-space:nowrap;background-color:#007bff;transition:width .6s ease}@media screen and (prefers-reduced-motion:reduce){.progress-bar{transition:none}}.progress-bar-striped{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-size:1rem 1rem}.progress-bar-animated{-webkit-animation:progress-bar-stripes 1s linear infinite;animation:progress-bar-stripes 1s linear infinite}.media{display:-ms-flexbox;display:flex;-ms-flex-align:start;align-items:flex-start}.media-body{-ms-flex:1;flex:1}.list-group{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;padding-left:0;margin-bottom:0}.list-group-item-action{width:100%;color:#495057;text-align:inherit}.list-group-item-action:focus,.list-group-item-action:hover{color:#495057;text-decoration:none;background-color:#f8f9fa}.list-group-item-action:active{color:#212529;background-color:#e9ecef}.list-group-item{position:relative;display:block;padding:.75rem 1.25rem;margin-bottom:-1px;background-color:#fff;border:1px solid rgba(0,0,0,.125)}.list-group-item:first-child{border-top-left-radius:.25rem;border-top-right-radius:.25rem}.list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:.25rem;border-bottom-left-radius:.25rem}.list-group-item:focus,.list-group-item:hover{z-index:1;text-decoration:none}.list-group-item.disabled,.list-group-item:disabled{color:#6c757d;background-color:#fff}.list-group-item.active{z-index:2;color:#fff;background-color:#007bff;border-color:#007bff}.list-group-flush .list-group-item{border-right:0;border-left:0;border-radius:0}.list-group-flush:first-child .list-group-item:first-child{border-top:0}.list-group-flush:last-child .list-group-item:last-child{border-bottom:0}.list-group-item-primary{color:#004085;background-color:#b8daff}.list-group-item-primary.list-group-item-action:focus,.list-group-item-primary.list-group-item-action:hover{color:#004085;background-color:#9fcdff}.list-group-item-primary.list-group-item-action.active{color:#fff;background-color:#004085;border-color:#004085}.list-group-item-secondary{color:#383d41;background-color:#d6d8db}.list-group-item-secondary.list-group-item-action:focus,.list-group-item-secondary.list-group-item-action:hover{color:#383d41;background-color:#c8cbcf}.list-group-item-secondary.list-group-item-action.active{color:#fff;background-color:#383d41;border-color:#383d41}.list-group-item-success{color:#155724;background-color:#c3e6cb}.list-group-item-success.list-group-item-action:focus,.list-group-item-success.list-group-item-action:hover{color:#155724;background-color:#b1dfbb}.list-group-item-success.list-group-item-action.active{color:#fff;background-color:#155724;border-color:#155724}.list-group-item-info{color:#0c5460;background-color:#bee5eb}.list-group-item-info.list-group-item-action:focus,.list-group-item-info.list-group-item-action:hover{color:#0c5460;background-color:#abdde5}.list-group-item-info.list-group-item-action.active{color:#fff;background-color:#0c5460;border-color:#0c5460}.list-group-item-warning{color:#856404;background-color:#ffeeba}.list-group-item-warning.list-group-item-action:focus,.list-group-item-warning.list-group-item-action:hover{color:#856404;background-color:#ffe8a1}.list-group-item-warning.list-group-item-action.active{color:#fff;background-color:#856404;border-color:#856404}.list-group-item-danger{color:#721c24;background-color:#f5c6cb}.list-group-item-danger.list-group-item-action:focus,.list-group-item-danger.list-group-item-action:hover{color:#721c24;background-color:#f1b0b7}.list-group-item-danger.list-group-item-action.active{color:#fff;background-color:#721c24;border-color:#721c24}.list-group-item-light{color:#818182;background-color:#fdfdfe}.list-group-item-light.list-group-item-action:focus,.list-group-item-light.list-group-item-action:hover{color:#818182;background-color:#ececf6}.list-group-item-light.list-group-item-action.active{color:#fff;background-color:#818182;border-color:#818182}.list-group-item-dark{color:#1b1e21;background-color:#c6c8ca}.list-group-item-dark.list-group-item-action:focus,.list-group-item-dark.list-group-item-action:hover{color:#1b1e21;background-color:#b9bbbe}.list-group-item-dark.list-group-item-action.active{color:#fff;background-color:#1b1e21;border-color:#1b1e21}.close{float:right;font-size:1.5rem;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.5}.close:not(:disabled):not(.disabled){cursor:pointer}.close:not(:disabled):not(.disabled):focus,.close:not(:disabled):not(.disabled):hover{color:#000;text-decoration:none;opacity:.75}button.close{padding:0;background-color:transparent;border:0;-webkit-appearance:none}.modal-open{overflow:hidden}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1050;display:none;overflow:hidden;outline:0}.modal-dialog{position:relative;width:auto;margin:.5rem;pointer-events:none}.modal.fade .modal-dialog{transition:-webkit-transform .3s ease-out;transition:transform .3s ease-out;transition:transform .3s ease-out,-webkit-transform .3s ease-out;-webkit-transform:translate(0,-25%);transform:translate(0,-25%)}@media screen and (prefers-reduced-motion:reduce){.modal.fade .modal-dialog{transition:none}}.modal.show .modal-dialog{-webkit-transform:translate(0,0);transform:translate(0,0)}.modal-dialog-centered{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;min-height:calc(100% - (.5rem * 2))}.modal-dialog-centered::before{display:block;height:calc(100vh - (.5rem * 2));content:""}.modal-content{position:relative;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;width:100%;pointer-events:auto;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.3rem;outline:0}.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000}.modal-backdrop.fade{opacity:0}.modal-backdrop.show{opacity:.5}.modal-header{display:-ms-flexbox;display:flex;-ms-flex-align:start;align-items:flex-start;-ms-flex-pack:justify;justify-content:space-between;padding:1rem;border-bottom:1px solid #e9ecef;border-top-left-radius:.3rem;border-top-right-radius:.3rem}.modal-header .close{padding:1rem;margin:-1rem -1rem -1rem auto}.modal-title{margin-bottom:0;line-height:1.5}.modal-body{position:relative;-ms-flex:1 1 auto;flex:1 1 auto;padding:1rem}.modal-footer{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:end;justify-content:flex-end;padding:1rem;border-top:1px solid #e9ecef}.modal-footer>:not(:first-child){margin-left:.25rem}.modal-footer>:not(:last-child){margin-right:.25rem}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width:576px){.modal-dialog{max-width:500px;margin:1.75rem auto}.modal-dialog-centered{min-height:calc(100% - (1.75rem * 2))}.modal-dialog-centered::before{height:calc(100vh - (1.75rem * 2))}.modal-sm{max-width:300px}}@media (min-width:992px){.modal-lg{max-width:800px}}.tooltip{position:absolute;z-index:1070;display:block;margin:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;opacity:0}.tooltip.show{opacity:.9}.tooltip .arrow{position:absolute;display:block;width:.8rem;height:.4rem}.tooltip .arrow::before{position:absolute;content:"";border-color:transparent;border-style:solid}.bs-tooltip-auto[x-placement^=top],.bs-tooltip-top{padding:.4rem 0}.bs-tooltip-auto[x-placement^=top] .arrow,.bs-tooltip-top .arrow{bottom:0}.bs-tooltip-auto[x-placement^=top] .arrow::before,.bs-tooltip-top .arrow::before{top:0;border-width:.4rem .4rem 0;border-top-color:#000}.bs-tooltip-auto[x-placement^=right],.bs-tooltip-right{padding:0 .4rem}.bs-tooltip-auto[x-placement^=right] .arrow,.bs-tooltip-right .arrow{left:0;width:.4rem;height:.8rem}.bs-tooltip-auto[x-placement^=right] .arrow::before,.bs-tooltip-right .arrow::before{right:0;border-width:.4rem .4rem .4rem 0;border-right-color:#000}.bs-tooltip-auto[x-placement^=bottom],.bs-tooltip-bottom{padding:.4rem 0}.bs-tooltip-auto[x-placement^=bottom] .arrow,.bs-tooltip-bottom .arrow{top:0}.bs-tooltip-auto[x-placement^=bottom] .arrow::before,.bs-tooltip-bottom .arrow::before{bottom:0;border-width:0 .4rem .4rem;border-bottom-color:#000}.bs-tooltip-auto[x-placement^=left],.bs-tooltip-left{padding:0 .4rem}.bs-tooltip-auto[x-placement^=left] .arrow,.bs-tooltip-left .arrow{right:0;width:.4rem;height:.8rem}.bs-tooltip-auto[x-placement^=left] .arrow::before,.bs-tooltip-left .arrow::before{left:0;border-width:.4rem 0 .4rem .4rem;border-left-color:#000}.tooltip-inner{max-width:200px;padding:.25rem .5rem;color:#fff;text-align:center;background-color:#000;border-radius:.25rem}.popover{position:absolute;top:0;left:0;z-index:1060;display:block;max-width:276px;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.3rem}.popover .arrow{position:absolute;display:block;width:1rem;height:.5rem;margin:0 .3rem}.popover .arrow::after,.popover .arrow::before{position:absolute;display:block;content:"";border-color:transparent;border-style:solid}.bs-popover-auto[x-placement^=top],.bs-popover-top{margin-bottom:.5rem}.bs-popover-auto[x-placement^=top] .arrow,.bs-popover-top .arrow{bottom:calc((.5rem + 1px) * -1)}.bs-popover-auto[x-placement^=top] .arrow::after,.bs-popover-auto[x-placement^=top] .arrow::before,.bs-popover-top .arrow::after,.bs-popover-top .arrow::before{border-width:.5rem .5rem 0}.bs-popover-auto[x-placement^=top] .arrow::before,.bs-popover-top .arrow::before{bottom:0;border-top-color:rgba(0,0,0,.25)}.bs-popover-auto[x-placement^=top] .arrow::after,.bs-popover-top .arrow::after{bottom:1px;border-top-color:#fff}.bs-popover-auto[x-placement^=right],.bs-popover-right{margin-left:.5rem}.bs-popover-auto[x-placement^=right] .arrow,.bs-popover-right .arrow{left:calc((.5rem + 1px) * -1);width:.5rem;height:1rem;margin:.3rem 0}.bs-popover-auto[x-placement^=right] .arrow::after,.bs-popover-auto[x-placement^=right] .arrow::before,.bs-popover-right .arrow::after,.bs-popover-right .arrow::before{border-width:.5rem .5rem .5rem 0}.bs-popover-auto[x-placement^=right] .arrow::before,.bs-popover-right .arrow::before{left:0;border-right-color:rgba(0,0,0,.25)}.bs-popover-auto[x-placement^=right] .arrow::after,.bs-popover-right .arrow::after{left:1px;border-right-color:#fff}.bs-popover-auto[x-placement^=bottom],.bs-popover-bottom{margin-top:.5rem}.bs-popover-auto[x-placement^=bottom] .arrow,.bs-popover-bottom .arrow{top:calc((.5rem + 1px) * -1)}.bs-popover-auto[x-placement^=bottom] .arrow::after,.bs-popover-auto[x-placement^=bottom] .arrow::before,.bs-popover-bottom .arrow::after,.bs-popover-bottom .arrow::before{border-width:0 .5rem .5rem .5rem}.bs-popover-auto[x-placement^=bottom] .arrow::before,.bs-popover-bottom .arrow::before{top:0;border-bottom-color:rgba(0,0,0,.25)}.bs-popover-auto[x-placement^=bottom] .arrow::after,.bs-popover-bottom .arrow::after{top:1px;border-bottom-color:#fff}.bs-popover-auto[x-placement^=bottom] .popover-header::before,.bs-popover-bottom .popover-header::before{position:absolute;top:0;left:50%;display:block;width:1rem;margin-left:-.5rem;content:"";border-bottom:1px solid #f7f7f7}.bs-popover-auto[x-placement^=left],.bs-popover-left{margin-right:.5rem}.bs-popover-auto[x-placement^=left] .arrow,.bs-popover-left .arrow{right:calc((.5rem + 1px) * -1);width:.5rem;height:1rem;margin:.3rem 0}.bs-popover-auto[x-placement^=left] .arrow::after,.bs-popover-auto[x-placement^=left] .arrow::before,.bs-popover-left .arrow::after,.bs-popover-left .arrow::before{border-width:.5rem 0 .5rem .5rem}.bs-popover-auto[x-placement^=left] .arrow::before,.bs-popover-left .arrow::before{right:0;border-left-color:rgba(0,0,0,.25)}.bs-popover-auto[x-placement^=left] .arrow::after,.bs-popover-left .arrow::after{right:1px;border-left-color:#fff}.popover-header{padding:.5rem .75rem;margin-bottom:0;font-size:1rem;color:inherit;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-top-left-radius:calc(.3rem - 1px);border-top-right-radius:calc(.3rem - 1px)}.popover-header:empty{display:none}.popover-body{padding:.5rem .75rem;color:#212529}.carousel{position:relative}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-item{position:relative;display:none;-ms-flex-align:center;align-items:center;width:100%;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000px;perspective:1000px}.carousel-item-next,.carousel-item-prev,.carousel-item.active{display:block;transition:-webkit-transform .6s ease;transition:transform .6s ease;transition:transform .6s ease,-webkit-transform .6s ease}@media screen and (prefers-reduced-motion:reduce){.carousel-item-next,.carousel-item-prev,.carousel-item.active{transition:none}}.carousel-item-next,.carousel-item-prev{position:absolute;top:0}.carousel-item-next.carousel-item-left,.carousel-item-prev.carousel-item-right{-webkit-transform:translateX(0);transform:translateX(0)}@supports ((-webkit-transform-style:preserve-3d) or (transform-style:preserve-3d)){.carousel-item-next.carousel-item-left,.carousel-item-prev.carousel-item-right{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.active.carousel-item-right,.carousel-item-next{-webkit-transform:translateX(100%);transform:translateX(100%)}@supports ((-webkit-transform-style:preserve-3d) or (transform-style:preserve-3d)){.active.carousel-item-right,.carousel-item-next{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}}.active.carousel-item-left,.carousel-item-prev{-webkit-transform:translateX(-100%);transform:translateX(-100%)}@supports ((-webkit-transform-style:preserve-3d) or (transform-style:preserve-3d)){.active.carousel-item-left,.carousel-item-prev{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}}.carousel-fade .carousel-item{opacity:0;transition-duration:.6s;transition-property:opacity}.carousel-fade .carousel-item-next.carousel-item-left,.carousel-fade .carousel-item-prev.carousel-item-right,.carousel-fade .carousel-item.active{opacity:1}.carousel-fade .active.carousel-item-left,.carousel-fade .active.carousel-item-right{opacity:0}.carousel-fade .active.carousel-item-left,.carousel-fade .active.carousel-item-prev,.carousel-fade .carousel-item-next,.carousel-fade .carousel-item-prev,.carousel-fade .carousel-item.active{-webkit-transform:translateX(0);transform:translateX(0)}@supports ((-webkit-transform-style:preserve-3d) or (transform-style:preserve-3d)){.carousel-fade .active.carousel-item-left,.carousel-fade .active.carousel-item-prev,.carousel-fade .carousel-item-next,.carousel-fade .carousel-item-prev,.carousel-fade .carousel-item.active{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.carousel-control-next,.carousel-control-prev{position:absolute;top:0;bottom:0;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;width:15%;color:#fff;text-align:center;opacity:.5}.carousel-control-next:focus,.carousel-control-next:hover,.carousel-control-prev:focus,.carousel-control-prev:hover{color:#fff;text-decoration:none;outline:0;opacity:.9}.carousel-control-prev{left:0}.carousel-control-next{right:0}.carousel-control-next-icon,.carousel-control-prev-icon{display:inline-block;width:20px;height:20px;background:transparent no-repeat center center;background-size:100% 100%}.carousel-control-prev-icon{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E")}.carousel-control-next-icon{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E")}.carousel-indicators{position:absolute;right:0;bottom:10px;left:0;z-index:15;display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center;padding-left:0;margin-right:15%;margin-left:15%;list-style:none}.carousel-indicators li{position:relative;-ms-flex:0 1 auto;flex:0 1 auto;width:30px;height:3px;margin-right:3px;margin-left:3px;text-indent:-999px;cursor:pointer;background-color:rgba(255,255,255,.5)}.carousel-indicators li::before{position:absolute;top:-10px;left:0;display:inline-block;width:100%;height:10px;content:""}.carousel-indicators li::after{position:absolute;bottom:-10px;left:0;display:inline-block;width:100%;height:10px;content:""}.carousel-indicators .active{background-color:#fff}.carousel-caption{position:absolute;right:15%;bottom:20px;left:15%;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center}.align-baseline{vertical-align:baseline!important}.align-top{vertical-align:top!important}.align-middle{vertical-align:middle!important}.align-bottom{vertical-align:bottom!important}.align-text-bottom{vertical-align:text-bottom!important}.align-text-top{vertical-align:text-top!important}.bg-primary{background-color:#007bff!important}a.bg-primary:focus,a.bg-primary:hover,button.bg-primary:focus,button.bg-primary:hover{background-color:#0062cc!important}.bg-secondary{background-color:#6c757d!important}a.bg-secondary:focus,a.bg-secondary:hover,button.bg-secondary:focus,button.bg-secondary:hover{background-color:#545b62!important}.bg-success{background-color:#28a745!important}a.bg-success:focus,a.bg-success:hover,button.bg-success:focus,button.bg-success:hover{background-color:#1e7e34!important}.bg-info{background-color:#17a2b8!important}a.bg-info:focus,a.bg-info:hover,button.bg-info:focus,button.bg-info:hover{background-color:#117a8b!important}.bg-warning{background-color:#ffc107!important}a.bg-warning:focus,a.bg-warning:hover,button.bg-warning:focus,button.bg-warning:hover{background-color:#d39e00!important}.bg-danger{background-color:#dc3545!important}a.bg-danger:focus,a.bg-danger:hover,button.bg-danger:focus,button.bg-danger:hover{background-color:#bd2130!important}.bg-light{background-color:#f8f9fa!important}a.bg-light:focus,a.bg-light:hover,button.bg-light:focus,button.bg-light:hover{background-color:#dae0e5!important}.bg-dark{background-color:#343a40!important}a.bg-dark:focus,a.bg-dark:hover,button.bg-dark:focus,button.bg-dark:hover{background-color:#1d2124!important}.bg-white{background-color:#fff!important}.bg-transparent{background-color:transparent!important}.border{border:1px solid #dee2e6!important}.border-top{border-top:1px solid #dee2e6!important}.border-right{border-right:1px solid #dee2e6!important}.border-bottom{border-bottom:1px solid #dee2e6!important}.border-left{border-left:1px solid #dee2e6!important}.border-0{border:0!important}.border-top-0{border-top:0!important}.border-right-0{border-right:0!important}.border-bottom-0{border-bottom:0!important}.border-left-0{border-left:0!important}.border-primary{border-color:#007bff!important}.border-secondary{border-color:#6c757d!important}.border-success{border-color:#28a745!important}.border-info{border-color:#17a2b8!important}.border-warning{border-color:#ffc107!important}.border-danger{border-color:#dc3545!important}.border-light{border-color:#f8f9fa!important}.border-dark{border-color:#343a40!important}.border-white{border-color:#fff!important}.rounded{border-radius:.25rem!important}.rounded-top{border-top-left-radius:.25rem!important;border-top-right-radius:.25rem!important}.rounded-right{border-top-right-radius:.25rem!important;border-bottom-right-radius:.25rem!important}.rounded-bottom{border-bottom-right-radius:.25rem!important;border-bottom-left-radius:.25rem!important}.rounded-left{border-top-left-radius:.25rem!important;border-bottom-left-radius:.25rem!important}.rounded-circle{border-radius:50%!important}.rounded-0{border-radius:0!important}.clearfix::after{display:block;clear:both;content:""}.d-none{display:none!important}.d-inline{display:inline!important}.d-inline-block{display:inline-block!important}.d-block{display:block!important}.d-table{display:table!important}.d-table-row{display:table-row!important}.d-table-cell{display:table-cell!important}.d-flex{display:-ms-flexbox!important;display:flex!important}.d-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}@media (min-width:576px){.d-sm-none{display:none!important}.d-sm-inline{display:inline!important}.d-sm-inline-block{display:inline-block!important}.d-sm-block{display:block!important}.d-sm-table{display:table!important}.d-sm-table-row{display:table-row!important}.d-sm-table-cell{display:table-cell!important}.d-sm-flex{display:-ms-flexbox!important;display:flex!important}.d-sm-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}@media (min-width:768px){.d-md-none{display:none!important}.d-md-inline{display:inline!important}.d-md-inline-block{display:inline-block!important}.d-md-block{display:block!important}.d-md-table{display:table!important}.d-md-table-row{display:table-row!important}.d-md-table-cell{display:table-cell!important}.d-md-flex{display:-ms-flexbox!important;display:flex!important}.d-md-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}@media (min-width:992px){.d-lg-none{display:none!important}.d-lg-inline{display:inline!important}.d-lg-inline-block{display:inline-block!important}.d-lg-block{display:block!important}.d-lg-table{display:table!important}.d-lg-table-row{display:table-row!important}.d-lg-table-cell{display:table-cell!important}.d-lg-flex{display:-ms-flexbox!important;display:flex!important}.d-lg-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}@media (min-width:1200px){.d-xl-none{display:none!important}.d-xl-inline{display:inline!important}.d-xl-inline-block{display:inline-block!important}.d-xl-block{display:block!important}.d-xl-table{display:table!important}.d-xl-table-row{display:table-row!important}.d-xl-table-cell{display:table-cell!important}.d-xl-flex{display:-ms-flexbox!important;display:flex!important}.d-xl-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}@media print{.d-print-none{display:none!important}.d-print-inline{display:inline!important}.d-print-inline-block{display:inline-block!important}.d-print-block{display:block!important}.d-print-table{display:table!important}.d-print-table-row{display:table-row!important}.d-print-table-cell{display:table-cell!important}.d-print-flex{display:-ms-flexbox!important;display:flex!important}.d-print-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}.embed-responsive{position:relative;display:block;width:100%;padding:0;overflow:hidden}.embed-responsive::before{display:block;content:""}.embed-responsive .embed-responsive-item,.embed-responsive embed,.embed-responsive iframe,.embed-responsive object,.embed-responsive video{position:absolute;top:0;bottom:0;left:0;width:100%;height:100%;border:0}.embed-responsive-21by9::before{padding-top:42.857143%}.embed-responsive-16by9::before{padding-top:56.25%}.embed-responsive-4by3::before{padding-top:75%}.embed-responsive-1by1::before{padding-top:100%}.flex-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.flex-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-center{-ms-flex-align:center!important;align-items:center!important}.align-items-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}@media (min-width:576px){.flex-sm-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-sm-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-sm-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-sm-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-sm-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-sm-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-sm-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-sm-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-sm-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-sm-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.flex-sm-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-sm-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-sm-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-sm-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-sm-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-sm-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-sm-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-sm-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-sm-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-sm-center{-ms-flex-align:center!important;align-items:center!important}.align-items-sm-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-sm-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-sm-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-sm-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-sm-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-sm-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-sm-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-sm-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-sm-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-sm-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-sm-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-sm-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-sm-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-sm-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}@media (min-width:768px){.flex-md-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-md-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-md-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-md-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-md-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-md-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-md-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-md-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-md-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-md-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.flex-md-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-md-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-md-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-md-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-md-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-md-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-md-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-md-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-md-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-md-center{-ms-flex-align:center!important;align-items:center!important}.align-items-md-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-md-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-md-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-md-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-md-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-md-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-md-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-md-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-md-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-md-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-md-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-md-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-md-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-md-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}@media (min-width:992px){.flex-lg-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-lg-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-lg-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-lg-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-lg-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-lg-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-lg-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-lg-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-lg-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-lg-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.flex-lg-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-lg-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-lg-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-lg-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-lg-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-lg-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-lg-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-lg-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-lg-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-lg-center{-ms-flex-align:center!important;align-items:center!important}.align-items-lg-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-lg-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-lg-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-lg-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-lg-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-lg-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-lg-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-lg-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-lg-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-lg-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-lg-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-lg-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-lg-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-lg-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}@media (min-width:1200px){.flex-xl-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-xl-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-xl-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-xl-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-xl-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-xl-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-xl-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-xl-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-xl-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-xl-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.flex-xl-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-xl-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-xl-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-xl-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-xl-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-xl-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-xl-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-xl-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-xl-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-xl-center{-ms-flex-align:center!important;align-items:center!important}.align-items-xl-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-xl-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-xl-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-xl-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-xl-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-xl-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-xl-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-xl-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-xl-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-xl-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-xl-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-xl-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-xl-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-xl-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}.float-left{float:left!important}.float-right{float:right!important}.float-none{float:none!important}@media (min-width:576px){.float-sm-left{float:left!important}.float-sm-right{float:right!important}.float-sm-none{float:none!important}}@media (min-width:768px){.float-md-left{float:left!important}.float-md-right{float:right!important}.float-md-none{float:none!important}}@media (min-width:992px){.float-lg-left{float:left!important}.float-lg-right{float:right!important}.float-lg-none{float:none!important}}@media (min-width:1200px){.float-xl-left{float:left!important}.float-xl-right{float:right!important}.float-xl-none{float:none!important}}.position-static{position:static!important}.position-relative{position:relative!important}.position-absolute{position:absolute!important}.position-fixed{position:fixed!important}.position-sticky{position:-webkit-sticky!important;position:sticky!important}.fixed-top{position:fixed;top:0;right:0;left:0;z-index:1030}.fixed-bottom{position:fixed;right:0;bottom:0;left:0;z-index:1030}@supports ((position:-webkit-sticky) or (position:sticky)){.sticky-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}.sr-only{position:absolute;width:1px;height:1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;overflow:visible;clip:auto;white-space:normal}.shadow-sm{box-shadow:0 .125rem .25rem rgba(0,0,0,.075)!important}.shadow{box-shadow:0 .5rem 1rem rgba(0,0,0,.15)!important}.shadow-lg{box-shadow:0 1rem 3rem rgba(0,0,0,.175)!important}.shadow-none{box-shadow:none!important}.w-25{width:25%!important}.w-50{width:50%!important}.w-75{width:75%!important}.w-100{width:100%!important}.w-auto{width:auto!important}.h-25{height:25%!important}.h-50{height:50%!important}.h-75{height:75%!important}.h-100{height:100%!important}.h-auto{height:auto!important}.mw-100{max-width:100%!important}.mh-100{max-height:100%!important}.m-0{margin:0!important}.mt-0,.my-0{margin-top:0!important}.mr-0,.mx-0{margin-right:0!important}.mb-0,.my-0{margin-bottom:0!important}.ml-0,.mx-0{margin-left:0!important}.m-1{margin:.25rem!important}.mt-1,.my-1{margin-top:.25rem!important}.mr-1,.mx-1{margin-right:.25rem!important}.mb-1,.my-1{margin-bottom:.25rem!important}.ml-1,.mx-1{margin-left:.25rem!important}.m-2{margin:.5rem!important}.mt-2,.my-2{margin-top:.5rem!important}.mr-2,.mx-2{margin-right:.5rem!important}.mb-2,.my-2{margin-bottom:.5rem!important}.ml-2,.mx-2{margin-left:.5rem!important}.m-3{margin:1rem!important}.mt-3,.my-3{margin-top:1rem!important}.mr-3,.mx-3{margin-right:1rem!important}.mb-3,.my-3{margin-bottom:1rem!important}.ml-3,.mx-3{margin-left:1rem!important}.m-4{margin:1.5rem!important}.mt-4,.my-4{margin-top:1.5rem!important}.mr-4,.mx-4{margin-right:1.5rem!important}.mb-4,.my-4{margin-bottom:1.5rem!important}.ml-4,.mx-4{margin-left:1.5rem!important}.m-5{margin:3rem!important}.mt-5,.my-5{margin-top:3rem!important}.mr-5,.mx-5{margin-right:3rem!important}.mb-5,.my-5{margin-bottom:3rem!important}.ml-5,.mx-5{margin-left:3rem!important}.p-0{padding:0!important}.pt-0,.py-0{padding-top:0!important}.pr-0,.px-0{padding-right:0!important}.pb-0,.py-0{padding-bottom:0!important}.pl-0,.px-0{padding-left:0!important}.p-1{padding:.25rem!important}.pt-1,.py-1{padding-top:.25rem!important}.pr-1,.px-1{padding-right:.25rem!important}.pb-1,.py-1{padding-bottom:.25rem!important}.pl-1,.px-1{padding-left:.25rem!important}.p-2{padding:.5rem!important}.pt-2,.py-2{padding-top:.5rem!important}.pr-2,.px-2{padding-right:.5rem!important}.pb-2,.py-2{padding-bottom:.5rem!important}.pl-2,.px-2{padding-left:.5rem!important}.p-3{padding:1rem!important}.pt-3,.py-3{padding-top:1rem!important}.pr-3,.px-3{padding-right:1rem!important}.pb-3,.py-3{padding-bottom:1rem!important}.pl-3,.px-3{padding-left:1rem!important}.p-4{padding:1.5rem!important}.pt-4,.py-4{padding-top:1.5rem!important}.pr-4,.px-4{padding-right:1.5rem!important}.pb-4,.py-4{padding-bottom:1.5rem!important}.pl-4,.px-4{padding-left:1.5rem!important}.p-5{padding:3rem!important}.pt-5,.py-5{padding-top:3rem!important}.pr-5,.px-5{padding-right:3rem!important}.pb-5,.py-5{padding-bottom:3rem!important}.pl-5,.px-5{padding-left:3rem!important}.m-auto{margin:auto!important}.mt-auto,.my-auto{margin-top:auto!important}.mr-auto,.mx-auto{margin-right:auto!important}.mb-auto,.my-auto{margin-bottom:auto!important}.ml-auto,.mx-auto{margin-left:auto!important}@media (min-width:576px){.m-sm-0{margin:0!important}.mt-sm-0,.my-sm-0{margin-top:0!important}.mr-sm-0,.mx-sm-0{margin-right:0!important}.mb-sm-0,.my-sm-0{margin-bottom:0!important}.ml-sm-0,.mx-sm-0{margin-left:0!important}.m-sm-1{margin:.25rem!important}.mt-sm-1,.my-sm-1{margin-top:.25rem!important}.mr-sm-1,.mx-sm-1{margin-right:.25rem!important}.mb-sm-1,.my-sm-1{margin-bottom:.25rem!important}.ml-sm-1,.mx-sm-1{margin-left:.25rem!important}.m-sm-2{margin:.5rem!important}.mt-sm-2,.my-sm-2{margin-top:.5rem!important}.mr-sm-2,.mx-sm-2{margin-right:.5rem!important}.mb-sm-2,.my-sm-2{margin-bottom:.5rem!important}.ml-sm-2,.mx-sm-2{margin-left:.5rem!important}.m-sm-3{margin:1rem!important}.mt-sm-3,.my-sm-3{margin-top:1rem!important}.mr-sm-3,.mx-sm-3{margin-right:1rem!important}.mb-sm-3,.my-sm-3{margin-bottom:1rem!important}.ml-sm-3,.mx-sm-3{margin-left:1rem!important}.m-sm-4{margin:1.5rem!important}.mt-sm-4,.my-sm-4{margin-top:1.5rem!important}.mr-sm-4,.mx-sm-4{margin-right:1.5rem!important}.mb-sm-4,.my-sm-4{margin-bottom:1.5rem!important}.ml-sm-4,.mx-sm-4{margin-left:1.5rem!important}.m-sm-5{margin:3rem!important}.mt-sm-5,.my-sm-5{margin-top:3rem!important}.mr-sm-5,.mx-sm-5{margin-right:3rem!important}.mb-sm-5,.my-sm-5{margin-bottom:3rem!important}.ml-sm-5,.mx-sm-5{margin-left:3rem!important}.p-sm-0{padding:0!important}.pt-sm-0,.py-sm-0{padding-top:0!important}.pr-sm-0,.px-sm-0{padding-right:0!important}.pb-sm-0,.py-sm-0{padding-bottom:0!important}.pl-sm-0,.px-sm-0{padding-left:0!important}.p-sm-1{padding:.25rem!important}.pt-sm-1,.py-sm-1{padding-top:.25rem!important}.pr-sm-1,.px-sm-1{padding-right:.25rem!important}.pb-sm-1,.py-sm-1{padding-bottom:.25rem!important}.pl-sm-1,.px-sm-1{padding-left:.25rem!important}.p-sm-2{padding:.5rem!important}.pt-sm-2,.py-sm-2{padding-top:.5rem!important}.pr-sm-2,.px-sm-2{padding-right:.5rem!important}.pb-sm-2,.py-sm-2{padding-bottom:.5rem!important}.pl-sm-2,.px-sm-2{padding-left:.5rem!important}.p-sm-3{padding:1rem!important}.pt-sm-3,.py-sm-3{padding-top:1rem!important}.pr-sm-3,.px-sm-3{padding-right:1rem!important}.pb-sm-3,.py-sm-3{padding-bottom:1rem!important}.pl-sm-3,.px-sm-3{padding-left:1rem!important}.p-sm-4{padding:1.5rem!important}.pt-sm-4,.py-sm-4{padding-top:1.5rem!important}.pr-sm-4,.px-sm-4{padding-right:1.5rem!important}.pb-sm-4,.py-sm-4{padding-bottom:1.5rem!important}.pl-sm-4,.px-sm-4{padding-left:1.5rem!important}.p-sm-5{padding:3rem!important}.pt-sm-5,.py-sm-5{padding-top:3rem!important}.pr-sm-5,.px-sm-5{padding-right:3rem!important}.pb-sm-5,.py-sm-5{padding-bottom:3rem!important}.pl-sm-5,.px-sm-5{padding-left:3rem!important}.m-sm-auto{margin:auto!important}.mt-sm-auto,.my-sm-auto{margin-top:auto!important}.mr-sm-auto,.mx-sm-auto{margin-right:auto!important}.mb-sm-auto,.my-sm-auto{margin-bottom:auto!important}.ml-sm-auto,.mx-sm-auto{margin-left:auto!important}}@media (min-width:768px){.m-md-0{margin:0!important}.mt-md-0,.my-md-0{margin-top:0!important}.mr-md-0,.mx-md-0{margin-right:0!important}.mb-md-0,.my-md-0{margin-bottom:0!important}.ml-md-0,.mx-md-0{margin-left:0!important}.m-md-1{margin:.25rem!important}.mt-md-1,.my-md-1{margin-top:.25rem!important}.mr-md-1,.mx-md-1{margin-right:.25rem!important}.mb-md-1,.my-md-1{margin-bottom:.25rem!important}.ml-md-1,.mx-md-1{margin-left:.25rem!important}.m-md-2{margin:.5rem!important}.mt-md-2,.my-md-2{margin-top:.5rem!important}.mr-md-2,.mx-md-2{margin-right:.5rem!important}.mb-md-2,.my-md-2{margin-bottom:.5rem!important}.ml-md-2,.mx-md-2{margin-left:.5rem!important}.m-md-3{margin:1rem!important}.mt-md-3,.my-md-3{margin-top:1rem!important}.mr-md-3,.mx-md-3{margin-right:1rem!important}.mb-md-3,.my-md-3{margin-bottom:1rem!important}.ml-md-3,.mx-md-3{margin-left:1rem!important}.m-md-4{margin:1.5rem!important}.mt-md-4,.my-md-4{margin-top:1.5rem!important}.mr-md-4,.mx-md-4{margin-right:1.5rem!important}.mb-md-4,.my-md-4{margin-bottom:1.5rem!important}.ml-md-4,.mx-md-4{margin-left:1.5rem!important}.m-md-5{margin:3rem!important}.mt-md-5,.my-md-5{margin-top:3rem!important}.mr-md-5,.mx-md-5{margin-right:3rem!important}.mb-md-5,.my-md-5{margin-bottom:3rem!important}.ml-md-5,.mx-md-5{margin-left:3rem!important}.p-md-0{padding:0!important}.pt-md-0,.py-md-0{padding-top:0!important}.pr-md-0,.px-md-0{padding-right:0!important}.pb-md-0,.py-md-0{padding-bottom:0!important}.pl-md-0,.px-md-0{padding-left:0!important}.p-md-1{padding:.25rem!important}.pt-md-1,.py-md-1{padding-top:.25rem!important}.pr-md-1,.px-md-1{padding-right:.25rem!important}.pb-md-1,.py-md-1{padding-bottom:.25rem!important}.pl-md-1,.px-md-1{padding-left:.25rem!important}.p-md-2{padding:.5rem!important}.pt-md-2,.py-md-2{padding-top:.5rem!important}.pr-md-2,.px-md-2{padding-right:.5rem!important}.pb-md-2,.py-md-2{padding-bottom:.5rem!important}.pl-md-2,.px-md-2{padding-left:.5rem!important}.p-md-3{padding:1rem!important}.pt-md-3,.py-md-3{padding-top:1rem!important}.pr-md-3,.px-md-3{padding-right:1rem!important}.pb-md-3,.py-md-3{padding-bottom:1rem!important}.pl-md-3,.px-md-3{padding-left:1rem!important}.p-md-4{padding:1.5rem!important}.pt-md-4,.py-md-4{padding-top:1.5rem!important}.pr-md-4,.px-md-4{padding-right:1.5rem!important}.pb-md-4,.py-md-4{padding-bottom:1.5rem!important}.pl-md-4,.px-md-4{padding-left:1.5rem!important}.p-md-5{padding:3rem!important}.pt-md-5,.py-md-5{padding-top:3rem!important}.pr-md-5,.px-md-5{padding-right:3rem!important}.pb-md-5,.py-md-5{padding-bottom:3rem!important}.pl-md-5,.px-md-5{padding-left:3rem!important}.m-md-auto{margin:auto!important}.mt-md-auto,.my-md-auto{margin-top:auto!important}.mr-md-auto,.mx-md-auto{margin-right:auto!important}.mb-md-auto,.my-md-auto{margin-bottom:auto!important}.ml-md-auto,.mx-md-auto{margin-left:auto!important}}@media (min-width:992px){.m-lg-0{margin:0!important}.mt-lg-0,.my-lg-0{margin-top:0!important}.mr-lg-0,.mx-lg-0{margin-right:0!important}.mb-lg-0,.my-lg-0{margin-bottom:0!important}.ml-lg-0,.mx-lg-0{margin-left:0!important}.m-lg-1{margin:.25rem!important}.mt-lg-1,.my-lg-1{margin-top:.25rem!important}.mr-lg-1,.mx-lg-1{margin-right:.25rem!important}.mb-lg-1,.my-lg-1{margin-bottom:.25rem!important}.ml-lg-1,.mx-lg-1{margin-left:.25rem!important}.m-lg-2{margin:.5rem!important}.mt-lg-2,.my-lg-2{margin-top:.5rem!important}.mr-lg-2,.mx-lg-2{margin-right:.5rem!important}.mb-lg-2,.my-lg-2{margin-bottom:.5rem!important}.ml-lg-2,.mx-lg-2{margin-left:.5rem!important}.m-lg-3{margin:1rem!important}.mt-lg-3,.my-lg-3{margin-top:1rem!important}.mr-lg-3,.mx-lg-3{margin-right:1rem!important}.mb-lg-3,.my-lg-3{margin-bottom:1rem!important}.ml-lg-3,.mx-lg-3{margin-left:1rem!important}.m-lg-4{margin:1.5rem!important}.mt-lg-4,.my-lg-4{margin-top:1.5rem!important}.mr-lg-4,.mx-lg-4{margin-right:1.5rem!important}.mb-lg-4,.my-lg-4{margin-bottom:1.5rem!important}.ml-lg-4,.mx-lg-4{margin-left:1.5rem!important}.m-lg-5{margin:3rem!important}.mt-lg-5,.my-lg-5{margin-top:3rem!important}.mr-lg-5,.mx-lg-5{margin-right:3rem!important}.mb-lg-5,.my-lg-5{margin-bottom:3rem!important}.ml-lg-5,.mx-lg-5{margin-left:3rem!important}.p-lg-0{padding:0!important}.pt-lg-0,.py-lg-0{padding-top:0!important}.pr-lg-0,.px-lg-0{padding-right:0!important}.pb-lg-0,.py-lg-0{padding-bottom:0!important}.pl-lg-0,.px-lg-0{padding-left:0!important}.p-lg-1{padding:.25rem!important}.pt-lg-1,.py-lg-1{padding-top:.25rem!important}.pr-lg-1,.px-lg-1{padding-right:.25rem!important}.pb-lg-1,.py-lg-1{padding-bottom:.25rem!important}.pl-lg-1,.px-lg-1{padding-left:.25rem!important}.p-lg-2{padding:.5rem!important}.pt-lg-2,.py-lg-2{padding-top:.5rem!important}.pr-lg-2,.px-lg-2{padding-right:.5rem!important}.pb-lg-2,.py-lg-2{padding-bottom:.5rem!important}.pl-lg-2,.px-lg-2{padding-left:.5rem!important}.p-lg-3{padding:1rem!important}.pt-lg-3,.py-lg-3{padding-top:1rem!important}.pr-lg-3,.px-lg-3{padding-right:1rem!important}.pb-lg-3,.py-lg-3{padding-bottom:1rem!important}.pl-lg-3,.px-lg-3{padding-left:1rem!important}.p-lg-4{padding:1.5rem!important}.pt-lg-4,.py-lg-4{padding-top:1.5rem!important}.pr-lg-4,.px-lg-4{padding-right:1.5rem!important}.pb-lg-4,.py-lg-4{padding-bottom:1.5rem!important}.pl-lg-4,.px-lg-4{padding-left:1.5rem!important}.p-lg-5{padding:3rem!important}.pt-lg-5,.py-lg-5{padding-top:3rem!important}.pr-lg-5,.px-lg-5{padding-right:3rem!important}.pb-lg-5,.py-lg-5{padding-bottom:3rem!important}.pl-lg-5,.px-lg-5{padding-left:3rem!important}.m-lg-auto{margin:auto!important}.mt-lg-auto,.my-lg-auto{margin-top:auto!important}.mr-lg-auto,.mx-lg-auto{margin-right:auto!important}.mb-lg-auto,.my-lg-auto{margin-bottom:auto!important}.ml-lg-auto,.mx-lg-auto{margin-left:auto!important}}@media (min-width:1200px){.m-xl-0{margin:0!important}.mt-xl-0,.my-xl-0{margin-top:0!important}.mr-xl-0,.mx-xl-0{margin-right:0!important}.mb-xl-0,.my-xl-0{margin-bottom:0!important}.ml-xl-0,.mx-xl-0{margin-left:0!important}.m-xl-1{margin:.25rem!important}.mt-xl-1,.my-xl-1{margin-top:.25rem!important}.mr-xl-1,.mx-xl-1{margin-right:.25rem!important}.mb-xl-1,.my-xl-1{margin-bottom:.25rem!important}.ml-xl-1,.mx-xl-1{margin-left:.25rem!important}.m-xl-2{margin:.5rem!important}.mt-xl-2,.my-xl-2{margin-top:.5rem!important}.mr-xl-2,.mx-xl-2{margin-right:.5rem!important}.mb-xl-2,.my-xl-2{margin-bottom:.5rem!important}.ml-xl-2,.mx-xl-2{margin-left:.5rem!important}.m-xl-3{margin:1rem!important}.mt-xl-3,.my-xl-3{margin-top:1rem!important}.mr-xl-3,.mx-xl-3{margin-right:1rem!important}.mb-xl-3,.my-xl-3{margin-bottom:1rem!important}.ml-xl-3,.mx-xl-3{margin-left:1rem!important}.m-xl-4{margin:1.5rem!important}.mt-xl-4,.my-xl-4{margin-top:1.5rem!important}.mr-xl-4,.mx-xl-4{margin-right:1.5rem!important}.mb-xl-4,.my-xl-4{margin-bottom:1.5rem!important}.ml-xl-4,.mx-xl-4{margin-left:1.5rem!important}.m-xl-5{margin:3rem!important}.mt-xl-5,.my-xl-5{margin-top:3rem!important}.mr-xl-5,.mx-xl-5{margin-right:3rem!important}.mb-xl-5,.my-xl-5{margin-bottom:3rem!important}.ml-xl-5,.mx-xl-5{margin-left:3rem!important}.p-xl-0{padding:0!important}.pt-xl-0,.py-xl-0{padding-top:0!important}.pr-xl-0,.px-xl-0{padding-right:0!important}.pb-xl-0,.py-xl-0{padding-bottom:0!important}.pl-xl-0,.px-xl-0{padding-left:0!important}.p-xl-1{padding:.25rem!important}.pt-xl-1,.py-xl-1{padding-top:.25rem!important}.pr-xl-1,.px-xl-1{padding-right:.25rem!important}.pb-xl-1,.py-xl-1{padding-bottom:.25rem!important}.pl-xl-1,.px-xl-1{padding-left:.25rem!important}.p-xl-2{padding:.5rem!important}.pt-xl-2,.py-xl-2{padding-top:.5rem!important}.pr-xl-2,.px-xl-2{padding-right:.5rem!important}.pb-xl-2,.py-xl-2{padding-bottom:.5rem!important}.pl-xl-2,.px-xl-2{padding-left:.5rem!important}.p-xl-3{padding:1rem!important}.pt-xl-3,.py-xl-3{padding-top:1rem!important}.pr-xl-3,.px-xl-3{padding-right:1rem!important}.pb-xl-3,.py-xl-3{padding-bottom:1rem!important}.pl-xl-3,.px-xl-3{padding-left:1rem!important}.p-xl-4{padding:1.5rem!important}.pt-xl-4,.py-xl-4{padding-top:1.5rem!important}.pr-xl-4,.px-xl-4{padding-right:1.5rem!important}.pb-xl-4,.py-xl-4{padding-bottom:1.5rem!important}.pl-xl-4,.px-xl-4{padding-left:1.5rem!important}.p-xl-5{padding:3rem!important}.pt-xl-5,.py-xl-5{padding-top:3rem!important}.pr-xl-5,.px-xl-5{padding-right:3rem!important}.pb-xl-5,.py-xl-5{padding-bottom:3rem!important}.pl-xl-5,.px-xl-5{padding-left:3rem!important}.m-xl-auto{margin:auto!important}.mt-xl-auto,.my-xl-auto{margin-top:auto!important}.mr-xl-auto,.mx-xl-auto{margin-right:auto!important}.mb-xl-auto,.my-xl-auto{margin-bottom:auto!important}.ml-xl-auto,.mx-xl-auto{margin-left:auto!important}}.text-monospace{font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace}.text-justify{text-align:justify!important}.text-nowrap{white-space:nowrap!important}.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.text-left{text-align:left!important}.text-right{text-align:right!important}.text-center{text-align:center!important}@media (min-width:576px){.text-sm-left{text-align:left!important}.text-sm-right{text-align:right!important}.text-sm-center{text-align:center!important}}@media (min-width:768px){.text-md-left{text-align:left!important}.text-md-right{text-align:right!important}.text-md-center{text-align:center!important}}@media (min-width:992px){.text-lg-left{text-align:left!important}.text-lg-right{text-align:right!important}.text-lg-center{text-align:center!important}}@media (min-width:1200px){.text-xl-left{text-align:left!important}.text-xl-right{text-align:right!important}.text-xl-center{text-align:center!important}}.text-lowercase{text-transform:lowercase!important}.text-uppercase{text-transform:uppercase!important}.text-capitalize{text-transform:capitalize!important}.font-weight-light{font-weight:300!important}.font-weight-normal{font-weight:400!important}.font-weight-bold{font-weight:700!important}.font-italic{font-style:italic!important}.text-white{color:#fff!important}.text-primary{color:#007bff!important}a.text-primary:focus,a.text-primary:hover{color:#0062cc!important}.text-secondary{color:#6c757d!important}a.text-secondary:focus,a.text-secondary:hover{color:#545b62!important}.text-success{color:#28a745!important}a.text-success:focus,a.text-success:hover{color:#1e7e34!important}.text-info{color:#17a2b8!important}a.text-info:focus,a.text-info:hover{color:#117a8b!important}.text-warning{color:#ffc107!important}a.text-warning:focus,a.text-warning:hover{color:#d39e00!important}.text-danger{color:#dc3545!important}a.text-danger:focus,a.text-danger:hover{color:#bd2130!important}.text-light{color:#f8f9fa!important}a.text-light:focus,a.text-light:hover{color:#dae0e5!important}.text-dark{color:#343a40!important}a.text-dark:focus,a.text-dark:hover{color:#1d2124!important}.text-body{color:#212529!important}.text-muted{color:#6c757d!important}.text-black-50{color:rgba(0,0,0,.5)!important}.text-white-50{color:rgba(255,255,255,.5)!important}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.visible{visibility:visible!important}.invisible{visibility:hidden!important}@media print{*,::after,::before{text-shadow:none!important;box-shadow:none!important}a:not(.btn){text-decoration:underline}abbr[title]::after{content:" (" attr(title) ")"}pre{white-space:pre-wrap!important}blockquote,pre{border:1px solid #adb5bd;page-break-inside:avoid}thead{display:table-header-group}img,tr{page-break-inside:avoid}h2,h3,p{orphans:3;widows:3}h2,h3{page-break-after:avoid}@page{size:a3}body{min-width:992px!important}.container{min-width:992px!important}.navbar{display:none}.badge{border:1px solid #000}.table{border-collapse:collapse!important}.table td,.table th{background-color:#fff!important}.table-bordered td,.table-bordered th{border:1px solid #dee2e6!important}.table-dark{color:inherit}.table-dark tbody+tbody,.table-dark td,.table-dark th,.table-dark thead th{border-color:#dee2e6}.table .thead-dark th{color:inherit;border-color:#dee2e6}} +/*# sourceMappingURL=bootstrap.min.css.map */ \ No newline at end of file diff --git a/public/assets/lib/bootstrap/js/bootstrap.bundle.min.js b/public/assets/lib/bootstrap/js/bootstrap.bundle.min.js new file mode 100755 index 0000000..72a46cf --- /dev/null +++ b/public/assets/lib/bootstrap/js/bootstrap.bundle.min.js @@ -0,0 +1,7 @@ +/*! + * Bootstrap v4.1.3 (https://getbootstrap.com/) + * Copyright 2011-2018 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors) + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) + */ +!function(e,t){"object"==typeof exports&&"undefined"!=typeof module?t(exports,require("jquery")):"function"==typeof define&&define.amd?define(["exports","jquery"],t):t(e.bootstrap={},e.jQuery)}(this,function(e,t){"use strict";function i(e,t){for(var n=0;nthis._items.length-1||e<0))if(this._isSliding)k(this._element).one(q.SLID,function(){return t.to(e)});else{if(n===e)return this.pause(),void this.cycle();var i=n=i.clientWidth&&n>=i.clientHeight}),u=0l[e]&&!i.escapeWithReference&&(n=Math.min(u[t],l[e]-("right"===e?u.width:u.height))),Ve({},t,n)}};return c.forEach(function(e){var t=-1!==["left","top"].indexOf(e)?"primary":"secondary";u=ze({},u,f[t](e))}),e.offsets.popper=u,e},priority:["left","right","top","bottom"],padding:5,boundariesElement:"scrollParent"},keepTogether:{order:400,enabled:!0,fn:function(e){var t=e.offsets,n=t.popper,i=t.reference,r=e.placement.split("-")[0],o=Math.floor,s=-1!==["top","bottom"].indexOf(r),a=s?"right":"bottom",l=s?"left":"top",c=s?"width":"height";return n[a]o(i[a])&&(e.offsets.popper[l]=o(i[a])),e}},arrow:{order:500,enabled:!0,fn:function(e,t){var n;if(!pt(e.instance.modifiers,"arrow","keepTogether"))return e;var i=t.element;if("string"==typeof i){if(!(i=e.instance.popper.querySelector(i)))return e}else if(!e.instance.popper.contains(i))return console.warn("WARNING: `arrow.element` must be child of its popper element!"),e;var r=e.placement.split("-")[0],o=e.offsets,s=o.popper,a=o.reference,l=-1!==["left","right"].indexOf(r),c=l?"height":"width",u=l?"Top":"Left",f=u.toLowerCase(),h=l?"left":"top",d=l?"bottom":"right",p=nt(i)[c];a[d]-ps[d]&&(e.offsets.popper[f]+=a[f]+p-s[d]),e.offsets.popper=Ge(e.offsets.popper);var m=a[f]+a[c]/2-p/2,g=Pe(e.instance.popper),_=parseFloat(g["margin"+u],10),v=parseFloat(g["border"+u+"Width"],10),y=m-e.offsets.popper[f]-_-v;return y=Math.max(Math.min(s[c]-p,y),0),e.arrowElement=i,e.offsets.arrow=(Ve(n={},f,Math.round(y)),Ve(n,h,""),n),e},element:"[x-arrow]"},flip:{order:600,enabled:!0,fn:function(p,m){if(at(p.instance.modifiers,"inner"))return p;if(p.flipped&&p.placement===p.originalPlacement)return p;var g=$e(p.instance.popper,p.instance.reference,m.padding,m.boundariesElement,p.positionFixed),_=p.placement.split("-")[0],v=it(_),y=p.placement.split("-")[1]||"",E=[];switch(m.behavior){case vt:E=[_,v];break;case yt:E=_t(_);break;case Et:E=_t(_,!0);break;default:E=m.behavior}return E.forEach(function(e,t){if(_!==e||E.length===t+1)return p;_=p.placement.split("-")[0],v=it(_);var n,i=p.offsets.popper,r=p.offsets.reference,o=Math.floor,s="left"===_&&o(i.right)>o(r.left)||"right"===_&&o(i.left)o(r.top)||"bottom"===_&&o(i.top)o(g.right),c=o(i.top)o(g.bottom),f="left"===_&&a||"right"===_&&l||"top"===_&&c||"bottom"===_&&u,h=-1!==["top","bottom"].indexOf(_),d=!!m.flipVariations&&(h&&"start"===y&&a||h&&"end"===y&&l||!h&&"start"===y&&c||!h&&"end"===y&&u);(s||f||d)&&(p.flipped=!0,(s||f)&&(_=E[t+1]),d&&(y="end"===(n=y)?"start":"start"===n?"end":n),p.placement=_+(y?"-"+y:""),p.offsets.popper=ze({},p.offsets.popper,rt(p.instance.popper,p.offsets.reference,p.placement)),p=st(p.instance.modifiers,p,"flip"))}),p},behavior:"flip",padding:5,boundariesElement:"viewport"},inner:{order:700,enabled:!1,fn:function(e){var t=e.placement,n=t.split("-")[0],i=e.offsets,r=i.popper,o=i.reference,s=-1!==["left","right"].indexOf(n),a=-1===["top","left"].indexOf(n);return r[s?"left":"top"]=o[n]-(a?r[s?"width":"height"]:0),e.placement=it(t),e.offsets.popper=Ge(r),e}},hide:{order:800,enabled:!0,fn:function(e){if(!pt(e.instance.modifiers,"hide","preventOverflow"))return e;var t=e.offsets.reference,n=ot(e.instance.modifiers,function(e){return"preventOverflow"===e.name}).boundaries;if(t.bottomn.right||t.top>n.bottom||t.rightdocument.documentElement.clientHeight;!this._isBodyOverflowing&&e&&(this._element.style.paddingLeft=this._scrollbarWidth+"px"),this._isBodyOverflowing&&!e&&(this._element.style.paddingRight=this._scrollbarWidth+"px")},e._resetAdjustments=function(){this._element.style.paddingLeft="",this._element.style.paddingRight=""},e._checkScrollbar=function(){var e=document.body.getBoundingClientRect();this._isBodyOverflowing=e.left+e.right
',trigger:"hover focus",title:"",delay:0,html:!(An={AUTO:"auto",TOP:"top",RIGHT:"right",BOTTOM:"bottom",LEFT:"left"}),selector:!(Dn={animation:"boolean",template:"string",title:"(string|element|function)",trigger:"string",delay:"(number|object)",html:"boolean",selector:"(string|boolean)",placement:"(string|function)",offset:"(number|string)",container:"(string|element|boolean)",fallbackPlacement:"(string|array)",boundary:"(string|element)"}),placement:"top",offset:0,container:!1,fallbackPlacement:"flip",boundary:"scrollParent"},Nn="out",kn={HIDE:"hide"+wn,HIDDEN:"hidden"+wn,SHOW:(On="show")+wn,SHOWN:"shown"+wn,INSERTED:"inserted"+wn,CLICK:"click"+wn,FOCUSIN:"focusin"+wn,FOCUSOUT:"focusout"+wn,MOUSEENTER:"mouseenter"+wn,MOUSELEAVE:"mouseleave"+wn},xn="fade",Pn="show",Ln=".tooltip-inner",jn=".arrow",Hn="hover",Mn="focus",Fn="click",Wn="manual",Rn=function(){function i(e,t){if("undefined"==typeof Ct)throw new TypeError("Bootstrap tooltips require Popper.js (https://popper.js.org)");this._isEnabled=!0,this._timeout=0,this._hoverState="",this._activeTrigger={},this._popper=null,this.element=e,this.config=this._getConfig(t),this.tip=null,this._setListeners()}var e=i.prototype;return e.enable=function(){this._isEnabled=!0},e.disable=function(){this._isEnabled=!1},e.toggleEnabled=function(){this._isEnabled=!this._isEnabled},e.toggle=function(e){if(this._isEnabled)if(e){var t=this.constructor.DATA_KEY,n=yn(e.currentTarget).data(t);n||(n=new this.constructor(e.currentTarget,this._getDelegateConfig()),yn(e.currentTarget).data(t,n)),n._activeTrigger.click=!n._activeTrigger.click,n._isWithActiveTrigger()?n._enter(null,n):n._leave(null,n)}else{if(yn(this.getTipElement()).hasClass(Pn))return void this._leave(null,this);this._enter(null,this)}},e.dispose=function(){clearTimeout(this._timeout),yn.removeData(this.element,this.constructor.DATA_KEY),yn(this.element).off(this.constructor.EVENT_KEY),yn(this.element).closest(".modal").off("hide.bs.modal"),this.tip&&yn(this.tip).remove(),this._isEnabled=null,this._timeout=null,this._hoverState=null,(this._activeTrigger=null)!==this._popper&&this._popper.destroy(),this._popper=null,this.element=null,this.config=null,this.tip=null},e.show=function(){var t=this;if("none"===yn(this.element).css("display"))throw new Error("Please use show on visible elements");var e=yn.Event(this.constructor.Event.SHOW);if(this.isWithContent()&&this._isEnabled){yn(this.element).trigger(e);var n=yn.contains(this.element.ownerDocument.documentElement,this.element);if(e.isDefaultPrevented()||!n)return;var i=this.getTipElement(),r=we.getUID(this.constructor.NAME);i.setAttribute("id",r),this.element.setAttribute("aria-describedby",r),this.setContent(),this.config.animation&&yn(i).addClass(xn);var o="function"==typeof this.config.placement?this.config.placement.call(this,i,this.element):this.config.placement,s=this._getAttachment(o);this.addAttachmentClass(s);var a=!1===this.config.container?document.body:yn(document).find(this.config.container);yn(i).data(this.constructor.DATA_KEY,this),yn.contains(this.element.ownerDocument.documentElement,this.tip)||yn(i).appendTo(a),yn(this.element).trigger(this.constructor.Event.INSERTED),this._popper=new Ct(this.element,i,{placement:s,modifiers:{offset:{offset:this.config.offset},flip:{behavior:this.config.fallbackPlacement},arrow:{element:jn},preventOverflow:{boundariesElement:this.config.boundary}},onCreate:function(e){e.originalPlacement!==e.placement&&t._handlePopperPlacementChange(e)},onUpdate:function(e){t._handlePopperPlacementChange(e)}}),yn(i).addClass(Pn),"ontouchstart"in document.documentElement&&yn(document.body).children().on("mouseover",null,yn.noop);var l=function(){t.config.animation&&t._fixTransition();var e=t._hoverState;t._hoverState=null,yn(t.element).trigger(t.constructor.Event.SHOWN),e===Nn&&t._leave(null,t)};if(yn(this.tip).hasClass(xn)){var c=we.getTransitionDurationFromElement(this.tip);yn(this.tip).one(we.TRANSITION_END,l).emulateTransitionEnd(c)}else l()}},e.hide=function(e){var t=this,n=this.getTipElement(),i=yn.Event(this.constructor.Event.HIDE),r=function(){t._hoverState!==On&&n.parentNode&&n.parentNode.removeChild(n),t._cleanTipClass(),t.element.removeAttribute("aria-describedby"),yn(t.element).trigger(t.constructor.Event.HIDDEN),null!==t._popper&&t._popper.destroy(),e&&e()};if(yn(this.element).trigger(i),!i.isDefaultPrevented()){if(yn(n).removeClass(Pn),"ontouchstart"in document.documentElement&&yn(document.body).children().off("mouseover",null,yn.noop),this._activeTrigger[Fn]=!1,this._activeTrigger[Mn]=!1,this._activeTrigger[Hn]=!1,yn(this.tip).hasClass(xn)){var o=we.getTransitionDurationFromElement(n);yn(n).one(we.TRANSITION_END,r).emulateTransitionEnd(o)}else r();this._hoverState=""}},e.update=function(){null!==this._popper&&this._popper.scheduleUpdate()},e.isWithContent=function(){return Boolean(this.getTitle())},e.addAttachmentClass=function(e){yn(this.getTipElement()).addClass(Tn+"-"+e)},e.getTipElement=function(){return this.tip=this.tip||yn(this.config.template)[0],this.tip},e.setContent=function(){var e=this.getTipElement();this.setElementContent(yn(e.querySelectorAll(Ln)),this.getTitle()),yn(e).removeClass(xn+" "+Pn)},e.setElementContent=function(e,t){var n=this.config.html;"object"==typeof t&&(t.nodeType||t.jquery)?n?yn(t).parent().is(e)||e.empty().append(t):e.text(yn(t).text()):e[n?"html":"text"](t)},e.getTitle=function(){var e=this.element.getAttribute("data-original-title");return e||(e="function"==typeof this.config.title?this.config.title.call(this.element):this.config.title),e},e._getAttachment=function(e){return An[e.toUpperCase()]},e._setListeners=function(){var i=this;this.config.trigger.split(" ").forEach(function(e){if("click"===e)yn(i.element).on(i.constructor.Event.CLICK,i.config.selector,function(e){return i.toggle(e)});else if(e!==Wn){var t=e===Hn?i.constructor.Event.MOUSEENTER:i.constructor.Event.FOCUSIN,n=e===Hn?i.constructor.Event.MOUSELEAVE:i.constructor.Event.FOCUSOUT;yn(i.element).on(t,i.config.selector,function(e){return i._enter(e)}).on(n,i.config.selector,function(e){return i._leave(e)})}yn(i.element).closest(".modal").on("hide.bs.modal",function(){return i.hide()})}),this.config.selector?this.config=l({},this.config,{trigger:"manual",selector:""}):this._fixTitle()},e._fixTitle=function(){var e=typeof this.element.getAttribute("data-original-title");(this.element.getAttribute("title")||"string"!==e)&&(this.element.setAttribute("data-original-title",this.element.getAttribute("title")||""),this.element.setAttribute("title",""))},e._enter=function(e,t){var n=this.constructor.DATA_KEY;(t=t||yn(e.currentTarget).data(n))||(t=new this.constructor(e.currentTarget,this._getDelegateConfig()),yn(e.currentTarget).data(n,t)),e&&(t._activeTrigger["focusin"===e.type?Mn:Hn]=!0),yn(t.getTipElement()).hasClass(Pn)||t._hoverState===On?t._hoverState=On:(clearTimeout(t._timeout),t._hoverState=On,t.config.delay&&t.config.delay.show?t._timeout=setTimeout(function(){t._hoverState===On&&t.show()},t.config.delay.show):t.show())},e._leave=function(e,t){var n=this.constructor.DATA_KEY;(t=t||yn(e.currentTarget).data(n))||(t=new this.constructor(e.currentTarget,this._getDelegateConfig()),yn(e.currentTarget).data(n,t)),e&&(t._activeTrigger["focusout"===e.type?Mn:Hn]=!1),t._isWithActiveTrigger()||(clearTimeout(t._timeout),t._hoverState=Nn,t.config.delay&&t.config.delay.hide?t._timeout=setTimeout(function(){t._hoverState===Nn&&t.hide()},t.config.delay.hide):t.hide())},e._isWithActiveTrigger=function(){for(var e in this._activeTrigger)if(this._activeTrigger[e])return!0;return!1},e._getConfig=function(e){return"number"==typeof(e=l({},this.constructor.Default,yn(this.element).data(),"object"==typeof e&&e?e:{})).delay&&(e.delay={show:e.delay,hide:e.delay}),"number"==typeof e.title&&(e.title=e.title.toString()),"number"==typeof e.content&&(e.content=e.content.toString()),we.typeCheckConfig(En,e,this.constructor.DefaultType),e},e._getDelegateConfig=function(){var e={};if(this.config)for(var t in this.config)this.constructor.Default[t]!==this.config[t]&&(e[t]=this.config[t]);return e},e._cleanTipClass=function(){var e=yn(this.getTipElement()),t=e.attr("class").match(Sn);null!==t&&t.length&&e.removeClass(t.join(""))},e._handlePopperPlacementChange=function(e){var t=e.instance;this.tip=t.popper,this._cleanTipClass(),this.addAttachmentClass(this._getAttachment(e.placement))},e._fixTransition=function(){var e=this.getTipElement(),t=this.config.animation;null===e.getAttribute("x-placement")&&(yn(e).removeClass(xn),this.config.animation=!1,this.hide(),this.show(),this.config.animation=t)},i._jQueryInterface=function(n){return this.each(function(){var e=yn(this).data(bn),t="object"==typeof n&&n;if((e||!/dispose|hide/.test(n))&&(e||(e=new i(this,t),yn(this).data(bn,e)),"string"==typeof n)){if("undefined"==typeof e[n])throw new TypeError('No method named "'+n+'"');e[n]()}})},s(i,null,[{key:"VERSION",get:function(){return"4.1.3"}},{key:"Default",get:function(){return In}},{key:"NAME",get:function(){return En}},{key:"DATA_KEY",get:function(){return bn}},{key:"Event",get:function(){return kn}},{key:"EVENT_KEY",get:function(){return wn}},{key:"DefaultType",get:function(){return Dn}}]),i}(),yn.fn[En]=Rn._jQueryInterface,yn.fn[En].Constructor=Rn,yn.fn[En].noConflict=function(){return yn.fn[En]=Cn,Rn._jQueryInterface},Rn),Qi=(Bn="popover",Kn="."+(qn="bs.popover"),Qn=(Un=t).fn[Bn],Yn="bs-popover",Vn=new RegExp("(^|\\s)"+Yn+"\\S+","g"),zn=l({},Ki.Default,{placement:"right",trigger:"click",content:"",template:''}),Gn=l({},Ki.DefaultType,{content:"(string|element|function)"}),Jn="fade",Xn=".popover-header",$n=".popover-body",ei={HIDE:"hide"+Kn,HIDDEN:"hidden"+Kn,SHOW:(Zn="show")+Kn,SHOWN:"shown"+Kn,INSERTED:"inserted"+Kn,CLICK:"click"+Kn,FOCUSIN:"focusin"+Kn,FOCUSOUT:"focusout"+Kn,MOUSEENTER:"mouseenter"+Kn,MOUSELEAVE:"mouseleave"+Kn},ti=function(e){var t,n;function i(){return e.apply(this,arguments)||this}n=e,(t=i).prototype=Object.create(n.prototype),(t.prototype.constructor=t).__proto__=n;var r=i.prototype;return r.isWithContent=function(){return this.getTitle()||this._getContent()},r.addAttachmentClass=function(e){Un(this.getTipElement()).addClass(Yn+"-"+e)},r.getTipElement=function(){return this.tip=this.tip||Un(this.config.template)[0],this.tip},r.setContent=function(){var e=Un(this.getTipElement());this.setElementContent(e.find(Xn),this.getTitle());var t=this._getContent();"function"==typeof t&&(t=t.call(this.element)),this.setElementContent(e.find($n),t),e.removeClass(Jn+" "+Zn)},r._getContent=function(){return this.element.getAttribute("data-content")||this.config.content},r._cleanTipClass=function(){var e=Un(this.getTipElement()),t=e.attr("class").match(Vn);null!==t&&0=this._offsets[r]&&("undefined"==typeof this._offsets[r+1]||ethis._items.length-1||t<0))if(this._isSliding)P(this._element).one(Q.SLID,function(){return e.to(t)});else{if(n===t)return this.pause(),void this.cycle();var i=ndocument.documentElement.clientHeight;!this._isBodyOverflowing&&t&&(this._element.style.paddingLeft=this._scrollbarWidth+"px"),this._isBodyOverflowing&&!t&&(this._element.style.paddingRight=this._scrollbarWidth+"px")},t._resetAdjustments=function(){this._element.style.paddingLeft="",this._element.style.paddingRight=""},t._checkScrollbar=function(){var t=document.body.getBoundingClientRect();this._isBodyOverflowing=t.left+t.right
',trigger:"hover focus",title:"",delay:0,html:!(Ie={AUTO:"auto",TOP:"top",RIGHT:"right",BOTTOM:"bottom",LEFT:"left"}),selector:!(Se={animation:"boolean",template:"string",title:"(string|element|function)",trigger:"string",delay:"(number|object)",html:"boolean",selector:"(string|boolean)",placement:"(string|function)",offset:"(number|string)",container:"(string|element|boolean)",fallbackPlacement:"(string|array)",boundary:"(string|element)"}),placement:"top",offset:0,container:!1,fallbackPlacement:"flip",boundary:"scrollParent"},we="out",Ne={HIDE:"hide"+Ee,HIDDEN:"hidden"+Ee,SHOW:(De="show")+Ee,SHOWN:"shown"+Ee,INSERTED:"inserted"+Ee,CLICK:"click"+Ee,FOCUSIN:"focusin"+Ee,FOCUSOUT:"focusout"+Ee,MOUSEENTER:"mouseenter"+Ee,MOUSELEAVE:"mouseleave"+Ee},Oe="fade",ke="show",Pe=".tooltip-inner",je=".arrow",He="hover",Le="focus",Re="click",xe="manual",We=function(){function i(t,e){if("undefined"==typeof h)throw new TypeError("Bootstrap tooltips require Popper.js (https://popper.js.org)");this._isEnabled=!0,this._timeout=0,this._hoverState="",this._activeTrigger={},this._popper=null,this.element=t,this.config=this._getConfig(e),this.tip=null,this._setListeners()}var t=i.prototype;return t.enable=function(){this._isEnabled=!0},t.disable=function(){this._isEnabled=!1},t.toggleEnabled=function(){this._isEnabled=!this._isEnabled},t.toggle=function(t){if(this._isEnabled)if(t){var e=this.constructor.DATA_KEY,n=pe(t.currentTarget).data(e);n||(n=new this.constructor(t.currentTarget,this._getDelegateConfig()),pe(t.currentTarget).data(e,n)),n._activeTrigger.click=!n._activeTrigger.click,n._isWithActiveTrigger()?n._enter(null,n):n._leave(null,n)}else{if(pe(this.getTipElement()).hasClass(ke))return void this._leave(null,this);this._enter(null,this)}},t.dispose=function(){clearTimeout(this._timeout),pe.removeData(this.element,this.constructor.DATA_KEY),pe(this.element).off(this.constructor.EVENT_KEY),pe(this.element).closest(".modal").off("hide.bs.modal"),this.tip&&pe(this.tip).remove(),this._isEnabled=null,this._timeout=null,this._hoverState=null,(this._activeTrigger=null)!==this._popper&&this._popper.destroy(),this._popper=null,this.element=null,this.config=null,this.tip=null},t.show=function(){var e=this;if("none"===pe(this.element).css("display"))throw new Error("Please use show on visible elements");var t=pe.Event(this.constructor.Event.SHOW);if(this.isWithContent()&&this._isEnabled){pe(this.element).trigger(t);var n=pe.contains(this.element.ownerDocument.documentElement,this.element);if(t.isDefaultPrevented()||!n)return;var i=this.getTipElement(),r=Fn.getUID(this.constructor.NAME);i.setAttribute("id",r),this.element.setAttribute("aria-describedby",r),this.setContent(),this.config.animation&&pe(i).addClass(Oe);var o="function"==typeof this.config.placement?this.config.placement.call(this,i,this.element):this.config.placement,s=this._getAttachment(o);this.addAttachmentClass(s);var a=!1===this.config.container?document.body:pe(document).find(this.config.container);pe(i).data(this.constructor.DATA_KEY,this),pe.contains(this.element.ownerDocument.documentElement,this.tip)||pe(i).appendTo(a),pe(this.element).trigger(this.constructor.Event.INSERTED),this._popper=new h(this.element,i,{placement:s,modifiers:{offset:{offset:this.config.offset},flip:{behavior:this.config.fallbackPlacement},arrow:{element:je},preventOverflow:{boundariesElement:this.config.boundary}},onCreate:function(t){t.originalPlacement!==t.placement&&e._handlePopperPlacementChange(t)},onUpdate:function(t){e._handlePopperPlacementChange(t)}}),pe(i).addClass(ke),"ontouchstart"in document.documentElement&&pe(document.body).children().on("mouseover",null,pe.noop);var l=function(){e.config.animation&&e._fixTransition();var t=e._hoverState;e._hoverState=null,pe(e.element).trigger(e.constructor.Event.SHOWN),t===we&&e._leave(null,e)};if(pe(this.tip).hasClass(Oe)){var c=Fn.getTransitionDurationFromElement(this.tip);pe(this.tip).one(Fn.TRANSITION_END,l).emulateTransitionEnd(c)}else l()}},t.hide=function(t){var e=this,n=this.getTipElement(),i=pe.Event(this.constructor.Event.HIDE),r=function(){e._hoverState!==De&&n.parentNode&&n.parentNode.removeChild(n),e._cleanTipClass(),e.element.removeAttribute("aria-describedby"),pe(e.element).trigger(e.constructor.Event.HIDDEN),null!==e._popper&&e._popper.destroy(),t&&t()};if(pe(this.element).trigger(i),!i.isDefaultPrevented()){if(pe(n).removeClass(ke),"ontouchstart"in document.documentElement&&pe(document.body).children().off("mouseover",null,pe.noop),this._activeTrigger[Re]=!1,this._activeTrigger[Le]=!1,this._activeTrigger[He]=!1,pe(this.tip).hasClass(Oe)){var o=Fn.getTransitionDurationFromElement(n);pe(n).one(Fn.TRANSITION_END,r).emulateTransitionEnd(o)}else r();this._hoverState=""}},t.update=function(){null!==this._popper&&this._popper.scheduleUpdate()},t.isWithContent=function(){return Boolean(this.getTitle())},t.addAttachmentClass=function(t){pe(this.getTipElement()).addClass(Te+"-"+t)},t.getTipElement=function(){return this.tip=this.tip||pe(this.config.template)[0],this.tip},t.setContent=function(){var t=this.getTipElement();this.setElementContent(pe(t.querySelectorAll(Pe)),this.getTitle()),pe(t).removeClass(Oe+" "+ke)},t.setElementContent=function(t,e){var n=this.config.html;"object"==typeof e&&(e.nodeType||e.jquery)?n?pe(e).parent().is(t)||t.empty().append(e):t.text(pe(e).text()):t[n?"html":"text"](e)},t.getTitle=function(){var t=this.element.getAttribute("data-original-title");return t||(t="function"==typeof this.config.title?this.config.title.call(this.element):this.config.title),t},t._getAttachment=function(t){return Ie[t.toUpperCase()]},t._setListeners=function(){var i=this;this.config.trigger.split(" ").forEach(function(t){if("click"===t)pe(i.element).on(i.constructor.Event.CLICK,i.config.selector,function(t){return i.toggle(t)});else if(t!==xe){var e=t===He?i.constructor.Event.MOUSEENTER:i.constructor.Event.FOCUSIN,n=t===He?i.constructor.Event.MOUSELEAVE:i.constructor.Event.FOCUSOUT;pe(i.element).on(e,i.config.selector,function(t){return i._enter(t)}).on(n,i.config.selector,function(t){return i._leave(t)})}pe(i.element).closest(".modal").on("hide.bs.modal",function(){return i.hide()})}),this.config.selector?this.config=l({},this.config,{trigger:"manual",selector:""}):this._fixTitle()},t._fixTitle=function(){var t=typeof this.element.getAttribute("data-original-title");(this.element.getAttribute("title")||"string"!==t)&&(this.element.setAttribute("data-original-title",this.element.getAttribute("title")||""),this.element.setAttribute("title",""))},t._enter=function(t,e){var n=this.constructor.DATA_KEY;(e=e||pe(t.currentTarget).data(n))||(e=new this.constructor(t.currentTarget,this._getDelegateConfig()),pe(t.currentTarget).data(n,e)),t&&(e._activeTrigger["focusin"===t.type?Le:He]=!0),pe(e.getTipElement()).hasClass(ke)||e._hoverState===De?e._hoverState=De:(clearTimeout(e._timeout),e._hoverState=De,e.config.delay&&e.config.delay.show?e._timeout=setTimeout(function(){e._hoverState===De&&e.show()},e.config.delay.show):e.show())},t._leave=function(t,e){var n=this.constructor.DATA_KEY;(e=e||pe(t.currentTarget).data(n))||(e=new this.constructor(t.currentTarget,this._getDelegateConfig()),pe(t.currentTarget).data(n,e)),t&&(e._activeTrigger["focusout"===t.type?Le:He]=!1),e._isWithActiveTrigger()||(clearTimeout(e._timeout),e._hoverState=we,e.config.delay&&e.config.delay.hide?e._timeout=setTimeout(function(){e._hoverState===we&&e.hide()},e.config.delay.hide):e.hide())},t._isWithActiveTrigger=function(){for(var t in this._activeTrigger)if(this._activeTrigger[t])return!0;return!1},t._getConfig=function(t){return"number"==typeof(t=l({},this.constructor.Default,pe(this.element).data(),"object"==typeof t&&t?t:{})).delay&&(t.delay={show:t.delay,hide:t.delay}),"number"==typeof t.title&&(t.title=t.title.toString()),"number"==typeof t.content&&(t.content=t.content.toString()),Fn.typeCheckConfig(ve,t,this.constructor.DefaultType),t},t._getDelegateConfig=function(){var t={};if(this.config)for(var e in this.config)this.constructor.Default[e]!==this.config[e]&&(t[e]=this.config[e]);return t},t._cleanTipClass=function(){var t=pe(this.getTipElement()),e=t.attr("class").match(be);null!==e&&e.length&&t.removeClass(e.join(""))},t._handlePopperPlacementChange=function(t){var e=t.instance;this.tip=e.popper,this._cleanTipClass(),this.addAttachmentClass(this._getAttachment(t.placement))},t._fixTransition=function(){var t=this.getTipElement(),e=this.config.animation;null===t.getAttribute("x-placement")&&(pe(t).removeClass(Oe),this.config.animation=!1,this.hide(),this.show(),this.config.animation=e)},i._jQueryInterface=function(n){return this.each(function(){var t=pe(this).data(ye),e="object"==typeof n&&n;if((t||!/dispose|hide/.test(n))&&(t||(t=new i(this,e),pe(this).data(ye,t)),"string"==typeof n)){if("undefined"==typeof t[n])throw new TypeError('No method named "'+n+'"');t[n]()}})},s(i,null,[{key:"VERSION",get:function(){return"4.1.3"}},{key:"Default",get:function(){return Ae}},{key:"NAME",get:function(){return ve}},{key:"DATA_KEY",get:function(){return ye}},{key:"Event",get:function(){return Ne}},{key:"EVENT_KEY",get:function(){return Ee}},{key:"DefaultType",get:function(){return Se}}]),i}(),pe.fn[ve]=We._jQueryInterface,pe.fn[ve].Constructor=We,pe.fn[ve].noConflict=function(){return pe.fn[ve]=Ce,We._jQueryInterface},We),Jn=(qe="popover",Ke="."+(Fe="bs.popover"),Me=(Ue=e).fn[qe],Qe="bs-popover",Be=new RegExp("(^|\\s)"+Qe+"\\S+","g"),Ve=l({},zn.Default,{placement:"right",trigger:"click",content:"",template:''}),Ye=l({},zn.DefaultType,{content:"(string|element|function)"}),ze="fade",Ze=".popover-header",Ge=".popover-body",$e={HIDE:"hide"+Ke,HIDDEN:"hidden"+Ke,SHOW:(Je="show")+Ke,SHOWN:"shown"+Ke,INSERTED:"inserted"+Ke,CLICK:"click"+Ke,FOCUSIN:"focusin"+Ke,FOCUSOUT:"focusout"+Ke,MOUSEENTER:"mouseenter"+Ke,MOUSELEAVE:"mouseleave"+Ke},Xe=function(t){var e,n;function i(){return t.apply(this,arguments)||this}n=t,(e=i).prototype=Object.create(n.prototype),(e.prototype.constructor=e).__proto__=n;var r=i.prototype;return r.isWithContent=function(){return this.getTitle()||this._getContent()},r.addAttachmentClass=function(t){Ue(this.getTipElement()).addClass(Qe+"-"+t)},r.getTipElement=function(){return this.tip=this.tip||Ue(this.config.template)[0],this.tip},r.setContent=function(){var t=Ue(this.getTipElement());this.setElementContent(t.find(Ze),this.getTitle());var e=this._getContent();"function"==typeof e&&(e=e.call(this.element)),this.setElementContent(t.find(Ge),e),t.removeClass(ze+" "+Je)},r._getContent=function(){return this.element.getAttribute("data-content")||this.config.content},r._cleanTipClass=function(){var t=Ue(this.getTipElement()),e=t.attr("class").match(Be);null!==e&&0=this._offsets[r]&&("undefined"==typeof this._offsets[r+1]||t>>0,i=0;iwt(t)?(r=t+1,s-wt(t)):(r=t,s),{year:r,dayOfYear:o}}function Bt(t,e,n){var i,a,r=Vt(t.year(),e,n),o=Math.floor((t.dayOfYear()-r-1)/7)+1;return o<1?i=o+Et(a=t.year()-1,e,n):o>Et(t.year(),e,n)?(i=o-Et(t.year(),e,n),a=t.year()+1):(a=t.year(),i=o),{week:i,year:a}}function Et(t,e,n){var i=Vt(t,e,n),a=Vt(t+1,e,n);return(wt(t)-i+a)/7}B("w",["ww",2],"wo","week"),B("W",["WW",2],"Wo","isoWeek"),A("week","w"),A("isoWeek","W"),Y("week",5),Y("isoWeek",5),lt("w",J),lt("ww",J,G),lt("W",J),lt("WW",J,G),ft(["w","ww","W","WW"],function(t,e,n,i){e[i.substr(0,1)]=M(t)});B("d",0,"do","day"),B("dd",0,0,function(t){return this.localeData().weekdaysMin(this,t)}),B("ddd",0,0,function(t){return this.localeData().weekdaysShort(this,t)}),B("dddd",0,0,function(t){return this.localeData().weekdays(this,t)}),B("e",0,0,"weekday"),B("E",0,0,"isoWeekday"),A("day","d"),A("weekday","e"),A("isoWeekday","E"),Y("day",11),Y("weekday",11),Y("isoWeekday",11),lt("d",J),lt("e",J),lt("E",J),lt("dd",function(t,e){return e.weekdaysMinRegex(t)}),lt("ddd",function(t,e){return e.weekdaysShortRegex(t)}),lt("dddd",function(t,e){return e.weekdaysRegex(t)}),ft(["dd","ddd","dddd"],function(t,e,n,i){var a=n._locale.weekdaysParse(t,i,n._strict);null!=a?e.d=a:v(n).invalidWeekday=t}),ft(["d","e","E"],function(t,e,n,i){e[i]=M(t)});var jt="Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_");var Ut="Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_");var Gt="Su_Mo_Tu_We_Th_Fr_Sa".split("_");var qt=ot;var Zt=ot;var Xt=ot;function Jt(){function t(t,e){return e.length-t.length}var e,n,i,a,r,o=[],s=[],l=[],u=[];for(e=0;e<7;e++)n=p([2e3,1]).day(e),i=this.weekdaysMin(n,""),a=this.weekdaysShort(n,""),r=this.weekdays(n,""),o.push(i),s.push(a),l.push(r),u.push(i),u.push(a),u.push(r);for(o.sort(t),s.sort(t),l.sort(t),u.sort(t),e=0;e<7;e++)s[e]=dt(s[e]),l[e]=dt(l[e]),u[e]=dt(u[e]);this._weekdaysRegex=new RegExp("^("+u.join("|")+")","i"),this._weekdaysShortRegex=this._weekdaysRegex,this._weekdaysMinRegex=this._weekdaysRegex,this._weekdaysStrictRegex=new RegExp("^("+l.join("|")+")","i"),this._weekdaysShortStrictRegex=new RegExp("^("+s.join("|")+")","i"),this._weekdaysMinStrictRegex=new RegExp("^("+o.join("|")+")","i")}function $t(){return this.hours()%12||12}function Kt(t,e){B(t,0,0,function(){return this.localeData().meridiem(this.hours(),this.minutes(),e)})}function Qt(t,e){return e._meridiemParse}B("H",["HH",2],0,"hour"),B("h",["hh",2],0,$t),B("k",["kk",2],0,function(){return this.hours()||24}),B("hmm",0,0,function(){return""+$t.apply(this)+W(this.minutes(),2)}),B("hmmss",0,0,function(){return""+$t.apply(this)+W(this.minutes(),2)+W(this.seconds(),2)}),B("Hmm",0,0,function(){return""+this.hours()+W(this.minutes(),2)}),B("Hmmss",0,0,function(){return""+this.hours()+W(this.minutes(),2)+W(this.seconds(),2)}),Kt("a",!0),Kt("A",!1),A("hour","h"),Y("hour",13),lt("a",Qt),lt("A",Qt),lt("H",J),lt("h",J),lt("k",J),lt("HH",J,G),lt("hh",J,G),lt("kk",J,G),lt("hmm",$),lt("hmmss",K),lt("Hmm",$),lt("Hmmss",K),ct(["H","HH"],vt),ct(["k","kk"],function(t,e,n){var i=M(t);e[vt]=24===i?0:i}),ct(["a","A"],function(t,e,n){n._isPm=n._locale.isPM(t),n._meridiem=t}),ct(["h","hh"],function(t,e,n){e[vt]=M(t),v(n).bigHour=!0}),ct("hmm",function(t,e,n){var i=t.length-2;e[vt]=M(t.substr(0,i)),e[bt]=M(t.substr(i)),v(n).bigHour=!0}),ct("hmmss",function(t,e,n){var i=t.length-4,a=t.length-2;e[vt]=M(t.substr(0,i)),e[bt]=M(t.substr(i,2)),e[yt]=M(t.substr(a)),v(n).bigHour=!0}),ct("Hmm",function(t,e,n){var i=t.length-2;e[vt]=M(t.substr(0,i)),e[bt]=M(t.substr(i))}),ct("Hmmss",function(t,e,n){var i=t.length-4,a=t.length-2;e[vt]=M(t.substr(0,i)),e[bt]=M(t.substr(i,2)),e[yt]=M(t.substr(a))});var te,ee=Ct("Hours",!0),ne={calendar:{sameDay:"[Today at] LT",nextDay:"[Tomorrow at] LT",nextWeek:"dddd [at] LT",lastDay:"[Yesterday at] LT",lastWeek:"[Last] dddd [at] LT",sameElse:"L"},longDateFormat:{LTS:"h:mm:ss A",LT:"h:mm A",L:"MM/DD/YYYY",LL:"MMMM D, YYYY",LLL:"MMMM D, YYYY h:mm A",LLLL:"dddd, MMMM D, YYYY h:mm A"},invalidDate:"Invalid date",ordinal:"%d",dayOfMonthOrdinalParse:/\d{1,2}/,relativeTime:{future:"in %s",past:"%s ago",s:"a few seconds",ss:"%d seconds",m:"a minute",mm:"%d minutes",h:"an hour",hh:"%d hours",d:"a day",dd:"%d days",M:"a month",MM:"%d months",y:"a year",yy:"%d years"},months:At,monthsShort:Ft,week:{dow:0,doy:6},weekdays:jt,weekdaysMin:Gt,weekdaysShort:Ut,meridiemParse:/[ap]\.?m?\.?/i},ie={},ae={};function re(t){return t?t.toLowerCase().replace("_","-"):t}function oe(t){var e=null;if(!ie[t]&&void 0!==jn&&jn&&jn.exports)try{e=te._abbr,En("./locale/"+t),se(e)}catch(t){}return ie[t]}function se(t,e){var n;return t&&((n=u(e)?ue(t):le(t,e))?te=n:"undefined"!=typeof console&&console.warn&&console.warn("Locale "+t+" not found. Did you forget to load it?")),te._abbr}function le(t,e){if(null===e)return delete ie[t],null;var n,i=ne;if(e.abbr=t,null!=ie[t])C("defineLocaleOverride","use moment.updateLocale(localeName, config) to change an existing locale. moment.defineLocale(localeName, config) should only be used for creating a new locale See http://momentjs.com/guides/#/warnings/define-locale/ for more info."),i=ie[t]._config;else if(null!=e.parentLocale)if(null!=ie[e.parentLocale])i=ie[e.parentLocale]._config;else{if(null==(n=oe(e.parentLocale)))return ae[e.parentLocale]||(ae[e.parentLocale]=[]),ae[e.parentLocale].push({name:t,config:e}),null;i=n._config}return ie[t]=new O(T(i,e)),ae[t]&&ae[t].forEach(function(t){le(t.name,t.config)}),se(t),ie[t]}function ue(t){var e;if(t&&t._locale&&t._locale._abbr&&(t=t._locale._abbr),!t)return te;if(!s(t)){if(e=oe(t))return e;t=[t]}return function(t){for(var e,n,i,a,r=0;r=e&&o(a,n,!0)>=e-1)break;e--}r++}return te}(t)}function de(t){var e,n=t._a;return n&&-2===v(t).overflow&&(e=n[mt]<0||11Ot(n[gt],n[mt])?pt:n[vt]<0||24Et(n,r,o)?v(t)._overflowWeeks=!0:null!=l?v(t)._overflowWeekday=!0:(s=Ht(n,i,a,r,o),t._a[gt]=s.year,t._dayOfYear=s.dayOfYear)}(t),null!=t._dayOfYear&&(r=he(t._a[gt],i[gt]),(t._dayOfYear>wt(r)||0===t._dayOfYear)&&(v(t)._overflowDayOfYear=!0),n=zt(r,0,t._dayOfYear),t._a[mt]=n.getUTCMonth(),t._a[pt]=n.getUTCDate()),e=0;e<3&&null==t._a[e];++e)t._a[e]=o[e]=i[e];for(;e<7;e++)t._a[e]=o[e]=null==t._a[e]?2===e?1:0:t._a[e];24===t._a[vt]&&0===t._a[bt]&&0===t._a[yt]&&0===t._a[xt]&&(t._nextDay=!0,t._a[vt]=0),t._d=(t._useUTC?zt:function(t,e,n,i,a,r,o){var s=new Date(t,e,n,i,a,r,o);return t<100&&0<=t&&isFinite(s.getFullYear())&&s.setFullYear(t),s}).apply(null,o),a=t._useUTC?t._d.getUTCDay():t._d.getDay(),null!=t._tzm&&t._d.setUTCMinutes(t._d.getUTCMinutes()-t._tzm),t._nextDay&&(t._a[vt]=24),t._w&&void 0!==t._w.d&&t._w.d!==a&&(v(t).weekdayMismatch=!0)}}var fe=/^\s*((?:[+-]\d{6}|\d{4})-(?:\d\d-\d\d|W\d\d-\d|W\d\d|\d\d\d|\d\d))(?:(T| )(\d\d(?::\d\d(?::\d\d(?:[.,]\d+)?)?)?)([\+\-]\d\d(?::?\d\d)?|\s*Z)?)?$/,ge=/^\s*((?:[+-]\d{6}|\d{4})(?:\d\d\d\d|W\d\d\d|W\d\d|\d\d\d|\d\d))(?:(T| )(\d\d(?:\d\d(?:\d\d(?:[.,]\d+)?)?)?)([\+\-]\d\d(?::?\d\d)?|\s*Z)?)?$/,me=/Z|[+-]\d\d(?::?\d\d)?/,pe=[["YYYYYY-MM-DD",/[+-]\d{6}-\d\d-\d\d/],["YYYY-MM-DD",/\d{4}-\d\d-\d\d/],["GGGG-[W]WW-E",/\d{4}-W\d\d-\d/],["GGGG-[W]WW",/\d{4}-W\d\d/,!1],["YYYY-DDD",/\d{4}-\d{3}/],["YYYY-MM",/\d{4}-\d\d/,!1],["YYYYYYMMDD",/[+-]\d{10}/],["YYYYMMDD",/\d{8}/],["GGGG[W]WWE",/\d{4}W\d{3}/],["GGGG[W]WW",/\d{4}W\d{2}/,!1],["YYYYDDD",/\d{7}/]],ve=[["HH:mm:ss.SSSS",/\d\d:\d\d:\d\d\.\d+/],["HH:mm:ss,SSSS",/\d\d:\d\d:\d\d,\d+/],["HH:mm:ss",/\d\d:\d\d:\d\d/],["HH:mm",/\d\d:\d\d/],["HHmmss.SSSS",/\d\d\d\d\d\d\.\d+/],["HHmmss,SSSS",/\d\d\d\d\d\d,\d+/],["HHmmss",/\d\d\d\d\d\d/],["HHmm",/\d\d\d\d/],["HH",/\d\d/]],be=/^\/?Date\((\-?\d+)/i;function ye(t){var e,n,i,a,r,o,s=t._i,l=fe.exec(s)||ge.exec(s);if(l){for(v(t).iso=!0,e=0,n=pe.length;en.valueOf():n.valueOf()this.clone().month(0).utcOffset()||this.utcOffset()>this.clone().month(5).utcOffset()},un.isLocal=function(){return!!this.isValid()&&!this._isUTC},un.isUtcOffset=function(){return!!this.isValid()&&this._isUTC},un.isUtc=Ve,un.isUTC=Ve,un.zoneAbbr=function(){return this._isUTC?"UTC":""},un.zoneName=function(){return this._isUTC?"Coordinated Universal Time":""},un.dates=n("dates accessor is deprecated. Use date instead.",nn),un.months=n("months accessor is deprecated. Use month instead",Lt),un.years=n("years accessor is deprecated. Use year instead",Dt),un.zone=n("moment().zone is deprecated, use moment().utcOffset instead. http://momentjs.com/guides/#/warnings/zone/",function(t,e){return null!=t?("string"!=typeof t&&(t=-t),this.utcOffset(t,e),this):-this.utcOffset()}),un.isDSTShifted=n("isDSTShifted is deprecated. See http://momentjs.com/guides/#/warnings/dst-shifted/ for more information",function(){if(!u(this._isDSTShifted))return this._isDSTShifted;var t={};if(x(t,this),(t=Se(t))._a){var e=t._isUTC?p(t._a):Ce(t._a);this._isDSTShifted=this.isValid()&&0');var n=t.data,i=n.datasets,a=n.labels;if(i.length)for(var r=0;r'),a[r]&&e.push(a[r]),e.push("");return e.push(""),e.join("")},legend:{labels:{generateLabels:function(l){var u=l.data;return u.labels.length&&u.datasets.length?u.labels.map(function(t,e){var n=l.getDatasetMeta(0),i=u.datasets[0],a=n.data[e],r=a&&a.custom||{},o=O.valueAtIndexOrDefault,s=l.options.elements.arc;return{text:t,fillStyle:r.backgroundColor?r.backgroundColor:o(i.backgroundColor,e,s.backgroundColor),strokeStyle:r.borderColor?r.borderColor:o(i.borderColor,e,s.borderColor),lineWidth:r.borderWidth?r.borderWidth:o(i.borderWidth,e,s.borderWidth),hidden:isNaN(i.data[e])||n.data[e].hidden,index:e}}):[]}},onClick:function(t,e){var n,i,a,r=e.index,o=this.chart;for(n=0,i=(o.data.datasets||[]).length;n=Math.PI?-1:f<-Math.PI?1:0))+c,m=Math.cos(f),p=Math.sin(f),v=Math.cos(g),b=Math.sin(g),y=f<=0&&0<=g||f<=2*Math.PI&&2*Math.PI<=g,x=f<=.5*Math.PI&&.5*Math.PI<=g||f<=2.5*Math.PI&&2.5*Math.PI<=g,_=f<=-Math.PI&&-Math.PI<=g||f<=Math.PI&&Math.PI<=g,k=f<=.5*-Math.PI&&.5*-Math.PI<=g||f<=1.5*Math.PI&&1.5*Math.PI<=g,w=h/100,M=_?-1:Math.min(m*(m<0?1:w),v*(v<0?1:w)),S=k?-1:Math.min(p*(p<0?1:w),b*(b<0?1:w)),D=y?1:Math.max(m*(0');var n=t.data,i=n.datasets,a=n.labels;if(i.length)for(var r=0;r'),a[r]&&e.push(a[r]),e.push("");return e.push(""),e.join("")},legend:{labels:{generateLabels:function(s){var l=s.data;return l.labels.length&&l.datasets.length?l.labels.map(function(t,e){var n=s.getDatasetMeta(0),i=l.datasets[0],a=n.data[e].custom||{},r=_.valueAtIndexOrDefault,o=s.options.elements.arc;return{text:t,fillStyle:a.backgroundColor?a.backgroundColor:r(i.backgroundColor,e,o.backgroundColor),strokeStyle:a.borderColor?a.borderColor:r(i.borderColor,e,o.borderColor),lineWidth:a.borderWidth?a.borderWidth:r(i.borderWidth,e,o.borderWidth),hidden:isNaN(i.data[e])||n.data[e].hidden,index:e}}):[]}},onClick:function(t,e){var n,i,a,r=e.index,o=this.chart;for(n=0,i=(o.data.datasets||[]).length;n=e.numSteps?(r.callback(e.onAnimationComplete,[e],n),n.animating=!1,i.splice(a,1)):++a}}},{26:26,46:46}],24:[function(t,e,n){"use strict";var s=t(22),l=t(23),h=t(26),c=t(46),a=t(29),r=t(31),f=t(49),g=t(32),m=t(34),i=t(36);e.exports=function(u){function d(t){return"top"===t||"bottom"===t}u.types={},u.instances={},u.controllers={},c.extend(u.prototype,{construct:function(t,e){var n,i,a=this;(i=(n=(n=e)||{}).data=n.data||{}).datasets=i.datasets||[],i.labels=i.labels||[],n.options=c.configMerge(h.global,h[n.type],n.options||{}),e=n;var r=f.acquireContext(t,e),o=r&&r.canvas,s=o&&o.height,l=o&&o.width;a.id=c.uid(),a.ctx=r,a.canvas=o,a.config=e,a.width=l,a.height=s,a.aspectRatio=s?l/s:null,a.options=e.options,a._bufferedRender=!1,(a.chart=a).controller=a,u.instances[a.id]=a,Object.defineProperty(a,"data",{get:function(){return a.config.data},set:function(t){a.config.data=t}}),r&&o?(a.initialize(),a.update()):console.error("Failed to create chart: can't acquire context from the given item")},initialize:function(){var t=this;return g.notify(t,"beforeInit"),c.retinaScale(t,t.options.devicePixelRatio),t.bindEvents(),t.options.responsive&&t.resize(!0),t.ensureScalesHaveIDs(),t.buildOrUpdateScales(),t.initToolTip(),g.notify(t,"afterInit"),t},clear:function(){return c.canvas.clear(this),this},stop:function(){return l.cancelAnimation(this),this},resize:function(t){var e=this,n=e.options,i=e.canvas,a=n.maintainAspectRatio&&e.aspectRatio||null,r=Math.max(0,Math.floor(c.getMaximumWidth(i))),o=Math.max(0,Math.floor(a?r/a:c.getMaximumHeight(i)));if((e.width!==r||e.height!==o)&&(i.width=e.width=r,i.height=e.height=o,i.style.width=r+"px",i.style.height=o+"px",c.retinaScale(e,n.devicePixelRatio),!t)){var s={width:r,height:o};g.notify(e,"resize",[s]),e.options.onResize&&e.options.onResize(e,s),e.stop(),e.update({duration:e.options.responsiveAnimationDuration})}},ensureScalesHaveIDs:function(){var t=this.options,e=t.scales||{},n=t.scale;c.each(e.xAxes,function(t,e){t.id=t.id||"x-axis-"+e}),c.each(e.yAxes,function(t,e){t.id=t.id||"y-axis-"+e}),n&&(n.id=n.id||"scale")},buildOrUpdateScales:function(){var o=this,t=o.options,s=o.scales||{},e=[],l=Object.keys(s).reduce(function(t,e){return t[e]=!1,t},{});t.scales&&(e=e.concat((t.scales.xAxes||[]).map(function(t){return{options:t,dtype:"category",dposition:"bottom"}}),(t.scales.yAxes||[]).map(function(t){return{options:t,dtype:"linear",dposition:"left"}}))),t.scale&&e.push({options:t.scale,dtype:"radialLinear",isDefault:!0,dposition:"chartArea"}),c.each(e,function(t){var e=t.options,n=e.id,i=c.valueOrDefault(e.type,t.dtype);d(e.position)!==d(t.dposition)&&(e.position=t.dposition),l[n]=!0;var a=null;if(n in s&&s[n].type===i)(a=s[n]).options=e,a.ctx=o.ctx,a.chart=o;else{var r=m.getScaleConstructor(i);if(!r)return;a=new r({id:n,type:i,options:e,ctx:o.ctx,chart:o}),s[a.id]=a}a.mergeTicksOptions(),t.isDefault&&(o.scale=a)}),c.each(l,function(t,e){t||delete s[e]}),o.scales=s,m.addScalesToLayout(this)},buildOrUpdateControllers:function(){var r=this,o=[],s=[];return c.each(r.data.datasets,function(t,e){var n=r.getDatasetMeta(e),i=t.type||r.config.type;if(n.type&&n.type!==i&&(r.destroyDatasetMeta(e),n=r.getDatasetMeta(e)),n.type=i,o.push(n.type),n.controller)n.controller.updateIndex(e),n.controller.linkScales();else{var a=u.controllers[n.type];if(void 0===a)throw new Error('"'+n.type+'" is not a chart type.');n.controller=new a(r,e),s.push(n.controller)}},r),s},resetElements:function(){var n=this;c.each(n.data.datasets,function(t,e){n.getDatasetMeta(e).controller.reset()},n)},reset:function(){this.resetElements(),this.tooltip.initialize()},update:function(t){var e,n,i=this;if(t&&"object"==typeof t||(t={duration:t,lazy:arguments[1]}),n=(e=i).options,c.each(e.scales,function(t){r.removeBox(e,t)}),n=c.configMerge(u.defaults.global,u.defaults[e.config.type],n),e.options=e.config.options=n,e.ensureScalesHaveIDs(),e.buildOrUpdateScales(),e.tooltip._options=n.tooltips,e.tooltip.initialize(),g._invalidate(i),!1!==g.notify(i,"beforeUpdate")){i.tooltip._data=i.data;var a=i.buildOrUpdateControllers();c.each(i.data.datasets,function(t,e){i.getDatasetMeta(e).controller.buildOrUpdateElements()},i),i.updateLayout(),i.options.animation&&i.options.animation.duration&&c.each(a,function(t){t.reset()}),i.updateDatasets(),i.tooltip.initialize(),i.lastActive=[],g.notify(i,"afterUpdate"),i._bufferedRender?i._bufferedRequest={duration:t.duration,easing:t.easing,lazy:t.lazy}:i.render(t)}},updateLayout:function(){!1!==g.notify(this,"beforeLayout")&&(r.update(this,this.width,this.height),g.notify(this,"afterScaleUpdate"),g.notify(this,"afterLayout"))},updateDatasets:function(){if(!1!==g.notify(this,"beforeDatasetsUpdate")){for(var t=0,e=this.data.datasets.length;t=e[t].length&&e[t].push({}),!e[t][a].type||o.type&&o.type!==e[t][a].type?g.merge(e[t][a],[l.getScaleDefaults(r),o]):g.merge(e[t][a],o)}else g._merger(t,e,n,i)}})},g.where=function(t,e){if(g.isArray(t)&&Array.prototype.filter)return t.filter(e);var n=[];return g.each(t,function(t){e(t)&&n.push(t)}),n},g.findIndex=Array.prototype.findIndex?function(t,e,n){return t.findIndex(e,n)}:function(t,e,n){n=void 0===n?t:n;for(var i=0,a=t.length;i=t.length-1?t[0]:t[e+1]:e>=t.length-1?t[t.length-1]:t[e+1]},g.previousItem=function(t,e,n){return n?e<=0?t[t.length-1]:t[e-1]:e<=0?t[0]:t[e-1]},g.niceNum=function(t,e){var n=Math.floor(g.log10(t)),i=t/Math.pow(10,n);return(e?i<1.5?1:i<3?2:i<7?5:10:i<=1?1:i<=2?2:i<=5?5:10)*Math.pow(10,n)},g.requestAnimFrame="undefined"==typeof window?function(t){t()}:window.requestAnimationFrame||window.webkitRequestAnimationFrame||window.mozRequestAnimationFrame||window.oRequestAnimationFrame||window.msRequestAnimationFrame||function(t){return window.setTimeout(t,1e3/60)},g.getRelativePosition=function(t,e){var n,i,a=t.originalEvent||t,r=t.target||t.srcElement,o=r.getBoundingClientRect(),s=a.touches;i=s&&0n.length){for(var l=0;le&&(e=t.length)}),e},g.color=i?function(t){return t instanceof CanvasGradient&&(t=a.global.defaultColor),i(t)}:function(t){return console.error("Color.js not found!"),t},g.getHoverColor=function(t){return t instanceof CanvasPattern?t:g.color(t).saturate(.5).darken(.1).rgbString()}}},{2:2,26:26,34:34,46:46}],29:[function(t,e,n){"use strict";var i=t(46);function s(t,e){return t.native?{x:t.x,y:t.y}:i.getRelativePosition(t,e)}function l(t,e){var n,i,a,r,o;for(i=0,r=t.data.datasets.length;it.maxHeight){r--;break}r++,l=o*s}t.labelRotation=r},afterCalculateTickRotation:function(){B.callback(this.options.afterCalculateTickRotation,[this])},beforeFit:function(){B.callback(this.options.beforeFit,[this])},fit:function(){var t=this,e=t.minSize={width:0,height:0},n=_(t._ticks),i=t.options,a=i.ticks,r=i.scaleLabel,o=i.gridLines,s=i.display,l=t.isHorizontal(),u=w(a),d=i.gridLines.tickMarkLength;if(e.width=l?t.isFullWidth()?t.maxWidth-t.margins.left-t.margins.right:t.maxWidth:s&&o.drawTicks?d:0,e.height=l?s&&o.drawTicks?d:0:t.maxHeight,r.display&&s){var h=M(r)+B.options.toPadding(r.padding).height;l?e.height+=h:e.width+=h}if(a.display&&s){var c=B.longestText(t.ctx,u.font,n,t.longestTextCache),f=B.numberOfLabelLines(n),g=.5*u.size,m=t.options.ticks.padding;if(l){t.longestLabelWidth=c;var p=B.toRadians(t.labelRotation),v=Math.cos(p),b=Math.sin(p)*c+u.size*f+g*(f-1)+g;e.height=Math.min(t.maxHeight,e.height+b+m),t.ctx.font=u.font;var y=k(t.ctx,n[0],u.font),x=k(t.ctx,n[n.length-1],u.font);0!==t.labelRotation?(t.paddingLeft="bottom"===i.position?v*y+3:v*g+3,t.paddingRight="bottom"===i.position?v*g+3:v*x+3):(t.paddingLeft=y/2+3,t.paddingRight=x/2+3)}else a.mirror?c=0:c+=m+g,e.width=Math.min(t.maxWidth,e.width+c),t.paddingTop=u.size/2,t.paddingBottom=u.size/2}t.handleMargins(),t.width=e.width,t.height=e.height},handleMargins:function(){var t=this;t.margins&&(t.paddingLeft=Math.max(t.paddingLeft-t.margins.left,0),t.paddingTop=Math.max(t.paddingTop-t.margins.top,0),t.paddingRight=Math.max(t.paddingRight-t.margins.right,0),t.paddingBottom=Math.max(t.paddingBottom-t.margins.bottom,0))},afterFit:function(){B.callback(this.options.afterFit,[this])},isHorizontal:function(){return"top"===this.options.position||"bottom"===this.options.position},isFullWidth:function(){return this.options.fullWidth},getRightValue:function(t){if(B.isNullOrUndef(t))return NaN;if("number"==typeof t&&!isFinite(t))return NaN;if(t)if(this.isHorizontal()){if(void 0!==t.x)return this.getRightValue(t.x)}else if(void 0!==t.y)return this.getRightValue(t.y);return t},getLabelForIndex:B.noop,getPixelForValue:B.noop,getValueForPixel:B.noop,getPixelForTick:function(t){var e=this,n=e.options.offset;if(e.isHorizontal()){var i=(e.width-(e.paddingLeft+e.paddingRight))/Math.max(e._ticks.length-(n?0:1),1),a=i*t+e.paddingLeft;n&&(a+=i/2);var r=e.left+Math.round(a);return r+=e.isFullWidth()?e.margins.left:0}var o=e.height-(e.paddingTop+e.paddingBottom);return e.top+t*(o/(e._ticks.length-1))},getPixelForDecimal:function(t){var e=this;if(e.isHorizontal()){var n=(e.width-(e.paddingLeft+e.paddingRight))*t+e.paddingLeft,i=e.left+Math.round(n);return i+=e.isFullWidth()?e.margins.left:0}return e.top+t*e.height},getBasePixel:function(){return this.getPixelForValue(this.getBaseValue())},getBaseValue:function(){var t=this.min,e=this.max;return this.beginAtZero?0:t<0&&e<0?e:0r.width-(r.paddingLeft+r.paddingRight)&&(e=1+Math.floor((h+s.autoSkipPadding)*l/(r.width-(r.paddingLeft+r.paddingRight)))),a&&al.height-e.height&&(h="bottom");var c=(u.left+u.right)/2,f=(u.top+u.bottom)/2;i="center"===h?(n=function(t){return t<=c},function(t){return c=l.width-e.width/2}),a=function(t){return t+e.width+s.caretSize+s.caretPadding>l.width},r=function(t){return t-e.width-s.caretSize-s.caretPadding<0},o=function(t){return t<=f?"top":"bottom"},n(s.x)?(d="left",a(s.x)&&(d="center",h=o(s.y))):i(s.x)&&(d="right",r(s.x)&&(d="center",h=o(s.y)));var g=t._options;return{xAlign:g.xAlign?g.xAlign:d,yAlign:g.yAlign?g.yAlign:h}}(this,T=function(t,e){var n=t._chart.ctx,i=2*e.yPadding,a=0,r=e.body,o=r.reduce(function(t,e){return t+e.before.length+e.lines.length+e.after.length},0);o+=e.beforeBody.length+e.afterBody.length;var s=e.title.length,l=e.footer.length,u=e.titleFontSize,d=e.bodyFontSize,h=e.footerFontSize;i+=s*u,i+=s?(s-1)*e.titleSpacing:0,i+=s?e.titleMarginBottom:0,i+=o*d,i+=o?(o-1)*e.bodySpacing:0,i+=l?e.footerMarginTop:0,i+=l*h,i+=l?(l-1)*e.footerSpacing:0;var c=0,f=function(t){a=Math.max(a,n.measureText(t).width+c)};return n.font=R.fontString(u,e._titleFontStyle,e._titleFontFamily),R.each(e.title,f),n.font=R.fontString(d,e._bodyFontStyle,e._bodyFontFamily),R.each(e.beforeBody.concat(e.afterBody),f),c=e.displayColors?d+2:0,R.each(r,function(t){R.each(t.before,f),R.each(t.lines,f),R.each(t.after,f)}),c=0,n.font=R.fontString(h,e._footerFontStyle,e._footerFontFamily),R.each(e.footer,f),{width:a+=2*e.xPadding,height:i}}(this,M)),i=M,a=T,r=C,o=_._chart,s=i.x,l=i.y,u=i.caretSize,d=i.caretPadding,h=i.cornerRadius,c=r.xAlign,f=r.yAlign,g=u+d,m=h+d,"right"===c?s-=a.width:"center"===c&&((s-=a.width/2)+a.width>o.width&&(s=o.width-a.width),s<0&&(s=0)),"top"===f?l+=g:l-="bottom"===f?a.height+g:a.height/2,"center"===f?"left"===c?s+=g:"right"===c&&(s-=g):"left"===c?s-=m:"right"===c&&(s+=m),P={x:s,y:l}}else M.opacity=0;return M.xAlign=C.xAlign,M.yAlign=C.yAlign,M.x=P.x,M.y=P.y,M.width=T.width,M.height=T.height,M.caretX=O.x,M.caretY=O.y,_._model=M,t&&k.custom&&k.custom.call(_,M),_},drawCaret:function(t,e){var n=this._chart.ctx,i=this._view,a=this.getCaretPosition(t,e,i);n.lineTo(a.x1,a.y1),n.lineTo(a.x2,a.y2),n.lineTo(a.x3,a.y3)},getCaretPosition:function(t,e,n){var i,a,r,o,s,l,u=n.caretSize,d=n.cornerRadius,h=n.xAlign,c=n.yAlign,f=t.x,g=t.y,m=e.width,p=e.height;if("center"===c)s=g+p/2,l="left"===h?(a=(i=f)-u,r=i,o=s+u,s-u):(a=(i=f+m)+u,r=i,o=s-u,s+u);else if(r=(i="left"===h?(a=f+d+u)-u:"right"===h?(a=f+m-d-u)-u:(a=n.caretX)-u,a+u),"top"===c)s=(o=g)-u,l=o;else{s=(o=g+p)+u,l=o;var v=r;r=i,i=v}return{x1:i,x2:a,x3:r,y1:o,y2:s,y3:l}},drawTitle:function(t,e,n,i){var a=e.title;if(a.length){n.textAlign=e._titleAlign,n.textBaseline="top";var r,o,s=e.titleFontSize,l=e.titleSpacing;for(n.fillStyle=c(e.titleFontColor,i),n.font=R.fontString(s,e._titleFontStyle,e._titleFontFamily),r=0,o=a.length;r=n.innerRadius&&r<=n.outerRadius;return l&&u}return!1},getCenterPoint:function(){var t=this._view,e=(t.startAngle+t.endAngle)/2,n=(t.innerRadius+t.outerRadius)/2;return{x:t.x+Math.cos(e)*n,y:t.y+Math.sin(e)*n}},getArea:function(){var t=this._view;return Math.PI*((t.endAngle-t.startAngle)/(2*Math.PI))*(Math.pow(t.outerRadius,2)-Math.pow(t.innerRadius,2))},tooltipPosition:function(){var t=this._view,e=t.startAngle+(t.endAngle-t.startAngle)/2,n=(t.outerRadius-t.innerRadius)/2+t.innerRadius;return{x:t.x+Math.cos(e)*n,y:t.y+Math.sin(e)*n}},draw:function(){var t=this._chart.ctx,e=this._view,n=e.startAngle,i=e.endAngle;t.beginPath(),t.arc(e.x,e.y,e.outerRadius,n,i),t.arc(e.x,e.y,e.innerRadius,i,n,!0),t.closePath(),t.strokeStyle=e.borderColor,t.lineWidth=e.borderWidth,t.fillStyle=e.backgroundColor,t.fill(),t.lineJoin="bevel",e.borderWidth&&t.stroke()}})},{26:26,27:27,46:46}],38:[function(t,e,n){"use strict";var i=t(26),a=t(27),d=t(46),h=i.global;i._set("global",{elements:{line:{tension:.4,backgroundColor:h.defaultColor,borderWidth:3,borderColor:h.defaultColor,borderCapStyle:"butt",borderDash:[],borderDashOffset:0,borderJoinStyle:"miter",capBezierPoints:!0,fill:!0}}}),e.exports=a.extend({draw:function(){var t,e,n,i,a=this._view,r=this._chart.ctx,o=a.spanGaps,s=this._children.slice(),l=h.elements.line,u=-1;for(this._loop&&s.length&&s.push(s[0]),r.save(),r.lineCap=a.borderCapStyle||l.borderCapStyle,r.setLineDash&&r.setLineDash(a.borderDash||l.borderDash),r.lineDashOffset=a.borderDashOffset||l.borderDashOffset,r.lineJoin=a.borderJoinStyle||l.borderJoinStyle,r.lineWidth=a.borderWidth||l.borderWidth,r.strokeStyle=a.borderColor||h.defaultColor,r.beginPath(),u=-1,t=0;t=t.left&&1.01*t.right>=n.x&&n.y>=t.top&&1.01*t.bottom>=n.y)&&(i.strokeStyle=e.borderColor||h,i.lineWidth=d.valueOrDefault(e.borderWidth,u.global.elements.point.borderWidth),i.fillStyle=e.backgroundColor||h,d.canvas.drawPoint(i,a,o,s,l,r))}})},{26:26,27:27,46:46}],40:[function(t,e,n){"use strict";var i=t(26),a=t(27);function l(t){return void 0!==t._view.width}function r(t){var e,n,i,a,r=t._view;if(l(t)){var o=r.width/2;e=r.x-o,n=r.x+o,i=Math.min(r.y,r.base),a=Math.max(r.y,r.base)}else{var s=r.height/2;e=Math.min(r.x,r.base),n=Math.max(r.x,r.base),i=r.y-s,a=r.y+s}return{left:e,top:i,right:n,bottom:a}}i._set("global",{elements:{rectangle:{backgroundColor:i.global.defaultColor,borderColor:i.global.defaultColor,borderSkipped:"bottom",borderWidth:0}}}),e.exports=a.extend({draw:function(){var t,e,n,i,a,r,o,s=this._chart.ctx,l=this._view,u=l.borderWidth;if(o=l.horizontal?(t=l.base,e=l.x,n=l.y-l.height/2,i=l.y+l.height/2,a=t=i.left&&t<=i.right&&e>=i.top&&e<=i.bottom}return n},inLabelRange:function(t,e){if(!this._view)return!1;var n=r(this);return l(this)?t>=n.left&&t<=n.right:e>=n.top&&e<=n.bottom},inXRange:function(t){var e=r(this);return t>=e.left&&t<=e.right},inYRange:function(t){var e=r(this);return t>=e.top&&t<=e.bottom},getCenterPoint:function(){var t,e,n=this._view;return e=l(this)?(t=n.x,(n.y+n.base)/2):(t=(n.x+n.base)/2,n.y),{x:t,y:e}},getArea:function(){var t=this._view;return t.width*Math.abs(t.y-t.base)},tooltipPosition:function(){var t=this._view;return{x:t.x,y:t.y}}})},{26:26,27:27}],41:[function(t,e,n){"use strict";e.exports={},e.exports.Arc=t(37),e.exports.Line=t(38),e.exports.Point=t(39),e.exports.Rectangle=t(40)},{37:37,38:38,39:39,40:40}],42:[function(t,e,n){"use strict";var i=t(43);n=e.exports={clear:function(t){t.ctx.clearRect(0,0,t.width,t.height)},roundedRect:function(t,e,n,i,a,r){if(r){var o=Math.min(r,a/2-1e-7,i/2-1e-7);t.moveTo(e+o,n),t.lineTo(e+i-o,n),t.arcTo(e+i,n,e+i,n+o,o),t.lineTo(e+i,n+a-o),t.arcTo(e+i,n+a,e+i-o,n+a,o),t.lineTo(e+o,n+a),t.arcTo(e,n+a,e,n+a-o,o),t.lineTo(e,n+o),t.arcTo(e,n,e+o,n,o),t.closePath(),t.moveTo(e,n)}else t.rect(e,n,i,a)},drawPoint:function(t,e,n,i,a,r){var o,s,l,u,d,h;if(r=r||0,!e||"object"!=typeof e||"[object HTMLImageElement]"!==(o=e.toString())&&"[object HTMLCanvasElement]"!==o){if(!(isNaN(n)||n<=0)){switch(t.save(),t.translate(i,a),t.rotate(r*Math.PI/180),t.beginPath(),e){default:t.arc(0,0,n,0,2*Math.PI),t.closePath();break;case"triangle":d=(s=3*n/Math.sqrt(3))*Math.sqrt(3)/2,t.moveTo(-s/2,d/3),t.lineTo(s/2,d/3),t.lineTo(0,-2*d/3),t.closePath();break;case"rect":h=1/Math.SQRT2*n,t.rect(-h,-h,2*h,2*h);break;case"rectRounded":var c=n/Math.SQRT2,f=-c,g=-c,m=Math.SQRT2*n;this.roundedRect(t,f,g,m,m,.425*n);break;case"rectRot":h=1/Math.SQRT2*n,t.moveTo(-h,0),t.lineTo(0,h),t.lineTo(h,0),t.lineTo(0,-h),t.closePath();break;case"cross":t.moveTo(0,n),t.lineTo(0,-n),t.moveTo(-n,0),t.lineTo(n,0);break;case"crossRot":l=Math.cos(Math.PI/4)*n,u=Math.sin(Math.PI/4)*n,t.moveTo(-l,-u),t.lineTo(l,u),t.moveTo(-l,u),t.lineTo(l,-u);break;case"star":t.moveTo(0,n),t.lineTo(0,-n),t.moveTo(-n,0),t.lineTo(n,0),l=Math.cos(Math.PI/4)*n,u=Math.sin(Math.PI/4)*n,t.moveTo(-l,-u),t.lineTo(l,u),t.moveTo(-l,u),t.lineTo(l,-u);break;case"line":t.moveTo(-n,0),t.lineTo(n,0);break;case"dash":t.moveTo(0,0),t.lineTo(n,0)}t.fill(),t.stroke(),t.restore()}}else t.drawImage(e,i-e.width/2,a-e.height/2,e.width,e.height)},clipArea:function(t,e){t.save(),t.beginPath(),t.rect(e.left,e.top,e.right-e.left,e.bottom-e.top),t.clip()},unclipArea:function(t){t.restore()},lineTo:function(t,e,n,i){if(n.steppedLine)return"after"===n.steppedLine&&!i||"after"!==n.steppedLine&&i?t.lineTo(e.x,n.y):t.lineTo(n.x,e.y),void t.lineTo(n.x,n.y);n.tension?t.bezierCurveTo(i?e.controlPointPreviousX:e.controlPointNextX,i?e.controlPointPreviousY:e.controlPointNextY,i?n.controlPointNextX:n.controlPointPreviousX,i?n.controlPointNextY:n.controlPointPreviousY,n.x,n.y):t.lineTo(n.x,n.y)}};i.clear=n.clear,i.drawRoundedRectangle=function(t){t.beginPath(),n.roundedRect.apply(n,arguments)}},{43:43}],43:[function(t,e,n){"use strict";var i,d={noop:function(){},uid:(i=0,function(){return i++}),isNullOrUndef:function(t){return null==t},isArray:Array.isArray?Array.isArray:function(t){return"[object Array]"===Object.prototype.toString.call(t)},isObject:function(t){return null!==t&&"[object Object]"===Object.prototype.toString.call(t)},valueOrDefault:function(t,e){return void 0===t?e:t},valueAtIndexOrDefault:function(t,e,n){return d.valueOrDefault(d.isArray(t)?t[e]:t,n)},callback:function(t,e,n){if(t&&"function"==typeof t.call)return t.apply(n,e)},each:function(t,e,n,i){var a,r,o;if(d.isArray(t))if(r=t.length,i)for(a=r-1;0<=a;a--)e.call(n,t[a],a);else for(a=0;a
';var a=e.childNodes[0],r=e.childNodes[1];e._reset=function(){a.scrollLeft=1e6,a.scrollTop=1e6,r.scrollLeft=1e6,r.scrollTop=1e6};var o=function(){e._reset(),t()};return y(a,"scroll",o.bind(a,"expand")),y(r,"scroll",o.bind(r,"shrink")),e}((r=!(i=function(){if(h.resizer)return t(x("resize",n))}),o=[],function(){o=Array.prototype.slice.call(arguments),a=a||this,r||(r=!0,f.requestAnimFrame.call(window,function(){r=!1,i.apply(a,o)}))}));l=function(){if(h.resizer){var t=e.parentNode;t&&t!==c.parentNode&&t.insertBefore(c,t.firstChild),c._reset()}},u=(s=e)[g]||(s[g]={}),d=u.renderProxy=function(t){t.animationName===v&&l()},f.each(b,function(t){y(s,t,d)}),u.reflow=!!s.offsetParent,s.classList.add(p)}function r(t){var e,n,i,a=t[g]||{},r=a.resizer;delete a.resizer,n=(e=t)[g]||{},(i=n.renderProxy)&&(f.each(b,function(t){o(e,t,i)}),delete n.renderProxy),e.classList.remove(p),r&&r.parentNode&&r.parentNode.removeChild(r)}e.exports={_enabled:"undefined"!=typeof window&&"undefined"!=typeof document,initialize:function(){var t,e,n,i="from{opacity:0.99}to{opacity:1}";e="@-webkit-keyframes "+v+"{"+i+"}@keyframes "+v+"{"+i+"}."+p+"{-webkit-animation:"+v+" 0.001s;animation:"+v+" 0.001s;}",n=(t=this)._style||document.createElement("style"),t._style||(e="/* Chart.js */\n"+e,(t._style=n).setAttribute("type","text/css"),document.getElementsByTagName("head")[0].appendChild(n)),n.appendChild(document.createTextNode(e))},acquireContext:function(t,e){"string"==typeof t?t=document.getElementById(t):t.length&&(t=t[0]),t&&t.canvas&&(t=t.canvas);var n=t&&t.getContext&&t.getContext("2d");return n&&n.canvas===t?(function(t,e){var n=t.style,i=t.getAttribute("height"),a=t.getAttribute("width");if(t[g]={initial:{height:i,width:a,style:{display:n.display,height:n.height,width:n.width}}},n.display=n.display||"block",null===a||""===a){var r=l(t,"width");void 0!==r&&(t.width=r)}if(null===i||""===i)if(""===t.style.height)t.height=t.width/(e.options.aspectRatio||2);else{var o=l(t,"height");void 0!==r&&(t.height=o)}}(t,e),n):null},releaseContext:function(t){var n=t.canvas;if(n[g]){var i=n[g].initial;["height","width"].forEach(function(t){var e=i[t];f.isNullOrUndef(e)?n.removeAttribute(t):n.setAttribute(t,e)}),f.each(i.style||{},function(t,e){n.style[e]=t}),n.width=n.width,delete n[g]}},addEventListener:function(r,t,o){var e=r.canvas;if("resize"!==t){var n=o[g]||(o[g]={});y(e,t,(n.proxies||(n.proxies={}))[r.id+"_"+t]=function(t){var e,n,i,a;o((n=r,i=s[(e=t).type]||e.type,a=f.getRelativePosition(e,n),x(i,n,a.x,a.y,e)))})}else a(e,o,r)},removeEventListener:function(t,e,n){var i=t.canvas;if("resize"!==e){var a=((n[g]||{}).proxies||{})[t.id+"_"+e];a&&o(i,e,a)}else r(i)}},f.addEvent=y,f.removeEvent=o},{46:46}],49:[function(t,e,n){"use strict";var i=t(46),a=t(47),r=t(48),o=r._enabled?r:a;e.exports=i.extend({initialize:function(){},acquireContext:function(){},releaseContext:function(){},addEventListener:function(){},removeEventListener:function(){}},o)},{46:46,47:47,48:48}],50:[function(t,e,n){"use strict";e.exports={},e.exports.filler=t(51),e.exports.legend=t(52),e.exports.title=t(53)},{51:51,52:52,53:53}],51:[function(t,e,n){"use strict";var u=t(26),c=t(41),d=t(46);u._set("global",{plugins:{filler:{propagate:!0}}});var f={dataset:function(t){var e=t.fill,n=t.chart,i=n.getDatasetMeta(e),a=i&&n.isDatasetVisible(e)&&i.dataset._children||[],r=a.length||0;return r?function(t,e){return e');for(var n=0;n'),t.data.datasets[n].label&&e.push(t.data.datasets[n].label),e.push("");return e.push(""),e.join("")}});var o=i.extend({initialize:function(t){C.extend(this,t),this.legendHitBoxes=[],this.doughnutMode=!1},beforeUpdate:r,update:function(t,e,n){var i=this;return i.beforeUpdate(),i.maxWidth=t,i.maxHeight=e,i.margins=n,i.beforeSetDimensions(),i.setDimensions(),i.afterSetDimensions(),i.beforeBuildLabels(),i.buildLabels(),i.afterBuildLabels(),i.beforeFit(),i.fit(),i.afterFit(),i.afterUpdate(),i.minSize},afterUpdate:r,beforeSetDimensions:r,setDimensions:function(){var t=this;t.isHorizontal()?(t.width=t.maxWidth,t.left=0,t.right=t.width):(t.height=t.maxHeight,t.top=0,t.bottom=t.height),t.paddingLeft=0,t.paddingTop=0,t.paddingRight=0,t.paddingBottom=0,t.minSize={width:0,height:0}},afterSetDimensions:r,beforeBuildLabels:r,buildLabels:function(){var e=this,n=e.options.labels||{},t=C.callback(n.generateLabels,[e.chart],e)||[];n.filter&&(t=t.filter(function(t){return n.filter(t,e.chart.data)})),e.options.reverse&&t.reverse(),e.legendItems=t},afterBuildLabels:r,beforeFit:r,fit:function(){var i=this,t=i.options,a=t.labels,e=t.display,r=i.ctx,n=D.global,o=C.valueOrDefault,s=o(a.fontSize,n.defaultFontSize),l=o(a.fontStyle,n.defaultFontStyle),u=o(a.fontFamily,n.defaultFontFamily),d=C.fontString(s,l,u),h=i.legendHitBoxes=[],c=i.minSize,f=i.isHorizontal();if(c.height=f?(c.width=i.maxWidth,e?10:0):(c.width=e?10:0,i.maxHeight),e)if(r.font=d,f){var g=i.lineWidths=[0],m=i.legendItems.length?s+a.padding:0;r.textAlign="left",r.textBaseline="top",C.each(i.legendItems,function(t,e){var n=P(a,s)+s/2+r.measureText(t.text).width;g[g.length-1]+n+a.padding>=i.width&&(m+=s+a.padding,g[g.length]=i.left),h[e]={left:0,top:0,width:n,height:s},g[g.length-1]+=n+a.padding}),c.height+=m}else{var p=a.padding,v=i.columnWidths=[],b=a.padding,y=0,x=0,_=s+p;C.each(i.legendItems,function(t,e){var n=P(a,s)+s/2+r.measureText(t.text).width;x+_>c.height&&(b+=y+a.padding,v.push(y),x=y=0),y=Math.max(y,n),x+=_,h[e]={left:0,top:0,width:n,height:s}}),b+=y,v.push(y),c.width+=b}i.width=c.width,i.height=c.height},afterFit:r,isHorizontal:function(){return"top"===this.options.position||"bottom"===this.options.position},draw:function(){var h=this,c=h.options,f=c.labels,g=D.global,m=g.elements.line,p=h.width,v=h.lineWidths;if(c.display){var b,y=h.ctx,x=C.valueOrDefault,t=x(f.fontColor,g.defaultFontColor),_=x(f.fontSize,g.defaultFontSize),e=x(f.fontStyle,g.defaultFontStyle),n=x(f.fontFamily,g.defaultFontFamily),i=C.fontString(_,e,n);y.textAlign="left",y.textBaseline="middle",y.lineWidth=.5,y.strokeStyle=t,y.fillStyle=t,y.font=i;var k=P(f,_),w=h.legendHitBoxes,M=h.isHorizontal();b=M?{x:h.left+(p-v[0])/2,y:h.top+f.padding,line:0}:{x:h.left+f.padding,y:h.top+f.padding,line:0};var S=_+f.padding;C.each(h.legendItems,function(t,e){var n,i,a,r,o,s=y.measureText(t.text).width,l=k+_/2+s,u=b.x,d=b.y;M?p<=u+l&&(d=b.y+=S,b.line++,u=b.x=h.left+(p-v[b.line])/2):d+S>h.bottom&&(u=b.x=u+h.columnWidths[b.line]+f.padding,d=b.y=h.top+f.padding,b.line++),function(t,e,n){if(!(isNaN(k)||k<=0)){y.save(),y.fillStyle=x(n.fillStyle,g.defaultColor),y.lineCap=x(n.lineCap,m.borderCapStyle),y.lineDashOffset=x(n.lineDashOffset,m.borderDashOffset),y.lineJoin=x(n.lineJoin,m.borderJoinStyle),y.lineWidth=x(n.lineWidth,m.borderWidth),y.strokeStyle=x(n.strokeStyle,g.defaultColor);var i=0===x(n.lineWidth,m.borderWidth);if(y.setLineDash&&y.setLineDash(x(n.lineDash,m.borderDash)),c.labels&&c.labels.usePointStyle){var a=_*Math.SQRT2/2,r=a/Math.SQRT2,o=t+r,s=e+r;C.canvas.drawPoint(y,n.pointStyle,a,o,s)}else i||y.strokeRect(t,e,k,_),y.fillRect(t,e,k,_);y.restore()}}(u,d,t),w[e].left=u,w[e].top=d,n=t,i=s,r=k+(a=_/2)+u,o=d+a,y.fillText(n.text,r,o),n.hidden&&(y.beginPath(),y.lineWidth=2,y.moveTo(r,o),y.lineTo(r+i,o),y.stroke()),M?b.x+=l+f.padding:b.y+=S})}},handleEvent:function(t){var e=this,n=e.options,i="mouseup"===t.type?"click":t.type,a=!1;if("mousemove"===i){if(!n.onHover)return}else{if("click"!==i)return;if(!n.onClick)return}var r=t.x,o=t.y;if(r>=e.left&&r<=e.right&&o>=e.top&&o<=e.bottom)for(var s=e.legendHitBoxes,l=0;l=u.left&&r<=u.left+u.width&&o>=u.top&&o<=u.top+u.height){if("click"===i){n.onClick.call(e,t.native,e.legendItems[l]),a=!0;break}if("mousemove"===i){n.onHover.call(e,t.native,e.legendItems[l]),a=!0;break}}}return a}});function s(t,e){var n=new o({ctx:t.ctx,options:e,chart:t});a.configure(t,n,e),a.addBox(t,n),t.legend=n}e.exports={id:"legend",_element:o,beforeInit:function(t){var e=t.options.legend;e&&s(t,e)},beforeUpdate:function(t){var e=t.options.legend,n=t.legend;e?(C.mergeIf(e,D.global.legend),n?(a.configure(t,n,e),n.options=e):s(t,e)):n&&(a.removeBox(t,n),delete t.legend)},afterEvent:function(t,e){var n=t.legend;n&&n.handleEvent(e)}}},{26:26,27:27,31:31,46:46}],53:[function(t,e,n){"use strict";var _=t(26),i=t(27),k=t(46),a=t(31),r=k.noop;_._set("global",{title:{display:!1,fontStyle:"bold",fullWidth:!0,lineHeight:1.2,padding:10,position:"top",text:"",weight:2e3}});var o=i.extend({initialize:function(t){k.extend(this,t),this.legendHitBoxes=[]},beforeUpdate:r,update:function(t,e,n){var i=this;return i.beforeUpdate(),i.maxWidth=t,i.maxHeight=e,i.margins=n,i.beforeSetDimensions(),i.setDimensions(),i.afterSetDimensions(),i.beforeBuildLabels(),i.buildLabels(),i.afterBuildLabels(),i.beforeFit(),i.fit(),i.afterFit(),i.afterUpdate(),i.minSize},afterUpdate:r,beforeSetDimensions:r,setDimensions:function(){var t=this;t.isHorizontal()?(t.width=t.maxWidth,t.left=0,t.right=t.width):(t.height=t.maxHeight,t.top=0,t.bottom=t.height),t.paddingLeft=0,t.paddingTop=0,t.paddingRight=0,t.paddingBottom=0,t.minSize={width:0,height:0}},afterSetDimensions:r,beforeBuildLabels:r,buildLabels:r,afterBuildLabels:r,beforeFit:r,fit:function(){var t=k.valueOrDefault,e=this.options,n=e.display,i=t(e.fontSize,_.global.defaultFontSize),a=this.minSize,r=k.isArray(e.text)?e.text.length:1,o=k.options.toLineHeight(e.lineHeight,i),s=n?r*o+2*e.padding:0;this.isHorizontal()?(a.width=this.maxWidth,a.height=s):(a.width=s,a.height=this.maxHeight),this.width=a.width,this.height=a.height},afterFit:r,isHorizontal:function(){var t=this.options.position;return"top"===t||"bottom"===t},draw:function(){var t=this.ctx,e=k.valueOrDefault,n=this.options,i=_.global;if(n.display){var a,r,o,s=e(n.fontSize,i.defaultFontSize),l=e(n.fontStyle,i.defaultFontStyle),u=e(n.fontFamily,i.defaultFontFamily),d=k.fontString(s,l,u),h=k.options.toLineHeight(n.lineHeight,s),c=h/2+n.padding,f=0,g=this.top,m=this.left,p=this.bottom,v=this.right;t.fillStyle=e(n.fontColor,i.defaultFontColor),t.font=d,this.isHorizontal()?(r=m+(v-m)/2,o=g+c,a=v-m):(r="left"===n.position?m+c:v-c,o=g+(p-g)/2,a=p-g,f=Math.PI*("left"===n.position?-.5:.5)),t.save(),t.translate(r,o),t.rotate(f),t.textAlign="center",t.textBaseline="middle";var b=n.text;if(k.isArray(b))for(var y=0,x=0;xo.max&&(o.max=n))})});o.min=isFinite(o.min)&&!isNaN(o.min)?o.min:0,o.max=isFinite(o.max)&&!isNaN(o.max)?o.max:1,this.handleTickRangeOptions()},getTickLimit:function(){var t,e=this.options.ticks;if(this.isHorizontal())t=Math.min(e.maxTicksLimit?e.maxTicksLimit:11,Math.ceil(this.width/50));else{var n=h.valueOrDefault(e.fontSize,i.global.defaultFontSize);t=Math.min(e.maxTicksLimit?e.maxTicksLimit:11,Math.ceil(this.height/(2*n)))}return t},handleDirectionalChanges:function(){this.isHorizontal()||this.ticks.reverse()},getLabelForIndex:function(t,e){return+this.getRightValue(this.chart.data.datasets[e].data[t])},getPixelForValue:function(t){var e=this.start,n=+this.getRightValue(t),i=this.end-e;return this.isHorizontal()?this.left+this.width/i*(n-e):this.bottom-this.height/i*(n-e)},getValueForPixel:function(t){var e=this.isHorizontal(),n=e?this.width:this.height,i=(e?t-this.left:this.bottom-t)/n;return this.start+(this.end-this.start)*i},getPixelForTick:function(t){return this.getPixelForValue(this.ticksAsNumbers[t])}});a.registerScaleType("linear",n,e)}},{26:26,34:34,35:35,46:46}],56:[function(t,e,n){"use strict";var h=t(46),i=t(33);e.exports=function(t){var e=h.noop;t.LinearScaleBase=i.extend({getRightValue:function(t){return"string"==typeof t?+t:i.prototype.getRightValue.call(this,t)},handleTickRangeOptions:function(){var t=this,e=t.options.ticks;if(e.beginAtZero){var n=h.sign(t.min),i=h.sign(t.max);n<0&&i<0?t.max=0:0=t.max&&(a?t.max=t.min+1:t.min=t.max-1),t.min===t.max&&(t.max++,e.beginAtZero||t.min--)},getTickLimit:e,handleDirectionalChanges:e,buildTicks:function(){var t=this,e=t.options.ticks,n=t.getTickLimit(),i={maxTicks:n=Math.max(2,n),min:e.min,max:e.max,precision:e.precision,stepSize:h.valueOrDefault(e.fixedStepSize,e.stepSize)},a=t.ticks=function(t,e){var n,i,a,r=[];if(t.stepSize&&0o.max&&(o.max=n),0!==n&&(null===o.minNotZero||no.r&&(o.r=g.end,s.r=c),m.starto.b&&(o.b=m.end,s.b=c)}t.setReductions(r,o,s)}(this):(t=this,e=Math.min(t.height/2,t.width/2),t.drawingArea=Math.round(e),t.setCenterPoint(0,0,0,0))},setReductions:function(t,e,n){var i=e.l/Math.sin(n.l),a=Math.max(e.r-this.width,0)/Math.sin(n.r),r=-e.t/Math.cos(n.t),o=-Math.max(e.b-this.height,0)/Math.cos(n.b);i=s(i),a=s(a),r=s(r),o=s(o),this.drawingArea=Math.min(Math.round(t-(i+a)/2),Math.round(t-(r+o)/2)),this.setCenterPoint(i,a,r,o)},setCenterPoint:function(t,e,n,i){var a=this,r=a.width-e-a.drawingArea,o=t+a.drawingArea,s=n+a.drawingArea,l=a.height-i-a.drawingArea;a.xCenter=Math.round((o+r)/2+a.left),a.yCenter=Math.round((s+l)/2+a.top)},getIndexAngle:function(t){return t*(2*Math.PI/b(this))+(this.chart.options&&this.chart.options.startAngle?this.chart.options.startAngle:0)*Math.PI*2/360},getDistanceFromCenterForValue:function(t){if(null===t)return 0;var e=this.drawingArea/(this.max-this.min);return this.options.ticks.reverse?(this.max-t)*e:(t-this.min)*e},getPointPosition:function(t,e){var n=this.getIndexAngle(t)-Math.PI/2;return{x:Math.round(Math.cos(n)*e)+this.xCenter,y:Math.round(Math.sin(n)*e)+this.yCenter}},getPointPositionForValue:function(t,e){return this.getPointPosition(t,this.getDistanceFromCenterForValue(e))},getBasePosition:function(){var t=this.min,e=this.max;return this.getPointPositionForValue(0,this.beginAtZero?0:t<0&&e<0?e:0>1)-1]||null,r=t[i],!a)return{lo:null,hi:r};if(r[e]n))return{lo:a,hi:r};s=i-1}}return{lo:r,hi:null}}(t,e,n),r=a.lo?a.hi?a.lo:t[t.length-2]:t[0],o=a.lo?a.hi?a.hi:t[t.length-1]:t[1],s=o[e]-r[e],l=s?(n-r[e])/s:0,u=(o[i]-r[i])*l;return r[i]+u}function M(t,e){var n=e.parser,i=e.parser||e.format;return"function"==typeof n?n(t):"string"==typeof t&&"string"==typeof i?y(t,i):(t instanceof y||(t=y(t)),t.isValid()?t:"function"==typeof i?i(t):t)}function S(t,e){if(p.isNullOrUndef(t))return null;var n=e.options.time,i=M(e.getRightValue(t),n);return i.isValid()?(n.round&&i.startOf(n.round),i.valueOf()):null}function D(t){for(var e=_.indexOf(t)+1,n=_.length;e=_.indexOf(e);a--)if(r=_[a],x[r].common&&o.as(r)>=t.length)return r;return _[e?_.indexOf(e):0]}(b,p.minUnit,c.min,c.max),c._majorUnit=D(c._unit),c._table=function(t,e,n,i){if("linear"===i||!t.length)return[{time:e,pos:0},{time:n,pos:1}];var a,r,o,s,l,u=[],d=[e];for(a=0,r=t.length;a');var i=t.data,n=i.datasets,a=i.labels;if(n.length)for(var o=0;o'),a[o]&&e.push(a[o]),e.push("");return e.push(""),e.join("")},legend:{labels:{generateLabels:function(l){var u=l.data;return u.labels.length&&u.datasets.length?u.labels.map(function(t,e){var i=l.getDatasetMeta(0),n=u.datasets[0],a=i.data[e],o=a&&a.custom||{},r=A.valueAtIndexOrDefault,s=l.options.elements.arc;return{text:t,fillStyle:o.backgroundColor?o.backgroundColor:r(n.backgroundColor,e,s.backgroundColor),strokeStyle:o.borderColor?o.borderColor:r(n.borderColor,e,s.borderColor),lineWidth:o.borderWidth?o.borderWidth:r(n.borderWidth,e,s.borderWidth),hidden:isNaN(n.data[e])||i.data[e].hidden,index:e}}):[]}},onClick:function(t,e){var i,n,a,o=e.index,r=this.chart;for(i=0,n=(r.data.datasets||[]).length;i=Math.PI?-1:f<-Math.PI?1:0))+h,p=Math.cos(f),m=Math.sin(f),v=Math.cos(g),b=Math.sin(g),x=f<=0&&0<=g||f<=2*Math.PI&&2*Math.PI<=g,y=f<=.5*Math.PI&&.5*Math.PI<=g||f<=2.5*Math.PI&&2.5*Math.PI<=g,k=f<=-Math.PI&&-Math.PI<=g||f<=Math.PI&&Math.PI<=g,M=f<=.5*-Math.PI&&.5*-Math.PI<=g||f<=1.5*Math.PI&&1.5*Math.PI<=g,w=c/100,C=k?-1:Math.min(p*(p<0?1:w),v*(v<0?1:w)),S=M?-1:Math.min(m*(m<0?1:w),b*(b<0?1:w)),_=x?1:Math.max(p*(0');var i=t.data,n=i.datasets,a=i.labels;if(n.length)for(var o=0;o'),a[o]&&e.push(a[o]),e.push("");return e.push(""),e.join("")},legend:{labels:{generateLabels:function(s){var l=s.data;return l.labels.length&&l.datasets.length?l.labels.map(function(t,e){var i=s.getDatasetMeta(0),n=l.datasets[0],a=i.data[e].custom||{},o=k.valueAtIndexOrDefault,r=s.options.elements.arc;return{text:t,fillStyle:a.backgroundColor?a.backgroundColor:o(n.backgroundColor,e,r.backgroundColor),strokeStyle:a.borderColor?a.borderColor:o(n.borderColor,e,r.borderColor),lineWidth:a.borderWidth?a.borderWidth:o(n.borderWidth,e,r.borderWidth),hidden:isNaN(n.data[e])||i.data[e].hidden,index:e}}):[]}},onClick:function(t,e){var i,n,a,o=e.index,r=this.chart;for(i=0,n=(r.data.datasets||[]).length;i=e.numSteps?(o.callback(e.onAnimationComplete,[e],i),i.animating=!1,n.splice(a,1)):++a}}},{26:26,46:46}],24:[function(t,e,i){"use strict";var s=t(22),l=t(23),c=t(26),h=t(46),a=t(29),o=t(31),f=t(49),g=t(32),p=t(34),n=t(36);e.exports=function(u){function d(t){return"top"===t||"bottom"===t}u.types={},u.instances={},u.controllers={},h.extend(u.prototype,{construct:function(t,e){var i,n,a=this;(n=(i=(i=e)||{}).data=i.data||{}).datasets=n.datasets||[],n.labels=n.labels||[],i.options=h.configMerge(c.global,c[i.type],i.options||{}),e=i;var o=f.acquireContext(t,e),r=o&&o.canvas,s=r&&r.height,l=r&&r.width;a.id=h.uid(),a.ctx=o,a.canvas=r,a.config=e,a.width=l,a.height=s,a.aspectRatio=s?l/s:null,a.options=e.options,a._bufferedRender=!1,(a.chart=a).controller=a,u.instances[a.id]=a,Object.defineProperty(a,"data",{get:function(){return a.config.data},set:function(t){a.config.data=t}}),o&&r?(a.initialize(),a.update()):console.error("Failed to create chart: can't acquire context from the given item")},initialize:function(){var t=this;return g.notify(t,"beforeInit"),h.retinaScale(t,t.options.devicePixelRatio),t.bindEvents(),t.options.responsive&&t.resize(!0),t.ensureScalesHaveIDs(),t.buildOrUpdateScales(),t.initToolTip(),g.notify(t,"afterInit"),t},clear:function(){return h.canvas.clear(this),this},stop:function(){return l.cancelAnimation(this),this},resize:function(t){var e=this,i=e.options,n=e.canvas,a=i.maintainAspectRatio&&e.aspectRatio||null,o=Math.max(0,Math.floor(h.getMaximumWidth(n))),r=Math.max(0,Math.floor(a?o/a:h.getMaximumHeight(n)));if((e.width!==o||e.height!==r)&&(n.width=e.width=o,n.height=e.height=r,n.style.width=o+"px",n.style.height=r+"px",h.retinaScale(e,i.devicePixelRatio),!t)){var s={width:o,height:r};g.notify(e,"resize",[s]),e.options.onResize&&e.options.onResize(e,s),e.stop(),e.update({duration:e.options.responsiveAnimationDuration})}},ensureScalesHaveIDs:function(){var t=this.options,e=t.scales||{},i=t.scale;h.each(e.xAxes,function(t,e){t.id=t.id||"x-axis-"+e}),h.each(e.yAxes,function(t,e){t.id=t.id||"y-axis-"+e}),i&&(i.id=i.id||"scale")},buildOrUpdateScales:function(){var r=this,t=r.options,s=r.scales||{},e=[],l=Object.keys(s).reduce(function(t,e){return t[e]=!1,t},{});t.scales&&(e=e.concat((t.scales.xAxes||[]).map(function(t){return{options:t,dtype:"category",dposition:"bottom"}}),(t.scales.yAxes||[]).map(function(t){return{options:t,dtype:"linear",dposition:"left"}}))),t.scale&&e.push({options:t.scale,dtype:"radialLinear",isDefault:!0,dposition:"chartArea"}),h.each(e,function(t){var e=t.options,i=e.id,n=h.valueOrDefault(e.type,t.dtype);d(e.position)!==d(t.dposition)&&(e.position=t.dposition),l[i]=!0;var a=null;if(i in s&&s[i].type===n)(a=s[i]).options=e,a.ctx=r.ctx,a.chart=r;else{var o=p.getScaleConstructor(n);if(!o)return;a=new o({id:i,type:n,options:e,ctx:r.ctx,chart:r}),s[a.id]=a}a.mergeTicksOptions(),t.isDefault&&(r.scale=a)}),h.each(l,function(t,e){t||delete s[e]}),r.scales=s,p.addScalesToLayout(this)},buildOrUpdateControllers:function(){var o=this,r=[],s=[];return h.each(o.data.datasets,function(t,e){var i=o.getDatasetMeta(e),n=t.type||o.config.type;if(i.type&&i.type!==n&&(o.destroyDatasetMeta(e),i=o.getDatasetMeta(e)),i.type=n,r.push(i.type),i.controller)i.controller.updateIndex(e),i.controller.linkScales();else{var a=u.controllers[i.type];if(void 0===a)throw new Error('"'+i.type+'" is not a chart type.');i.controller=new a(o,e),s.push(i.controller)}},o),s},resetElements:function(){var i=this;h.each(i.data.datasets,function(t,e){i.getDatasetMeta(e).controller.reset()},i)},reset:function(){this.resetElements(),this.tooltip.initialize()},update:function(t){var e,i,n=this;if(t&&"object"==typeof t||(t={duration:t,lazy:arguments[1]}),i=(e=n).options,h.each(e.scales,function(t){o.removeBox(e,t)}),i=h.configMerge(u.defaults.global,u.defaults[e.config.type],i),e.options=e.config.options=i,e.ensureScalesHaveIDs(),e.buildOrUpdateScales(),e.tooltip._options=i.tooltips,e.tooltip.initialize(),g._invalidate(n),!1!==g.notify(n,"beforeUpdate")){n.tooltip._data=n.data;var a=n.buildOrUpdateControllers();h.each(n.data.datasets,function(t,e){n.getDatasetMeta(e).controller.buildOrUpdateElements()},n),n.updateLayout(),n.options.animation&&n.options.animation.duration&&h.each(a,function(t){t.reset()}),n.updateDatasets(),n.tooltip.initialize(),n.lastActive=[],g.notify(n,"afterUpdate"),n._bufferedRender?n._bufferedRequest={duration:t.duration,easing:t.easing,lazy:t.lazy}:n.render(t)}},updateLayout:function(){!1!==g.notify(this,"beforeLayout")&&(o.update(this,this.width,this.height),g.notify(this,"afterScaleUpdate"),g.notify(this,"afterLayout"))},updateDatasets:function(){if(!1!==g.notify(this,"beforeDatasetsUpdate")){for(var t=0,e=this.data.datasets.length;t=e[t].length&&e[t].push({}),!e[t][a].type||r.type&&r.type!==e[t][a].type?g.merge(e[t][a],[l.getScaleDefaults(o),r]):g.merge(e[t][a],r)}else g._merger(t,e,i,n)}})},g.where=function(t,e){if(g.isArray(t)&&Array.prototype.filter)return t.filter(e);var i=[];return g.each(t,function(t){e(t)&&i.push(t)}),i},g.findIndex=Array.prototype.findIndex?function(t,e,i){return t.findIndex(e,i)}:function(t,e,i){i=void 0===i?t:i;for(var n=0,a=t.length;n=t.length-1?t[0]:t[e+1]:e>=t.length-1?t[t.length-1]:t[e+1]},g.previousItem=function(t,e,i){return i?e<=0?t[t.length-1]:t[e-1]:e<=0?t[0]:t[e-1]},g.niceNum=function(t,e){var i=Math.floor(g.log10(t)),n=t/Math.pow(10,i);return(e?n<1.5?1:n<3?2:n<7?5:10:n<=1?1:n<=2?2:n<=5?5:10)*Math.pow(10,i)},g.requestAnimFrame="undefined"==typeof window?function(t){t()}:window.requestAnimationFrame||window.webkitRequestAnimationFrame||window.mozRequestAnimationFrame||window.oRequestAnimationFrame||window.msRequestAnimationFrame||function(t){return window.setTimeout(t,1e3/60)},g.getRelativePosition=function(t,e){var i,n,a=t.originalEvent||t,o=t.target||t.srcElement,r=o.getBoundingClientRect(),s=a.touches;n=s&&0i.length){for(var l=0;le&&(e=t.length)}),e},g.color=n?function(t){return t instanceof CanvasGradient&&(t=a.global.defaultColor),n(t)}:function(t){return console.error("Color.js not found!"),t},g.getHoverColor=function(t){return t instanceof CanvasPattern?t:g.color(t).saturate(.5).darken(.1).rgbString()}}},{26:26,3:3,34:34,46:46}],29:[function(t,e,i){"use strict";var n=t(46);function s(t,e){return t.native?{x:t.x,y:t.y}:n.getRelativePosition(t,e)}function l(t,e){var i,n,a,o,r;for(n=0,o=t.data.datasets.length;nt.maxHeight){o--;break}o++,l=r*s}t.labelRotation=o},afterCalculateTickRotation:function(){H.callback(this.options.afterCalculateTickRotation,[this])},beforeFit:function(){H.callback(this.options.beforeFit,[this])},fit:function(){var t=this,e=t.minSize={width:0,height:0},i=k(t._ticks),n=t.options,a=n.ticks,o=n.scaleLabel,r=n.gridLines,s=n.display,l=t.isHorizontal(),u=w(a),d=n.gridLines.tickMarkLength;if(e.width=l?t.isFullWidth()?t.maxWidth-t.margins.left-t.margins.right:t.maxWidth:s&&r.drawTicks?d:0,e.height=l?s&&r.drawTicks?d:0:t.maxHeight,o.display&&s){var c=C(o)+H.options.toPadding(o.padding).height;l?e.height+=c:e.width+=c}if(a.display&&s){var h=H.longestText(t.ctx,u.font,i,t.longestTextCache),f=H.numberOfLabelLines(i),g=.5*u.size,p=t.options.ticks.padding;if(l){t.longestLabelWidth=h;var m=H.toRadians(t.labelRotation),v=Math.cos(m),b=Math.sin(m)*h+u.size*f+g*(f-1)+g;e.height=Math.min(t.maxHeight,e.height+b+p),t.ctx.font=u.font;var x=M(t.ctx,i[0],u.font),y=M(t.ctx,i[i.length-1],u.font);0!==t.labelRotation?(t.paddingLeft="bottom"===n.position?v*x+3:v*g+3,t.paddingRight="bottom"===n.position?v*g+3:v*y+3):(t.paddingLeft=x/2+3,t.paddingRight=y/2+3)}else a.mirror?h=0:h+=p+g,e.width=Math.min(t.maxWidth,e.width+h),t.paddingTop=u.size/2,t.paddingBottom=u.size/2}t.handleMargins(),t.width=e.width,t.height=e.height},handleMargins:function(){var t=this;t.margins&&(t.paddingLeft=Math.max(t.paddingLeft-t.margins.left,0),t.paddingTop=Math.max(t.paddingTop-t.margins.top,0),t.paddingRight=Math.max(t.paddingRight-t.margins.right,0),t.paddingBottom=Math.max(t.paddingBottom-t.margins.bottom,0))},afterFit:function(){H.callback(this.options.afterFit,[this])},isHorizontal:function(){return"top"===this.options.position||"bottom"===this.options.position},isFullWidth:function(){return this.options.fullWidth},getRightValue:function(t){if(H.isNullOrUndef(t))return NaN;if("number"==typeof t&&!isFinite(t))return NaN;if(t)if(this.isHorizontal()){if(void 0!==t.x)return this.getRightValue(t.x)}else if(void 0!==t.y)return this.getRightValue(t.y);return t},getLabelForIndex:H.noop,getPixelForValue:H.noop,getValueForPixel:H.noop,getPixelForTick:function(t){var e=this,i=e.options.offset;if(e.isHorizontal()){var n=(e.width-(e.paddingLeft+e.paddingRight))/Math.max(e._ticks.length-(i?0:1),1),a=n*t+e.paddingLeft;i&&(a+=n/2);var o=e.left+Math.round(a);return o+=e.isFullWidth()?e.margins.left:0}var r=e.height-(e.paddingTop+e.paddingBottom);return e.top+t*(r/(e._ticks.length-1))},getPixelForDecimal:function(t){var e=this;if(e.isHorizontal()){var i=(e.width-(e.paddingLeft+e.paddingRight))*t+e.paddingLeft,n=e.left+Math.round(i);return n+=e.isFullWidth()?e.margins.left:0}return e.top+t*e.height},getBasePixel:function(){return this.getPixelForValue(this.getBaseValue())},getBaseValue:function(){var t=this.min,e=this.max;return this.beginAtZero?0:t<0&&e<0?e:0o.width-(o.paddingLeft+o.paddingRight)&&(e=1+Math.floor((c+s.autoSkipPadding)*l/(o.width-(o.paddingLeft+o.paddingRight)))),a&&al.height-e.height&&(c="bottom");var h=(u.left+u.right)/2,f=(u.top+u.bottom)/2;n="center"===c?(i=function(t){return t<=h},function(t){return h=l.width-e.width/2}),a=function(t){return t+e.width+s.caretSize+s.caretPadding>l.width},o=function(t){return t-e.width-s.caretSize-s.caretPadding<0},r=function(t){return t<=f?"top":"bottom"},i(s.x)?(d="left",a(s.x)&&(d="center",c=r(s.y))):n(s.x)&&(d="right",o(s.x)&&(d="center",c=r(s.y)));var g=t._options;return{xAlign:g.xAlign?g.xAlign:d,yAlign:g.yAlign?g.yAlign:c}}(this,I=function(t,e){var i=t._chart.ctx,n=2*e.yPadding,a=0,o=e.body,r=o.reduce(function(t,e){return t+e.before.length+e.lines.length+e.after.length},0);r+=e.beforeBody.length+e.afterBody.length;var s=e.title.length,l=e.footer.length,u=e.titleFontSize,d=e.bodyFontSize,c=e.footerFontSize;n+=s*u,n+=s?(s-1)*e.titleSpacing:0,n+=s?e.titleMarginBottom:0,n+=r*d,n+=r?(r-1)*e.bodySpacing:0,n+=l?e.footerMarginTop:0,n+=l*c,n+=l?(l-1)*e.footerSpacing:0;var h=0,f=function(t){a=Math.max(a,i.measureText(t).width+h)};return i.font=R.fontString(u,e._titleFontStyle,e._titleFontFamily),R.each(e.title,f),i.font=R.fontString(d,e._bodyFontStyle,e._bodyFontFamily),R.each(e.beforeBody.concat(e.afterBody),f),h=e.displayColors?d+2:0,R.each(o,function(t){R.each(t.before,f),R.each(t.lines,f),R.each(t.after,f)}),h=0,i.font=R.fontString(c,e._footerFontStyle,e._footerFontFamily),R.each(e.footer,f),{width:a+=2*e.xPadding,height:n}}(this,C)),n=C,a=I,o=D,r=k._chart,s=n.x,l=n.y,u=n.caretSize,d=n.caretPadding,c=n.cornerRadius,h=o.xAlign,f=o.yAlign,g=u+d,p=c+d,"right"===h?s-=a.width:"center"===h&&((s-=a.width/2)+a.width>r.width&&(s=r.width-a.width),s<0&&(s=0)),"top"===f?l+=g:l-="bottom"===f?a.height+g:a.height/2,"center"===f?"left"===h?s+=g:"right"===h&&(s-=g):"left"===h?s-=p:"right"===h&&(s+=p),P={x:s,y:l}}else C.opacity=0;return C.xAlign=D.xAlign,C.yAlign=D.yAlign,C.x=P.x,C.y=P.y,C.width=I.width,C.height=I.height,C.caretX=A.x,C.caretY=A.y,k._model=C,t&&M.custom&&M.custom.call(k,C),k},drawCaret:function(t,e){var i=this._chart.ctx,n=this._view,a=this.getCaretPosition(t,e,n);i.lineTo(a.x1,a.y1),i.lineTo(a.x2,a.y2),i.lineTo(a.x3,a.y3)},getCaretPosition:function(t,e,i){var n,a,o,r,s,l,u=i.caretSize,d=i.cornerRadius,c=i.xAlign,h=i.yAlign,f=t.x,g=t.y,p=e.width,m=e.height;if("center"===h)s=g+m/2,l="left"===c?(a=(n=f)-u,o=n,r=s+u,s-u):(a=(n=f+p)+u,o=n,r=s-u,s+u);else if(o=(n="left"===c?(a=f+d+u)-u:"right"===c?(a=f+p-d-u)-u:(a=i.caretX)-u,a+u),"top"===h)s=(r=g)-u,l=r;else{s=(r=g+m)+u,l=r;var v=o;o=n,n=v}return{x1:n,x2:a,x3:o,y1:r,y2:s,y3:l}},drawTitle:function(t,e,i,n){var a=e.title;if(a.length){i.textAlign=e._titleAlign,i.textBaseline="top";var o,r,s=e.titleFontSize,l=e.titleSpacing;for(i.fillStyle=h(e.titleFontColor,n),i.font=R.fontString(s,e._titleFontStyle,e._titleFontFamily),o=0,r=a.length;o=i.innerRadius&&o<=i.outerRadius;return l&&u}return!1},getCenterPoint:function(){var t=this._view,e=(t.startAngle+t.endAngle)/2,i=(t.innerRadius+t.outerRadius)/2;return{x:t.x+Math.cos(e)*i,y:t.y+Math.sin(e)*i}},getArea:function(){var t=this._view;return Math.PI*((t.endAngle-t.startAngle)/(2*Math.PI))*(Math.pow(t.outerRadius,2)-Math.pow(t.innerRadius,2))},tooltipPosition:function(){var t=this._view,e=t.startAngle+(t.endAngle-t.startAngle)/2,i=(t.outerRadius-t.innerRadius)/2+t.innerRadius;return{x:t.x+Math.cos(e)*i,y:t.y+Math.sin(e)*i}},draw:function(){var t=this._chart.ctx,e=this._view,i=e.startAngle,n=e.endAngle;t.beginPath(),t.arc(e.x,e.y,e.outerRadius,i,n),t.arc(e.x,e.y,e.innerRadius,n,i,!0),t.closePath(),t.strokeStyle=e.borderColor,t.lineWidth=e.borderWidth,t.fillStyle=e.backgroundColor,t.fill(),t.lineJoin="bevel",e.borderWidth&&t.stroke()}})},{26:26,27:27,46:46}],38:[function(t,e,i){"use strict";var n=t(26),a=t(27),d=t(46),c=n.global;n._set("global",{elements:{line:{tension:.4,backgroundColor:c.defaultColor,borderWidth:3,borderColor:c.defaultColor,borderCapStyle:"butt",borderDash:[],borderDashOffset:0,borderJoinStyle:"miter",capBezierPoints:!0,fill:!0}}}),e.exports=a.extend({draw:function(){var t,e,i,n,a=this._view,o=this._chart.ctx,r=a.spanGaps,s=this._children.slice(),l=c.elements.line,u=-1;for(this._loop&&s.length&&s.push(s[0]),o.save(),o.lineCap=a.borderCapStyle||l.borderCapStyle,o.setLineDash&&o.setLineDash(a.borderDash||l.borderDash),o.lineDashOffset=a.borderDashOffset||l.borderDashOffset,o.lineJoin=a.borderJoinStyle||l.borderJoinStyle,o.lineWidth=a.borderWidth||l.borderWidth,o.strokeStyle=a.borderColor||c.defaultColor,o.beginPath(),u=-1,t=0;t=t.left&&1.01*t.right>=i.x&&i.y>=t.top&&1.01*t.bottom>=i.y)&&(n.strokeStyle=e.borderColor||c,n.lineWidth=d.valueOrDefault(e.borderWidth,u.global.elements.point.borderWidth),n.fillStyle=e.backgroundColor||c,d.canvas.drawPoint(n,a,r,s,l,o))}})},{26:26,27:27,46:46}],40:[function(t,e,i){"use strict";var n=t(26),a=t(27);function l(t){return void 0!==t._view.width}function o(t){var e,i,n,a,o=t._view;if(l(t)){var r=o.width/2;e=o.x-r,i=o.x+r,n=Math.min(o.y,o.base),a=Math.max(o.y,o.base)}else{var s=o.height/2;e=Math.min(o.x,o.base),i=Math.max(o.x,o.base),n=o.y-s,a=o.y+s}return{left:e,top:n,right:i,bottom:a}}n._set("global",{elements:{rectangle:{backgroundColor:n.global.defaultColor,borderColor:n.global.defaultColor,borderSkipped:"bottom",borderWidth:0}}}),e.exports=a.extend({draw:function(){var t,e,i,n,a,o,r,s=this._chart.ctx,l=this._view,u=l.borderWidth;if(r=l.horizontal?(t=l.base,e=l.x,i=l.y-l.height/2,n=l.y+l.height/2,a=t=n.left&&t<=n.right&&e>=n.top&&e<=n.bottom}return i},inLabelRange:function(t,e){if(!this._view)return!1;var i=o(this);return l(this)?t>=i.left&&t<=i.right:e>=i.top&&e<=i.bottom},inXRange:function(t){var e=o(this);return t>=e.left&&t<=e.right},inYRange:function(t){var e=o(this);return t>=e.top&&t<=e.bottom},getCenterPoint:function(){var t,e,i=this._view;return e=l(this)?(t=i.x,(i.y+i.base)/2):(t=(i.x+i.base)/2,i.y),{x:t,y:e}},getArea:function(){var t=this._view;return t.width*Math.abs(t.y-t.base)},tooltipPosition:function(){var t=this._view;return{x:t.x,y:t.y}}})},{26:26,27:27}],41:[function(t,e,i){"use strict";e.exports={},e.exports.Arc=t(37),e.exports.Line=t(38),e.exports.Point=t(39),e.exports.Rectangle=t(40)},{37:37,38:38,39:39,40:40}],42:[function(t,e,i){"use strict";var n=t(43);i=e.exports={clear:function(t){t.ctx.clearRect(0,0,t.width,t.height)},roundedRect:function(t,e,i,n,a,o){if(o){var r=Math.min(o,a/2-1e-7,n/2-1e-7);t.moveTo(e+r,i),t.lineTo(e+n-r,i),t.arcTo(e+n,i,e+n,i+r,r),t.lineTo(e+n,i+a-r),t.arcTo(e+n,i+a,e+n-r,i+a,r),t.lineTo(e+r,i+a),t.arcTo(e,i+a,e,i+a-r,r),t.lineTo(e,i+r),t.arcTo(e,i,e+r,i,r),t.closePath(),t.moveTo(e,i)}else t.rect(e,i,n,a)},drawPoint:function(t,e,i,n,a,o){var r,s,l,u,d,c;if(o=o||0,!e||"object"!=typeof e||"[object HTMLImageElement]"!==(r=e.toString())&&"[object HTMLCanvasElement]"!==r){if(!(isNaN(i)||i<=0)){switch(t.save(),t.translate(n,a),t.rotate(o*Math.PI/180),t.beginPath(),e){default:t.arc(0,0,i,0,2*Math.PI),t.closePath();break;case"triangle":d=(s=3*i/Math.sqrt(3))*Math.sqrt(3)/2,t.moveTo(-s/2,d/3),t.lineTo(s/2,d/3),t.lineTo(0,-2*d/3),t.closePath();break;case"rect":c=1/Math.SQRT2*i,t.rect(-c,-c,2*c,2*c);break;case"rectRounded":var h=i/Math.SQRT2,f=-h,g=-h,p=Math.SQRT2*i;this.roundedRect(t,f,g,p,p,.425*i);break;case"rectRot":c=1/Math.SQRT2*i,t.moveTo(-c,0),t.lineTo(0,c),t.lineTo(c,0),t.lineTo(0,-c),t.closePath();break;case"cross":t.moveTo(0,i),t.lineTo(0,-i),t.moveTo(-i,0),t.lineTo(i,0);break;case"crossRot":l=Math.cos(Math.PI/4)*i,u=Math.sin(Math.PI/4)*i,t.moveTo(-l,-u),t.lineTo(l,u),t.moveTo(-l,u),t.lineTo(l,-u);break;case"star":t.moveTo(0,i),t.lineTo(0,-i),t.moveTo(-i,0),t.lineTo(i,0),l=Math.cos(Math.PI/4)*i,u=Math.sin(Math.PI/4)*i,t.moveTo(-l,-u),t.lineTo(l,u),t.moveTo(-l,u),t.lineTo(l,-u);break;case"line":t.moveTo(-i,0),t.lineTo(i,0);break;case"dash":t.moveTo(0,0),t.lineTo(i,0)}t.fill(),t.stroke(),t.restore()}}else t.drawImage(e,n-e.width/2,a-e.height/2,e.width,e.height)},clipArea:function(t,e){t.save(),t.beginPath(),t.rect(e.left,e.top,e.right-e.left,e.bottom-e.top),t.clip()},unclipArea:function(t){t.restore()},lineTo:function(t,e,i,n){if(i.steppedLine)return"after"===i.steppedLine&&!n||"after"!==i.steppedLine&&n?t.lineTo(e.x,i.y):t.lineTo(i.x,e.y),void t.lineTo(i.x,i.y);i.tension?t.bezierCurveTo(n?e.controlPointPreviousX:e.controlPointNextX,n?e.controlPointPreviousY:e.controlPointNextY,n?i.controlPointNextX:i.controlPointPreviousX,n?i.controlPointNextY:i.controlPointPreviousY,i.x,i.y):t.lineTo(i.x,i.y)}};n.clear=i.clear,n.drawRoundedRectangle=function(t){t.beginPath(),i.roundedRect.apply(i,arguments)}},{43:43}],43:[function(t,e,i){"use strict";var n,d={noop:function(){},uid:(n=0,function(){return n++}),isNullOrUndef:function(t){return null==t},isArray:Array.isArray?Array.isArray:function(t){return"[object Array]"===Object.prototype.toString.call(t)},isObject:function(t){return null!==t&&"[object Object]"===Object.prototype.toString.call(t)},valueOrDefault:function(t,e){return void 0===t?e:t},valueAtIndexOrDefault:function(t,e,i){return d.valueOrDefault(d.isArray(t)?t[e]:t,i)},callback:function(t,e,i){if(t&&"function"==typeof t.call)return t.apply(i,e)},each:function(t,e,i,n){var a,o,r;if(d.isArray(t))if(o=t.length,n)for(a=o-1;0<=a;a--)e.call(i,t[a],a);else for(a=0;a
';var a=e.childNodes[0],o=e.childNodes[1];e._reset=function(){a.scrollLeft=1e6,a.scrollTop=1e6,o.scrollLeft=1e6,o.scrollTop=1e6};var r=function(){e._reset(),t()};return x(a,"scroll",r.bind(a,"expand")),x(o,"scroll",r.bind(o,"shrink")),e}((o=!(n=function(){if(c.resizer)return t(y("resize",i))}),r=[],function(){r=Array.prototype.slice.call(arguments),a=a||this,o||(o=!0,f.requestAnimFrame.call(window,function(){o=!1,n.apply(a,r)}))}));l=function(){if(c.resizer){var t=e.parentNode;t&&t!==h.parentNode&&t.insertBefore(h,t.firstChild),h._reset()}},u=(s=e)[g]||(s[g]={}),d=u.renderProxy=function(t){t.animationName===v&&l()},f.each(b,function(t){x(s,t,d)}),u.reflow=!!s.offsetParent,s.classList.add(m)}function o(t){var e,i,n,a=t[g]||{},o=a.resizer;delete a.resizer,i=(e=t)[g]||{},(n=i.renderProxy)&&(f.each(b,function(t){r(e,t,n)}),delete i.renderProxy),e.classList.remove(m),o&&o.parentNode&&o.parentNode.removeChild(o)}e.exports={_enabled:"undefined"!=typeof window&&"undefined"!=typeof document,initialize:function(){var t,e,i,n="from{opacity:0.99}to{opacity:1}";e="@-webkit-keyframes "+v+"{"+n+"}@keyframes "+v+"{"+n+"}."+m+"{-webkit-animation:"+v+" 0.001s;animation:"+v+" 0.001s;}",i=(t=this)._style||document.createElement("style"),t._style||(e="/* Chart.js */\n"+e,(t._style=i).setAttribute("type","text/css"),document.getElementsByTagName("head")[0].appendChild(i)),i.appendChild(document.createTextNode(e))},acquireContext:function(t,e){"string"==typeof t?t=document.getElementById(t):t.length&&(t=t[0]),t&&t.canvas&&(t=t.canvas);var i=t&&t.getContext&&t.getContext("2d");return i&&i.canvas===t?(function(t,e){var i=t.style,n=t.getAttribute("height"),a=t.getAttribute("width");if(t[g]={initial:{height:n,width:a,style:{display:i.display,height:i.height,width:i.width}}},i.display=i.display||"block",null===a||""===a){var o=l(t,"width");void 0!==o&&(t.width=o)}if(null===n||""===n)if(""===t.style.height)t.height=t.width/(e.options.aspectRatio||2);else{var r=l(t,"height");void 0!==o&&(t.height=r)}}(t,e),i):null},releaseContext:function(t){var i=t.canvas;if(i[g]){var n=i[g].initial;["height","width"].forEach(function(t){var e=n[t];f.isNullOrUndef(e)?i.removeAttribute(t):i.setAttribute(t,e)}),f.each(n.style||{},function(t,e){i.style[e]=t}),i.width=i.width,delete i[g]}},addEventListener:function(o,t,r){var e=o.canvas;if("resize"!==t){var i=r[g]||(r[g]={});x(e,t,(i.proxies||(i.proxies={}))[o.id+"_"+t]=function(t){var e,i,n,a;r((i=o,n=s[(e=t).type]||e.type,a=f.getRelativePosition(e,i),y(n,i,a.x,a.y,e)))})}else a(e,r,o)},removeEventListener:function(t,e,i){var n=t.canvas;if("resize"!==e){var a=((i[g]||{}).proxies||{})[t.id+"_"+e];a&&r(n,e,a)}else o(n)}},f.addEvent=x,f.removeEvent=r},{46:46}],49:[function(t,e,i){"use strict";var n=t(46),a=t(47),o=t(48),r=o._enabled?o:a;e.exports=n.extend({initialize:function(){},acquireContext:function(){},releaseContext:function(){},addEventListener:function(){},removeEventListener:function(){}},r)},{46:46,47:47,48:48}],50:[function(t,e,i){"use strict";e.exports={},e.exports.filler=t(51),e.exports.legend=t(52),e.exports.title=t(53)},{51:51,52:52,53:53}],51:[function(t,e,i){"use strict";var u=t(26),h=t(41),d=t(46);u._set("global",{plugins:{filler:{propagate:!0}}});var f={dataset:function(t){var e=t.fill,i=t.chart,n=i.getDatasetMeta(e),a=n&&i.isDatasetVisible(e)&&n.dataset._children||[],o=a.length||0;return o?function(t,e){return e');for(var i=0;i'),t.data.datasets[i].label&&e.push(t.data.datasets[i].label),e.push("");return e.push(""),e.join("")}});var r=n.extend({initialize:function(t){D.extend(this,t),this.legendHitBoxes=[],this.doughnutMode=!1},beforeUpdate:o,update:function(t,e,i){var n=this;return n.beforeUpdate(),n.maxWidth=t,n.maxHeight=e,n.margins=i,n.beforeSetDimensions(),n.setDimensions(),n.afterSetDimensions(),n.beforeBuildLabels(),n.buildLabels(),n.afterBuildLabels(),n.beforeFit(),n.fit(),n.afterFit(),n.afterUpdate(),n.minSize},afterUpdate:o,beforeSetDimensions:o,setDimensions:function(){var t=this;t.isHorizontal()?(t.width=t.maxWidth,t.left=0,t.right=t.width):(t.height=t.maxHeight,t.top=0,t.bottom=t.height),t.paddingLeft=0,t.paddingTop=0,t.paddingRight=0,t.paddingBottom=0,t.minSize={width:0,height:0}},afterSetDimensions:o,beforeBuildLabels:o,buildLabels:function(){var e=this,i=e.options.labels||{},t=D.callback(i.generateLabels,[e.chart],e)||[];i.filter&&(t=t.filter(function(t){return i.filter(t,e.chart.data)})),e.options.reverse&&t.reverse(),e.legendItems=t},afterBuildLabels:o,beforeFit:o,fit:function(){var n=this,t=n.options,a=t.labels,e=t.display,o=n.ctx,i=_.global,r=D.valueOrDefault,s=r(a.fontSize,i.defaultFontSize),l=r(a.fontStyle,i.defaultFontStyle),u=r(a.fontFamily,i.defaultFontFamily),d=D.fontString(s,l,u),c=n.legendHitBoxes=[],h=n.minSize,f=n.isHorizontal();if(h.height=f?(h.width=n.maxWidth,e?10:0):(h.width=e?10:0,n.maxHeight),e)if(o.font=d,f){var g=n.lineWidths=[0],p=n.legendItems.length?s+a.padding:0;o.textAlign="left",o.textBaseline="top",D.each(n.legendItems,function(t,e){var i=P(a,s)+s/2+o.measureText(t.text).width;g[g.length-1]+i+a.padding>=n.width&&(p+=s+a.padding,g[g.length]=n.left),c[e]={left:0,top:0,width:i,height:s},g[g.length-1]+=i+a.padding}),h.height+=p}else{var m=a.padding,v=n.columnWidths=[],b=a.padding,x=0,y=0,k=s+m;D.each(n.legendItems,function(t,e){var i=P(a,s)+s/2+o.measureText(t.text).width;y+k>h.height&&(b+=x+a.padding,v.push(x),y=x=0),x=Math.max(x,i),y+=k,c[e]={left:0,top:0,width:i,height:s}}),b+=x,v.push(x),h.width+=b}n.width=h.width,n.height=h.height},afterFit:o,isHorizontal:function(){return"top"===this.options.position||"bottom"===this.options.position},draw:function(){var c=this,h=c.options,f=h.labels,g=_.global,p=g.elements.line,m=c.width,v=c.lineWidths;if(h.display){var b,x=c.ctx,y=D.valueOrDefault,t=y(f.fontColor,g.defaultFontColor),k=y(f.fontSize,g.defaultFontSize),e=y(f.fontStyle,g.defaultFontStyle),i=y(f.fontFamily,g.defaultFontFamily),n=D.fontString(k,e,i);x.textAlign="left",x.textBaseline="middle",x.lineWidth=.5,x.strokeStyle=t,x.fillStyle=t,x.font=n;var M=P(f,k),w=c.legendHitBoxes,C=c.isHorizontal();b=C?{x:c.left+(m-v[0])/2,y:c.top+f.padding,line:0}:{x:c.left+f.padding,y:c.top+f.padding,line:0};var S=k+f.padding;D.each(c.legendItems,function(t,e){var i,n,a,o,r,s=x.measureText(t.text).width,l=M+k/2+s,u=b.x,d=b.y;C?m<=u+l&&(d=b.y+=S,b.line++,u=b.x=c.left+(m-v[b.line])/2):d+S>c.bottom&&(u=b.x=u+c.columnWidths[b.line]+f.padding,d=b.y=c.top+f.padding,b.line++),function(t,e,i){if(!(isNaN(M)||M<=0)){x.save(),x.fillStyle=y(i.fillStyle,g.defaultColor),x.lineCap=y(i.lineCap,p.borderCapStyle),x.lineDashOffset=y(i.lineDashOffset,p.borderDashOffset),x.lineJoin=y(i.lineJoin,p.borderJoinStyle),x.lineWidth=y(i.lineWidth,p.borderWidth),x.strokeStyle=y(i.strokeStyle,g.defaultColor);var n=0===y(i.lineWidth,p.borderWidth);if(x.setLineDash&&x.setLineDash(y(i.lineDash,p.borderDash)),h.labels&&h.labels.usePointStyle){var a=k*Math.SQRT2/2,o=a/Math.SQRT2,r=t+o,s=e+o;D.canvas.drawPoint(x,i.pointStyle,a,r,s)}else n||x.strokeRect(t,e,M,k),x.fillRect(t,e,M,k);x.restore()}}(u,d,t),w[e].left=u,w[e].top=d,i=t,n=s,o=M+(a=k/2)+u,r=d+a,x.fillText(i.text,o,r),i.hidden&&(x.beginPath(),x.lineWidth=2,x.moveTo(o,r),x.lineTo(o+n,r),x.stroke()),C?b.x+=l+f.padding:b.y+=S})}},handleEvent:function(t){var e=this,i=e.options,n="mouseup"===t.type?"click":t.type,a=!1;if("mousemove"===n){if(!i.onHover)return}else{if("click"!==n)return;if(!i.onClick)return}var o=t.x,r=t.y;if(o>=e.left&&o<=e.right&&r>=e.top&&r<=e.bottom)for(var s=e.legendHitBoxes,l=0;l=u.left&&o<=u.left+u.width&&r>=u.top&&r<=u.top+u.height){if("click"===n){i.onClick.call(e,t.native,e.legendItems[l]),a=!0;break}if("mousemove"===n){i.onHover.call(e,t.native,e.legendItems[l]),a=!0;break}}}return a}});function s(t,e){var i=new r({ctx:t.ctx,options:e,chart:t});a.configure(t,i,e),a.addBox(t,i),t.legend=i}e.exports={id:"legend",_element:r,beforeInit:function(t){var e=t.options.legend;e&&s(t,e)},beforeUpdate:function(t){var e=t.options.legend,i=t.legend;e?(D.mergeIf(e,_.global.legend),i?(a.configure(t,i,e),i.options=e):s(t,e)):i&&(a.removeBox(t,i),delete t.legend)},afterEvent:function(t,e){var i=t.legend;i&&i.handleEvent(e)}}},{26:26,27:27,31:31,46:46}],53:[function(t,e,i){"use strict";var M=t(26),n=t(27),w=t(46),a=t(31),o=w.noop;M._set("global",{title:{display:!1,fontStyle:"bold",fullWidth:!0,lineHeight:1.2,padding:10,position:"top",text:"",weight:2e3}});var r=n.extend({initialize:function(t){w.extend(this,t),this.legendHitBoxes=[]},beforeUpdate:o,update:function(t,e,i){var n=this;return n.beforeUpdate(),n.maxWidth=t,n.maxHeight=e,n.margins=i,n.beforeSetDimensions(),n.setDimensions(),n.afterSetDimensions(),n.beforeBuildLabels(),n.buildLabels(),n.afterBuildLabels(),n.beforeFit(),n.fit(),n.afterFit(),n.afterUpdate(),n.minSize},afterUpdate:o,beforeSetDimensions:o,setDimensions:function(){var t=this;t.isHorizontal()?(t.width=t.maxWidth,t.left=0,t.right=t.width):(t.height=t.maxHeight,t.top=0,t.bottom=t.height),t.paddingLeft=0,t.paddingTop=0,t.paddingRight=0,t.paddingBottom=0,t.minSize={width:0,height:0}},afterSetDimensions:o,beforeBuildLabels:o,buildLabels:o,afterBuildLabels:o,beforeFit:o,fit:function(){var t=this,e=w.valueOrDefault,i=t.options,n=i.display,a=e(i.fontSize,M.global.defaultFontSize),o=t.minSize,r=w.isArray(i.text)?i.text.length:1,s=w.options.toLineHeight(i.lineHeight,a),l=n?r*s+2*i.padding:0;t.isHorizontal()?(o.width=t.maxWidth,o.height=l):(o.width=l,o.height=t.maxHeight),t.width=o.width,t.height=o.height},afterFit:o,isHorizontal:function(){var t=this.options.position;return"top"===t||"bottom"===t},draw:function(){var t=this,e=t.ctx,i=w.valueOrDefault,n=t.options,a=M.global;if(n.display){var o,r,s,l=i(n.fontSize,a.defaultFontSize),u=i(n.fontStyle,a.defaultFontStyle),d=i(n.fontFamily,a.defaultFontFamily),c=w.fontString(l,u,d),h=w.options.toLineHeight(n.lineHeight,l),f=h/2+n.padding,g=0,p=t.top,m=t.left,v=t.bottom,b=t.right;e.fillStyle=i(n.fontColor,a.defaultFontColor),e.font=c,t.isHorizontal()?(r=m+(b-m)/2,s=p+f,o=b-m):(r="left"===n.position?m+f:b-f,s=p+(v-p)/2,o=v-p,g=Math.PI*("left"===n.position?-.5:.5)),e.save(),e.translate(r,s),e.rotate(g),e.textAlign="center",e.textBaseline="middle";var x=n.text;if(w.isArray(x))for(var y=0,k=0;kr.max&&(r.max=i))})});r.min=isFinite(r.min)&&!isNaN(r.min)?r.min:0,r.max=isFinite(r.max)&&!isNaN(r.max)?r.max:1,this.handleTickRangeOptions()},getTickLimit:function(){var t,e=this.options.ticks;if(this.isHorizontal())t=Math.min(e.maxTicksLimit?e.maxTicksLimit:11,Math.ceil(this.width/50));else{var i=c.valueOrDefault(e.fontSize,n.global.defaultFontSize);t=Math.min(e.maxTicksLimit?e.maxTicksLimit:11,Math.ceil(this.height/(2*i)))}return t},handleDirectionalChanges:function(){this.isHorizontal()||this.ticks.reverse()},getLabelForIndex:function(t,e){return+this.getRightValue(this.chart.data.datasets[e].data[t])},getPixelForValue:function(t){var e=this,i=e.start,n=+e.getRightValue(t),a=e.end-i;return e.isHorizontal()?e.left+e.width/a*(n-i):e.bottom-e.height/a*(n-i)},getValueForPixel:function(t){var e=this,i=e.isHorizontal(),n=i?e.width:e.height,a=(i?t-e.left:e.bottom-t)/n;return e.start+(e.end-e.start)*a},getPixelForTick:function(t){return this.getPixelForValue(this.ticksAsNumbers[t])}});a.registerScaleType("linear",i,e)}},{26:26,34:34,35:35,46:46}],56:[function(t,e,i){"use strict";var c=t(46),n=t(33);e.exports=function(t){var e=c.noop;t.LinearScaleBase=n.extend({getRightValue:function(t){return"string"==typeof t?+t:n.prototype.getRightValue.call(this,t)},handleTickRangeOptions:function(){var t=this,e=t.options.ticks;if(e.beginAtZero){var i=c.sign(t.min),n=c.sign(t.max);i<0&&n<0?t.max=0:0=t.max&&(a?t.max=t.min+1:t.min=t.max-1),t.min===t.max&&(t.max++,e.beginAtZero||t.min--)},getTickLimit:e,handleDirectionalChanges:e,buildTicks:function(){var t=this,e=t.options.ticks,i=t.getTickLimit(),n={maxTicks:i=Math.max(2,i),min:e.min,max:e.max,precision:e.precision,stepSize:c.valueOrDefault(e.fixedStepSize,e.stepSize)},a=t.ticks=function(t,e){var i,n,a,o=[];if(t.stepSize&&0r.max&&(r.max=i),0!==i&&(null===r.minNotZero||ir.r&&(r.r=g.end,s.r=h),p.startr.b&&(r.b=p.end,s.b=h)}t.setReductions(o,r,s)}(this):(t=this,e=Math.min(t.height/2,t.width/2),t.drawingArea=Math.round(e),t.setCenterPoint(0,0,0,0))},setReductions:function(t,e,i){var n=e.l/Math.sin(i.l),a=Math.max(e.r-this.width,0)/Math.sin(i.r),o=-e.t/Math.cos(i.t),r=-Math.max(e.b-this.height,0)/Math.cos(i.b);n=s(n),a=s(a),o=s(o),r=s(r),this.drawingArea=Math.min(Math.round(t-(n+a)/2),Math.round(t-(o+r)/2)),this.setCenterPoint(n,a,o,r)},setCenterPoint:function(t,e,i,n){var a=this,o=a.width-e-a.drawingArea,r=t+a.drawingArea,s=i+a.drawingArea,l=a.height-n-a.drawingArea;a.xCenter=Math.round((r+o)/2+a.left),a.yCenter=Math.round((s+l)/2+a.top)},getIndexAngle:function(t){return t*(2*Math.PI/b(this))+(this.chart.options&&this.chart.options.startAngle?this.chart.options.startAngle:0)*Math.PI*2/360},getDistanceFromCenterForValue:function(t){var e=this;if(null===t)return 0;var i=e.drawingArea/(e.max-e.min);return e.options.ticks.reverse?(e.max-t)*i:(t-e.min)*i},getPointPosition:function(t,e){var i=this.getIndexAngle(t)-Math.PI/2;return{x:Math.round(Math.cos(i)*e)+this.xCenter,y:Math.round(Math.sin(i)*e)+this.yCenter}},getPointPositionForValue:function(t,e){return this.getPointPosition(t,this.getDistanceFromCenterForValue(e))},getBasePosition:function(){var t=this.min,e=this.max;return this.getPointPositionForValue(0,this.beginAtZero?0:t<0&&e<0?e:0>1)-1]||null,o=t[n],!a)return{lo:null,hi:o};if(o[e]i))return{lo:a,hi:o};s=n-1}}return{lo:o,hi:null}}(t,e,i),o=a.lo?a.hi?a.lo:t[t.length-2]:t[0],r=a.lo?a.hi?a.hi:t[t.length-1]:t[1],s=r[e]-o[e],l=s?(i-o[e])/s:0,u=(r[n]-o[n])*l;return o[n]+u}function C(t,e){var i=e.parser,n=e.parser||e.format;return"function"==typeof i?i(t):"string"==typeof t&&"string"==typeof n?x(t,n):(t instanceof x||(t=x(t)),t.isValid()?t:"function"==typeof n?n(t):t)}function S(t,e){if(m.isNullOrUndef(t))return null;var i=e.options.time,n=C(e.getRightValue(t),i);return n.isValid()?(i.round&&n.startOf(i.round),n.valueOf()):null}function _(t){for(var e=k.indexOf(t)+1,i=k.length;e=k.indexOf(e);a--)if(o=k[a],y[o].common&&r.as(o)>=t.length)return o;return k[e?k.indexOf(e):0]}(b,m.minUnit,h.min,h.max),h._majorUnit=_(h._unit),h._table=function(t,e,i,n){if("linear"===n||!t.length)return[{time:e,pos:0},{time:i,pos:1}];var a,o,r,s,l,u=[],d=[e];for(a=0,o=t.length;a + + + + + +{ + "fontFamily": "cryptofont-webfont", + "majorVersion": 1, + "minorVersion": 0, + "fontURL": "https://alexanderpoellmann.com/cryptofont", + "description": "A sleek webfont for your favourite cryptocurrencies.\nFont generated by IcoMoon.", + "copyright": "Copyright 2017 Alexander Manfred Poellmann", + "designer": "Alexander Manfred Poellmann", + "designerURL": "https://alexanderpoellmann.com", + "license": "SIL OFL 1.1", + "licenseURL": "http://scripts.sil.org/OFL", + "version": "Version 1.0", + "fontId": "cryptofont-webfont", + "psName": "cryptofont-webfont", + "subFamily": "Regular", + "fullName": "cryptofont-webfont" +} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/public/assets/lib/cryptofont/fonts/cryptofont-webfont.ttf b/public/assets/lib/cryptofont/fonts/cryptofont-webfont.ttf new file mode 100755 index 0000000..f0c58b6 Binary files /dev/null and b/public/assets/lib/cryptofont/fonts/cryptofont-webfont.ttf differ diff --git a/public/assets/lib/cryptofont/fonts/cryptofont-webfont.woff b/public/assets/lib/cryptofont/fonts/cryptofont-webfont.woff new file mode 100755 index 0000000..0e376ca Binary files /dev/null and b/public/assets/lib/cryptofont/fonts/cryptofont-webfont.woff differ diff --git a/public/assets/lib/datatables.net-dt/License.txt b/public/assets/lib/datatables.net-dt/License.txt new file mode 100755 index 0000000..379a7e7 --- /dev/null +++ b/public/assets/lib/datatables.net-dt/License.txt @@ -0,0 +1,20 @@ +Copyright SpryMedia Limited and other contributors +http://datatables.net + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. \ No newline at end of file diff --git a/public/assets/lib/datatables.net-dt/css/jquery.dataTables.min.css b/public/assets/lib/datatables.net-dt/css/jquery.dataTables.min.css new file mode 100755 index 0000000..aba113c --- /dev/null +++ b/public/assets/lib/datatables.net-dt/css/jquery.dataTables.min.css @@ -0,0 +1 @@ +table.dataTable{width:100%;margin:0 auto;clear:both;border-collapse:separate;border-spacing:0}table.dataTable thead th,table.dataTable tfoot th{font-weight:bold}table.dataTable thead th,table.dataTable thead td{padding:10px 18px;border-bottom:1px solid #111111}table.dataTable thead th:active,table.dataTable thead td:active{outline:none}table.dataTable tfoot th,table.dataTable tfoot td{padding:10px 18px 6px 18px;border-top:1px solid #111111}table.dataTable thead .sorting,table.dataTable thead .sorting_asc,table.dataTable thead .sorting_desc,table.dataTable thead .sorting_asc_disabled,table.dataTable thead .sorting_desc_disabled{cursor:pointer;*cursor:hand;background-repeat:no-repeat;background-position:center right}table.dataTable thead .sorting{background-image:url("../images/sort_both.png")}table.dataTable thead .sorting_asc{background-image:url("../images/sort_asc.png")}table.dataTable thead .sorting_desc{background-image:url("../images/sort_desc.png")}table.dataTable thead .sorting_asc_disabled{background-image:url("../images/sort_asc_disabled.png")}table.dataTable thead .sorting_desc_disabled{background-image:url("../images/sort_desc_disabled.png")}table.dataTable tbody tr{background-color:white}table.dataTable tbody tr.selected{background-color:#b0bed9}table.dataTable tbody th,table.dataTable tbody td{padding:8px 10px}table.dataTable.row-border tbody th,table.dataTable.row-border tbody td,table.dataTable.display tbody th,table.dataTable.display tbody td{border-top:1px solid #dddddd}table.dataTable.row-border tbody tr:first-child th,table.dataTable.row-border tbody tr:first-child td,table.dataTable.display tbody tr:first-child th,table.dataTable.display tbody tr:first-child td{border-top:none}table.dataTable.cell-border tbody th,table.dataTable.cell-border tbody td{border-top:1px solid #dddddd;border-right:1px solid #dddddd}table.dataTable.cell-border tbody tr th:first-child,table.dataTable.cell-border tbody tr td:first-child{border-left:1px solid #dddddd}table.dataTable.cell-border tbody tr:first-child th,table.dataTable.cell-border tbody tr:first-child td{border-top:none}table.dataTable.stripe tbody tr.odd,table.dataTable.display tbody tr.odd{background-color:#f9f9f9}table.dataTable.stripe tbody tr.odd.selected,table.dataTable.display tbody tr.odd.selected{background-color:#abb9d3}table.dataTable.hover tbody tr:hover,table.dataTable.display tbody tr:hover{background-color:whitesmoke}table.dataTable.hover tbody tr:hover.selected,table.dataTable.display tbody tr:hover.selected{background-color:#a9b7d1}table.dataTable.order-column tbody tr>.sorting_1,table.dataTable.order-column tbody tr>.sorting_2,table.dataTable.order-column tbody tr>.sorting_3,table.dataTable.display tbody tr>.sorting_1,table.dataTable.display tbody tr>.sorting_2,table.dataTable.display tbody tr>.sorting_3{background-color:#f9f9f9}table.dataTable.order-column tbody tr.selected>.sorting_1,table.dataTable.order-column tbody tr.selected>.sorting_2,table.dataTable.order-column tbody tr.selected>.sorting_3,table.dataTable.display tbody tr.selected>.sorting_1,table.dataTable.display tbody tr.selected>.sorting_2,table.dataTable.display tbody tr.selected>.sorting_3{background-color:#acbad4}table.dataTable.display tbody tr.odd>.sorting_1,table.dataTable.order-column.stripe tbody tr.odd>.sorting_1{background-color:#f1f1f1}table.dataTable.display tbody tr.odd>.sorting_2,table.dataTable.order-column.stripe tbody tr.odd>.sorting_2{background-color:#f3f3f3}table.dataTable.display tbody tr.odd>.sorting_3,table.dataTable.order-column.stripe tbody tr.odd>.sorting_3{background-color:whitesmoke}table.dataTable.display tbody tr.odd.selected>.sorting_1,table.dataTable.order-column.stripe tbody tr.odd.selected>.sorting_1{background-color:#a6b3cd}table.dataTable.display tbody tr.odd.selected>.sorting_2,table.dataTable.order-column.stripe tbody tr.odd.selected>.sorting_2{background-color:#a7b5ce}table.dataTable.display tbody tr.odd.selected>.sorting_3,table.dataTable.order-column.stripe tbody tr.odd.selected>.sorting_3{background-color:#a9b6d0}table.dataTable.display tbody tr.even>.sorting_1,table.dataTable.order-column.stripe tbody tr.even>.sorting_1{background-color:#f9f9f9}table.dataTable.display tbody tr.even>.sorting_2,table.dataTable.order-column.stripe tbody tr.even>.sorting_2{background-color:#fbfbfb}table.dataTable.display tbody tr.even>.sorting_3,table.dataTable.order-column.stripe tbody tr.even>.sorting_3{background-color:#fdfdfd}table.dataTable.display tbody tr.even.selected>.sorting_1,table.dataTable.order-column.stripe tbody tr.even.selected>.sorting_1{background-color:#acbad4}table.dataTable.display tbody tr.even.selected>.sorting_2,table.dataTable.order-column.stripe tbody tr.even.selected>.sorting_2{background-color:#adbbd6}table.dataTable.display tbody tr.even.selected>.sorting_3,table.dataTable.order-column.stripe tbody tr.even.selected>.sorting_3{background-color:#afbdd8}table.dataTable.display tbody tr:hover>.sorting_1,table.dataTable.order-column.hover tbody tr:hover>.sorting_1{background-color:#eaeaea}table.dataTable.display tbody tr:hover>.sorting_2,table.dataTable.order-column.hover tbody tr:hover>.sorting_2{background-color:#ebebeb}table.dataTable.display tbody tr:hover>.sorting_3,table.dataTable.order-column.hover tbody tr:hover>.sorting_3{background-color:#eeeeee}table.dataTable.display tbody tr:hover.selected>.sorting_1,table.dataTable.order-column.hover tbody tr:hover.selected>.sorting_1{background-color:#a1aec7}table.dataTable.display tbody tr:hover.selected>.sorting_2,table.dataTable.order-column.hover tbody tr:hover.selected>.sorting_2{background-color:#a2afc8}table.dataTable.display tbody tr:hover.selected>.sorting_3,table.dataTable.order-column.hover tbody tr:hover.selected>.sorting_3{background-color:#a4b2cb}table.dataTable.no-footer{border-bottom:1px solid #111111}table.dataTable.nowrap th,table.dataTable.nowrap td{white-space:nowrap}table.dataTable.compact thead th,table.dataTable.compact thead td{padding:4px 17px 4px 4px}table.dataTable.compact tfoot th,table.dataTable.compact tfoot td{padding:4px}table.dataTable.compact tbody th,table.dataTable.compact tbody td{padding:4px}table.dataTable th.dt-left,table.dataTable td.dt-left{text-align:left}table.dataTable th.dt-center,table.dataTable td.dt-center,table.dataTable td.dataTables_empty{text-align:center}table.dataTable th.dt-right,table.dataTable td.dt-right{text-align:right}table.dataTable th.dt-justify,table.dataTable td.dt-justify{text-align:justify}table.dataTable th.dt-nowrap,table.dataTable td.dt-nowrap{white-space:nowrap}table.dataTable thead th.dt-head-left,table.dataTable thead td.dt-head-left,table.dataTable tfoot th.dt-head-left,table.dataTable tfoot td.dt-head-left{text-align:left}table.dataTable thead th.dt-head-center,table.dataTable thead td.dt-head-center,table.dataTable tfoot th.dt-head-center,table.dataTable tfoot td.dt-head-center{text-align:center}table.dataTable thead th.dt-head-right,table.dataTable thead td.dt-head-right,table.dataTable tfoot th.dt-head-right,table.dataTable tfoot td.dt-head-right{text-align:right}table.dataTable thead th.dt-head-justify,table.dataTable thead td.dt-head-justify,table.dataTable tfoot th.dt-head-justify,table.dataTable tfoot td.dt-head-justify{text-align:justify}table.dataTable thead th.dt-head-nowrap,table.dataTable thead td.dt-head-nowrap,table.dataTable tfoot th.dt-head-nowrap,table.dataTable tfoot td.dt-head-nowrap{white-space:nowrap}table.dataTable tbody th.dt-body-left,table.dataTable tbody td.dt-body-left{text-align:left}table.dataTable tbody th.dt-body-center,table.dataTable tbody td.dt-body-center{text-align:center}table.dataTable tbody th.dt-body-right,table.dataTable tbody td.dt-body-right{text-align:right}table.dataTable tbody th.dt-body-justify,table.dataTable tbody td.dt-body-justify{text-align:justify}table.dataTable tbody th.dt-body-nowrap,table.dataTable tbody td.dt-body-nowrap{white-space:nowrap}table.dataTable,table.dataTable th,table.dataTable td{box-sizing:content-box}.dataTables_wrapper{position:relative;clear:both;*zoom:1;zoom:1}.dataTables_wrapper .dataTables_length{float:left}.dataTables_wrapper .dataTables_filter{float:right;text-align:right}.dataTables_wrapper .dataTables_filter input{margin-left:0.5em}.dataTables_wrapper .dataTables_info{clear:both;float:left;padding-top:0.755em}.dataTables_wrapper .dataTables_paginate{float:right;text-align:right;padding-top:0.25em}.dataTables_wrapper .dataTables_paginate .paginate_button{box-sizing:border-box;display:inline-block;min-width:1.5em;padding:0.5em 1em;margin-left:2px;text-align:center;text-decoration:none !important;cursor:pointer;*cursor:hand;color:#333333 !important;border:1px solid transparent;border-radius:2px}.dataTables_wrapper .dataTables_paginate .paginate_button.current,.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover{color:#333333 !important;border:1px solid #979797;background-color:white;background:-webkit-gradient(linear, left top, left bottom, color-stop(0%, #fff), color-stop(100%, #dcdcdc));background:-webkit-linear-gradient(top, #fff 0%, #dcdcdc 100%);background:-moz-linear-gradient(top, #fff 0%, #dcdcdc 100%);background:-ms-linear-gradient(top, #fff 0%, #dcdcdc 100%);background:-o-linear-gradient(top, #fff 0%, #dcdcdc 100%);background:linear-gradient(to bottom, #fff 0%, #dcdcdc 100%)}.dataTables_wrapper .dataTables_paginate .paginate_button.disabled,.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover,.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:active{cursor:default;color:#666 !important;border:1px solid transparent;background:transparent;box-shadow:none}.dataTables_wrapper .dataTables_paginate .paginate_button:hover{color:white !important;border:1px solid #111111;background-color:#585858;background:-webkit-gradient(linear, left top, left bottom, color-stop(0%, #585858), color-stop(100%, #111));background:-webkit-linear-gradient(top, #585858 0%, #111 100%);background:-moz-linear-gradient(top, #585858 0%, #111 100%);background:-ms-linear-gradient(top, #585858 0%, #111 100%);background:-o-linear-gradient(top, #585858 0%, #111 100%);background:linear-gradient(to bottom, #585858 0%, #111 100%)}.dataTables_wrapper .dataTables_paginate .paginate_button:active{outline:none;background-color:#2b2b2b;background:-webkit-gradient(linear, left top, left bottom, color-stop(0%, #2b2b2b), color-stop(100%, #0c0c0c));background:-webkit-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%);background:-moz-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%);background:-ms-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%);background:-o-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%);background:linear-gradient(to bottom, #2b2b2b 0%, #0c0c0c 100%);box-shadow:inset 0 0 3px #111}.dataTables_wrapper .dataTables_paginate .ellipsis{padding:0 1em}.dataTables_wrapper .dataTables_processing{position:absolute;top:50%;left:50%;width:100%;height:40px;margin-left:-50%;margin-top:-25px;padding-top:20px;text-align:center;font-size:1.2em;background-color:white;background:-webkit-gradient(linear, left top, right top, color-stop(0%, rgba(255,255,255,0)), color-stop(25%, rgba(255,255,255,0.9)), color-stop(75%, rgba(255,255,255,0.9)), color-stop(100%, rgba(255,255,255,0)));background:-webkit-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,0.9) 25%, rgba(255,255,255,0.9) 75%, rgba(255,255,255,0) 100%);background:-moz-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,0.9) 25%, rgba(255,255,255,0.9) 75%, rgba(255,255,255,0) 100%);background:-ms-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,0.9) 25%, rgba(255,255,255,0.9) 75%, rgba(255,255,255,0) 100%);background:-o-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,0.9) 25%, rgba(255,255,255,0.9) 75%, rgba(255,255,255,0) 100%);background:linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.9) 25%, rgba(255,255,255,0.9) 75%, rgba(255,255,255,0) 100%)}.dataTables_wrapper .dataTables_length,.dataTables_wrapper .dataTables_filter,.dataTables_wrapper .dataTables_info,.dataTables_wrapper .dataTables_processing,.dataTables_wrapper .dataTables_paginate{color:#333333}.dataTables_wrapper .dataTables_scroll{clear:both}.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody{*margin-top:-1px;-webkit-overflow-scrolling:touch}.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>thead>tr>th,.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>thead>tr>td,.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>tbody>tr>th,.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>tbody>tr>td{vertical-align:middle}.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>thead>tr>th>div.dataTables_sizing,.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>thead>tr>td>div.dataTables_sizing,.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>tbody>tr>th>div.dataTables_sizing,.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>tbody>tr>td>div.dataTables_sizing{height:0;overflow:hidden;margin:0 !important;padding:0 !important}.dataTables_wrapper.no-footer .dataTables_scrollBody{border-bottom:1px solid #111111}.dataTables_wrapper.no-footer div.dataTables_scrollHead table.dataTable,.dataTables_wrapper.no-footer div.dataTables_scrollBody>table{border-bottom:none}.dataTables_wrapper:after{visibility:hidden;display:block;content:"";clear:both;height:0}@media screen and (max-width: 767px){.dataTables_wrapper .dataTables_info,.dataTables_wrapper .dataTables_paginate{float:none;text-align:center}.dataTables_wrapper .dataTables_paginate{margin-top:0.5em}}@media screen and (max-width: 640px){.dataTables_wrapper .dataTables_length,.dataTables_wrapper .dataTables_filter{float:none;text-align:center}.dataTables_wrapper .dataTables_filter{margin-top:0.5em}} diff --git a/public/assets/lib/datatables.net-dt/images/sort_asc.png b/public/assets/lib/datatables.net-dt/images/sort_asc.png new file mode 100755 index 0000000..e1ba61a Binary files /dev/null and b/public/assets/lib/datatables.net-dt/images/sort_asc.png differ diff --git a/public/assets/lib/datatables.net-dt/images/sort_asc_disabled.png b/public/assets/lib/datatables.net-dt/images/sort_asc_disabled.png new file mode 100755 index 0000000..fb11dfe Binary files /dev/null and b/public/assets/lib/datatables.net-dt/images/sort_asc_disabled.png differ diff --git a/public/assets/lib/datatables.net-dt/images/sort_both.png b/public/assets/lib/datatables.net-dt/images/sort_both.png new file mode 100755 index 0000000..af5bc7c Binary files /dev/null and b/public/assets/lib/datatables.net-dt/images/sort_both.png differ diff --git a/public/assets/lib/datatables.net-dt/images/sort_desc.png b/public/assets/lib/datatables.net-dt/images/sort_desc.png new file mode 100755 index 0000000..0e156de Binary files /dev/null and b/public/assets/lib/datatables.net-dt/images/sort_desc.png differ diff --git a/public/assets/lib/datatables.net-dt/images/sort_desc_disabled.png b/public/assets/lib/datatables.net-dt/images/sort_desc_disabled.png new file mode 100755 index 0000000..c9fdd8a Binary files /dev/null and b/public/assets/lib/datatables.net-dt/images/sort_desc_disabled.png differ diff --git a/public/assets/lib/datatables.net-dt/js/dataTables.dataTables.min.js b/public/assets/lib/datatables.net-dt/js/dataTables.dataTables.min.js new file mode 100755 index 0000000..be61c1b --- /dev/null +++ b/public/assets/lib/datatables.net-dt/js/dataTables.dataTables.min.js @@ -0,0 +1,5 @@ +/*! + DataTables styling integration + ©2018 SpryMedia Ltd - datatables.net/license +*/ +(function(b){"function"===typeof define&&define.amd?define(["jquery","datatables.net"],function(a){return b(a,window,document)}):"object"===typeof exports?module.exports=function(a,c){a||(a=window);if(!c||!c.fn.dataTable)c=require("datatables.net")(a,c).$;return b(c,a,a.document)}:b(jQuery,window,document)})(function(b){return b.fn.dataTable}); diff --git a/public/assets/lib/datatables.net-responsive-dt/License.txt b/public/assets/lib/datatables.net-responsive-dt/License.txt new file mode 100755 index 0000000..379a7e7 --- /dev/null +++ b/public/assets/lib/datatables.net-responsive-dt/License.txt @@ -0,0 +1,20 @@ +Copyright SpryMedia Limited and other contributors +http://datatables.net + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. \ No newline at end of file diff --git a/public/assets/lib/datatables.net-responsive-dt/css/responsive.dataTables.min.css b/public/assets/lib/datatables.net-responsive-dt/css/responsive.dataTables.min.css new file mode 100755 index 0000000..dbbfab7 --- /dev/null +++ b/public/assets/lib/datatables.net-responsive-dt/css/responsive.dataTables.min.css @@ -0,0 +1 @@ +table.dataTable.dtr-inline.collapsed>tbody>tr>td.child,table.dataTable.dtr-inline.collapsed>tbody>tr>th.child,table.dataTable.dtr-inline.collapsed>tbody>tr>td.dataTables_empty{cursor:default !important}table.dataTable.dtr-inline.collapsed>tbody>tr>td.child:before,table.dataTable.dtr-inline.collapsed>tbody>tr>th.child:before,table.dataTable.dtr-inline.collapsed>tbody>tr>td.dataTables_empty:before{display:none !important}table.dataTable.dtr-inline.collapsed>tbody>tr[role="row"]>td:first-child,table.dataTable.dtr-inline.collapsed>tbody>tr[role="row"]>th:first-child{position:relative;padding-left:30px;cursor:pointer}table.dataTable.dtr-inline.collapsed>tbody>tr[role="row"]>td:first-child:before,table.dataTable.dtr-inline.collapsed>tbody>tr[role="row"]>th:first-child:before{top:9px;left:4px;height:14px;width:14px;display:block;position:absolute;color:white;border:2px solid white;border-radius:14px;box-shadow:0 0 3px #444;box-sizing:content-box;text-align:center;text-indent:0 !important;font-family:'Courier New', Courier, monospace;line-height:14px;content:'+';background-color:#31b131}table.dataTable.dtr-inline.collapsed>tbody>tr.parent>td:first-child:before,table.dataTable.dtr-inline.collapsed>tbody>tr.parent>th:first-child:before{content:'-';background-color:#d33333}table.dataTable.dtr-inline.collapsed.compact>tbody>tr>td:first-child,table.dataTable.dtr-inline.collapsed.compact>tbody>tr>th:first-child{padding-left:27px}table.dataTable.dtr-inline.collapsed.compact>tbody>tr>td:first-child:before,table.dataTable.dtr-inline.collapsed.compact>tbody>tr>th:first-child:before{top:5px;left:4px;height:14px;width:14px;border-radius:14px;line-height:14px;text-indent:3px}table.dataTable.dtr-column>tbody>tr>td.control,table.dataTable.dtr-column>tbody>tr>th.control{position:relative;cursor:pointer}table.dataTable.dtr-column>tbody>tr>td.control:before,table.dataTable.dtr-column>tbody>tr>th.control:before{top:50%;left:50%;height:16px;width:16px;margin-top:-10px;margin-left:-10px;display:block;position:absolute;color:white;border:2px solid white;border-radius:14px;box-shadow:0 0 3px #444;box-sizing:content-box;text-align:center;text-indent:0 !important;font-family:'Courier New', Courier, monospace;line-height:14px;content:'+';background-color:#31b131}table.dataTable.dtr-column>tbody>tr.parent td.control:before,table.dataTable.dtr-column>tbody>tr.parent th.control:before{content:'-';background-color:#d33333}table.dataTable>tbody>tr.child{padding:0.5em 1em}table.dataTable>tbody>tr.child:hover{background:transparent !important}table.dataTable>tbody>tr.child ul.dtr-details{display:inline-block;list-style-type:none;margin:0;padding:0}table.dataTable>tbody>tr.child ul.dtr-details>li{border-bottom:1px solid #efefef;padding:0.5em 0}table.dataTable>tbody>tr.child ul.dtr-details>li:first-child{padding-top:0}table.dataTable>tbody>tr.child ul.dtr-details>li:last-child{border-bottom:none}table.dataTable>tbody>tr.child span.dtr-title{display:inline-block;min-width:75px;font-weight:bold}div.dtr-modal{position:fixed;box-sizing:border-box;top:0;left:0;height:100%;width:100%;z-index:100;padding:10em 1em}div.dtr-modal div.dtr-modal-display{position:absolute;top:0;left:0;bottom:0;right:0;width:50%;height:50%;overflow:auto;margin:auto;z-index:102;overflow:auto;background-color:#f5f5f7;border:1px solid black;border-radius:0.5em;box-shadow:0 12px 30px rgba(0,0,0,0.6)}div.dtr-modal div.dtr-modal-content{position:relative;padding:1em}div.dtr-modal div.dtr-modal-close{position:absolute;top:6px;right:6px;width:22px;height:22px;border:1px solid #eaeaea;background-color:#f9f9f9;text-align:center;border-radius:3px;cursor:pointer;z-index:12}div.dtr-modal div.dtr-modal-close:hover{background-color:#eaeaea}div.dtr-modal div.dtr-modal-background{position:fixed;top:0;left:0;right:0;bottom:0;z-index:101;background:rgba(0,0,0,0.6)}@media screen and (max-width: 767px){div.dtr-modal div.dtr-modal-display{width:95%}} diff --git a/public/assets/lib/datatables.net-responsive-dt/js/responsive.dataTables.min.js b/public/assets/lib/datatables.net-responsive-dt/js/responsive.dataTables.min.js new file mode 100755 index 0000000..4895acc --- /dev/null +++ b/public/assets/lib/datatables.net-responsive-dt/js/responsive.dataTables.min.js @@ -0,0 +1,5 @@ +/*! + DataTables styling wrapper for Responsive + ©2018 SpryMedia Ltd - datatables.net/license +*/ +(function(c){"function"===typeof define&&define.amd?define(["jquery","datatables.net-dt","datatables.net-responsive"],function(a){return c(a,window,document)}):"object"===typeof exports?module.exports=function(a,b){a||(a=window);if(!b||!b.fn.dataTable)b=require("datatables.net-dt")(a,b).$;b.fn.dataTable.Responsive||require("datatables.net-responsive")(a,b);return c(b,a,a.document)}:c(jQuery,window,document)})(function(c){return c.fn.dataTable}); diff --git a/public/assets/lib/datatables.net-responsive/License.txt b/public/assets/lib/datatables.net-responsive/License.txt new file mode 100755 index 0000000..379a7e7 --- /dev/null +++ b/public/assets/lib/datatables.net-responsive/License.txt @@ -0,0 +1,20 @@ +Copyright SpryMedia Limited and other contributors +http://datatables.net + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. \ No newline at end of file diff --git a/public/assets/lib/datatables.net-responsive/js/dataTables.responsive.min.js b/public/assets/lib/datatables.net-responsive/js/dataTables.responsive.min.js new file mode 100755 index 0000000..e41e5d3 --- /dev/null +++ b/public/assets/lib/datatables.net-responsive/js/dataTables.responsive.min.js @@ -0,0 +1,30 @@ +/*! + Responsive 2.2.3 + 2014-2018 SpryMedia Ltd - datatables.net/license +*/ +(function(d){"function"===typeof define&&define.amd?define(["jquery","datatables.net"],function(l){return d(l,window,document)}):"object"===typeof exports?module.exports=function(l,j){l||(l=window);if(!j||!j.fn.dataTable)j=require("datatables.net")(l,j).$;return d(j,l,l.document)}:d(jQuery,window,document)})(function(d,l,j,q){function t(a,b,c){var e=b+"-"+c;if(n[e])return n[e];for(var d=[],a=a.cell(b,c).node().childNodes,b=0,c=a.length;btd, >th", +e).each(function(e){e=b.column.index("toData",e);!1===a.s.current[e]&&d(this).css("display","none")})});b.on("destroy.dtr",function(){b.off(".dtr");d(b.table().body()).off(".dtr");d(l).off("resize.dtr orientationchange.dtr");d.each(a.s.current,function(b,e){!1===e&&a._setColumnVis(b,!0)})});this.c.breakpoints.sort(function(a,b){return a.widthb.width?-1:0});this._classLogic();this._resizeAuto();c=this.c.details;!1!==c.type&&(a._detailsInit(),b.on("column-visibility.dtr",function(){a._timer&& +clearTimeout(a._timer);a._timer=setTimeout(function(){a._timer=null;a._classLogic();a._resizeAuto();a._resize();a._redrawChildren()},100)}),b.on("draw.dtr",function(){a._redrawChildren()}),d(b.table().node()).addClass("dtr-"+c.type));b.on("column-reorder.dtr",function(){a._classLogic();a._resizeAuto();a._resize()});b.on("column-sizing.dtr",function(){a._resizeAuto();a._resize()});b.on("preXhr.dtr",function(){var e=[];b.rows().every(function(){this.child.isShown()&&e.push(this.id(true))});b.one("draw.dtr", +function(){a._resizeAuto();a._resize();b.rows(e).every(function(){a._detailsDisplay(this,false)})})});b.on("init.dtr",function(){a._resizeAuto();a._resize();d.inArray(false,a.s.current)&&b.columns.adjust()});this._resize()},_columnsVisiblity:function(a){var b=this.s.dt,c=this.s.columns,e,f,g=c.map(function(a,b){return{columnIdx:b,priority:a.priority}}).sort(function(a,b){return a.priority!==b.priority?a.priority-b.priority:a.columnIdx-b.columnIdx}),h=d.map(c,function(e,c){return!1===b.column(c).visible()? +"not-visible":e.auto&&null===e.minWidth?!1:!0===e.auto?"-":-1!==d.inArray(a,e.includeIn)}),m=0;e=0;for(f=h.length;em-c[k].minWidth?(s=!0,h[k]=!1):h[k]=!0,m-=c[k].minWidth)}g=!1;e=0;for(f=c.length;e=k&&f(d,b[c].name)}else{if("not-"===g){c=0;for(g=b.length;c").append(h).appendTo(f)}d("").append(g).appendTo(e);"inline"===this.c.details.type&&d(c).addClass("dtr-inline collapsed");d(c).find("[name]").removeAttr("name");d(c).css("position","relative"); +c=d("
").css({width:1,height:1,overflow:"hidden",clear:"both"}).append(c);c.insertBefore(a.table().node());g.each(function(c){c=a.column.index("fromVisible",c);b[c].minWidth=this.offsetWidth||0});c.remove()}},_setColumnVis:function(a,b){var c=this.s.dt,e=b?"":"none";d(c.column(a).header()).css("display",e);d(c.column(a).footer()).css("display",e);c.column(a).nodes().to$().css("display",e);d.isEmptyObject(n)||c.cells(null,a).indexes().each(function(a){r(c,a.row,a.column)})},_tabIndexes:function(){var a= +this.s.dt,b=a.cells({page:"current"}).nodes().to$(),c=a.settings()[0],e=this.c.details.target;b.filter("[data-dtr-keyboard]").removeData("[data-dtr-keyboard]");"number"===typeof e?a.cells(null,e,{page:"current"}).nodes().to$().attr("tabIndex",c.iTabIndex).data("dtr-keyboard",1):("td:first-child, th:first-child"===e&&(e=">td:first-child, >th:first-child"),d(e,a.rows({page:"current"}).nodes()).attr("tabIndex",c.iTabIndex).data("dtr-keyboard",1))}});i.breakpoints=[{name:"desktop",width:Infinity},{name:"tablet-l", +width:1024},{name:"tablet-p",width:768},{name:"mobile-l",width:480},{name:"mobile-p",width:320}];i.display={childRow:function(a,b,c){if(b){if(d(a.node()).hasClass("parent"))return a.child(c(),"child").show(),!0}else{if(a.child.isShown())return a.child(!1),d(a.node()).removeClass("parent"),!1;a.child(c(),"child").show();d(a.node()).addClass("parent");return!0}},childRowImmediate:function(a,b,c){if(!b&&a.child.isShown()||!a.responsive.hasHidden())return a.child(!1),d(a.node()).removeClass("parent"), +!1;a.child(c(),"child").show();d(a.node()).addClass("parent");return!0},modal:function(a){return function(b,c,e){if(c)d("div.dtr-modal-content").empty().append(e());else{var f=function(){g.remove();d(j).off("keypress.dtr")},g=d('
').append(d('
').append(d('
').append(e())).append(d('
×
').click(function(){f()}))).append(d('
').click(function(){f()})).appendTo("body"); +d(j).on("keyup.dtr",function(a){27===a.keyCode&&(a.stopPropagation(),f())})}a&&a.header&&d("div.dtr-modal-content").prepend("

"+a.header(b)+"

")}}};var n={};i.renderer={listHiddenNodes:function(){return function(a,b,c){var e=d('
    '),f=!1;d.each(c,function(b,c){c.hidden&&(d('
  • '+c.title+"
  • ").append(d('').append(t(a, +c.rowIndex,c.columnIndex))).appendTo(e),f=!0)});return f?e:!1}},listHidden:function(){return function(a,b,c){return(a=d.map(c,function(a){return a.hidden?'
  • '+a.title+' '+a.data+"
  • ":""}).join(""))?d('
      ').append(a):!1}},tableAll:function(a){a=d.extend({tableClass:""},a);return function(b, +c,e){b=d.map(e,function(a){return''+a.title+": "+a.data+""}).join("");return d('').append(b)}}};i.defaults={breakpoints:i.breakpoints,auto:!0,details:{display:i.display.childRow,renderer:i.renderer.listHidden(),target:0,type:"inline"},orthogonal:"display"};var p=d.fn.dataTable.Api;p.register("responsive()",function(){return this});p.register("responsive.index()", +function(a){a=d(a);return{column:a.data("dtr-index"),row:a.parent().data("dtr-index")}});p.register("responsive.rebuild()",function(){return this.iterator("table",function(a){a._responsive&&a._responsive._classLogic()})});p.register("responsive.recalc()",function(){return this.iterator("table",function(a){a._responsive&&(a._responsive._resizeAuto(),a._responsive._resize())})});p.register("responsive.hasHidden()",function(){var a=this.context[0];return a._responsive?-1!==d.inArray(!1,a._responsive.s.current): +!1});p.registerPlural("columns().responsiveHidden()","column().responsiveHidden()",function(){return this.iterator("column",function(a,b){return a._responsive?a._responsive.s.current[b]:!1},1)});i.version="2.2.3";d.fn.dataTable.Responsive=i;d.fn.DataTable.Responsive=i;d(j).on("preInit.dt.dtr",function(a,b){if("dt"===a.namespace&&(d(b.nTable).hasClass("responsive")||d(b.nTable).hasClass("dt-responsive")||b.oInit.responsive||o.defaults.responsive)){var c=b.oInit.responsive;!1!==c&&new i(b,d.isPlainObject(c)? +c:{})}});return i}); diff --git a/public/assets/lib/datatables.net/License.txt b/public/assets/lib/datatables.net/License.txt new file mode 100755 index 0000000..379a7e7 --- /dev/null +++ b/public/assets/lib/datatables.net/License.txt @@ -0,0 +1,20 @@ +Copyright SpryMedia Limited and other contributors +http://datatables.net + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. \ No newline at end of file diff --git a/public/assets/lib/datatables.net/js/jquery.dataTables.min.js b/public/assets/lib/datatables.net/js/jquery.dataTables.min.js new file mode 100755 index 0000000..07af1c3 --- /dev/null +++ b/public/assets/lib/datatables.net/js/jquery.dataTables.min.js @@ -0,0 +1,166 @@ +/*! + DataTables 1.10.19 + ©2008-2018 SpryMedia Ltd - datatables.net/license +*/ +(function(h){"function"===typeof define&&define.amd?define(["jquery"],function(E){return h(E,window,document)}):"object"===typeof exports?module.exports=function(E,H){E||(E=window);H||(H="undefined"!==typeof window?require("jquery"):require("jquery")(E));return h(H,E,E.document)}:h(jQuery,window,document)})(function(h,E,H,k){function Z(a){var b,c,d={};h.each(a,function(e){if((b=e.match(/^([^A-Z]+?)([A-Z])/))&&-1!=="a aa ai ao as b fn i m o s ".indexOf(b[1]+" "))c=e.replace(b[0],b[2].toLowerCase()), +d[c]=e,"o"===b[1]&&Z(a[e])});a._hungarianMap=d}function J(a,b,c){a._hungarianMap||Z(a);var d;h.each(b,function(e){d=a._hungarianMap[e];if(d!==k&&(c||b[d]===k))"o"===d.charAt(0)?(b[d]||(b[d]={}),h.extend(!0,b[d],b[e]),J(a[d],b[d],c)):b[d]=b[e]})}function Ca(a){var b=n.defaults.oLanguage,c=b.sDecimal;c&&Da(c);if(a){var d=a.sZeroRecords;!a.sEmptyTable&&(d&&"No data available in table"===b.sEmptyTable)&&F(a,a,"sZeroRecords","sEmptyTable");!a.sLoadingRecords&&(d&&"Loading..."===b.sLoadingRecords)&&F(a, +a,"sZeroRecords","sLoadingRecords");a.sInfoThousands&&(a.sThousands=a.sInfoThousands);(a=a.sDecimal)&&c!==a&&Da(a)}}function fb(a){A(a,"ordering","bSort");A(a,"orderMulti","bSortMulti");A(a,"orderClasses","bSortClasses");A(a,"orderCellsTop","bSortCellsTop");A(a,"order","aaSorting");A(a,"orderFixed","aaSortingFixed");A(a,"paging","bPaginate");A(a,"pagingType","sPaginationType");A(a,"pageLength","iDisplayLength");A(a,"searching","bFilter");"boolean"===typeof a.sScrollX&&(a.sScrollX=a.sScrollX?"100%": +"");"boolean"===typeof a.scrollX&&(a.scrollX=a.scrollX?"100%":"");if(a=a.aoSearchCols)for(var b=0,c=a.length;b").css({position:"fixed",top:0,left:-1*h(E).scrollLeft(),height:1,width:1, +overflow:"hidden"}).append(h("
      ").css({position:"absolute",top:1,left:1,width:100,overflow:"scroll"}).append(h("
      ").css({width:"100%",height:10}))).appendTo("body"),d=c.children(),e=d.children();b.barWidth=d[0].offsetWidth-d[0].clientWidth;b.bScrollOversize=100===e[0].offsetWidth&&100!==d[0].clientWidth;b.bScrollbarLeft=1!==Math.round(e.offset().left);b.bBounding=c[0].getBoundingClientRect().width?!0:!1;c.remove()}h.extend(a.oBrowser,n.__browser);a.oScroll.iBarWidth=n.__browser.barWidth} +function ib(a,b,c,d,e,f){var g,j=!1;c!==k&&(g=c,j=!0);for(;d!==e;)a.hasOwnProperty(d)&&(g=j?b(g,a[d],d,a):a[d],j=!0,d+=f);return g}function Ea(a,b){var c=n.defaults.column,d=a.aoColumns.length,c=h.extend({},n.models.oColumn,c,{nTh:b?b:H.createElement("th"),sTitle:c.sTitle?c.sTitle:b?b.innerHTML:"",aDataSort:c.aDataSort?c.aDataSort:[d],mData:c.mData?c.mData:d,idx:d});a.aoColumns.push(c);c=a.aoPreSearchCols;c[d]=h.extend({},n.models.oSearch,c[d]);ka(a,d,h(b).data())}function ka(a,b,c){var b=a.aoColumns[b], +d=a.oClasses,e=h(b.nTh);if(!b.sWidthOrig){b.sWidthOrig=e.attr("width")||null;var f=(e.attr("style")||"").match(/width:\s*(\d+[pxem%]+)/);f&&(b.sWidthOrig=f[1])}c!==k&&null!==c&&(gb(c),J(n.defaults.column,c),c.mDataProp!==k&&!c.mData&&(c.mData=c.mDataProp),c.sType&&(b._sManualType=c.sType),c.className&&!c.sClass&&(c.sClass=c.className),c.sClass&&e.addClass(c.sClass),h.extend(b,c),F(b,c,"sWidth","sWidthOrig"),c.iDataSort!==k&&(b.aDataSort=[c.iDataSort]),F(b,c,"aDataSort"));var g=b.mData,j=S(g),i=b.mRender? +S(b.mRender):null,c=function(a){return"string"===typeof a&&-1!==a.indexOf("@")};b._bAttrSrc=h.isPlainObject(g)&&(c(g.sort)||c(g.type)||c(g.filter));b._setter=null;b.fnGetData=function(a,b,c){var d=j(a,b,k,c);return i&&b?i(d,b,a,c):d};b.fnSetData=function(a,b,c){return N(g)(a,b,c)};"number"!==typeof g&&(a._rowReadObject=!0);a.oFeatures.bSort||(b.bSortable=!1,e.addClass(d.sSortableNone));a=-1!==h.inArray("asc",b.asSorting);c=-1!==h.inArray("desc",b.asSorting);!b.bSortable||!a&&!c?(b.sSortingClass=d.sSortableNone, +b.sSortingClassJUI=""):a&&!c?(b.sSortingClass=d.sSortableAsc,b.sSortingClassJUI=d.sSortJUIAscAllowed):!a&&c?(b.sSortingClass=d.sSortableDesc,b.sSortingClassJUI=d.sSortJUIDescAllowed):(b.sSortingClass=d.sSortable,b.sSortingClassJUI=d.sSortJUI)}function $(a){if(!1!==a.oFeatures.bAutoWidth){var b=a.aoColumns;Fa(a);for(var c=0,d=b.length;cq[f])d(l.length+q[f],m);else if("string"=== +typeof q[f]){j=0;for(i=l.length;jb&&a[e]--; -1!=d&&c===k&&a.splice(d, +1)}function da(a,b,c,d){var e=a.aoData[b],f,g=function(c,d){for(;c.childNodes.length;)c.removeChild(c.firstChild);c.innerHTML=B(a,b,d,"display")};if("dom"===c||(!c||"auto"===c)&&"dom"===e.src)e._aData=Ia(a,e,d,d===k?k:e._aData).data;else{var j=e.anCells;if(j)if(d!==k)g(j[d],d);else{c=0;for(f=j.length;c").appendTo(g));b=0;for(c=l.length;btr").attr("role","row");h(g).find(">tr>th, >tr>td").addClass(m.sHeaderTH);h(j).find(">tr>th, >tr>td").addClass(m.sFooterTH);if(null!==j){a=a.aoFooter[0];b=0;for(c=a.length;b=a.fnRecordsDisplay()?0:g,a.iInitDisplayStart=-1);var g=a._iDisplayStart,m=a.fnDisplayEnd();if(a.bDeferLoading)a.bDeferLoading=!1,a.iDraw++,C(a,!1);else if(j){if(!a.bDestroying&&!mb(a))return}else a.iDraw++;if(0!==i.length){f=j?a.aoData.length:m;for(j=j?0:g;j",{"class":e?d[0]:""}).append(h("
      ").appendTo(q));p.nTBody=b[0];b=q.children("tfoot");if(b.length===0&&a.length>0&&(p.oScroll.sX!==""||p.oScroll.sY!==""))b=h("").appendTo(q);if(b.length===0||b.children().length===0)q.addClass(u.sNoFooter);else if(b.length>0){p.nTFoot=b[0];ea(p.aoFooter,p.nTFoot)}if(g.aaData)for(j=0;j/g,Zb=/^\d{2,4}[\.\/\-]\d{1,2}[\.\/\-]\d{1,2}([T ]{1}\d{1,2}[:\.]\d{2}([\.:]\d{2})?)?$/,$b=RegExp("(\\/|\\.|\\*|\\+|\\?|\\||\\(|\\)|\\[|\\]|\\{|\\}|\\\\|\\$|\\^|\\-)","g"),Ya=/[',$£€¥%\u2009\u202F\u20BD\u20a9\u20BArfkɃΞ]/gi,M=function(a){return!a||!0===a||"-"===a?!0:!1},Ob=function(a){var b=parseInt(a,10);return!isNaN(b)&& +isFinite(a)?b:null},Pb=function(a,b){Za[b]||(Za[b]=RegExp(Qa(b),"g"));return"string"===typeof a&&"."!==b?a.replace(/\./g,"").replace(Za[b],"."):a},$a=function(a,b,c){var d="string"===typeof a;if(M(a))return!0;b&&d&&(a=Pb(a,b));c&&d&&(a=a.replace(Ya,""));return!isNaN(parseFloat(a))&&isFinite(a)},Qb=function(a,b,c){return M(a)?!0:!(M(a)||"string"===typeof a)?null:$a(a.replace(Aa,""),b,c)?!0:null},D=function(a,b,c){var d=[],e=0,f=a.length;if(c!==k)for(;ea.length)){b=a.slice().sort();for(var c=b[0],d=1,e=b.length;d")[0],Wb=va.textContent!==k,Yb= +/<.*?>/g,Oa=n.util.throttle,Sb=[],w=Array.prototype,ac=function(a){var b,c,d=n.settings,e=h.map(d,function(a){return a.nTable});if(a){if(a.nTable&&a.oApi)return[a];if(a.nodeName&&"table"===a.nodeName.toLowerCase())return b=h.inArray(a,e),-1!==b?[d[b]]:null;if(a&&"function"===typeof a.settings)return a.settings().toArray();"string"===typeof a?c=h(a):a instanceof h&&(c=a)}else return[];if(c)return c.map(function(){b=h.inArray(this,e);return-1!==b?d[b]:null}).toArray()};s=function(a,b){if(!(this instanceof +s))return new s(a,b);var c=[],d=function(a){(a=ac(a))&&(c=c.concat(a))};if(h.isArray(a))for(var e=0,f=a.length;ea?new s(b[a],this[a]):null},filter:function(a){var b=[];if(w.filter)b=w.filter.call(this,a,this);else for(var c=0,d=this.length;c").addClass(b),h("td",c).addClass(b).html(a)[0].colSpan=V(d),e.push(c[0]))};f(a,b);c._details&&c._details.detach();c._details=h(e); +c._detailsShow&&c._details.insertAfter(c.nTr)}return this});o(["row().child.show()","row().child().show()"],function(){Ub(this,!0);return this});o(["row().child.hide()","row().child().hide()"],function(){Ub(this,!1);return this});o(["row().child.remove()","row().child().remove()"],function(){db(this);return this});o("row().child.isShown()",function(){var a=this.context;return a.length&&this.length?a[0].aoData[this[0]]._detailsShow||!1:!1});var bc=/^([^:]+):(name|visIdx|visible)$/,Vb=function(a,b, +c,d,e){for(var c=[],d=0,f=e.length;d=0?b:g.length+b];if(typeof a==="function"){var e=Ba(c,f);return h.map(g,function(b,f){return a(f,Vb(c,f,0,0,e),i[f])?f:null})}var k=typeof a==="string"?a.match(bc): +"";if(k)switch(k[2]){case "visIdx":case "visible":b=parseInt(k[1],10);if(b<0){var n=h.map(g,function(a,b){return a.bVisible?b:null});return[n[n.length+b]]}return[aa(c,b)];case "name":return h.map(j,function(a,b){return a===k[1]?b:null});default:return[]}if(a.nodeName&&a._DT_CellIndex)return[a._DT_CellIndex.column];b=h(i).filter(a).map(function(){return h.inArray(this,i)}).toArray();if(b.length||!a.nodeName)return b;b=h(a).closest("*[data-dt-column]");return b.length?[b.data("dt-column")]:[]},c,f)}, +1);c.selector.cols=a;c.selector.opts=b;return c});u("columns().header()","column().header()",function(){return this.iterator("column",function(a,b){return a.aoColumns[b].nTh},1)});u("columns().footer()","column().footer()",function(){return this.iterator("column",function(a,b){return a.aoColumns[b].nTf},1)});u("columns().data()","column().data()",function(){return this.iterator("column-rows",Vb,1)});u("columns().dataSrc()","column().dataSrc()",function(){return this.iterator("column",function(a,b){return a.aoColumns[b].mData}, +1)});u("columns().cache()","column().cache()",function(a){return this.iterator("column-rows",function(b,c,d,e,f){return ja(b.aoData,f,"search"===a?"_aFilterData":"_aSortData",c)},1)});u("columns().nodes()","column().nodes()",function(){return this.iterator("column-rows",function(a,b,c,d,e){return ja(a.aoData,e,"anCells",b)},1)});u("columns().visible()","column().visible()",function(a,b){var c=this.iterator("column",function(b,c){if(a===k)return b.aoColumns[c].bVisible;var f=b.aoColumns,g=f[c],j=b.aoData, +i,m,l;if(a!==k&&g.bVisible!==a){if(a){var n=h.inArray(!0,D(f,"bVisible"),c+1);i=0;for(m=j.length;id;return!0};n.isDataTable= +n.fnIsDataTable=function(a){var b=h(a).get(0),c=!1;if(a instanceof n.Api)return!0;h.each(n.settings,function(a,e){var f=e.nScrollHead?h("table",e.nScrollHead)[0]:null,g=e.nScrollFoot?h("table",e.nScrollFoot)[0]:null;if(e.nTable===b||f===b||g===b)c=!0});return c};n.tables=n.fnTables=function(a){var b=!1;h.isPlainObject(a)&&(b=a.api,a=a.visible);var c=h.map(n.settings,function(b){if(!a||a&&h(b.nTable).is(":visible"))return b.nTable});return b?new s(c):c};n.camelToHungarian=J;o("$()",function(a,b){var c= +this.rows(b).nodes(),c=h(c);return h([].concat(c.filter(a).toArray(),c.find(a).toArray()))});h.each(["on","one","off"],function(a,b){o(b+"()",function(){var a=Array.prototype.slice.call(arguments);a[0]=h.map(a[0].split(/\s/),function(a){return!a.match(/\.dt\b/)?a+".dt":a}).join(" ");var d=h(this.tables().nodes());d[b].apply(d,a);return this})});o("clear()",function(){return this.iterator("table",function(a){oa(a)})});o("settings()",function(){return new s(this.context,this.context)});o("init()",function(){var a= +this.context;return a.length?a[0].oInit:null});o("data()",function(){return this.iterator("table",function(a){return D(a.aoData,"_aData")}).flatten()});o("destroy()",function(a){a=a||!1;return this.iterator("table",function(b){var c=b.nTableWrapper.parentNode,d=b.oClasses,e=b.nTable,f=b.nTBody,g=b.nTHead,j=b.nTFoot,i=h(e),f=h(f),k=h(b.nTableWrapper),l=h.map(b.aoData,function(a){return a.nTr}),o;b.bDestroying=!0;r(b,"aoDestroyCallback","destroy",[b]);a||(new s(b)).columns().visible(!0);k.off(".DT").find(":not(tbody *)").off(".DT"); +h(E).off(".DT-"+b.sInstance);e!=g.parentNode&&(i.children("thead").detach(),i.append(g));j&&e!=j.parentNode&&(i.children("tfoot").detach(),i.append(j));b.aaSorting=[];b.aaSortingFixed=[];wa(b);h(l).removeClass(b.asStripeClasses.join(" "));h("th, td",g).removeClass(d.sSortable+" "+d.sSortableAsc+" "+d.sSortableDesc+" "+d.sSortableNone);f.children().detach();f.append(l);g=a?"remove":"detach";i[g]();k[g]();!a&&c&&(c.insertBefore(e,b.nTableReinsertBefore),i.css("width",b.sDestroyWidth).removeClass(d.sTable), +(o=b.asDestroyStripes.length)&&f.children().each(function(a){h(this).addClass(b.asDestroyStripes[a%o])}));c=h.inArray(b,n.settings);-1!==c&&n.settings.splice(c,1)})});h.each(["column","row","cell"],function(a,b){o(b+"s().every()",function(a){var d=this.selector.opts,e=this;return this.iterator(b,function(f,g,h,i,m){a.call(e[b](g,"cell"===b?h:d,"cell"===b?d:k),g,h,i,m)})})});o("i18n()",function(a,b,c){var d=this.context[0],a=S(a)(d.oLanguage);a===k&&(a=b);c!==k&&h.isPlainObject(a)&&(a=a[c]!==k?a[c]: +a._);return a.replace("%d",c)});n.version="1.10.19";n.settings=[];n.models={};n.models.oSearch={bCaseInsensitive:!0,sSearch:"",bRegex:!1,bSmart:!0};n.models.oRow={nTr:null,anCells:null,_aData:[],_aSortData:null,_aFilterData:null,_sFilterRow:null,_sRowStripe:"",src:null,idx:-1};n.models.oColumn={idx:null,aDataSort:null,asSorting:null,bSearchable:null,bSortable:null,bVisible:null,_sManualType:null,_bAttrSrc:!1,fnCreatedCell:null,fnGetData:null,fnSetData:null,mData:null,mRender:null,nTh:null,nTf:null, +sClass:null,sContentPadding:null,sDefaultContent:null,sName:null,sSortDataType:"std",sSortingClass:null,sSortingClassJUI:null,sTitle:null,sType:null,sWidth:null,sWidthOrig:null};n.defaults={aaData:null,aaSorting:[[0,"asc"]],aaSortingFixed:[],ajax:null,aLengthMenu:[10,25,50,100],aoColumns:null,aoColumnDefs:null,aoSearchCols:[],asStripeClasses:null,bAutoWidth:!0,bDeferRender:!1,bDestroy:!1,bFilter:!0,bInfo:!0,bLengthChange:!0,bPaginate:!0,bProcessing:!1,bRetrieve:!1,bScrollCollapse:!1,bServerSide:!1, +bSort:!0,bSortMulti:!0,bSortCellsTop:!1,bSortClasses:!0,bStateSave:!1,fnCreatedRow:null,fnDrawCallback:null,fnFooterCallback:null,fnFormatNumber:function(a){return a.toString().replace(/\B(?=(\d{3})+(?!\d))/g,this.oLanguage.sThousands)},fnHeaderCallback:null,fnInfoCallback:null,fnInitComplete:null,fnPreDrawCallback:null,fnRowCallback:null,fnServerData:null,fnServerParams:null,fnStateLoadCallback:function(a){try{return JSON.parse((-1===a.iStateDuration?sessionStorage:localStorage).getItem("DataTables_"+ +a.sInstance+"_"+location.pathname))}catch(b){}},fnStateLoadParams:null,fnStateLoaded:null,fnStateSaveCallback:function(a,b){try{(-1===a.iStateDuration?sessionStorage:localStorage).setItem("DataTables_"+a.sInstance+"_"+location.pathname,JSON.stringify(b))}catch(c){}},fnStateSaveParams:null,iStateDuration:7200,iDeferLoading:null,iDisplayLength:10,iDisplayStart:0,iTabIndex:0,oClasses:{},oLanguage:{oAria:{sSortAscending:": activate to sort column ascending",sSortDescending:": activate to sort column descending"}, +oPaginate:{sFirst:"First",sLast:"Last",sNext:"Next",sPrevious:"Previous"},sEmptyTable:"No data available in table",sInfo:"Showing _START_ to _END_ of _TOTAL_ entries",sInfoEmpty:"Showing 0 to 0 of 0 entries",sInfoFiltered:"(filtered from _MAX_ total entries)",sInfoPostFix:"",sDecimal:"",sThousands:",",sLengthMenu:"Show _MENU_ entries",sLoadingRecords:"Loading...",sProcessing:"Processing...",sSearch:"Search:",sSearchPlaceholder:"",sUrl:"",sZeroRecords:"No matching records found"},oSearch:h.extend({}, +n.models.oSearch),sAjaxDataProp:"data",sAjaxSource:null,sDom:"lfrtip",searchDelay:null,sPaginationType:"simple_numbers",sScrollX:"",sScrollXInner:"",sScrollY:"",sServerMethod:"GET",renderer:null,rowId:"DT_RowId"};Z(n.defaults);n.defaults.column={aDataSort:null,iDataSort:-1,asSorting:["asc","desc"],bSearchable:!0,bSortable:!0,bVisible:!0,fnCreatedCell:null,mData:null,mRender:null,sCellType:"td",sClass:"",sContentPadding:"",sDefaultContent:null,sName:"",sSortDataType:"std",sTitle:null,sType:null,sWidth:null}; +Z(n.defaults.column);n.models.oSettings={oFeatures:{bAutoWidth:null,bDeferRender:null,bFilter:null,bInfo:null,bLengthChange:null,bPaginate:null,bProcessing:null,bServerSide:null,bSort:null,bSortMulti:null,bSortClasses:null,bStateSave:null},oScroll:{bCollapse:null,iBarWidth:0,sX:null,sXInner:null,sY:null},oLanguage:{fnInfoCallback:null},oBrowser:{bScrollOversize:!1,bScrollbarLeft:!1,bBounding:!1,barWidth:0},ajax:null,aanFeatures:[],aoData:[],aiDisplay:[],aiDisplayMaster:[],aIds:{},aoColumns:[],aoHeader:[], +aoFooter:[],oPreviousSearch:{},aoPreSearchCols:[],aaSorting:null,aaSortingFixed:[],asStripeClasses:null,asDestroyStripes:[],sDestroyWidth:0,aoRowCallback:[],aoHeaderCallback:[],aoFooterCallback:[],aoDrawCallback:[],aoRowCreatedCallback:[],aoPreDrawCallback:[],aoInitComplete:[],aoStateSaveParams:[],aoStateLoadParams:[],aoStateLoaded:[],sTableId:"",nTable:null,nTHead:null,nTFoot:null,nTBody:null,nTableWrapper:null,bDeferLoading:!1,bInitialised:!1,aoOpenRows:[],sDom:null,searchDelay:null,sPaginationType:"two_button", +iStateDuration:0,aoStateSave:[],aoStateLoad:[],oSavedState:null,oLoadedState:null,sAjaxSource:null,sAjaxDataProp:null,bAjaxDataGet:!0,jqXHR:null,json:k,oAjaxData:k,fnServerData:null,aoServerParams:[],sServerMethod:null,fnFormatNumber:null,aLengthMenu:null,iDraw:0,bDrawing:!1,iDrawError:-1,_iDisplayLength:10,_iDisplayStart:0,_iRecordsTotal:0,_iRecordsDisplay:0,oClasses:{},bFiltered:!1,bSorted:!1,bSortCellsTop:null,oInit:null,aoDestroyCallback:[],fnRecordsTotal:function(){return"ssp"==y(this)?1*this._iRecordsTotal: +this.aiDisplayMaster.length},fnRecordsDisplay:function(){return"ssp"==y(this)?1*this._iRecordsDisplay:this.aiDisplay.length},fnDisplayEnd:function(){var a=this._iDisplayLength,b=this._iDisplayStart,c=b+a,d=this.aiDisplay.length,e=this.oFeatures,f=e.bPaginate;return e.bServerSide?!1===f||-1===a?b+d:Math.min(b+a,this._iRecordsDisplay):!f||c>d||-1===a?d:c},oInstance:null,sInstance:null,iTabIndex:0,nScrollHead:null,nScrollFoot:null,aLastSort:[],oPlugins:{},rowIdFn:null,rowId:null};n.ext=x={buttons:{}, +classes:{},builder:"-source-",errMode:"alert",feature:[],search:[],selector:{cell:[],column:[],row:[]},internal:{},legacy:{ajax:null},pager:{},renderer:{pageButton:{},header:{}},order:{},type:{detect:[],search:{},order:{}},_unique:0,fnVersionCheck:n.fnVersionCheck,iApiIndex:0,oJUIClasses:{},sVersion:n.version};h.extend(x,{afnFiltering:x.search,aTypes:x.type.detect,ofnSearch:x.type.search,oSort:x.type.order,afnSortData:x.order,aoFeatures:x.feature,oApi:x.internal,oStdClasses:x.classes,oPagination:x.pager}); +h.extend(n.ext.classes,{sTable:"dataTable",sNoFooter:"no-footer",sPageButton:"paginate_button",sPageButtonActive:"current",sPageButtonDisabled:"disabled",sStripeOdd:"odd",sStripeEven:"even",sRowEmpty:"dataTables_empty",sWrapper:"dataTables_wrapper",sFilter:"dataTables_filter",sInfo:"dataTables_info",sPaging:"dataTables_paginate paging_",sLength:"dataTables_length",sProcessing:"dataTables_processing",sSortAsc:"sorting_asc",sSortDesc:"sorting_desc",sSortable:"sorting",sSortableAsc:"sorting_asc_disabled", +sSortableDesc:"sorting_desc_disabled",sSortableNone:"sorting_disabled",sSortColumn:"sorting_",sFilterInput:"",sLengthSelect:"",sScrollWrapper:"dataTables_scroll",sScrollHead:"dataTables_scrollHead",sScrollHeadInner:"dataTables_scrollHeadInner",sScrollBody:"dataTables_scrollBody",sScrollFoot:"dataTables_scrollFoot",sScrollFootInner:"dataTables_scrollFootInner",sHeaderTH:"",sFooterTH:"",sSortJUIAsc:"",sSortJUIDesc:"",sSortJUI:"",sSortJUIAscAllowed:"",sSortJUIDescAllowed:"",sSortJUIWrapper:"",sSortIcon:"", +sJUIHeader:"",sJUIFooter:""});var Lb=n.ext.pager;h.extend(Lb,{simple:function(){return["previous","next"]},full:function(){return["first","previous","next","last"]},numbers:function(a,b){return[ia(a,b)]},simple_numbers:function(a,b){return["previous",ia(a,b),"next"]},full_numbers:function(a,b){return["first","previous",ia(a,b),"next","last"]},first_last_numbers:function(a,b){return["first",ia(a,b),"last"]},_numbers:ia,numbers_length:7});h.extend(!0,n.ext.renderer,{pageButton:{_:function(a,b,c,d,e, +f){var g=a.oClasses,j=a.oLanguage.oPaginate,i=a.oLanguage.oAria.paginate||{},m,l,n=0,o=function(b,d){var k,s,u,r,v=function(b){Ta(a,b.data.action,true)};k=0;for(s=d.length;k").appendTo(b);o(u,r)}else{m=null;l="";switch(r){case "ellipsis":b.append('');break;case "first":m=j.sFirst;l=r+(e>0?"":" "+g.sPageButtonDisabled);break;case "previous":m=j.sPrevious;l=r+(e>0?"":" "+g.sPageButtonDisabled);break;case "next":m= +j.sNext;l=r+(e",{"class":g.sPageButton+" "+l,"aria-controls":a.sTableId,"aria-label":i[r],"data-dt-idx":n,tabindex:a.iTabIndex,id:c===0&&typeof r==="string"?a.sTableId+"_"+r:null}).html(m).appendTo(b);Wa(u,{action:r},v);n++}}}},s;try{s=h(b).find(H.activeElement).data("dt-idx")}catch(u){}o(h(b).empty(),d);s!==k&&h(b).find("[data-dt-idx="+ +s+"]").focus()}}});h.extend(n.ext.type.detect,[function(a,b){var c=b.oLanguage.sDecimal;return $a(a,c)?"num"+c:null},function(a){if(a&&!(a instanceof Date)&&!Zb.test(a))return null;var b=Date.parse(a);return null!==b&&!isNaN(b)||M(a)?"date":null},function(a,b){var c=b.oLanguage.sDecimal;return $a(a,c,!0)?"num-fmt"+c:null},function(a,b){var c=b.oLanguage.sDecimal;return Qb(a,c)?"html-num"+c:null},function(a,b){var c=b.oLanguage.sDecimal;return Qb(a,c,!0)?"html-num-fmt"+c:null},function(a){return M(a)|| +"string"===typeof a&&-1!==a.indexOf("<")?"html":null}]);h.extend(n.ext.type.search,{html:function(a){return M(a)?a:"string"===typeof a?a.replace(Nb," ").replace(Aa,""):""},string:function(a){return M(a)?a:"string"===typeof a?a.replace(Nb," "):a}});var za=function(a,b,c,d){if(0!==a&&(!a||"-"===a))return-Infinity;b&&(a=Pb(a,b));a.replace&&(c&&(a=a.replace(c,"")),d&&(a=a.replace(d,"")));return 1*a};h.extend(x.type.order,{"date-pre":function(a){a=Date.parse(a);return isNaN(a)?-Infinity:a},"html-pre":function(a){return M(a)? +"":a.replace?a.replace(/<.*?>/g,"").toLowerCase():a+""},"string-pre":function(a){return M(a)?"":"string"===typeof a?a.toLowerCase():!a.toString?"":a.toString()},"string-asc":function(a,b){return ab?1:0},"string-desc":function(a,b){return ab?-1:0}});Da("");h.extend(!0,n.ext.renderer,{header:{_:function(a,b,c,d){h(a.nTable).on("order.dt.DT",function(e,f,g,h){if(a===f){e=c.idx;b.removeClass(c.sSortingClass+" "+d.sSortAsc+" "+d.sSortDesc).addClass(h[e]=="asc"?d.sSortAsc:h[e]=="desc"?d.sSortDesc: +c.sSortingClass)}})},jqueryui:function(a,b,c,d){h("
      ").addClass(d.sSortJUIWrapper).append(b.contents()).append(h("").addClass(d.sSortIcon+" "+c.sSortingClassJUI)).appendTo(b);h(a.nTable).on("order.dt.DT",function(e,f,g,h){if(a===f){e=c.idx;b.removeClass(d.sSortAsc+" "+d.sSortDesc).addClass(h[e]=="asc"?d.sSortAsc:h[e]=="desc"?d.sSortDesc:c.sSortingClass);b.find("span."+d.sSortIcon).removeClass(d.sSortJUIAsc+" "+d.sSortJUIDesc+" "+d.sSortJUI+" "+d.sSortJUIAscAllowed+" "+d.sSortJUIDescAllowed).addClass(h[e]== +"asc"?d.sSortJUIAsc:h[e]=="desc"?d.sSortJUIDesc:c.sSortingClassJUI)}})}}});var eb=function(a){return"string"===typeof a?a.replace(//g,">").replace(/"/g,"""):a};n.render={number:function(a,b,c,d,e){return{display:function(f){if("number"!==typeof f&&"string"!==typeof f)return f;var g=0>f?"-":"",h=parseFloat(f);if(isNaN(h))return eb(f);h=h.toFixed(c);f=Math.abs(h);h=parseInt(f,10);f=c?b+(f-h).toFixed(c).substring(2):"";return g+(d||"")+h.toString().replace(/\B(?=(\d{3})+(?!\d))/g, +a)+f+(e||"")}}},text:function(){return{display:eb,filter:eb}}};h.extend(n.ext.internal,{_fnExternApiFunc:Mb,_fnBuildAjax:sa,_fnAjaxUpdate:mb,_fnAjaxParameters:vb,_fnAjaxUpdateDraw:wb,_fnAjaxDataSrc:ta,_fnAddColumn:Ea,_fnColumnOptions:ka,_fnAdjustColumnSizing:$,_fnVisibleToColumnIndex:aa,_fnColumnIndexToVisible:ba,_fnVisbleColumns:V,_fnGetColumns:ma,_fnColumnTypes:Ga,_fnApplyColumnDefs:jb,_fnHungarianMap:Z,_fnCamelToHungarian:J,_fnLanguageCompat:Ca,_fnBrowserDetect:hb,_fnAddData:O,_fnAddTr:na,_fnNodeToDataIndex:function(a, +b){return b._DT_RowIndex!==k?b._DT_RowIndex:null},_fnNodeToColumnIndex:function(a,b,c){return h.inArray(c,a.aoData[b].anCells)},_fnGetCellData:B,_fnSetCellData:kb,_fnSplitObjNotation:Ja,_fnGetObjectDataFn:S,_fnSetObjectDataFn:N,_fnGetDataMaster:Ka,_fnClearTable:oa,_fnDeleteIndex:pa,_fnInvalidate:da,_fnGetRowElements:Ia,_fnCreateTr:Ha,_fnBuildHead:lb,_fnDrawHead:fa,_fnDraw:P,_fnReDraw:T,_fnAddOptionsHtml:ob,_fnDetectHeader:ea,_fnGetUniqueThs:ra,_fnFeatureHtmlFilter:qb,_fnFilterComplete:ga,_fnFilterCustom:zb, +_fnFilterColumn:yb,_fnFilter:xb,_fnFilterCreateSearch:Pa,_fnEscapeRegex:Qa,_fnFilterData:Ab,_fnFeatureHtmlInfo:tb,_fnUpdateInfo:Db,_fnInfoMacros:Eb,_fnInitialise:ha,_fnInitComplete:ua,_fnLengthChange:Ra,_fnFeatureHtmlLength:pb,_fnFeatureHtmlPaginate:ub,_fnPageChange:Ta,_fnFeatureHtmlProcessing:rb,_fnProcessingDisplay:C,_fnFeatureHtmlTable:sb,_fnScrollDraw:la,_fnApplyToChildren:I,_fnCalculateColumnWidths:Fa,_fnThrottle:Oa,_fnConvertToWidth:Fb,_fnGetWidestNode:Gb,_fnGetMaxLenString:Hb,_fnStringToCss:v, +_fnSortFlatten:X,_fnSort:nb,_fnSortAria:Jb,_fnSortListener:Va,_fnSortAttachListener:Ma,_fnSortingClasses:wa,_fnSortData:Ib,_fnSaveState:xa,_fnLoadState:Kb,_fnSettingsFromNode:ya,_fnLog:K,_fnMap:F,_fnBindAction:Wa,_fnCallbackReg:z,_fnCallbackFire:r,_fnLengthOverflow:Sa,_fnRenderer:Na,_fnDataSource:y,_fnRowAttributes:La,_fnExtend:Xa,_fnCalculateEnd:function(){}});h.fn.dataTable=n;n.$=h;h.fn.dataTableSettings=n.settings;h.fn.dataTableExt=n.ext;h.fn.DataTable=function(a){return h(this).dataTable(a).api()}; +h.each(n,function(a,b){h.fn.DataTable[a]=b});return h.fn.dataTable}); diff --git a/public/assets/lib/flag-icon-css/assets/docs.css b/public/assets/lib/flag-icon-css/assets/docs.css new file mode 100755 index 0000000..d15de22 --- /dev/null +++ b/public/assets/lib/flag-icon-css/assets/docs.css @@ -0,0 +1,153 @@ +body { + font-weight: 300; + -webkit-font-smoothing: antialiased; +} +h1, +h2, +h3, +h4, +h5, +h6 { + font-weight: 300; +} +.flag-wrapper { + width: 100%; + display: inline-block; + position: relative; + box-shadow: 0 0 2px black; + overflow: hidden; + margin-bottom: 20px; +} +.flag-wrapper:after { + padding-top: 75%; + /* ratio */ + display: block; + content: ''; +} +.flag-wrapper .flag { + position: absolute; + top: 0; + bottom: 0; + right: 0; + left: 0; + width: 100%; + height: 100%; + background-size: cover; +} +.no-wrap { + white-space: nowrap; + margin-bottom: 8px; + overflow: hidden; +} +.all-flags .flag-icon-background { + cursor: pointer; +} +.jumbotron { + position: relative; + font-size: 16px; + color: #fff; + color: rgba(255, 255, 255, 0.75); + text-align: center; + border-radius: 0; + padding-bottom: 80px; + background: linear-gradient(to right, #0d6632, #f4c01a); +} +.jumbotron h1 { + margin-bottom: 15px; + font-weight: 300; + letter-spacing: -1px; + color: #fff; +} +.jumbotron iframe { + width: 100px!important; + height: 20px!important; + border: none; + overflow: hidden; + margin: 2px; +} +.jumbotron p a, +.jumbotron .jumbotron-links a { + font-weight: 500; + color: #fff; +} +.jumbotron .jumbotron-links { + margin-top: 15px; + margin-bottom: 0; + padding-left: 0; + list-style: none; + font-size: 14px; +} +.jumbotron .jumbotron-links li { + display: inline; +} +.jumbotron .jumbotron-links li + li { + margin-left: 20px; +} +.jumbotron .bottom { + position: absolute; + bottom: 0; + left: 0; + right: 0; + padding: 18px; + background-color: rgba(0, 0, 0, 0.2); +} +.btn-outline { + margin-top: 15px; + margin-bottom: 15px; + padding: 18px 24px; + font-size: inherit; + font-weight: 500; + color: #fff; + /* redeclare to override the `.jumbotron a` */ + background-color: transparent; + border-color: #fff; + border-color: rgba(255, 255, 255, 0.5); + transition: all 0.1s ease-in-out; +} +.btn-outline:hover, +.btn-outline:active { + color: #0d6632; + background-color: #fff; + border-color: #fff; +} +.how-to { + padding: 20px; +} +.how-to h2 { + text-align: center; +} +.how-to li { + font-size: 21px; + line-height: 1.7; + margin-top: 20px; +} +.how-to li p { + font-size: 16px; + color: #555; +} +.how-to code { + font-size: 85%; + word-wrap: break-word; + white-space: normal; +} +footer { + text-align: center; + opacity: .8; + padding: 50px; + background: linear-gradient(to right, #f4c01a, #0d6632); +} +footer a { + color: #fff; +} +footer a:hover { + color: #fff; +} +.links { + margin: 0; + list-style: none; + padding-left: 0; +} +.links li { + display: inline; + padding: 0 10px; +} diff --git a/public/assets/lib/flag-icon-css/assets/docs.js b/public/assets/lib/flag-icon-css/assets/docs.js new file mode 100755 index 0000000..e95e663 --- /dev/null +++ b/public/assets/lib/flag-icon-css/assets/docs.js @@ -0,0 +1,13 @@ +window.onload = function () { + $('.all-flags .flag-icon-background').click(function(event){ + var flag = $(event.currentTarget).attr('title'); + var w = 640; + var h = 480; + var left = (screen.width / 2) - (w / 2); + var top = (screen.height / 2) - (h / 2); + + if (flag) { + window.open('flags/4x3/' + flag + '.svg', 'flag-4x3', 'width=' + w + ', height=' + h + ', top=' + top + ', left=' + left); + } + }); +} diff --git a/public/assets/lib/flag-icon-css/css/flag-icon.min.css b/public/assets/lib/flag-icon-css/css/flag-icon.min.css new file mode 100755 index 0000000..ffd24ad --- /dev/null +++ b/public/assets/lib/flag-icon-css/css/flag-icon.min.css @@ -0,0 +1 @@ +.flag-icon-background{background-size:contain;background-position:50%;background-repeat:no-repeat}.flag-icon{background-size:contain;background-position:50%;background-repeat:no-repeat;position:relative;display:inline-block;width:1.33333333em;line-height:1em}.flag-icon:before{content:"\00a0"}.flag-icon.flag-icon-squared{width:1em}.flag-icon-ad{background-image:url(../flags/4x3/ad.svg)}.flag-icon-ad.flag-icon-squared{background-image:url(../flags/1x1/ad.svg)}.flag-icon-ae{background-image:url(../flags/4x3/ae.svg)}.flag-icon-ae.flag-icon-squared{background-image:url(../flags/1x1/ae.svg)}.flag-icon-af{background-image:url(../flags/4x3/af.svg)}.flag-icon-af.flag-icon-squared{background-image:url(../flags/1x1/af.svg)}.flag-icon-ag{background-image:url(../flags/4x3/ag.svg)}.flag-icon-ag.flag-icon-squared{background-image:url(../flags/1x1/ag.svg)}.flag-icon-ai{background-image:url(../flags/4x3/ai.svg)}.flag-icon-ai.flag-icon-squared{background-image:url(../flags/1x1/ai.svg)}.flag-icon-al{background-image:url(../flags/4x3/al.svg)}.flag-icon-al.flag-icon-squared{background-image:url(../flags/1x1/al.svg)}.flag-icon-am{background-image:url(../flags/4x3/am.svg)}.flag-icon-am.flag-icon-squared{background-image:url(../flags/1x1/am.svg)}.flag-icon-ao{background-image:url(../flags/4x3/ao.svg)}.flag-icon-ao.flag-icon-squared{background-image:url(../flags/1x1/ao.svg)}.flag-icon-aq{background-image:url(../flags/4x3/aq.svg)}.flag-icon-aq.flag-icon-squared{background-image:url(../flags/1x1/aq.svg)}.flag-icon-ar{background-image:url(../flags/4x3/ar.svg)}.flag-icon-ar.flag-icon-squared{background-image:url(../flags/1x1/ar.svg)}.flag-icon-as{background-image:url(../flags/4x3/as.svg)}.flag-icon-as.flag-icon-squared{background-image:url(../flags/1x1/as.svg)}.flag-icon-at{background-image:url(../flags/4x3/at.svg)}.flag-icon-at.flag-icon-squared{background-image:url(../flags/1x1/at.svg)}.flag-icon-au{background-image:url(../flags/4x3/au.svg)}.flag-icon-au.flag-icon-squared{background-image:url(../flags/1x1/au.svg)}.flag-icon-aw{background-image:url(../flags/4x3/aw.svg)}.flag-icon-aw.flag-icon-squared{background-image:url(../flags/1x1/aw.svg)}.flag-icon-ax{background-image:url(../flags/4x3/ax.svg)}.flag-icon-ax.flag-icon-squared{background-image:url(../flags/1x1/ax.svg)}.flag-icon-az{background-image:url(../flags/4x3/az.svg)}.flag-icon-az.flag-icon-squared{background-image:url(../flags/1x1/az.svg)}.flag-icon-ba{background-image:url(../flags/4x3/ba.svg)}.flag-icon-ba.flag-icon-squared{background-image:url(../flags/1x1/ba.svg)}.flag-icon-bb{background-image:url(../flags/4x3/bb.svg)}.flag-icon-bb.flag-icon-squared{background-image:url(../flags/1x1/bb.svg)}.flag-icon-bd{background-image:url(../flags/4x3/bd.svg)}.flag-icon-bd.flag-icon-squared{background-image:url(../flags/1x1/bd.svg)}.flag-icon-be{background-image:url(../flags/4x3/be.svg)}.flag-icon-be.flag-icon-squared{background-image:url(../flags/1x1/be.svg)}.flag-icon-bf{background-image:url(../flags/4x3/bf.svg)}.flag-icon-bf.flag-icon-squared{background-image:url(../flags/1x1/bf.svg)}.flag-icon-bg{background-image:url(../flags/4x3/bg.svg)}.flag-icon-bg.flag-icon-squared{background-image:url(../flags/1x1/bg.svg)}.flag-icon-bh{background-image:url(../flags/4x3/bh.svg)}.flag-icon-bh.flag-icon-squared{background-image:url(../flags/1x1/bh.svg)}.flag-icon-bi{background-image:url(../flags/4x3/bi.svg)}.flag-icon-bi.flag-icon-squared{background-image:url(../flags/1x1/bi.svg)}.flag-icon-bj{background-image:url(../flags/4x3/bj.svg)}.flag-icon-bj.flag-icon-squared{background-image:url(../flags/1x1/bj.svg)}.flag-icon-bl{background-image:url(../flags/4x3/bl.svg)}.flag-icon-bl.flag-icon-squared{background-image:url(../flags/1x1/bl.svg)}.flag-icon-bm{background-image:url(../flags/4x3/bm.svg)}.flag-icon-bm.flag-icon-squared{background-image:url(../flags/1x1/bm.svg)}.flag-icon-bn{background-image:url(../flags/4x3/bn.svg)}.flag-icon-bn.flag-icon-squared{background-image:url(../flags/1x1/bn.svg)}.flag-icon-bo{background-image:url(../flags/4x3/bo.svg)}.flag-icon-bo.flag-icon-squared{background-image:url(../flags/1x1/bo.svg)}.flag-icon-bq{background-image:url(../flags/4x3/bq.svg)}.flag-icon-bq.flag-icon-squared{background-image:url(../flags/1x1/bq.svg)}.flag-icon-br{background-image:url(../flags/4x3/br.svg)}.flag-icon-br.flag-icon-squared{background-image:url(../flags/1x1/br.svg)}.flag-icon-bs{background-image:url(../flags/4x3/bs.svg)}.flag-icon-bs.flag-icon-squared{background-image:url(../flags/1x1/bs.svg)}.flag-icon-bt{background-image:url(../flags/4x3/bt.svg)}.flag-icon-bt.flag-icon-squared{background-image:url(../flags/1x1/bt.svg)}.flag-icon-bv{background-image:url(../flags/4x3/bv.svg)}.flag-icon-bv.flag-icon-squared{background-image:url(../flags/1x1/bv.svg)}.flag-icon-bw{background-image:url(../flags/4x3/bw.svg)}.flag-icon-bw.flag-icon-squared{background-image:url(../flags/1x1/bw.svg)}.flag-icon-by{background-image:url(../flags/4x3/by.svg)}.flag-icon-by.flag-icon-squared{background-image:url(../flags/1x1/by.svg)}.flag-icon-bz{background-image:url(../flags/4x3/bz.svg)}.flag-icon-bz.flag-icon-squared{background-image:url(../flags/1x1/bz.svg)}.flag-icon-ca{background-image:url(../flags/4x3/ca.svg)}.flag-icon-ca.flag-icon-squared{background-image:url(../flags/1x1/ca.svg)}.flag-icon-cc{background-image:url(../flags/4x3/cc.svg)}.flag-icon-cc.flag-icon-squared{background-image:url(../flags/1x1/cc.svg)}.flag-icon-cd{background-image:url(../flags/4x3/cd.svg)}.flag-icon-cd.flag-icon-squared{background-image:url(../flags/1x1/cd.svg)}.flag-icon-cf{background-image:url(../flags/4x3/cf.svg)}.flag-icon-cf.flag-icon-squared{background-image:url(../flags/1x1/cf.svg)}.flag-icon-cg{background-image:url(../flags/4x3/cg.svg)}.flag-icon-cg.flag-icon-squared{background-image:url(../flags/1x1/cg.svg)}.flag-icon-ch{background-image:url(../flags/4x3/ch.svg)}.flag-icon-ch.flag-icon-squared{background-image:url(../flags/1x1/ch.svg)}.flag-icon-ci{background-image:url(../flags/4x3/ci.svg)}.flag-icon-ci.flag-icon-squared{background-image:url(../flags/1x1/ci.svg)}.flag-icon-ck{background-image:url(../flags/4x3/ck.svg)}.flag-icon-ck.flag-icon-squared{background-image:url(../flags/1x1/ck.svg)}.flag-icon-cl{background-image:url(../flags/4x3/cl.svg)}.flag-icon-cl.flag-icon-squared{background-image:url(../flags/1x1/cl.svg)}.flag-icon-cm{background-image:url(../flags/4x3/cm.svg)}.flag-icon-cm.flag-icon-squared{background-image:url(../flags/1x1/cm.svg)}.flag-icon-cn{background-image:url(../flags/4x3/cn.svg)}.flag-icon-cn.flag-icon-squared{background-image:url(../flags/1x1/cn.svg)}.flag-icon-co{background-image:url(../flags/4x3/co.svg)}.flag-icon-co.flag-icon-squared{background-image:url(../flags/1x1/co.svg)}.flag-icon-cr{background-image:url(../flags/4x3/cr.svg)}.flag-icon-cr.flag-icon-squared{background-image:url(../flags/1x1/cr.svg)}.flag-icon-cu{background-image:url(../flags/4x3/cu.svg)}.flag-icon-cu.flag-icon-squared{background-image:url(../flags/1x1/cu.svg)}.flag-icon-cv{background-image:url(../flags/4x3/cv.svg)}.flag-icon-cv.flag-icon-squared{background-image:url(../flags/1x1/cv.svg)}.flag-icon-cw{background-image:url(../flags/4x3/cw.svg)}.flag-icon-cw.flag-icon-squared{background-image:url(../flags/1x1/cw.svg)}.flag-icon-cx{background-image:url(../flags/4x3/cx.svg)}.flag-icon-cx.flag-icon-squared{background-image:url(../flags/1x1/cx.svg)}.flag-icon-cy{background-image:url(../flags/4x3/cy.svg)}.flag-icon-cy.flag-icon-squared{background-image:url(../flags/1x1/cy.svg)}.flag-icon-cz{background-image:url(../flags/4x3/cz.svg)}.flag-icon-cz.flag-icon-squared{background-image:url(../flags/1x1/cz.svg)}.flag-icon-de{background-image:url(../flags/4x3/de.svg)}.flag-icon-de.flag-icon-squared{background-image:url(../flags/1x1/de.svg)}.flag-icon-dj{background-image:url(../flags/4x3/dj.svg)}.flag-icon-dj.flag-icon-squared{background-image:url(../flags/1x1/dj.svg)}.flag-icon-dk{background-image:url(../flags/4x3/dk.svg)}.flag-icon-dk.flag-icon-squared{background-image:url(../flags/1x1/dk.svg)}.flag-icon-dm{background-image:url(../flags/4x3/dm.svg)}.flag-icon-dm.flag-icon-squared{background-image:url(../flags/1x1/dm.svg)}.flag-icon-do{background-image:url(../flags/4x3/do.svg)}.flag-icon-do.flag-icon-squared{background-image:url(../flags/1x1/do.svg)}.flag-icon-dz{background-image:url(../flags/4x3/dz.svg)}.flag-icon-dz.flag-icon-squared{background-image:url(../flags/1x1/dz.svg)}.flag-icon-ec{background-image:url(../flags/4x3/ec.svg)}.flag-icon-ec.flag-icon-squared{background-image:url(../flags/1x1/ec.svg)}.flag-icon-ee{background-image:url(../flags/4x3/ee.svg)}.flag-icon-ee.flag-icon-squared{background-image:url(../flags/1x1/ee.svg)}.flag-icon-eg{background-image:url(../flags/4x3/eg.svg)}.flag-icon-eg.flag-icon-squared{background-image:url(../flags/1x1/eg.svg)}.flag-icon-eh{background-image:url(../flags/4x3/eh.svg)}.flag-icon-eh.flag-icon-squared{background-image:url(../flags/1x1/eh.svg)}.flag-icon-er{background-image:url(../flags/4x3/er.svg)}.flag-icon-er.flag-icon-squared{background-image:url(../flags/1x1/er.svg)}.flag-icon-es{background-image:url(../flags/4x3/es.svg)}.flag-icon-es.flag-icon-squared{background-image:url(../flags/1x1/es.svg)}.flag-icon-et{background-image:url(../flags/4x3/et.svg)}.flag-icon-et.flag-icon-squared{background-image:url(../flags/1x1/et.svg)}.flag-icon-fi{background-image:url(../flags/4x3/fi.svg)}.flag-icon-fi.flag-icon-squared{background-image:url(../flags/1x1/fi.svg)}.flag-icon-fj{background-image:url(../flags/4x3/fj.svg)}.flag-icon-fj.flag-icon-squared{background-image:url(../flags/1x1/fj.svg)}.flag-icon-fk{background-image:url(../flags/4x3/fk.svg)}.flag-icon-fk.flag-icon-squared{background-image:url(../flags/1x1/fk.svg)}.flag-icon-fm{background-image:url(../flags/4x3/fm.svg)}.flag-icon-fm.flag-icon-squared{background-image:url(../flags/1x1/fm.svg)}.flag-icon-fo{background-image:url(../flags/4x3/fo.svg)}.flag-icon-fo.flag-icon-squared{background-image:url(../flags/1x1/fo.svg)}.flag-icon-fr{background-image:url(../flags/4x3/fr.svg)}.flag-icon-fr.flag-icon-squared{background-image:url(../flags/1x1/fr.svg)}.flag-icon-ga{background-image:url(../flags/4x3/ga.svg)}.flag-icon-ga.flag-icon-squared{background-image:url(../flags/1x1/ga.svg)}.flag-icon-gb{background-image:url(../flags/4x3/gb.svg)}.flag-icon-gb.flag-icon-squared{background-image:url(../flags/1x1/gb.svg)}.flag-icon-gd{background-image:url(../flags/4x3/gd.svg)}.flag-icon-gd.flag-icon-squared{background-image:url(../flags/1x1/gd.svg)}.flag-icon-ge{background-image:url(../flags/4x3/ge.svg)}.flag-icon-ge.flag-icon-squared{background-image:url(../flags/1x1/ge.svg)}.flag-icon-gf{background-image:url(../flags/4x3/gf.svg)}.flag-icon-gf.flag-icon-squared{background-image:url(../flags/1x1/gf.svg)}.flag-icon-gg{background-image:url(../flags/4x3/gg.svg)}.flag-icon-gg.flag-icon-squared{background-image:url(../flags/1x1/gg.svg)}.flag-icon-gh{background-image:url(../flags/4x3/gh.svg)}.flag-icon-gh.flag-icon-squared{background-image:url(../flags/1x1/gh.svg)}.flag-icon-gi{background-image:url(../flags/4x3/gi.svg)}.flag-icon-gi.flag-icon-squared{background-image:url(../flags/1x1/gi.svg)}.flag-icon-gl{background-image:url(../flags/4x3/gl.svg)}.flag-icon-gl.flag-icon-squared{background-image:url(../flags/1x1/gl.svg)}.flag-icon-gm{background-image:url(../flags/4x3/gm.svg)}.flag-icon-gm.flag-icon-squared{background-image:url(../flags/1x1/gm.svg)}.flag-icon-gn{background-image:url(../flags/4x3/gn.svg)}.flag-icon-gn.flag-icon-squared{background-image:url(../flags/1x1/gn.svg)}.flag-icon-gp{background-image:url(../flags/4x3/gp.svg)}.flag-icon-gp.flag-icon-squared{background-image:url(../flags/1x1/gp.svg)}.flag-icon-gq{background-image:url(../flags/4x3/gq.svg)}.flag-icon-gq.flag-icon-squared{background-image:url(../flags/1x1/gq.svg)}.flag-icon-gr{background-image:url(../flags/4x3/gr.svg)}.flag-icon-gr.flag-icon-squared{background-image:url(../flags/1x1/gr.svg)}.flag-icon-gs{background-image:url(../flags/4x3/gs.svg)}.flag-icon-gs.flag-icon-squared{background-image:url(../flags/1x1/gs.svg)}.flag-icon-gt{background-image:url(../flags/4x3/gt.svg)}.flag-icon-gt.flag-icon-squared{background-image:url(../flags/1x1/gt.svg)}.flag-icon-gu{background-image:url(../flags/4x3/gu.svg)}.flag-icon-gu.flag-icon-squared{background-image:url(../flags/1x1/gu.svg)}.flag-icon-gw{background-image:url(../flags/4x3/gw.svg)}.flag-icon-gw.flag-icon-squared{background-image:url(../flags/1x1/gw.svg)}.flag-icon-gy{background-image:url(../flags/4x3/gy.svg)}.flag-icon-gy.flag-icon-squared{background-image:url(../flags/1x1/gy.svg)}.flag-icon-hk{background-image:url(../flags/4x3/hk.svg)}.flag-icon-hk.flag-icon-squared{background-image:url(../flags/1x1/hk.svg)}.flag-icon-hm{background-image:url(../flags/4x3/hm.svg)}.flag-icon-hm.flag-icon-squared{background-image:url(../flags/1x1/hm.svg)}.flag-icon-hn{background-image:url(../flags/4x3/hn.svg)}.flag-icon-hn.flag-icon-squared{background-image:url(../flags/1x1/hn.svg)}.flag-icon-hr{background-image:url(../flags/4x3/hr.svg)}.flag-icon-hr.flag-icon-squared{background-image:url(../flags/1x1/hr.svg)}.flag-icon-ht{background-image:url(../flags/4x3/ht.svg)}.flag-icon-ht.flag-icon-squared{background-image:url(../flags/1x1/ht.svg)}.flag-icon-hu{background-image:url(../flags/4x3/hu.svg)}.flag-icon-hu.flag-icon-squared{background-image:url(../flags/1x1/hu.svg)}.flag-icon-id{background-image:url(../flags/4x3/id.svg)}.flag-icon-id.flag-icon-squared{background-image:url(../flags/1x1/id.svg)}.flag-icon-ie{background-image:url(../flags/4x3/ie.svg)}.flag-icon-ie.flag-icon-squared{background-image:url(../flags/1x1/ie.svg)}.flag-icon-il{background-image:url(../flags/4x3/il.svg)}.flag-icon-il.flag-icon-squared{background-image:url(../flags/1x1/il.svg)}.flag-icon-im{background-image:url(../flags/4x3/im.svg)}.flag-icon-im.flag-icon-squared{background-image:url(../flags/1x1/im.svg)}.flag-icon-in{background-image:url(../flags/4x3/in.svg)}.flag-icon-in.flag-icon-squared{background-image:url(../flags/1x1/in.svg)}.flag-icon-io{background-image:url(../flags/4x3/io.svg)}.flag-icon-io.flag-icon-squared{background-image:url(../flags/1x1/io.svg)}.flag-icon-iq{background-image:url(../flags/4x3/iq.svg)}.flag-icon-iq.flag-icon-squared{background-image:url(../flags/1x1/iq.svg)}.flag-icon-ir{background-image:url(../flags/4x3/ir.svg)}.flag-icon-ir.flag-icon-squared{background-image:url(../flags/1x1/ir.svg)}.flag-icon-is{background-image:url(../flags/4x3/is.svg)}.flag-icon-is.flag-icon-squared{background-image:url(../flags/1x1/is.svg)}.flag-icon-it{background-image:url(../flags/4x3/it.svg)}.flag-icon-it.flag-icon-squared{background-image:url(../flags/1x1/it.svg)}.flag-icon-je{background-image:url(../flags/4x3/je.svg)}.flag-icon-je.flag-icon-squared{background-image:url(../flags/1x1/je.svg)}.flag-icon-jm{background-image:url(../flags/4x3/jm.svg)}.flag-icon-jm.flag-icon-squared{background-image:url(../flags/1x1/jm.svg)}.flag-icon-jo{background-image:url(../flags/4x3/jo.svg)}.flag-icon-jo.flag-icon-squared{background-image:url(../flags/1x1/jo.svg)}.flag-icon-jp{background-image:url(../flags/4x3/jp.svg)}.flag-icon-jp.flag-icon-squared{background-image:url(../flags/1x1/jp.svg)}.flag-icon-ke{background-image:url(../flags/4x3/ke.svg)}.flag-icon-ke.flag-icon-squared{background-image:url(../flags/1x1/ke.svg)}.flag-icon-kg{background-image:url(../flags/4x3/kg.svg)}.flag-icon-kg.flag-icon-squared{background-image:url(../flags/1x1/kg.svg)}.flag-icon-kh{background-image:url(../flags/4x3/kh.svg)}.flag-icon-kh.flag-icon-squared{background-image:url(../flags/1x1/kh.svg)}.flag-icon-ki{background-image:url(../flags/4x3/ki.svg)}.flag-icon-ki.flag-icon-squared{background-image:url(../flags/1x1/ki.svg)}.flag-icon-km{background-image:url(../flags/4x3/km.svg)}.flag-icon-km.flag-icon-squared{background-image:url(../flags/1x1/km.svg)}.flag-icon-kn{background-image:url(../flags/4x3/kn.svg)}.flag-icon-kn.flag-icon-squared{background-image:url(../flags/1x1/kn.svg)}.flag-icon-kp{background-image:url(../flags/4x3/kp.svg)}.flag-icon-kp.flag-icon-squared{background-image:url(../flags/1x1/kp.svg)}.flag-icon-kr{background-image:url(../flags/4x3/kr.svg)}.flag-icon-kr.flag-icon-squared{background-image:url(../flags/1x1/kr.svg)}.flag-icon-kw{background-image:url(../flags/4x3/kw.svg)}.flag-icon-kw.flag-icon-squared{background-image:url(../flags/1x1/kw.svg)}.flag-icon-ky{background-image:url(../flags/4x3/ky.svg)}.flag-icon-ky.flag-icon-squared{background-image:url(../flags/1x1/ky.svg)}.flag-icon-kz{background-image:url(../flags/4x3/kz.svg)}.flag-icon-kz.flag-icon-squared{background-image:url(../flags/1x1/kz.svg)}.flag-icon-la{background-image:url(../flags/4x3/la.svg)}.flag-icon-la.flag-icon-squared{background-image:url(../flags/1x1/la.svg)}.flag-icon-lb{background-image:url(../flags/4x3/lb.svg)}.flag-icon-lb.flag-icon-squared{background-image:url(../flags/1x1/lb.svg)}.flag-icon-lc{background-image:url(../flags/4x3/lc.svg)}.flag-icon-lc.flag-icon-squared{background-image:url(../flags/1x1/lc.svg)}.flag-icon-li{background-image:url(../flags/4x3/li.svg)}.flag-icon-li.flag-icon-squared{background-image:url(../flags/1x1/li.svg)}.flag-icon-lk{background-image:url(../flags/4x3/lk.svg)}.flag-icon-lk.flag-icon-squared{background-image:url(../flags/1x1/lk.svg)}.flag-icon-lr{background-image:url(../flags/4x3/lr.svg)}.flag-icon-lr.flag-icon-squared{background-image:url(../flags/1x1/lr.svg)}.flag-icon-ls{background-image:url(../flags/4x3/ls.svg)}.flag-icon-ls.flag-icon-squared{background-image:url(../flags/1x1/ls.svg)}.flag-icon-lt{background-image:url(../flags/4x3/lt.svg)}.flag-icon-lt.flag-icon-squared{background-image:url(../flags/1x1/lt.svg)}.flag-icon-lu{background-image:url(../flags/4x3/lu.svg)}.flag-icon-lu.flag-icon-squared{background-image:url(../flags/1x1/lu.svg)}.flag-icon-lv{background-image:url(../flags/4x3/lv.svg)}.flag-icon-lv.flag-icon-squared{background-image:url(../flags/1x1/lv.svg)}.flag-icon-ly{background-image:url(../flags/4x3/ly.svg)}.flag-icon-ly.flag-icon-squared{background-image:url(../flags/1x1/ly.svg)}.flag-icon-ma{background-image:url(../flags/4x3/ma.svg)}.flag-icon-ma.flag-icon-squared{background-image:url(../flags/1x1/ma.svg)}.flag-icon-mc{background-image:url(../flags/4x3/mc.svg)}.flag-icon-mc.flag-icon-squared{background-image:url(../flags/1x1/mc.svg)}.flag-icon-md{background-image:url(../flags/4x3/md.svg)}.flag-icon-md.flag-icon-squared{background-image:url(../flags/1x1/md.svg)}.flag-icon-me{background-image:url(../flags/4x3/me.svg)}.flag-icon-me.flag-icon-squared{background-image:url(../flags/1x1/me.svg)}.flag-icon-mf{background-image:url(../flags/4x3/mf.svg)}.flag-icon-mf.flag-icon-squared{background-image:url(../flags/1x1/mf.svg)}.flag-icon-mg{background-image:url(../flags/4x3/mg.svg)}.flag-icon-mg.flag-icon-squared{background-image:url(../flags/1x1/mg.svg)}.flag-icon-mh{background-image:url(../flags/4x3/mh.svg)}.flag-icon-mh.flag-icon-squared{background-image:url(../flags/1x1/mh.svg)}.flag-icon-mk{background-image:url(../flags/4x3/mk.svg)}.flag-icon-mk.flag-icon-squared{background-image:url(../flags/1x1/mk.svg)}.flag-icon-ml{background-image:url(../flags/4x3/ml.svg)}.flag-icon-ml.flag-icon-squared{background-image:url(../flags/1x1/ml.svg)}.flag-icon-mm{background-image:url(../flags/4x3/mm.svg)}.flag-icon-mm.flag-icon-squared{background-image:url(../flags/1x1/mm.svg)}.flag-icon-mn{background-image:url(../flags/4x3/mn.svg)}.flag-icon-mn.flag-icon-squared{background-image:url(../flags/1x1/mn.svg)}.flag-icon-mo{background-image:url(../flags/4x3/mo.svg)}.flag-icon-mo.flag-icon-squared{background-image:url(../flags/1x1/mo.svg)}.flag-icon-mp{background-image:url(../flags/4x3/mp.svg)}.flag-icon-mp.flag-icon-squared{background-image:url(../flags/1x1/mp.svg)}.flag-icon-mq{background-image:url(../flags/4x3/mq.svg)}.flag-icon-mq.flag-icon-squared{background-image:url(../flags/1x1/mq.svg)}.flag-icon-mr{background-image:url(../flags/4x3/mr.svg)}.flag-icon-mr.flag-icon-squared{background-image:url(../flags/1x1/mr.svg)}.flag-icon-ms{background-image:url(../flags/4x3/ms.svg)}.flag-icon-ms.flag-icon-squared{background-image:url(../flags/1x1/ms.svg)}.flag-icon-mt{background-image:url(../flags/4x3/mt.svg)}.flag-icon-mt.flag-icon-squared{background-image:url(../flags/1x1/mt.svg)}.flag-icon-mu{background-image:url(../flags/4x3/mu.svg)}.flag-icon-mu.flag-icon-squared{background-image:url(../flags/1x1/mu.svg)}.flag-icon-mv{background-image:url(../flags/4x3/mv.svg)}.flag-icon-mv.flag-icon-squared{background-image:url(../flags/1x1/mv.svg)}.flag-icon-mw{background-image:url(../flags/4x3/mw.svg)}.flag-icon-mw.flag-icon-squared{background-image:url(../flags/1x1/mw.svg)}.flag-icon-mx{background-image:url(../flags/4x3/mx.svg)}.flag-icon-mx.flag-icon-squared{background-image:url(../flags/1x1/mx.svg)}.flag-icon-my{background-image:url(../flags/4x3/my.svg)}.flag-icon-my.flag-icon-squared{background-image:url(../flags/1x1/my.svg)}.flag-icon-mz{background-image:url(../flags/4x3/mz.svg)}.flag-icon-mz.flag-icon-squared{background-image:url(../flags/1x1/mz.svg)}.flag-icon-na{background-image:url(../flags/4x3/na.svg)}.flag-icon-na.flag-icon-squared{background-image:url(../flags/1x1/na.svg)}.flag-icon-nc{background-image:url(../flags/4x3/nc.svg)}.flag-icon-nc.flag-icon-squared{background-image:url(../flags/1x1/nc.svg)}.flag-icon-ne{background-image:url(../flags/4x3/ne.svg)}.flag-icon-ne.flag-icon-squared{background-image:url(../flags/1x1/ne.svg)}.flag-icon-nf{background-image:url(../flags/4x3/nf.svg)}.flag-icon-nf.flag-icon-squared{background-image:url(../flags/1x1/nf.svg)}.flag-icon-ng{background-image:url(../flags/4x3/ng.svg)}.flag-icon-ng.flag-icon-squared{background-image:url(../flags/1x1/ng.svg)}.flag-icon-ni{background-image:url(../flags/4x3/ni.svg)}.flag-icon-ni.flag-icon-squared{background-image:url(../flags/1x1/ni.svg)}.flag-icon-nl{background-image:url(../flags/4x3/nl.svg)}.flag-icon-nl.flag-icon-squared{background-image:url(../flags/1x1/nl.svg)}.flag-icon-no{background-image:url(../flags/4x3/no.svg)}.flag-icon-no.flag-icon-squared{background-image:url(../flags/1x1/no.svg)}.flag-icon-np{background-image:url(../flags/4x3/np.svg)}.flag-icon-np.flag-icon-squared{background-image:url(../flags/1x1/np.svg)}.flag-icon-nr{background-image:url(../flags/4x3/nr.svg)}.flag-icon-nr.flag-icon-squared{background-image:url(../flags/1x1/nr.svg)}.flag-icon-nu{background-image:url(../flags/4x3/nu.svg)}.flag-icon-nu.flag-icon-squared{background-image:url(../flags/1x1/nu.svg)}.flag-icon-nz{background-image:url(../flags/4x3/nz.svg)}.flag-icon-nz.flag-icon-squared{background-image:url(../flags/1x1/nz.svg)}.flag-icon-om{background-image:url(../flags/4x3/om.svg)}.flag-icon-om.flag-icon-squared{background-image:url(../flags/1x1/om.svg)}.flag-icon-pa{background-image:url(../flags/4x3/pa.svg)}.flag-icon-pa.flag-icon-squared{background-image:url(../flags/1x1/pa.svg)}.flag-icon-pe{background-image:url(../flags/4x3/pe.svg)}.flag-icon-pe.flag-icon-squared{background-image:url(../flags/1x1/pe.svg)}.flag-icon-pf{background-image:url(../flags/4x3/pf.svg)}.flag-icon-pf.flag-icon-squared{background-image:url(../flags/1x1/pf.svg)}.flag-icon-pg{background-image:url(../flags/4x3/pg.svg)}.flag-icon-pg.flag-icon-squared{background-image:url(../flags/1x1/pg.svg)}.flag-icon-ph{background-image:url(../flags/4x3/ph.svg)}.flag-icon-ph.flag-icon-squared{background-image:url(../flags/1x1/ph.svg)}.flag-icon-pk{background-image:url(../flags/4x3/pk.svg)}.flag-icon-pk.flag-icon-squared{background-image:url(../flags/1x1/pk.svg)}.flag-icon-pl{background-image:url(../flags/4x3/pl.svg)}.flag-icon-pl.flag-icon-squared{background-image:url(../flags/1x1/pl.svg)}.flag-icon-pm{background-image:url(../flags/4x3/pm.svg)}.flag-icon-pm.flag-icon-squared{background-image:url(../flags/1x1/pm.svg)}.flag-icon-pn{background-image:url(../flags/4x3/pn.svg)}.flag-icon-pn.flag-icon-squared{background-image:url(../flags/1x1/pn.svg)}.flag-icon-pr{background-image:url(../flags/4x3/pr.svg)}.flag-icon-pr.flag-icon-squared{background-image:url(../flags/1x1/pr.svg)}.flag-icon-ps{background-image:url(../flags/4x3/ps.svg)}.flag-icon-ps.flag-icon-squared{background-image:url(../flags/1x1/ps.svg)}.flag-icon-pt{background-image:url(../flags/4x3/pt.svg)}.flag-icon-pt.flag-icon-squared{background-image:url(../flags/1x1/pt.svg)}.flag-icon-pw{background-image:url(../flags/4x3/pw.svg)}.flag-icon-pw.flag-icon-squared{background-image:url(../flags/1x1/pw.svg)}.flag-icon-py{background-image:url(../flags/4x3/py.svg)}.flag-icon-py.flag-icon-squared{background-image:url(../flags/1x1/py.svg)}.flag-icon-qa{background-image:url(../flags/4x3/qa.svg)}.flag-icon-qa.flag-icon-squared{background-image:url(../flags/1x1/qa.svg)}.flag-icon-re{background-image:url(../flags/4x3/re.svg)}.flag-icon-re.flag-icon-squared{background-image:url(../flags/1x1/re.svg)}.flag-icon-ro{background-image:url(../flags/4x3/ro.svg)}.flag-icon-ro.flag-icon-squared{background-image:url(../flags/1x1/ro.svg)}.flag-icon-rs{background-image:url(../flags/4x3/rs.svg)}.flag-icon-rs.flag-icon-squared{background-image:url(../flags/1x1/rs.svg)}.flag-icon-ru{background-image:url(../flags/4x3/ru.svg)}.flag-icon-ru.flag-icon-squared{background-image:url(../flags/1x1/ru.svg)}.flag-icon-rw{background-image:url(../flags/4x3/rw.svg)}.flag-icon-rw.flag-icon-squared{background-image:url(../flags/1x1/rw.svg)}.flag-icon-sa{background-image:url(../flags/4x3/sa.svg)}.flag-icon-sa.flag-icon-squared{background-image:url(../flags/1x1/sa.svg)}.flag-icon-sb{background-image:url(../flags/4x3/sb.svg)}.flag-icon-sb.flag-icon-squared{background-image:url(../flags/1x1/sb.svg)}.flag-icon-sc{background-image:url(../flags/4x3/sc.svg)}.flag-icon-sc.flag-icon-squared{background-image:url(../flags/1x1/sc.svg)}.flag-icon-sd{background-image:url(../flags/4x3/sd.svg)}.flag-icon-sd.flag-icon-squared{background-image:url(../flags/1x1/sd.svg)}.flag-icon-se{background-image:url(../flags/4x3/se.svg)}.flag-icon-se.flag-icon-squared{background-image:url(../flags/1x1/se.svg)}.flag-icon-sg{background-image:url(../flags/4x3/sg.svg)}.flag-icon-sg.flag-icon-squared{background-image:url(../flags/1x1/sg.svg)}.flag-icon-sh{background-image:url(../flags/4x3/sh.svg)}.flag-icon-sh.flag-icon-squared{background-image:url(../flags/1x1/sh.svg)}.flag-icon-si{background-image:url(../flags/4x3/si.svg)}.flag-icon-si.flag-icon-squared{background-image:url(../flags/1x1/si.svg)}.flag-icon-sj{background-image:url(../flags/4x3/sj.svg)}.flag-icon-sj.flag-icon-squared{background-image:url(../flags/1x1/sj.svg)}.flag-icon-sk{background-image:url(../flags/4x3/sk.svg)}.flag-icon-sk.flag-icon-squared{background-image:url(../flags/1x1/sk.svg)}.flag-icon-sl{background-image:url(../flags/4x3/sl.svg)}.flag-icon-sl.flag-icon-squared{background-image:url(../flags/1x1/sl.svg)}.flag-icon-sm{background-image:url(../flags/4x3/sm.svg)}.flag-icon-sm.flag-icon-squared{background-image:url(../flags/1x1/sm.svg)}.flag-icon-sn{background-image:url(../flags/4x3/sn.svg)}.flag-icon-sn.flag-icon-squared{background-image:url(../flags/1x1/sn.svg)}.flag-icon-so{background-image:url(../flags/4x3/so.svg)}.flag-icon-so.flag-icon-squared{background-image:url(../flags/1x1/so.svg)}.flag-icon-sr{background-image:url(../flags/4x3/sr.svg)}.flag-icon-sr.flag-icon-squared{background-image:url(../flags/1x1/sr.svg)}.flag-icon-ss{background-image:url(../flags/4x3/ss.svg)}.flag-icon-ss.flag-icon-squared{background-image:url(../flags/1x1/ss.svg)}.flag-icon-st{background-image:url(../flags/4x3/st.svg)}.flag-icon-st.flag-icon-squared{background-image:url(../flags/1x1/st.svg)}.flag-icon-sv{background-image:url(../flags/4x3/sv.svg)}.flag-icon-sv.flag-icon-squared{background-image:url(../flags/1x1/sv.svg)}.flag-icon-sx{background-image:url(../flags/4x3/sx.svg)}.flag-icon-sx.flag-icon-squared{background-image:url(../flags/1x1/sx.svg)}.flag-icon-sy{background-image:url(../flags/4x3/sy.svg)}.flag-icon-sy.flag-icon-squared{background-image:url(../flags/1x1/sy.svg)}.flag-icon-sz{background-image:url(../flags/4x3/sz.svg)}.flag-icon-sz.flag-icon-squared{background-image:url(../flags/1x1/sz.svg)}.flag-icon-tc{background-image:url(../flags/4x3/tc.svg)}.flag-icon-tc.flag-icon-squared{background-image:url(../flags/1x1/tc.svg)}.flag-icon-td{background-image:url(../flags/4x3/td.svg)}.flag-icon-td.flag-icon-squared{background-image:url(../flags/1x1/td.svg)}.flag-icon-tf{background-image:url(../flags/4x3/tf.svg)}.flag-icon-tf.flag-icon-squared{background-image:url(../flags/1x1/tf.svg)}.flag-icon-tg{background-image:url(../flags/4x3/tg.svg)}.flag-icon-tg.flag-icon-squared{background-image:url(../flags/1x1/tg.svg)}.flag-icon-th{background-image:url(../flags/4x3/th.svg)}.flag-icon-th.flag-icon-squared{background-image:url(../flags/1x1/th.svg)}.flag-icon-tj{background-image:url(../flags/4x3/tj.svg)}.flag-icon-tj.flag-icon-squared{background-image:url(../flags/1x1/tj.svg)}.flag-icon-tk{background-image:url(../flags/4x3/tk.svg)}.flag-icon-tk.flag-icon-squared{background-image:url(../flags/1x1/tk.svg)}.flag-icon-tl{background-image:url(../flags/4x3/tl.svg)}.flag-icon-tl.flag-icon-squared{background-image:url(../flags/1x1/tl.svg)}.flag-icon-tm{background-image:url(../flags/4x3/tm.svg)}.flag-icon-tm.flag-icon-squared{background-image:url(../flags/1x1/tm.svg)}.flag-icon-tn{background-image:url(../flags/4x3/tn.svg)}.flag-icon-tn.flag-icon-squared{background-image:url(../flags/1x1/tn.svg)}.flag-icon-to{background-image:url(../flags/4x3/to.svg)}.flag-icon-to.flag-icon-squared{background-image:url(../flags/1x1/to.svg)}.flag-icon-tr{background-image:url(../flags/4x3/tr.svg)}.flag-icon-tr.flag-icon-squared{background-image:url(../flags/1x1/tr.svg)}.flag-icon-tt{background-image:url(../flags/4x3/tt.svg)}.flag-icon-tt.flag-icon-squared{background-image:url(../flags/1x1/tt.svg)}.flag-icon-tv{background-image:url(../flags/4x3/tv.svg)}.flag-icon-tv.flag-icon-squared{background-image:url(../flags/1x1/tv.svg)}.flag-icon-tw{background-image:url(../flags/4x3/tw.svg)}.flag-icon-tw.flag-icon-squared{background-image:url(../flags/1x1/tw.svg)}.flag-icon-tz{background-image:url(../flags/4x3/tz.svg)}.flag-icon-tz.flag-icon-squared{background-image:url(../flags/1x1/tz.svg)}.flag-icon-ua{background-image:url(../flags/4x3/ua.svg)}.flag-icon-ua.flag-icon-squared{background-image:url(../flags/1x1/ua.svg)}.flag-icon-ug{background-image:url(../flags/4x3/ug.svg)}.flag-icon-ug.flag-icon-squared{background-image:url(../flags/1x1/ug.svg)}.flag-icon-um{background-image:url(../flags/4x3/um.svg)}.flag-icon-um.flag-icon-squared{background-image:url(../flags/1x1/um.svg)}.flag-icon-us{background-image:url(../flags/4x3/us.svg)}.flag-icon-us.flag-icon-squared{background-image:url(../flags/1x1/us.svg)}.flag-icon-uy{background-image:url(../flags/4x3/uy.svg)}.flag-icon-uy.flag-icon-squared{background-image:url(../flags/1x1/uy.svg)}.flag-icon-uz{background-image:url(../flags/4x3/uz.svg)}.flag-icon-uz.flag-icon-squared{background-image:url(../flags/1x1/uz.svg)}.flag-icon-va{background-image:url(../flags/4x3/va.svg)}.flag-icon-va.flag-icon-squared{background-image:url(../flags/1x1/va.svg)}.flag-icon-vc{background-image:url(../flags/4x3/vc.svg)}.flag-icon-vc.flag-icon-squared{background-image:url(../flags/1x1/vc.svg)}.flag-icon-ve{background-image:url(../flags/4x3/ve.svg)}.flag-icon-ve.flag-icon-squared{background-image:url(../flags/1x1/ve.svg)}.flag-icon-vg{background-image:url(../flags/4x3/vg.svg)}.flag-icon-vg.flag-icon-squared{background-image:url(../flags/1x1/vg.svg)}.flag-icon-vi{background-image:url(../flags/4x3/vi.svg)}.flag-icon-vi.flag-icon-squared{background-image:url(../flags/1x1/vi.svg)}.flag-icon-vn{background-image:url(../flags/4x3/vn.svg)}.flag-icon-vn.flag-icon-squared{background-image:url(../flags/1x1/vn.svg)}.flag-icon-vu{background-image:url(../flags/4x3/vu.svg)}.flag-icon-vu.flag-icon-squared{background-image:url(../flags/1x1/vu.svg)}.flag-icon-wf{background-image:url(../flags/4x3/wf.svg)}.flag-icon-wf.flag-icon-squared{background-image:url(../flags/1x1/wf.svg)}.flag-icon-ws{background-image:url(../flags/4x3/ws.svg)}.flag-icon-ws.flag-icon-squared{background-image:url(../flags/1x1/ws.svg)}.flag-icon-ye{background-image:url(../flags/4x3/ye.svg)}.flag-icon-ye.flag-icon-squared{background-image:url(../flags/1x1/ye.svg)}.flag-icon-yt{background-image:url(../flags/4x3/yt.svg)}.flag-icon-yt.flag-icon-squared{background-image:url(../flags/1x1/yt.svg)}.flag-icon-za{background-image:url(../flags/4x3/za.svg)}.flag-icon-za.flag-icon-squared{background-image:url(../flags/1x1/za.svg)}.flag-icon-zm{background-image:url(../flags/4x3/zm.svg)}.flag-icon-zm.flag-icon-squared{background-image:url(../flags/1x1/zm.svg)}.flag-icon-zw{background-image:url(../flags/4x3/zw.svg)}.flag-icon-zw.flag-icon-squared{background-image:url(../flags/1x1/zw.svg)}.flag-icon-es-ct{background-image:url(../flags/4x3/es-ct.svg)}.flag-icon-es-ct.flag-icon-squared{background-image:url(../flags/1x1/es-ct.svg)}.flag-icon-eu{background-image:url(../flags/4x3/eu.svg)}.flag-icon-eu.flag-icon-squared{background-image:url(../flags/1x1/eu.svg)}.flag-icon-gb-eng{background-image:url(../flags/4x3/gb-eng.svg)}.flag-icon-gb-eng.flag-icon-squared{background-image:url(../flags/1x1/gb-eng.svg)}.flag-icon-gb-nir{background-image:url(../flags/4x3/gb-nir.svg)}.flag-icon-gb-nir.flag-icon-squared{background-image:url(../flags/1x1/gb-nir.svg)}.flag-icon-gb-sct{background-image:url(../flags/4x3/gb-sct.svg)}.flag-icon-gb-sct.flag-icon-squared{background-image:url(../flags/1x1/gb-sct.svg)}.flag-icon-gb-wls{background-image:url(../flags/4x3/gb-wls.svg)}.flag-icon-gb-wls.flag-icon-squared{background-image:url(../flags/1x1/gb-wls.svg)}.flag-icon-un{background-image:url(../flags/4x3/un.svg)}.flag-icon-un.flag-icon-squared{background-image:url(../flags/1x1/un.svg)} \ No newline at end of file diff --git a/public/assets/lib/flag-icon-css/flags/1x1/ad.svg b/public/assets/lib/flag-icon-css/flags/1x1/ad.svg new file mode 100755 index 0000000..37900ee --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/ad.svg @@ -0,0 +1,148 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/ae.svg b/public/assets/lib/flag-icon-css/flags/1x1/ae.svg new file mode 100755 index 0000000..739c5d4 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/ae.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/af.svg b/public/assets/lib/flag-icon-css/flags/1x1/af.svg new file mode 100755 index 0000000..5ddaa40 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/af.svg @@ -0,0 +1,81 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/ag.svg b/public/assets/lib/flag-icon-css/flags/1x1/ag.svg new file mode 100755 index 0000000..d0b2a83 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/ag.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/ai.svg b/public/assets/lib/flag-icon-css/flags/1x1/ai.svg new file mode 100755 index 0000000..7dd6a79 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/ai.svg @@ -0,0 +1,767 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/al.svg b/public/assets/lib/flag-icon-css/flags/1x1/al.svg new file mode 100755 index 0000000..7fd3e1a --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/al.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/am.svg b/public/assets/lib/flag-icon-css/flags/1x1/am.svg new file mode 100755 index 0000000..1198be0 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/am.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/ao.svg b/public/assets/lib/flag-icon-css/flags/1x1/ao.svg new file mode 100755 index 0000000..105282c --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/ao.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/aq.svg b/public/assets/lib/flag-icon-css/flags/1x1/aq.svg new file mode 100755 index 0000000..f5dd131 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/aq.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/ar.svg b/public/assets/lib/flag-icon-css/flags/1x1/ar.svg new file mode 100755 index 0000000..847746f --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/ar.svg @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/as.svg b/public/assets/lib/flag-icon-css/flags/1x1/as.svg new file mode 100755 index 0000000..ea75ee7 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/as.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/at.svg b/public/assets/lib/flag-icon-css/flags/1x1/at.svg new file mode 100755 index 0000000..8f3745f --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/at.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/au.svg b/public/assets/lib/flag-icon-css/flags/1x1/au.svg new file mode 100755 index 0000000..a199c5d --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/au.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/aw.svg b/public/assets/lib/flag-icon-css/flags/1x1/aw.svg new file mode 100755 index 0000000..248a08d --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/aw.svg @@ -0,0 +1,186 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/ax.svg b/public/assets/lib/flag-icon-css/flags/1x1/ax.svg new file mode 100755 index 0000000..cdeb07e --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/ax.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/az.svg b/public/assets/lib/flag-icon-css/flags/1x1/az.svg new file mode 100755 index 0000000..0119e1a --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/az.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/ba.svg b/public/assets/lib/flag-icon-css/flags/1x1/ba.svg new file mode 100755 index 0000000..5b92b0a --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/ba.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/bb.svg b/public/assets/lib/flag-icon-css/flags/1x1/bb.svg new file mode 100755 index 0000000..de79483 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/bb.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/bd.svg b/public/assets/lib/flag-icon-css/flags/1x1/bd.svg new file mode 100755 index 0000000..4cb38cf --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/bd.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/be.svg b/public/assets/lib/flag-icon-css/flags/1x1/be.svg new file mode 100755 index 0000000..01496c3 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/be.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/bf.svg b/public/assets/lib/flag-icon-css/flags/1x1/bf.svg new file mode 100755 index 0000000..a3c7c44 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/bf.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/bg.svg b/public/assets/lib/flag-icon-css/flags/1x1/bg.svg new file mode 100755 index 0000000..5abe67f --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/bg.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/bh.svg b/public/assets/lib/flag-icon-css/flags/1x1/bh.svg new file mode 100755 index 0000000..2812134 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/bh.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/bi.svg b/public/assets/lib/flag-icon-css/flags/1x1/bi.svg new file mode 100755 index 0000000..2701c48 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/bi.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/bj.svg b/public/assets/lib/flag-icon-css/flags/1x1/bj.svg new file mode 100755 index 0000000..07c4c11 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/bj.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/bl.svg b/public/assets/lib/flag-icon-css/flags/1x1/bl.svg new file mode 100755 index 0000000..0fa74e1 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/bl.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/bm.svg b/public/assets/lib/flag-icon-css/flags/1x1/bm.svg new file mode 100755 index 0000000..139480c --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/bm.svg @@ -0,0 +1,98 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/bn.svg b/public/assets/lib/flag-icon-css/flags/1x1/bn.svg new file mode 100755 index 0000000..e88cc8e --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/bn.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/bo.svg b/public/assets/lib/flag-icon-css/flags/1x1/bo.svg new file mode 100755 index 0000000..7bcbb6c --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/bo.svg @@ -0,0 +1,678 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/bq.svg b/public/assets/lib/flag-icon-css/flags/1x1/bq.svg new file mode 100755 index 0000000..cc872ef --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/bq.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/br.svg b/public/assets/lib/flag-icon-css/flags/1x1/br.svg new file mode 100755 index 0000000..dcc7d61 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/br.svg @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/bs.svg b/public/assets/lib/flag-icon-css/flags/1x1/bs.svg new file mode 100755 index 0000000..decdebb --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/bs.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/bt.svg b/public/assets/lib/flag-icon-css/flags/1x1/bt.svg new file mode 100755 index 0000000..3ebf25f --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/bt.svg @@ -0,0 +1,89 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/bv.svg b/public/assets/lib/flag-icon-css/flags/1x1/bv.svg new file mode 100755 index 0000000..01c9ee1 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/bv.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/bw.svg b/public/assets/lib/flag-icon-css/flags/1x1/bw.svg new file mode 100755 index 0000000..0bc5d3d --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/bw.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/by.svg b/public/assets/lib/flag-icon-css/flags/1x1/by.svg new file mode 100755 index 0000000..73e14f7 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/by.svg @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/bz.svg b/public/assets/lib/flag-icon-css/flags/1x1/bz.svg new file mode 100755 index 0000000..3884903 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/bz.svg @@ -0,0 +1,145 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/ca.svg b/public/assets/lib/flag-icon-css/flags/1x1/ca.svg new file mode 100755 index 0000000..1eb0b66 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/ca.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/cc.svg b/public/assets/lib/flag-icon-css/flags/1x1/cc.svg new file mode 100755 index 0000000..0a730c1 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/cc.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/cd.svg b/public/assets/lib/flag-icon-css/flags/1x1/cd.svg new file mode 100755 index 0000000..5da2a96 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/cd.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/cf.svg b/public/assets/lib/flag-icon-css/flags/1x1/cf.svg new file mode 100755 index 0000000..e924621 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/cf.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/cg.svg b/public/assets/lib/flag-icon-css/flags/1x1/cg.svg new file mode 100755 index 0000000..a52ba7e --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/cg.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/ch.svg b/public/assets/lib/flag-icon-css/flags/1x1/ch.svg new file mode 100755 index 0000000..773cdc8 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/ch.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/ci.svg b/public/assets/lib/flag-icon-css/flags/1x1/ci.svg new file mode 100755 index 0000000..bd1e3f4 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/ci.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/ck.svg b/public/assets/lib/flag-icon-css/flags/1x1/ck.svg new file mode 100755 index 0000000..b7c2f37 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/ck.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/cl.svg b/public/assets/lib/flag-icon-css/flags/1x1/cl.svg new file mode 100755 index 0000000..b808896 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/cl.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/cm.svg b/public/assets/lib/flag-icon-css/flags/1x1/cm.svg new file mode 100755 index 0000000..08b710b --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/cm.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/cn.svg b/public/assets/lib/flag-icon-css/flags/1x1/cn.svg new file mode 100755 index 0000000..7873c1b --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/cn.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/co.svg b/public/assets/lib/flag-icon-css/flags/1x1/co.svg new file mode 100755 index 0000000..18d1c5f --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/co.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/cr.svg b/public/assets/lib/flag-icon-css/flags/1x1/cr.svg new file mode 100755 index 0000000..a60a6dd --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/cr.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/cu.svg b/public/assets/lib/flag-icon-css/flags/1x1/cu.svg new file mode 100755 index 0000000..3968176 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/cu.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/cv.svg b/public/assets/lib/flag-icon-css/flags/1x1/cv.svg new file mode 100755 index 0000000..a8311b2 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/cv.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/cw.svg b/public/assets/lib/flag-icon-css/flags/1x1/cw.svg new file mode 100755 index 0000000..6cc9711 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/cw.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/cx.svg b/public/assets/lib/flag-icon-css/flags/1x1/cx.svg new file mode 100755 index 0000000..687594f --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/cx.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/cy.svg b/public/assets/lib/flag-icon-css/flags/1x1/cy.svg new file mode 100755 index 0000000..e0233ae --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/cy.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/cz.svg b/public/assets/lib/flag-icon-css/flags/1x1/cz.svg new file mode 100755 index 0000000..898d0e9 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/cz.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/de.svg b/public/assets/lib/flag-icon-css/flags/1x1/de.svg new file mode 100755 index 0000000..b9ea8a6 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/de.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/dj.svg b/public/assets/lib/flag-icon-css/flags/1x1/dj.svg new file mode 100755 index 0000000..3f6b2e4 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/dj.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/dk.svg b/public/assets/lib/flag-icon-css/flags/1x1/dk.svg new file mode 100755 index 0000000..51ff69f --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/dk.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/dm.svg b/public/assets/lib/flag-icon-css/flags/1x1/dm.svg new file mode 100755 index 0000000..43a1615 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/dm.svg @@ -0,0 +1,152 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/do.svg b/public/assets/lib/flag-icon-css/flags/1x1/do.svg new file mode 100755 index 0000000..2fda120 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/do.svg @@ -0,0 +1,6745 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/dz.svg b/public/assets/lib/flag-icon-css/flags/1x1/dz.svg new file mode 100755 index 0000000..10afe83 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/dz.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/ec.svg b/public/assets/lib/flag-icon-css/flags/1x1/ec.svg new file mode 100755 index 0000000..e957ae9 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/ec.svg @@ -0,0 +1,138 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/ee.svg b/public/assets/lib/flag-icon-css/flags/1x1/ee.svg new file mode 100755 index 0000000..fbc9e33 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/ee.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/eg.svg b/public/assets/lib/flag-icon-css/flags/1x1/eg.svg new file mode 100755 index 0000000..012d90d --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/eg.svg @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/eh.svg b/public/assets/lib/flag-icon-css/flags/1x1/eh.svg new file mode 100755 index 0000000..849cd9c --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/eh.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/er.svg b/public/assets/lib/flag-icon-css/flags/1x1/er.svg new file mode 100755 index 0000000..59ddf4b --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/er.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/es-ct.svg b/public/assets/lib/flag-icon-css/flags/1x1/es-ct.svg new file mode 100755 index 0000000..ddb67b7 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/es-ct.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/es.svg b/public/assets/lib/flag-icon-css/flags/1x1/es.svg new file mode 100755 index 0000000..8cc73b2 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/es.svg @@ -0,0 +1,547 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/et.svg b/public/assets/lib/flag-icon-css/flags/1x1/et.svg new file mode 100755 index 0000000..cfed91f --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/et.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/eu.svg b/public/assets/lib/flag-icon-css/flags/1x1/eu.svg new file mode 100755 index 0000000..b031d2d --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/eu.svg @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/fi.svg b/public/assets/lib/flag-icon-css/flags/1x1/fi.svg new file mode 100755 index 0000000..aff1304 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/fi.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/fj.svg b/public/assets/lib/flag-icon-css/flags/1x1/fj.svg new file mode 100755 index 0000000..c58eb86 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/fj.svg @@ -0,0 +1,123 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/fk.svg b/public/assets/lib/flag-icon-css/flags/1x1/fk.svg new file mode 100755 index 0000000..bd6234d --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/fk.svg @@ -0,0 +1,89 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/fm.svg b/public/assets/lib/flag-icon-css/flags/1x1/fm.svg new file mode 100755 index 0000000..791fde9 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/fm.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/fo.svg b/public/assets/lib/flag-icon-css/flags/1x1/fo.svg new file mode 100755 index 0000000..b28915c --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/fo.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/fr.svg b/public/assets/lib/flag-icon-css/flags/1x1/fr.svg new file mode 100755 index 0000000..f8e3ca0 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/fr.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/ga.svg b/public/assets/lib/flag-icon-css/flags/1x1/ga.svg new file mode 100755 index 0000000..16c81b3 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/ga.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/gb-eng.svg b/public/assets/lib/flag-icon-css/flags/1x1/gb-eng.svg new file mode 100755 index 0000000..18026d2 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/gb-eng.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/gb-nir.svg b/public/assets/lib/flag-icon-css/flags/1x1/gb-nir.svg new file mode 100755 index 0000000..afaddda --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/gb-nir.svg @@ -0,0 +1,130 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/gb-sct.svg b/public/assets/lib/flag-icon-css/flags/1x1/gb-sct.svg new file mode 100755 index 0000000..6987b08 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/gb-sct.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/gb-wls.svg b/public/assets/lib/flag-icon-css/flags/1x1/gb-wls.svg new file mode 100755 index 0000000..de7a2a9 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/gb-wls.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/gb.svg b/public/assets/lib/flag-icon-css/flags/1x1/gb.svg new file mode 100755 index 0000000..07e6a5c --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/gb.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/gd.svg b/public/assets/lib/flag-icon-css/flags/1x1/gd.svg new file mode 100755 index 0000000..c44890f --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/gd.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/ge.svg b/public/assets/lib/flag-icon-css/flags/1x1/ge.svg new file mode 100755 index 0000000..9e4ea35 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/ge.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/gf.svg b/public/assets/lib/flag-icon-css/flags/1x1/gf.svg new file mode 100755 index 0000000..1e05394 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/gf.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/gg.svg b/public/assets/lib/flag-icon-css/flags/1x1/gg.svg new file mode 100755 index 0000000..2d06a9f --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/gg.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/gh.svg b/public/assets/lib/flag-icon-css/flags/1x1/gh.svg new file mode 100755 index 0000000..4b6446d --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/gh.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/gi.svg b/public/assets/lib/flag-icon-css/flags/1x1/gi.svg new file mode 100755 index 0000000..9445446 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/gi.svg @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/gl.svg b/public/assets/lib/flag-icon-css/flags/1x1/gl.svg new file mode 100755 index 0000000..dd84e01 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/gl.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/gm.svg b/public/assets/lib/flag-icon-css/flags/1x1/gm.svg new file mode 100755 index 0000000..b06ab6c --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/gm.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/gn.svg b/public/assets/lib/flag-icon-css/flags/1x1/gn.svg new file mode 100755 index 0000000..8f8855d --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/gn.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/gp.svg b/public/assets/lib/flag-icon-css/flags/1x1/gp.svg new file mode 100755 index 0000000..0a5bdb0 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/gp.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/gq.svg b/public/assets/lib/flag-icon-css/flags/1x1/gq.svg new file mode 100755 index 0000000..b735e4d --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/gq.svg @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/gr.svg b/public/assets/lib/flag-icon-css/flags/1x1/gr.svg new file mode 100755 index 0000000..89b94b3 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/gr.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/gs.svg b/public/assets/lib/flag-icon-css/flags/1x1/gs.svg new file mode 100755 index 0000000..62e5532 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/gs.svg @@ -0,0 +1,206 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + L + + + E + + + O + + + T + + + E + + + R + + + R + + + R + + + R + + + R + + + E + + + O + + + O + + + A + + + A + + + A + + + M + + + P + + + P + + + P + + + I + + + T + + + T + + + M + + + G + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/gt.svg b/public/assets/lib/flag-icon-css/flags/1x1/gt.svg new file mode 100755 index 0000000..a8fb779 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/gt.svg @@ -0,0 +1,204 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/gu.svg b/public/assets/lib/flag-icon-css/flags/1x1/gu.svg new file mode 100755 index 0000000..b8e6bd4 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/gu.svg @@ -0,0 +1,39 @@ + + + + + + + + + + + G + + + U + + + A + + + M + + + + + + + + G + + + U + + + A + + + M + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/gw.svg b/public/assets/lib/flag-icon-css/flags/1x1/gw.svg new file mode 100755 index 0000000..064a593 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/gw.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/gy.svg b/public/assets/lib/flag-icon-css/flags/1x1/gy.svg new file mode 100755 index 0000000..57eb520 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/gy.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/hk.svg b/public/assets/lib/flag-icon-css/flags/1x1/hk.svg new file mode 100755 index 0000000..b2f0b3c --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/hk.svg @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/hm.svg b/public/assets/lib/flag-icon-css/flags/1x1/hm.svg new file mode 100755 index 0000000..7e1f7e7 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/hm.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/hn.svg b/public/assets/lib/flag-icon-css/flags/1x1/hn.svg new file mode 100755 index 0000000..c7c4c4a --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/hn.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/hr.svg b/public/assets/lib/flag-icon-css/flags/1x1/hr.svg new file mode 100755 index 0000000..b6e242b --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/hr.svg @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/ht.svg b/public/assets/lib/flag-icon-css/flags/1x1/ht.svg new file mode 100755 index 0000000..994a4e5 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/ht.svg @@ -0,0 +1,116 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/hu.svg b/public/assets/lib/flag-icon-css/flags/1x1/hu.svg new file mode 100755 index 0000000..94bc29f --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/hu.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/id.svg b/public/assets/lib/flag-icon-css/flags/1x1/id.svg new file mode 100755 index 0000000..6d2cf09 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/id.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/ie.svg b/public/assets/lib/flag-icon-css/flags/1x1/ie.svg new file mode 100755 index 0000000..60448a9 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/ie.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/il.svg b/public/assets/lib/flag-icon-css/flags/1x1/il.svg new file mode 100755 index 0000000..6cb4b1c --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/il.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/im.svg b/public/assets/lib/flag-icon-css/flags/1x1/im.svg new file mode 100755 index 0000000..fe39716 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/im.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/in.svg b/public/assets/lib/flag-icon-css/flags/1x1/in.svg new file mode 100755 index 0000000..e6557cd --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/in.svg @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/io.svg b/public/assets/lib/flag-icon-css/flags/1x1/io.svg new file mode 100755 index 0000000..1599825 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/io.svg @@ -0,0 +1,140 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/iq.svg b/public/assets/lib/flag-icon-css/flags/1x1/iq.svg new file mode 100755 index 0000000..66292f1 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/iq.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/ir.svg b/public/assets/lib/flag-icon-css/flags/1x1/ir.svg new file mode 100755 index 0000000..11447a9 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/ir.svg @@ -0,0 +1,219 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/is.svg b/public/assets/lib/flag-icon-css/flags/1x1/is.svg new file mode 100755 index 0000000..08d1e68 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/is.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/it.svg b/public/assets/lib/flag-icon-css/flags/1x1/it.svg new file mode 100755 index 0000000..615c58f --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/it.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/je.svg b/public/assets/lib/flag-icon-css/flags/1x1/je.svg new file mode 100755 index 0000000..16cb1c5 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/je.svg @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/jm.svg b/public/assets/lib/flag-icon-css/flags/1x1/jm.svg new file mode 100755 index 0000000..c261da0 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/jm.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/jo.svg b/public/assets/lib/flag-icon-css/flags/1x1/jo.svg new file mode 100755 index 0000000..ab1c62a --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/jo.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/jp.svg b/public/assets/lib/flag-icon-css/flags/1x1/jp.svg new file mode 100755 index 0000000..afa0c7a --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/jp.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/ke.svg b/public/assets/lib/flag-icon-css/flags/1x1/ke.svg new file mode 100755 index 0000000..1c07a44 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/ke.svg @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/kg.svg b/public/assets/lib/flag-icon-css/flags/1x1/kg.svg new file mode 100755 index 0000000..7aee303 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/kg.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/kh.svg b/public/assets/lib/flag-icon-css/flags/1x1/kh.svg new file mode 100755 index 0000000..6d7b7ea --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/kh.svg @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/ki.svg b/public/assets/lib/flag-icon-css/flags/1x1/ki.svg new file mode 100755 index 0000000..aa94a4b --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/ki.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/km.svg b/public/assets/lib/flag-icon-css/flags/1x1/km.svg new file mode 100755 index 0000000..c21ed93 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/km.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/kn.svg b/public/assets/lib/flag-icon-css/flags/1x1/kn.svg new file mode 100755 index 0000000..4b2a248 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/kn.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/kp.svg b/public/assets/lib/flag-icon-css/flags/1x1/kp.svg new file mode 100755 index 0000000..8eda6be --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/kp.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/kr.svg b/public/assets/lib/flag-icon-css/flags/1x1/kr.svg new file mode 100755 index 0000000..d0ce1b0 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/kr.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/kw.svg b/public/assets/lib/flag-icon-css/flags/1x1/kw.svg new file mode 100755 index 0000000..3d4047f --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/kw.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/ky.svg b/public/assets/lib/flag-icon-css/flags/1x1/ky.svg new file mode 100755 index 0000000..2659940 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/ky.svg @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/kz.svg b/public/assets/lib/flag-icon-css/flags/1x1/kz.svg new file mode 100755 index 0000000..f7d1efd --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/kz.svg @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/la.svg b/public/assets/lib/flag-icon-css/flags/1x1/la.svg new file mode 100755 index 0000000..0a7178f --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/la.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/lb.svg b/public/assets/lib/flag-icon-css/flags/1x1/lb.svg new file mode 100755 index 0000000..6718908 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/lb.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/lc.svg b/public/assets/lib/flag-icon-css/flags/1x1/lc.svg new file mode 100755 index 0000000..b13b885 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/lc.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/li.svg b/public/assets/lib/flag-icon-css/flags/1x1/li.svg new file mode 100755 index 0000000..d6f8d29 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/li.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/lk.svg b/public/assets/lib/flag-icon-css/flags/1x1/lk.svg new file mode 100755 index 0000000..cd3ad74 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/lk.svg @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/lr.svg b/public/assets/lib/flag-icon-css/flags/1x1/lr.svg new file mode 100755 index 0000000..0ae34e7 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/lr.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/ls.svg b/public/assets/lib/flag-icon-css/flags/1x1/ls.svg new file mode 100755 index 0000000..e71bb5b --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/ls.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/lt.svg b/public/assets/lib/flag-icon-css/flags/1x1/lt.svg new file mode 100755 index 0000000..aa96cf3 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/lt.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/lu.svg b/public/assets/lib/flag-icon-css/flags/1x1/lu.svg new file mode 100755 index 0000000..6293671 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/lu.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/lv.svg b/public/assets/lib/flag-icon-css/flags/1x1/lv.svg new file mode 100755 index 0000000..5556de1 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/lv.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/ly.svg b/public/assets/lib/flag-icon-css/flags/1x1/ly.svg new file mode 100755 index 0000000..1f58174 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/ly.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/ma.svg b/public/assets/lib/flag-icon-css/flags/1x1/ma.svg new file mode 100755 index 0000000..85c99b3 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/ma.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/mc.svg b/public/assets/lib/flag-icon-css/flags/1x1/mc.svg new file mode 100755 index 0000000..d38822d --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/mc.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/md.svg b/public/assets/lib/flag-icon-css/flags/1x1/md.svg new file mode 100755 index 0000000..e2c1364 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/md.svg @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/me.svg b/public/assets/lib/flag-icon-css/flags/1x1/me.svg new file mode 100755 index 0000000..722dfbb --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/me.svg @@ -0,0 +1,118 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/mf.svg b/public/assets/lib/flag-icon-css/flags/1x1/mf.svg new file mode 100755 index 0000000..310afce --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/mf.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/mg.svg b/public/assets/lib/flag-icon-css/flags/1x1/mg.svg new file mode 100755 index 0000000..f0375cc --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/mg.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/mh.svg b/public/assets/lib/flag-icon-css/flags/1x1/mh.svg new file mode 100755 index 0000000..97f3463 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/mh.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/mk.svg b/public/assets/lib/flag-icon-css/flags/1x1/mk.svg new file mode 100755 index 0000000..da2e9a4 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/mk.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/ml.svg b/public/assets/lib/flag-icon-css/flags/1x1/ml.svg new file mode 100755 index 0000000..1e4d989 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/ml.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/mm.svg b/public/assets/lib/flag-icon-css/flags/1x1/mm.svg new file mode 100755 index 0000000..5076184 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/mm.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/mn.svg b/public/assets/lib/flag-icon-css/flags/1x1/mn.svg new file mode 100755 index 0000000..abb142b --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/mn.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/mo.svg b/public/assets/lib/flag-icon-css/flags/1x1/mo.svg new file mode 100755 index 0000000..ddaed83 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/mo.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/mp.svg b/public/assets/lib/flag-icon-css/flags/1x1/mp.svg new file mode 100755 index 0000000..fcdae0a --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/mp.svg @@ -0,0 +1,86 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/mq.svg b/public/assets/lib/flag-icon-css/flags/1x1/mq.svg new file mode 100755 index 0000000..7a69fb5 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/mq.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/mr.svg b/public/assets/lib/flag-icon-css/flags/1x1/mr.svg new file mode 100755 index 0000000..cf887bf --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/mr.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/ms.svg b/public/assets/lib/flag-icon-css/flags/1x1/ms.svg new file mode 100755 index 0000000..2d6995f --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/ms.svg @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/mt.svg b/public/assets/lib/flag-icon-css/flags/1x1/mt.svg new file mode 100755 index 0000000..0a4030f --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/mt.svg @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/mu.svg b/public/assets/lib/flag-icon-css/flags/1x1/mu.svg new file mode 100755 index 0000000..773d3d5 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/mu.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/mv.svg b/public/assets/lib/flag-icon-css/flags/1x1/mv.svg new file mode 100755 index 0000000..aa5ed53 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/mv.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/mw.svg b/public/assets/lib/flag-icon-css/flags/1x1/mw.svg new file mode 100755 index 0000000..acf327c --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/mw.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/mx.svg b/public/assets/lib/flag-icon-css/flags/1x1/mx.svg new file mode 100755 index 0000000..04e6d1d --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/mx.svg @@ -0,0 +1,378 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/my.svg b/public/assets/lib/flag-icon-css/flags/1x1/my.svg new file mode 100755 index 0000000..518b3fd --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/my.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/mz.svg b/public/assets/lib/flag-icon-css/flags/1x1/mz.svg new file mode 100755 index 0000000..b753a53 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/mz.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/na.svg b/public/assets/lib/flag-icon-css/flags/1x1/na.svg new file mode 100755 index 0000000..2a7beb8 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/na.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/nc.svg b/public/assets/lib/flag-icon-css/flags/1x1/nc.svg new file mode 100755 index 0000000..1fb62f0 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/nc.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/ne.svg b/public/assets/lib/flag-icon-css/flags/1x1/ne.svg new file mode 100755 index 0000000..e76e44c --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/ne.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/nf.svg b/public/assets/lib/flag-icon-css/flags/1x1/nf.svg new file mode 100755 index 0000000..f28ba92 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/nf.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/ng.svg b/public/assets/lib/flag-icon-css/flags/1x1/ng.svg new file mode 100755 index 0000000..57d65d3 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/ng.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/ni.svg b/public/assets/lib/flag-icon-css/flags/1x1/ni.svg new file mode 100755 index 0000000..a020627 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/ni.svg @@ -0,0 +1,129 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/nl.svg b/public/assets/lib/flag-icon-css/flags/1x1/nl.svg new file mode 100755 index 0000000..ee7d281 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/nl.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/no.svg b/public/assets/lib/flag-icon-css/flags/1x1/no.svg new file mode 100755 index 0000000..08ea572 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/no.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/np.svg b/public/assets/lib/flag-icon-css/flags/1x1/np.svg new file mode 100755 index 0000000..874d0f4 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/np.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/nr.svg b/public/assets/lib/flag-icon-css/flags/1x1/nr.svg new file mode 100755 index 0000000..282d80f --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/nr.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/nu.svg b/public/assets/lib/flag-icon-css/flags/1x1/nu.svg new file mode 100755 index 0000000..e546940 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/nu.svg @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/nz.svg b/public/assets/lib/flag-icon-css/flags/1x1/nz.svg new file mode 100755 index 0000000..4900fc5 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/nz.svg @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/om.svg b/public/assets/lib/flag-icon-css/flags/1x1/om.svg new file mode 100755 index 0000000..5c30c75 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/om.svg @@ -0,0 +1,115 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/pa.svg b/public/assets/lib/flag-icon-css/flags/1x1/pa.svg new file mode 100755 index 0000000..57965b9 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/pa.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/pe.svg b/public/assets/lib/flag-icon-css/flags/1x1/pe.svg new file mode 100755 index 0000000..4bad743 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/pe.svg @@ -0,0 +1,244 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/pf.svg b/public/assets/lib/flag-icon-css/flags/1x1/pf.svg new file mode 100755 index 0000000..8320dce --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/pf.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/pg.svg b/public/assets/lib/flag-icon-css/flags/1x1/pg.svg new file mode 100755 index 0000000..c7fc805 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/pg.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/ph.svg b/public/assets/lib/flag-icon-css/flags/1x1/ph.svg new file mode 100755 index 0000000..bc861f6 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/ph.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/pk.svg b/public/assets/lib/flag-icon-css/flags/1x1/pk.svg new file mode 100755 index 0000000..fbdad41 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/pk.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/pl.svg b/public/assets/lib/flag-icon-css/flags/1x1/pl.svg new file mode 100755 index 0000000..f7c12a1 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/pl.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/pm.svg b/public/assets/lib/flag-icon-css/flags/1x1/pm.svg new file mode 100755 index 0000000..3d4014a --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/pm.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/pn.svg b/public/assets/lib/flag-icon-css/flags/1x1/pn.svg new file mode 100755 index 0000000..bf0c81d --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/pn.svg @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/pr.svg b/public/assets/lib/flag-icon-css/flags/1x1/pr.svg new file mode 100755 index 0000000..79cf4c0 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/pr.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/ps.svg b/public/assets/lib/flag-icon-css/flags/1x1/ps.svg new file mode 100755 index 0000000..7c1ea3f --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/ps.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/pt.svg b/public/assets/lib/flag-icon-css/flags/1x1/pt.svg new file mode 100755 index 0000000..5bc4c0e --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/pt.svg @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/pw.svg b/public/assets/lib/flag-icon-css/flags/1x1/pw.svg new file mode 100755 index 0000000..80148e8 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/pw.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/py.svg b/public/assets/lib/flag-icon-css/flags/1x1/py.svg new file mode 100755 index 0000000..40ac8d2 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/py.svg @@ -0,0 +1,156 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/qa.svg b/public/assets/lib/flag-icon-css/flags/1x1/qa.svg new file mode 100755 index 0000000..0bf30ea --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/qa.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/re.svg b/public/assets/lib/flag-icon-css/flags/1x1/re.svg new file mode 100755 index 0000000..027c9f3 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/re.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/ro.svg b/public/assets/lib/flag-icon-css/flags/1x1/ro.svg new file mode 100755 index 0000000..994992a --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/ro.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/rs.svg b/public/assets/lib/flag-icon-css/flags/1x1/rs.svg new file mode 100755 index 0000000..74548a5 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/rs.svg @@ -0,0 +1,296 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/ru.svg b/public/assets/lib/flag-icon-css/flags/1x1/ru.svg new file mode 100755 index 0000000..d643087 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/ru.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/rw.svg b/public/assets/lib/flag-icon-css/flags/1x1/rw.svg new file mode 100755 index 0000000..26e41f6 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/rw.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/sa.svg b/public/assets/lib/flag-icon-css/flags/1x1/sa.svg new file mode 100755 index 0000000..ca8a1cf --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/sa.svg @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/sb.svg b/public/assets/lib/flag-icon-css/flags/1x1/sb.svg new file mode 100755 index 0000000..f61bafd --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/sb.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/sc.svg b/public/assets/lib/flag-icon-css/flags/1x1/sc.svg new file mode 100755 index 0000000..65d8943 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/sc.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/sd.svg b/public/assets/lib/flag-icon-css/flags/1x1/sd.svg new file mode 100755 index 0000000..72a7297 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/sd.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/se.svg b/public/assets/lib/flag-icon-css/flags/1x1/se.svg new file mode 100755 index 0000000..53994a4 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/se.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/sg.svg b/public/assets/lib/flag-icon-css/flags/1x1/sg.svg new file mode 100755 index 0000000..632c7cc --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/sg.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/sh.svg b/public/assets/lib/flag-icon-css/flags/1x1/sh.svg new file mode 100755 index 0000000..bae2e76 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/sh.svg @@ -0,0 +1,81 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/si.svg b/public/assets/lib/flag-icon-css/flags/1x1/si.svg new file mode 100755 index 0000000..16fcef9 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/si.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/sj.svg b/public/assets/lib/flag-icon-css/flags/1x1/sj.svg new file mode 100755 index 0000000..f4e5829 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/sj.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/sk.svg b/public/assets/lib/flag-icon-css/flags/1x1/sk.svg new file mode 100755 index 0000000..9b60ff9 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/sk.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/sl.svg b/public/assets/lib/flag-icon-css/flags/1x1/sl.svg new file mode 100755 index 0000000..18c76d7 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/sl.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/sm.svg b/public/assets/lib/flag-icon-css/flags/1x1/sm.svg new file mode 100755 index 0000000..710260b --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/sm.svg @@ -0,0 +1,89 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + L + + + I + + + B + + + E + + + R + + + T + + + A + + + S + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/sn.svg b/public/assets/lib/flag-icon-css/flags/1x1/sn.svg new file mode 100755 index 0000000..fbbad5e --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/sn.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/so.svg b/public/assets/lib/flag-icon-css/flags/1x1/so.svg new file mode 100755 index 0000000..96d88a9 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/so.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/sr.svg b/public/assets/lib/flag-icon-css/flags/1x1/sr.svg new file mode 100755 index 0000000..a0ca03e --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/sr.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/ss.svg b/public/assets/lib/flag-icon-css/flags/1x1/ss.svg new file mode 100755 index 0000000..7e6a47f --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/ss.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/st.svg b/public/assets/lib/flag-icon-css/flags/1x1/st.svg new file mode 100755 index 0000000..da5df29 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/st.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/sv.svg b/public/assets/lib/flag-icon-css/flags/1x1/sv.svg new file mode 100755 index 0000000..f4842e7 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/sv.svg @@ -0,0 +1,603 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/sx.svg b/public/assets/lib/flag-icon-css/flags/1x1/sx.svg new file mode 100755 index 0000000..516897a --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/sx.svg @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/sy.svg b/public/assets/lib/flag-icon-css/flags/1x1/sy.svg new file mode 100755 index 0000000..904dc1f --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/sy.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/sz.svg b/public/assets/lib/flag-icon-css/flags/1x1/sz.svg new file mode 100755 index 0000000..46cf263 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/sz.svg @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/tc.svg b/public/assets/lib/flag-icon-css/flags/1x1/tc.svg new file mode 100755 index 0000000..6529577 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/tc.svg @@ -0,0 +1,74 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/td.svg b/public/assets/lib/flag-icon-css/flags/1x1/td.svg new file mode 100755 index 0000000..e3e81ce --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/td.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/tf.svg b/public/assets/lib/flag-icon-css/flags/1x1/tf.svg new file mode 100755 index 0000000..2061867 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/tf.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/tg.svg b/public/assets/lib/flag-icon-css/flags/1x1/tg.svg new file mode 100755 index 0000000..2c1fd98 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/tg.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/th.svg b/public/assets/lib/flag-icon-css/flags/1x1/th.svg new file mode 100755 index 0000000..86850f5 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/th.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/tj.svg b/public/assets/lib/flag-icon-css/flags/1x1/tj.svg new file mode 100755 index 0000000..7e189f0 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/tj.svg @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/tk.svg b/public/assets/lib/flag-icon-css/flags/1x1/tk.svg new file mode 100755 index 0000000..c5ff6b4 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/tk.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/tl.svg b/public/assets/lib/flag-icon-css/flags/1x1/tl.svg new file mode 100755 index 0000000..ec6d44b --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/tl.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/tm.svg b/public/assets/lib/flag-icon-css/flags/1x1/tm.svg new file mode 100755 index 0000000..9d22380 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/tm.svg @@ -0,0 +1,203 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/tn.svg b/public/assets/lib/flag-icon-css/flags/1x1/tn.svg new file mode 100755 index 0000000..f782aa6 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/tn.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/to.svg b/public/assets/lib/flag-icon-css/flags/1x1/to.svg new file mode 100755 index 0000000..201d6bc --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/to.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/tr.svg b/public/assets/lib/flag-icon-css/flags/1x1/tr.svg new file mode 100755 index 0000000..861d4ea --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/tr.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/tt.svg b/public/assets/lib/flag-icon-css/flags/1x1/tt.svg new file mode 100755 index 0000000..8ab3e77 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/tt.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/tv.svg b/public/assets/lib/flag-icon-css/flags/1x1/tv.svg new file mode 100755 index 0000000..d6d1338 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/tv.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/tw.svg b/public/assets/lib/flag-icon-css/flags/1x1/tw.svg new file mode 100755 index 0000000..4285d93 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/tw.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/tz.svg b/public/assets/lib/flag-icon-css/flags/1x1/tz.svg new file mode 100755 index 0000000..f993ff1 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/tz.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/ua.svg b/public/assets/lib/flag-icon-css/flags/1x1/ua.svg new file mode 100755 index 0000000..18ebe0d --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/ua.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/ug.svg b/public/assets/lib/flag-icon-css/flags/1x1/ug.svg new file mode 100755 index 0000000..f9751fa --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/ug.svg @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/um.svg b/public/assets/lib/flag-icon-css/flags/1x1/um.svg new file mode 100755 index 0000000..25b08ce --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/um.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/un.svg b/public/assets/lib/flag-icon-css/flags/1x1/un.svg new file mode 100755 index 0000000..49db9cd --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/un.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/us.svg b/public/assets/lib/flag-icon-css/flags/1x1/us.svg new file mode 100755 index 0000000..31f90c6 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/us.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/uy.svg b/public/assets/lib/flag-icon-css/flags/1x1/uy.svg new file mode 100755 index 0000000..0194a7c --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/uy.svg @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/uz.svg b/public/assets/lib/flag-icon-css/flags/1x1/uz.svg new file mode 100755 index 0000000..641af1b --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/uz.svg @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/va.svg b/public/assets/lib/flag-icon-css/flags/1x1/va.svg new file mode 100755 index 0000000..4305a66 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/va.svg @@ -0,0 +1,479 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/vc.svg b/public/assets/lib/flag-icon-css/flags/1x1/vc.svg new file mode 100755 index 0000000..ee72f78 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/vc.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/ve.svg b/public/assets/lib/flag-icon-css/flags/1x1/ve.svg new file mode 100755 index 0000000..205fe84 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/ve.svg @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/vg.svg b/public/assets/lib/flag-icon-css/flags/1x1/vg.svg new file mode 100755 index 0000000..8d24785 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/vg.svg @@ -0,0 +1,128 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/vi.svg b/public/assets/lib/flag-icon-css/flags/1x1/vi.svg new file mode 100755 index 0000000..eb8cd5e --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/vi.svg @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/vn.svg b/public/assets/lib/flag-icon-css/flags/1x1/vn.svg new file mode 100755 index 0000000..6b15814 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/vn.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/vu.svg b/public/assets/lib/flag-icon-css/flags/1x1/vu.svg new file mode 100755 index 0000000..7bd2221 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/vu.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/wf.svg b/public/assets/lib/flag-icon-css/flags/1x1/wf.svg new file mode 100755 index 0000000..bb726a7 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/wf.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/ws.svg b/public/assets/lib/flag-icon-css/flags/1x1/ws.svg new file mode 100755 index 0000000..155ad7b --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/ws.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/ye.svg b/public/assets/lib/flag-icon-css/flags/1x1/ye.svg new file mode 100755 index 0000000..d49d2c4 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/ye.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/yt.svg b/public/assets/lib/flag-icon-css/flags/1x1/yt.svg new file mode 100755 index 0000000..7bf3837 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/yt.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/za.svg b/public/assets/lib/flag-icon-css/flags/1x1/za.svg new file mode 100755 index 0000000..9bae96f --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/za.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/zm.svg b/public/assets/lib/flag-icon-css/flags/1x1/zm.svg new file mode 100755 index 0000000..dc8db81 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/zm.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/1x1/zw.svg b/public/assets/lib/flag-icon-css/flags/1x1/zw.svg new file mode 100755 index 0000000..563267e --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/1x1/zw.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/ad.svg b/public/assets/lib/flag-icon-css/flags/4x3/ad.svg new file mode 100755 index 0000000..9e424cf --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/ad.svg @@ -0,0 +1,150 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/ae.svg b/public/assets/lib/flag-icon-css/flags/4x3/ae.svg new file mode 100755 index 0000000..a7bdb17 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/ae.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/af.svg b/public/assets/lib/flag-icon-css/flags/4x3/af.svg new file mode 100755 index 0000000..a8676a3 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/af.svg @@ -0,0 +1,81 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/ag.svg b/public/assets/lib/flag-icon-css/flags/4x3/ag.svg new file mode 100755 index 0000000..24c4c2e --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/ag.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/ai.svg b/public/assets/lib/flag-icon-css/flags/4x3/ai.svg new file mode 100755 index 0000000..fa71b58 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/ai.svg @@ -0,0 +1,767 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/al.svg b/public/assets/lib/flag-icon-css/flags/4x3/al.svg new file mode 100755 index 0000000..25be209 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/al.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/am.svg b/public/assets/lib/flag-icon-css/flags/4x3/am.svg new file mode 100755 index 0000000..0cd2178 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/am.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/ao.svg b/public/assets/lib/flag-icon-css/flags/4x3/ao.svg new file mode 100755 index 0000000..95873c6 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/ao.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/aq.svg b/public/assets/lib/flag-icon-css/flags/4x3/aq.svg new file mode 100755 index 0000000..d3be43b --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/aq.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/ar.svg b/public/assets/lib/flag-icon-css/flags/4x3/ar.svg new file mode 100755 index 0000000..4c15564 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/ar.svg @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/as.svg b/public/assets/lib/flag-icon-css/flags/4x3/as.svg new file mode 100755 index 0000000..fbdbe95 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/as.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/at.svg b/public/assets/lib/flag-icon-css/flags/4x3/at.svg new file mode 100755 index 0000000..6796f43 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/at.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/au.svg b/public/assets/lib/flag-icon-css/flags/4x3/au.svg new file mode 100755 index 0000000..47c7bae --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/au.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/aw.svg b/public/assets/lib/flag-icon-css/flags/4x3/aw.svg new file mode 100755 index 0000000..632cdf5 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/aw.svg @@ -0,0 +1,186 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/ax.svg b/public/assets/lib/flag-icon-css/flags/4x3/ax.svg new file mode 100755 index 0000000..472a8cd --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/ax.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/az.svg b/public/assets/lib/flag-icon-css/flags/4x3/az.svg new file mode 100755 index 0000000..4293e9f --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/az.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/ba.svg b/public/assets/lib/flag-icon-css/flags/4x3/ba.svg new file mode 100755 index 0000000..3860f34 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/ba.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/bb.svg b/public/assets/lib/flag-icon-css/flags/4x3/bb.svg new file mode 100755 index 0000000..d75831f --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/bb.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/bd.svg b/public/assets/lib/flag-icon-css/flags/4x3/bd.svg new file mode 100755 index 0000000..1e3433e --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/bd.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/be.svg b/public/assets/lib/flag-icon-css/flags/4x3/be.svg new file mode 100755 index 0000000..eaf016d --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/be.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/bf.svg b/public/assets/lib/flag-icon-css/flags/4x3/bf.svg new file mode 100755 index 0000000..c92cce6 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/bf.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/bg.svg b/public/assets/lib/flag-icon-css/flags/4x3/bg.svg new file mode 100755 index 0000000..15ba696 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/bg.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/bh.svg b/public/assets/lib/flag-icon-css/flags/4x3/bh.svg new file mode 100755 index 0000000..803df89 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/bh.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/bi.svg b/public/assets/lib/flag-icon-css/flags/4x3/bi.svg new file mode 100755 index 0000000..437631b --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/bi.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/bj.svg b/public/assets/lib/flag-icon-css/flags/4x3/bj.svg new file mode 100755 index 0000000..1721e1d --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/bj.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/bl.svg b/public/assets/lib/flag-icon-css/flags/4x3/bl.svg new file mode 100755 index 0000000..ecf6ec4 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/bl.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/bm.svg b/public/assets/lib/flag-icon-css/flags/4x3/bm.svg new file mode 100755 index 0000000..4fea36e --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/bm.svg @@ -0,0 +1,98 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/bn.svg b/public/assets/lib/flag-icon-css/flags/4x3/bn.svg new file mode 100755 index 0000000..398aa39 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/bn.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/bo.svg b/public/assets/lib/flag-icon-css/flags/4x3/bo.svg new file mode 100755 index 0000000..7c546d9 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/bo.svg @@ -0,0 +1,676 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/bq.svg b/public/assets/lib/flag-icon-css/flags/4x3/bq.svg new file mode 100755 index 0000000..4b74eb4 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/bq.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/br.svg b/public/assets/lib/flag-icon-css/flags/4x3/br.svg new file mode 100755 index 0000000..061406b --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/br.svg @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/bs.svg b/public/assets/lib/flag-icon-css/flags/4x3/bs.svg new file mode 100755 index 0000000..a9d8419 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/bs.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/bt.svg b/public/assets/lib/flag-icon-css/flags/4x3/bt.svg new file mode 100755 index 0000000..5d68391 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/bt.svg @@ -0,0 +1,89 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/bv.svg b/public/assets/lib/flag-icon-css/flags/4x3/bv.svg new file mode 100755 index 0000000..cffdc32 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/bv.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/bw.svg b/public/assets/lib/flag-icon-css/flags/4x3/bw.svg new file mode 100755 index 0000000..3d65eda --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/bw.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/by.svg b/public/assets/lib/flag-icon-css/flags/4x3/by.svg new file mode 100755 index 0000000..2b8656d --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/by.svg @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/bz.svg b/public/assets/lib/flag-icon-css/flags/4x3/bz.svg new file mode 100755 index 0000000..6ce7c97 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/bz.svg @@ -0,0 +1,145 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/ca.svg b/public/assets/lib/flag-icon-css/flags/4x3/ca.svg new file mode 100755 index 0000000..4d969ab --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/ca.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/cc.svg b/public/assets/lib/flag-icon-css/flags/4x3/cc.svg new file mode 100755 index 0000000..1499932 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/cc.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/cd.svg b/public/assets/lib/flag-icon-css/flags/4x3/cd.svg new file mode 100755 index 0000000..739fab7 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/cd.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/cf.svg b/public/assets/lib/flag-icon-css/flags/4x3/cf.svg new file mode 100755 index 0000000..b4a2125 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/cf.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/cg.svg b/public/assets/lib/flag-icon-css/flags/4x3/cg.svg new file mode 100755 index 0000000..6347e42 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/cg.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/ch.svg b/public/assets/lib/flag-icon-css/flags/4x3/ch.svg new file mode 100755 index 0000000..f5ec8d4 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/ch.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/ci.svg b/public/assets/lib/flag-icon-css/flags/4x3/ci.svg new file mode 100755 index 0000000..2bd7104 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/ci.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/ck.svg b/public/assets/lib/flag-icon-css/flags/4x3/ck.svg new file mode 100755 index 0000000..af4f1c4 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/ck.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/cl.svg b/public/assets/lib/flag-icon-css/flags/4x3/cl.svg new file mode 100755 index 0000000..04756f5 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/cl.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/cm.svg b/public/assets/lib/flag-icon-css/flags/4x3/cm.svg new file mode 100755 index 0000000..b4272b7 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/cm.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/cn.svg b/public/assets/lib/flag-icon-css/flags/4x3/cn.svg new file mode 100755 index 0000000..72080b6 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/cn.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/co.svg b/public/assets/lib/flag-icon-css/flags/4x3/co.svg new file mode 100755 index 0000000..0d74127 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/co.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/cr.svg b/public/assets/lib/flag-icon-css/flags/4x3/cr.svg new file mode 100755 index 0000000..133b029 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/cr.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/cu.svg b/public/assets/lib/flag-icon-css/flags/4x3/cu.svg new file mode 100755 index 0000000..aabb414 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/cu.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/cv.svg b/public/assets/lib/flag-icon-css/flags/4x3/cv.svg new file mode 100755 index 0000000..408f1cf --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/cv.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/cw.svg b/public/assets/lib/flag-icon-css/flags/4x3/cw.svg new file mode 100755 index 0000000..b43ed62 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/cw.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/cx.svg b/public/assets/lib/flag-icon-css/flags/4x3/cx.svg new file mode 100755 index 0000000..bf87869 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/cx.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/cy.svg b/public/assets/lib/flag-icon-css/flags/4x3/cy.svg new file mode 100755 index 0000000..e339b8a --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/cy.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/cz.svg b/public/assets/lib/flag-icon-css/flags/4x3/cz.svg new file mode 100755 index 0000000..93528ea --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/cz.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/de.svg b/public/assets/lib/flag-icon-css/flags/4x3/de.svg new file mode 100755 index 0000000..1acf302 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/de.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/dj.svg b/public/assets/lib/flag-icon-css/flags/4x3/dj.svg new file mode 100755 index 0000000..0604f54 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/dj.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/dk.svg b/public/assets/lib/flag-icon-css/flags/4x3/dk.svg new file mode 100755 index 0000000..ab47e0c --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/dk.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/dm.svg b/public/assets/lib/flag-icon-css/flags/4x3/dm.svg new file mode 100755 index 0000000..0aa4078 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/dm.svg @@ -0,0 +1,152 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/do.svg b/public/assets/lib/flag-icon-css/flags/4x3/do.svg new file mode 100755 index 0000000..b158010 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/do.svg @@ -0,0 +1,6745 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/dz.svg b/public/assets/lib/flag-icon-css/flags/4x3/dz.svg new file mode 100755 index 0000000..f44290e --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/dz.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/ec.svg b/public/assets/lib/flag-icon-css/flags/4x3/ec.svg new file mode 100755 index 0000000..5336101 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/ec.svg @@ -0,0 +1,138 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/ee.svg b/public/assets/lib/flag-icon-css/flags/4x3/ee.svg new file mode 100755 index 0000000..aa917bb --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/ee.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/eg.svg b/public/assets/lib/flag-icon-css/flags/4x3/eg.svg new file mode 100755 index 0000000..26450cd --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/eg.svg @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/eh.svg b/public/assets/lib/flag-icon-css/flags/4x3/eh.svg new file mode 100755 index 0000000..15aec44 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/eh.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/er.svg b/public/assets/lib/flag-icon-css/flags/4x3/er.svg new file mode 100755 index 0000000..25eb834 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/er.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/es-ct.svg b/public/assets/lib/flag-icon-css/flags/4x3/es-ct.svg new file mode 100755 index 0000000..9b07e7a --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/es-ct.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/es.svg b/public/assets/lib/flag-icon-css/flags/4x3/es.svg new file mode 100755 index 0000000..8791e51 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/es.svg @@ -0,0 +1,544 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/et.svg b/public/assets/lib/flag-icon-css/flags/4x3/et.svg new file mode 100755 index 0000000..e69e7b1 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/et.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/eu.svg b/public/assets/lib/flag-icon-css/flags/4x3/eu.svg new file mode 100755 index 0000000..b6a39f5 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/eu.svg @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/fi.svg b/public/assets/lib/flag-icon-css/flags/4x3/fi.svg new file mode 100755 index 0000000..c3451a4 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/fi.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/fj.svg b/public/assets/lib/flag-icon-css/flags/4x3/fj.svg new file mode 100755 index 0000000..9c00365 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/fj.svg @@ -0,0 +1,120 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/fk.svg b/public/assets/lib/flag-icon-css/flags/4x3/fk.svg new file mode 100755 index 0000000..12d4941 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/fk.svg @@ -0,0 +1,89 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/fm.svg b/public/assets/lib/flag-icon-css/flags/4x3/fm.svg new file mode 100755 index 0000000..1e641ad --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/fm.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/fo.svg b/public/assets/lib/flag-icon-css/flags/4x3/fo.svg new file mode 100755 index 0000000..ea71332 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/fo.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/fr.svg b/public/assets/lib/flag-icon-css/flags/4x3/fr.svg new file mode 100755 index 0000000..712c8a5 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/fr.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/ga.svg b/public/assets/lib/flag-icon-css/flags/4x3/ga.svg new file mode 100755 index 0000000..1f0a9ca --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/ga.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/gb-eng.svg b/public/assets/lib/flag-icon-css/flags/4x3/gb-eng.svg new file mode 100755 index 0000000..eab52bd --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/gb-eng.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/gb-nir.svg b/public/assets/lib/flag-icon-css/flags/4x3/gb-nir.svg new file mode 100755 index 0000000..d7bda86 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/gb-nir.svg @@ -0,0 +1,131 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/gb-sct.svg b/public/assets/lib/flag-icon-css/flags/4x3/gb-sct.svg new file mode 100755 index 0000000..169bfba --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/gb-sct.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/gb-wls.svg b/public/assets/lib/flag-icon-css/flags/4x3/gb-wls.svg new file mode 100755 index 0000000..e592026 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/gb-wls.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/gb.svg b/public/assets/lib/flag-icon-css/flags/4x3/gb.svg new file mode 100755 index 0000000..d98b6cc --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/gb.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/gd.svg b/public/assets/lib/flag-icon-css/flags/4x3/gd.svg new file mode 100755 index 0000000..f69e24e --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/gd.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/ge.svg b/public/assets/lib/flag-icon-css/flags/4x3/ge.svg new file mode 100755 index 0000000..cec14a0 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/ge.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/gf.svg b/public/assets/lib/flag-icon-css/flags/4x3/gf.svg new file mode 100755 index 0000000..d3131e9 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/gf.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/gg.svg b/public/assets/lib/flag-icon-css/flags/4x3/gg.svg new file mode 100755 index 0000000..deb4af5 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/gg.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/gh.svg b/public/assets/lib/flag-icon-css/flags/4x3/gh.svg new file mode 100755 index 0000000..3f97834 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/gh.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/gi.svg b/public/assets/lib/flag-icon-css/flags/4x3/gi.svg new file mode 100755 index 0000000..b423cd9 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/gi.svg @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/gl.svg b/public/assets/lib/flag-icon-css/flags/4x3/gl.svg new file mode 100755 index 0000000..017a53f --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/gl.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/gm.svg b/public/assets/lib/flag-icon-css/flags/4x3/gm.svg new file mode 100755 index 0000000..14c329d --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/gm.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/gn.svg b/public/assets/lib/flag-icon-css/flags/4x3/gn.svg new file mode 100755 index 0000000..7841e8d --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/gn.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/gp.svg b/public/assets/lib/flag-icon-css/flags/4x3/gp.svg new file mode 100755 index 0000000..24a8260 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/gp.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/gq.svg b/public/assets/lib/flag-icon-css/flags/4x3/gq.svg new file mode 100755 index 0000000..293dbb1 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/gq.svg @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/gr.svg b/public/assets/lib/flag-icon-css/flags/4x3/gr.svg new file mode 100755 index 0000000..b59a5f2 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/gr.svg @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/gs.svg b/public/assets/lib/flag-icon-css/flags/4x3/gs.svg new file mode 100755 index 0000000..b9ade22 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/gs.svg @@ -0,0 +1,201 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + L + + + E + + + O + + + T + + + E + + + R + + + R + + + R + + + R + + + R + + + E + + + O + + + O + + + A + + + A + + + A + + + M + + + P + + + P + + + P + + + I + + + T + + + T + + + M + + + G + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/gt.svg b/public/assets/lib/flag-icon-css/flags/4x3/gt.svg new file mode 100755 index 0000000..3903ea1 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/gt.svg @@ -0,0 +1,204 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/gu.svg b/public/assets/lib/flag-icon-css/flags/4x3/gu.svg new file mode 100755 index 0000000..b15679b --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/gu.svg @@ -0,0 +1,39 @@ + + + + + + + + + + + G + + + U + + + A + + + M + + + + + + + + G + + + U + + + A + + + M + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/gw.svg b/public/assets/lib/flag-icon-css/flags/4x3/gw.svg new file mode 100755 index 0000000..ae17314 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/gw.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/gy.svg b/public/assets/lib/flag-icon-css/flags/4x3/gy.svg new file mode 100755 index 0000000..e957f3e --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/gy.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/hk.svg b/public/assets/lib/flag-icon-css/flags/4x3/hk.svg new file mode 100755 index 0000000..e1eaa2a --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/hk.svg @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/hm.svg b/public/assets/lib/flag-icon-css/flags/4x3/hm.svg new file mode 100755 index 0000000..a9dda07 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/hm.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/hn.svg b/public/assets/lib/flag-icon-css/flags/4x3/hn.svg new file mode 100755 index 0000000..47af518 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/hn.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/hr.svg b/public/assets/lib/flag-icon-css/flags/4x3/hr.svg new file mode 100755 index 0000000..cafb744 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/hr.svg @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/ht.svg b/public/assets/lib/flag-icon-css/flags/4x3/ht.svg new file mode 100755 index 0000000..4628276 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/ht.svg @@ -0,0 +1,116 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/hu.svg b/public/assets/lib/flag-icon-css/flags/4x3/hu.svg new file mode 100755 index 0000000..177da97 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/hu.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/id.svg b/public/assets/lib/flag-icon-css/flags/4x3/id.svg new file mode 100755 index 0000000..0663baf --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/id.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/ie.svg b/public/assets/lib/flag-icon-css/flags/4x3/ie.svg new file mode 100755 index 0000000..53f3464 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/ie.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/il.svg b/public/assets/lib/flag-icon-css/flags/4x3/il.svg new file mode 100755 index 0000000..f18761b --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/il.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/im.svg b/public/assets/lib/flag-icon-css/flags/4x3/im.svg new file mode 100755 index 0000000..9a9c5f1 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/im.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/in.svg b/public/assets/lib/flag-icon-css/flags/4x3/in.svg new file mode 100755 index 0000000..6b831bc --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/in.svg @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/io.svg b/public/assets/lib/flag-icon-css/flags/4x3/io.svg new file mode 100755 index 0000000..4d6e6b9 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/io.svg @@ -0,0 +1,138 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/iq.svg b/public/assets/lib/flag-icon-css/flags/4x3/iq.svg new file mode 100755 index 0000000..96afd55 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/iq.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/ir.svg b/public/assets/lib/flag-icon-css/flags/4x3/ir.svg new file mode 100755 index 0000000..4c3332a --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/ir.svg @@ -0,0 +1,219 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/is.svg b/public/assets/lib/flag-icon-css/flags/4x3/is.svg new file mode 100755 index 0000000..d949b1b --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/is.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/it.svg b/public/assets/lib/flag-icon-css/flags/4x3/it.svg new file mode 100755 index 0000000..5cb92aa --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/it.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/je.svg b/public/assets/lib/flag-icon-css/flags/4x3/je.svg new file mode 100755 index 0000000..d385ea5 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/je.svg @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/jm.svg b/public/assets/lib/flag-icon-css/flags/4x3/jm.svg new file mode 100755 index 0000000..535daf4 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/jm.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/jo.svg b/public/assets/lib/flag-icon-css/flags/4x3/jo.svg new file mode 100755 index 0000000..ae2bc08 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/jo.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/jp.svg b/public/assets/lib/flag-icon-css/flags/4x3/jp.svg new file mode 100755 index 0000000..4178ea6 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/jp.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/ke.svg b/public/assets/lib/flag-icon-css/flags/4x3/ke.svg new file mode 100755 index 0000000..153b73f --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/ke.svg @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/kg.svg b/public/assets/lib/flag-icon-css/flags/4x3/kg.svg new file mode 100755 index 0000000..c255c65 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/kg.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/kh.svg b/public/assets/lib/flag-icon-css/flags/4x3/kh.svg new file mode 100755 index 0000000..e0add10 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/kh.svg @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/ki.svg b/public/assets/lib/flag-icon-css/flags/4x3/ki.svg new file mode 100755 index 0000000..c4a4029 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/ki.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/km.svg b/public/assets/lib/flag-icon-css/flags/4x3/km.svg new file mode 100755 index 0000000..cfabd68 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/km.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/kn.svg b/public/assets/lib/flag-icon-css/flags/4x3/kn.svg new file mode 100755 index 0000000..1a753c0 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/kn.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/kp.svg b/public/assets/lib/flag-icon-css/flags/4x3/kp.svg new file mode 100755 index 0000000..b9a50d0 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/kp.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/kr.svg b/public/assets/lib/flag-icon-css/flags/4x3/kr.svg new file mode 100755 index 0000000..2781ca0 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/kr.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/kw.svg b/public/assets/lib/flag-icon-css/flags/4x3/kw.svg new file mode 100755 index 0000000..f404da2 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/kw.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/ky.svg b/public/assets/lib/flag-icon-css/flags/4x3/ky.svg new file mode 100755 index 0000000..ee34a1c --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/ky.svg @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/kz.svg b/public/assets/lib/flag-icon-css/flags/4x3/kz.svg new file mode 100755 index 0000000..1fa6fca --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/kz.svg @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/la.svg b/public/assets/lib/flag-icon-css/flags/4x3/la.svg new file mode 100755 index 0000000..91dc1a4 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/la.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/lb.svg b/public/assets/lib/flag-icon-css/flags/4x3/lb.svg new file mode 100755 index 0000000..f0151d1 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/lb.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/lc.svg b/public/assets/lib/flag-icon-css/flags/4x3/lc.svg new file mode 100755 index 0000000..8ba746c --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/lc.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/li.svg b/public/assets/lib/flag-icon-css/flags/4x3/li.svg new file mode 100755 index 0000000..642993d --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/li.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/lk.svg b/public/assets/lib/flag-icon-css/flags/4x3/lk.svg new file mode 100755 index 0000000..eebadfb --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/lk.svg @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/lr.svg b/public/assets/lib/flag-icon-css/flags/4x3/lr.svg new file mode 100755 index 0000000..f27437d --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/lr.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/ls.svg b/public/assets/lib/flag-icon-css/flags/4x3/ls.svg new file mode 100755 index 0000000..5dd5b0c --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/ls.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/lt.svg b/public/assets/lib/flag-icon-css/flags/4x3/lt.svg new file mode 100755 index 0000000..36e30e9 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/lt.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/lu.svg b/public/assets/lib/flag-icon-css/flags/4x3/lu.svg new file mode 100755 index 0000000..bf6ca16 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/lu.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/lv.svg b/public/assets/lib/flag-icon-css/flags/4x3/lv.svg new file mode 100755 index 0000000..efa5a32 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/lv.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/ly.svg b/public/assets/lib/flag-icon-css/flags/4x3/ly.svg new file mode 100755 index 0000000..5058cdc --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/ly.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/ma.svg b/public/assets/lib/flag-icon-css/flags/4x3/ma.svg new file mode 100755 index 0000000..8de4077 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/ma.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/mc.svg b/public/assets/lib/flag-icon-css/flags/4x3/mc.svg new file mode 100755 index 0000000..45133dc --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/mc.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/md.svg b/public/assets/lib/flag-icon-css/flags/4x3/md.svg new file mode 100755 index 0000000..053d8f8 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/md.svg @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/me.svg b/public/assets/lib/flag-icon-css/flags/4x3/me.svg new file mode 100755 index 0000000..2365c65 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/me.svg @@ -0,0 +1,116 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/mf.svg b/public/assets/lib/flag-icon-css/flags/4x3/mf.svg new file mode 100755 index 0000000..bf46785 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/mf.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/mg.svg b/public/assets/lib/flag-icon-css/flags/4x3/mg.svg new file mode 100755 index 0000000..76e84fc --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/mg.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/mh.svg b/public/assets/lib/flag-icon-css/flags/4x3/mh.svg new file mode 100755 index 0000000..f74e99d --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/mh.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/mk.svg b/public/assets/lib/flag-icon-css/flags/4x3/mk.svg new file mode 100755 index 0000000..1f1eaf6 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/mk.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/ml.svg b/public/assets/lib/flag-icon-css/flags/4x3/ml.svg new file mode 100755 index 0000000..66da1bb --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/ml.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/mm.svg b/public/assets/lib/flag-icon-css/flags/4x3/mm.svg new file mode 100755 index 0000000..c77927e --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/mm.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/mn.svg b/public/assets/lib/flag-icon-css/flags/4x3/mn.svg new file mode 100755 index 0000000..2954d25 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/mn.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/mo.svg b/public/assets/lib/flag-icon-css/flags/4x3/mo.svg new file mode 100755 index 0000000..6a8ddab --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/mo.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/mp.svg b/public/assets/lib/flag-icon-css/flags/4x3/mp.svg new file mode 100755 index 0000000..8702b37 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/mp.svg @@ -0,0 +1,86 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/mq.svg b/public/assets/lib/flag-icon-css/flags/4x3/mq.svg new file mode 100755 index 0000000..b389d43 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/mq.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/mr.svg b/public/assets/lib/flag-icon-css/flags/4x3/mr.svg new file mode 100755 index 0000000..20262c0 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/mr.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/ms.svg b/public/assets/lib/flag-icon-css/flags/4x3/ms.svg new file mode 100755 index 0000000..6340952 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/ms.svg @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/mt.svg b/public/assets/lib/flag-icon-css/flags/4x3/mt.svg new file mode 100755 index 0000000..8af00b3 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/mt.svg @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/mu.svg b/public/assets/lib/flag-icon-css/flags/4x3/mu.svg new file mode 100755 index 0000000..102ed3b --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/mu.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/mv.svg b/public/assets/lib/flag-icon-css/flags/4x3/mv.svg new file mode 100755 index 0000000..2525c92 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/mv.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/mw.svg b/public/assets/lib/flag-icon-css/flags/4x3/mw.svg new file mode 100755 index 0000000..c09c0f7 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/mw.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/mx.svg b/public/assets/lib/flag-icon-css/flags/4x3/mx.svg new file mode 100755 index 0000000..87dbe3b --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/mx.svg @@ -0,0 +1,382 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/my.svg b/public/assets/lib/flag-icon-css/flags/4x3/my.svg new file mode 100755 index 0000000..77bb5fe --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/my.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/mz.svg b/public/assets/lib/flag-icon-css/flags/4x3/mz.svg new file mode 100755 index 0000000..3ed8601 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/mz.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/na.svg b/public/assets/lib/flag-icon-css/flags/4x3/na.svg new file mode 100755 index 0000000..6876ac7 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/na.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/nc.svg b/public/assets/lib/flag-icon-css/flags/4x3/nc.svg new file mode 100755 index 0000000..53622be --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/nc.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/ne.svg b/public/assets/lib/flag-icon-css/flags/4x3/ne.svg new file mode 100755 index 0000000..f470907 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/ne.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/nf.svg b/public/assets/lib/flag-icon-css/flags/4x3/nf.svg new file mode 100755 index 0000000..1682c00 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/nf.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/ng.svg b/public/assets/lib/flag-icon-css/flags/4x3/ng.svg new file mode 100755 index 0000000..42ee5ad --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/ng.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/ni.svg b/public/assets/lib/flag-icon-css/flags/4x3/ni.svg new file mode 100755 index 0000000..f137e55 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/ni.svg @@ -0,0 +1,129 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/nl.svg b/public/assets/lib/flag-icon-css/flags/4x3/nl.svg new file mode 100755 index 0000000..d48808c --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/nl.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/no.svg b/public/assets/lib/flag-icon-css/flags/4x3/no.svg new file mode 100755 index 0000000..56e78e1 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/no.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/np.svg b/public/assets/lib/flag-icon-css/flags/4x3/np.svg new file mode 100755 index 0000000..53a738a --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/np.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/nr.svg b/public/assets/lib/flag-icon-css/flags/4x3/nr.svg new file mode 100755 index 0000000..f7a4feb --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/nr.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/nu.svg b/public/assets/lib/flag-icon-css/flags/4x3/nu.svg new file mode 100755 index 0000000..e53f79c --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/nu.svg @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/nz.svg b/public/assets/lib/flag-icon-css/flags/4x3/nz.svg new file mode 100755 index 0000000..8af70a3 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/nz.svg @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/om.svg b/public/assets/lib/flag-icon-css/flags/4x3/om.svg new file mode 100755 index 0000000..2c7fe68 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/om.svg @@ -0,0 +1,115 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/pa.svg b/public/assets/lib/flag-icon-css/flags/4x3/pa.svg new file mode 100755 index 0000000..cf758e8 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/pa.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/pe.svg b/public/assets/lib/flag-icon-css/flags/4x3/pe.svg new file mode 100755 index 0000000..421239e --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/pe.svg @@ -0,0 +1,244 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/pf.svg b/public/assets/lib/flag-icon-css/flags/4x3/pf.svg new file mode 100755 index 0000000..6257d22 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/pf.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/pg.svg b/public/assets/lib/flag-icon-css/flags/4x3/pg.svg new file mode 100755 index 0000000..576d26c --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/pg.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/ph.svg b/public/assets/lib/flag-icon-css/flags/4x3/ph.svg new file mode 100755 index 0000000..fe7ef9f --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/ph.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/pk.svg b/public/assets/lib/flag-icon-css/flags/4x3/pk.svg new file mode 100755 index 0000000..097d79f --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/pk.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/pl.svg b/public/assets/lib/flag-icon-css/flags/4x3/pl.svg new file mode 100755 index 0000000..c00513a --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/pl.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/pm.svg b/public/assets/lib/flag-icon-css/flags/4x3/pm.svg new file mode 100755 index 0000000..07ea24c --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/pm.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/pn.svg b/public/assets/lib/flag-icon-css/flags/4x3/pn.svg new file mode 100755 index 0000000..c6cdf29 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/pn.svg @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/pr.svg b/public/assets/lib/flag-icon-css/flags/4x3/pr.svg new file mode 100755 index 0000000..041377b --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/pr.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/ps.svg b/public/assets/lib/flag-icon-css/flags/4x3/ps.svg new file mode 100755 index 0000000..2827d2a --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/ps.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/pt.svg b/public/assets/lib/flag-icon-css/flags/4x3/pt.svg new file mode 100755 index 0000000..941d545 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/pt.svg @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/pw.svg b/public/assets/lib/flag-icon-css/flags/4x3/pw.svg new file mode 100755 index 0000000..1221d29 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/pw.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/py.svg b/public/assets/lib/flag-icon-css/flags/4x3/py.svg new file mode 100755 index 0000000..86b3346 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/py.svg @@ -0,0 +1,157 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/qa.svg b/public/assets/lib/flag-icon-css/flags/4x3/qa.svg new file mode 100755 index 0000000..0f93a9d --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/qa.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/re.svg b/public/assets/lib/flag-icon-css/flags/4x3/re.svg new file mode 100755 index 0000000..827103b --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/re.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/ro.svg b/public/assets/lib/flag-icon-css/flags/4x3/ro.svg new file mode 100755 index 0000000..d43c1e2 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/ro.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/rs.svg b/public/assets/lib/flag-icon-css/flags/4x3/rs.svg new file mode 100755 index 0000000..aa160fd --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/rs.svg @@ -0,0 +1,292 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/ru.svg b/public/assets/lib/flag-icon-css/flags/4x3/ru.svg new file mode 100755 index 0000000..f56fddb --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/ru.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/rw.svg b/public/assets/lib/flag-icon-css/flags/4x3/rw.svg new file mode 100755 index 0000000..afed4e3 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/rw.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/sa.svg b/public/assets/lib/flag-icon-css/flags/4x3/sa.svg new file mode 100755 index 0000000..5e8d038 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/sa.svg @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/sb.svg b/public/assets/lib/flag-icon-css/flags/4x3/sb.svg new file mode 100755 index 0000000..49903ae --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/sb.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/sc.svg b/public/assets/lib/flag-icon-css/flags/4x3/sc.svg new file mode 100755 index 0000000..3229f9d --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/sc.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/sd.svg b/public/assets/lib/flag-icon-css/flags/4x3/sd.svg new file mode 100755 index 0000000..30fe446 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/sd.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/se.svg b/public/assets/lib/flag-icon-css/flags/4x3/se.svg new file mode 100755 index 0000000..9079f31 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/se.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/sg.svg b/public/assets/lib/flag-icon-css/flags/4x3/sg.svg new file mode 100755 index 0000000..3087831 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/sg.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/sh.svg b/public/assets/lib/flag-icon-css/flags/4x3/sh.svg new file mode 100755 index 0000000..7b08321 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/sh.svg @@ -0,0 +1,74 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/si.svg b/public/assets/lib/flag-icon-css/flags/4x3/si.svg new file mode 100755 index 0000000..11e4c8a --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/si.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/sj.svg b/public/assets/lib/flag-icon-css/flags/4x3/sj.svg new file mode 100755 index 0000000..8e5d104 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/sj.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/sk.svg b/public/assets/lib/flag-icon-css/flags/4x3/sk.svg new file mode 100755 index 0000000..47e5040 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/sk.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/sl.svg b/public/assets/lib/flag-icon-css/flags/4x3/sl.svg new file mode 100755 index 0000000..51e2676 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/sl.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/sm.svg b/public/assets/lib/flag-icon-css/flags/4x3/sm.svg new file mode 100755 index 0000000..c86e3fb --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/sm.svg @@ -0,0 +1,91 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + L + + + I + + + B + + + E + + + R + + + T + + + A + + + S + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/sn.svg b/public/assets/lib/flag-icon-css/flags/4x3/sn.svg new file mode 100755 index 0000000..c06616f --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/sn.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/so.svg b/public/assets/lib/flag-icon-css/flags/4x3/so.svg new file mode 100755 index 0000000..ab10438 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/so.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/sr.svg b/public/assets/lib/flag-icon-css/flags/4x3/sr.svg new file mode 100755 index 0000000..9a169fd --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/sr.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/ss.svg b/public/assets/lib/flag-icon-css/flags/4x3/ss.svg new file mode 100755 index 0000000..4efa598 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/ss.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/st.svg b/public/assets/lib/flag-icon-css/flags/4x3/st.svg new file mode 100755 index 0000000..a6bd218 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/st.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/sv.svg b/public/assets/lib/flag-icon-css/flags/4x3/sv.svg new file mode 100755 index 0000000..c655e2e --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/sv.svg @@ -0,0 +1,601 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/sx.svg b/public/assets/lib/flag-icon-css/flags/4x3/sx.svg new file mode 100755 index 0000000..97984a2 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/sx.svg @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/sy.svg b/public/assets/lib/flag-icon-css/flags/4x3/sy.svg new file mode 100755 index 0000000..b30a3ba --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/sy.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/sz.svg b/public/assets/lib/flag-icon-css/flags/4x3/sz.svg new file mode 100755 index 0000000..7587ad1 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/sz.svg @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/tc.svg b/public/assets/lib/flag-icon-css/flags/4x3/tc.svg new file mode 100755 index 0000000..a599069 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/tc.svg @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/td.svg b/public/assets/lib/flag-icon-css/flags/4x3/td.svg new file mode 100755 index 0000000..734473e --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/td.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/tf.svg b/public/assets/lib/flag-icon-css/flags/4x3/tf.svg new file mode 100755 index 0000000..3913728 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/tf.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/tg.svg b/public/assets/lib/flag-icon-css/flags/4x3/tg.svg new file mode 100755 index 0000000..1824e0b --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/tg.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/th.svg b/public/assets/lib/flag-icon-css/flags/4x3/th.svg new file mode 100755 index 0000000..66fcd8e --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/th.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/tj.svg b/public/assets/lib/flag-icon-css/flags/4x3/tj.svg new file mode 100755 index 0000000..4e4dd47 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/tj.svg @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/tk.svg b/public/assets/lib/flag-icon-css/flags/4x3/tk.svg new file mode 100755 index 0000000..312e881 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/tk.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/tl.svg b/public/assets/lib/flag-icon-css/flags/4x3/tl.svg new file mode 100755 index 0000000..87e4731 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/tl.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/tm.svg b/public/assets/lib/flag-icon-css/flags/4x3/tm.svg new file mode 100755 index 0000000..f619373 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/tm.svg @@ -0,0 +1,206 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/tn.svg b/public/assets/lib/flag-icon-css/flags/4x3/tn.svg new file mode 100755 index 0000000..4c1996c --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/tn.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/to.svg b/public/assets/lib/flag-icon-css/flags/4x3/to.svg new file mode 100755 index 0000000..4dd38e4 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/to.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/tr.svg b/public/assets/lib/flag-icon-css/flags/4x3/tr.svg new file mode 100755 index 0000000..f1910ee --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/tr.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/tt.svg b/public/assets/lib/flag-icon-css/flags/4x3/tt.svg new file mode 100755 index 0000000..19add52 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/tt.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/tv.svg b/public/assets/lib/flag-icon-css/flags/4x3/tv.svg new file mode 100755 index 0000000..0b220b2 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/tv.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/tw.svg b/public/assets/lib/flag-icon-css/flags/4x3/tw.svg new file mode 100755 index 0000000..c7fdb90 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/tw.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/tz.svg b/public/assets/lib/flag-icon-css/flags/4x3/tz.svg new file mode 100755 index 0000000..5305034 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/tz.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/ua.svg b/public/assets/lib/flag-icon-css/flags/4x3/ua.svg new file mode 100755 index 0000000..a93d06d --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/ua.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/ug.svg b/public/assets/lib/flag-icon-css/flags/4x3/ug.svg new file mode 100755 index 0000000..e969d5a --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/ug.svg @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/um.svg b/public/assets/lib/flag-icon-css/flags/4x3/um.svg new file mode 100755 index 0000000..4f74e79 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/um.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/un.svg b/public/assets/lib/flag-icon-css/flags/4x3/un.svg new file mode 100755 index 0000000..326cb0d --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/un.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/us.svg b/public/assets/lib/flag-icon-css/flags/4x3/us.svg new file mode 100755 index 0000000..5b55267 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/us.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/uy.svg b/public/assets/lib/flag-icon-css/flags/4x3/uy.svg new file mode 100755 index 0000000..bad58e5 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/uy.svg @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/uz.svg b/public/assets/lib/flag-icon-css/flags/4x3/uz.svg new file mode 100755 index 0000000..3ede7f1 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/uz.svg @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/va.svg b/public/assets/lib/flag-icon-css/flags/4x3/va.svg new file mode 100755 index 0000000..2bcc0d3 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/va.svg @@ -0,0 +1,479 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/vc.svg b/public/assets/lib/flag-icon-css/flags/4x3/vc.svg new file mode 100755 index 0000000..99ba90f --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/vc.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/ve.svg b/public/assets/lib/flag-icon-css/flags/4x3/ve.svg new file mode 100755 index 0000000..98ef473 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/ve.svg @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/vg.svg b/public/assets/lib/flag-icon-css/flags/4x3/vg.svg new file mode 100755 index 0000000..ef5b5d4 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/vg.svg @@ -0,0 +1,127 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/vi.svg b/public/assets/lib/flag-icon-css/flags/4x3/vi.svg new file mode 100755 index 0000000..dcc22e4 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/vi.svg @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/vn.svg b/public/assets/lib/flag-icon-css/flags/4x3/vn.svg new file mode 100755 index 0000000..b0fcc9f --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/vn.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/vu.svg b/public/assets/lib/flag-icon-css/flags/4x3/vu.svg new file mode 100755 index 0000000..517615f --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/vu.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/wf.svg b/public/assets/lib/flag-icon-css/flags/4x3/wf.svg new file mode 100755 index 0000000..9d43586 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/wf.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/ws.svg b/public/assets/lib/flag-icon-css/flags/4x3/ws.svg new file mode 100755 index 0000000..1b3ecf4 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/ws.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/ye.svg b/public/assets/lib/flag-icon-css/flags/4x3/ye.svg new file mode 100755 index 0000000..1befdec --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/ye.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/yt.svg b/public/assets/lib/flag-icon-css/flags/4x3/yt.svg new file mode 100755 index 0000000..f198fff --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/yt.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/za.svg b/public/assets/lib/flag-icon-css/flags/4x3/za.svg new file mode 100755 index 0000000..ef1f265 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/za.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/zm.svg b/public/assets/lib/flag-icon-css/flags/4x3/zm.svg new file mode 100755 index 0000000..bdfebc8 --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/zm.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/flags/4x3/zw.svg b/public/assets/lib/flag-icon-css/flags/4x3/zw.svg new file mode 100755 index 0000000..2911f8c --- /dev/null +++ b/public/assets/lib/flag-icon-css/flags/4x3/zw.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/flag-icon-css/index.html b/public/assets/lib/flag-icon-css/index.html new file mode 100755 index 0000000..c4bced1 --- /dev/null +++ b/public/assets/lib/flag-icon-css/index.html @@ -0,0 +1,504 @@ + + + + + + + + + SVG Country Flags | flag-icon-css + + + + + + + + +
      +
      +

      flag-icon-css

      +

      + A collection of all country flags in SVG — plus the CSS for easier integration. +

      + View on GitHub + Download + +
      +
      + +
      +
      + +
      +
      + +
      +

      + h1 + + + GR + GR + GR + GR + GR + GR +

      +

      + h2 + + + GR + GR + GR + GR + GR + GR +

      +

      + h3 + + + GR + GR + GR + GR + GR + GR +

      +

      + h4 + + + GR + GR + GR + GR + GR + GR +

      +
      + h5 + + + GR + GR + GR + GR + GR + GR +
      +
      + h6 + + + GR + GR + GR + GR + GR + GR +
      +

      + p + + + GR + GR + GR + GR + GR + GR +

      +

      + p.lead + + + GR + GR + GR + GR + GR + GR +

      +
      + +
      + +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      + +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      + +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      + +
      +
      +
      +
      +
      +
      +
      +
      +
      + + + Fork me on GitHub + + + + diff --git a/public/assets/lib/flag-icon-css/svgo.yaml b/public/assets/lib/flag-icon-css/svgo.yaml new file mode 100755 index 0000000..8cb2c5c --- /dev/null +++ b/public/assets/lib/flag-icon-css/svgo.yaml @@ -0,0 +1,13 @@ +plugins: + - cleanupIDs: false + - collapseGroups: true + - removeDesc: true + - removeScriptElement: true + - removeStyleElement: true + - removeTitle: true + - removeUnknownsAndDefaults: true + - removeUnusedNS: true + - removeUselessDefs: true + - removeUselessStrokeAndFill: true + - removeViewBox: true + - sortAttrs: true diff --git a/public/assets/lib/flot.curvedlines/curvedLines.js b/public/assets/lib/flot.curvedlines/curvedLines.js new file mode 100755 index 0000000..b242ea2 --- /dev/null +++ b/public/assets/lib/flot.curvedlines/curvedLines.js @@ -0,0 +1,483 @@ +/* The MIT License + + Copyright (c) 2011 by Michael Zinsmaier and nergal.dev + Copyright (c) 2012 by Thomas Ritou + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +*/ + +/* +____________________________________________________ + + what it is: + ____________________________________________________ + + curvedLines is a plugin for flot, that tries to display lines in a smoother way. + This is achieved through adding of more data points. The plugin is a data processor and can thus be used + in combination with standard line / point rendering options. + + => 1) with large data sets you may get trouble + => 2) if you want to display the points too, you have to plot them as 2nd data series over the lines + => 3) consecutive x data points are not allowed to have the same value + + Feel free to further improve the code + + ____________________________________________________ + + how to use it: + ____________________________________________________ + + var d1 = [[5,5],[7,3],[9,12]]; + + var options = { series: { curvedLines: { active: true }}}; + + $.plot($("#placeholder"), [{data: d1, lines: { show: true}, curvedLines: {apply: true}}], options); + + _____________________________________________________ + + options: + _____________________________________________________ + + active: bool true => plugin can be used + apply: bool true => series will be drawn as curved line + monotonicFit: bool true => uses monotone cubic interpolation (preserve monotonicity) + tension: int defines the tension parameter of the hermite spline interpolation (no effect if monotonicFit is set) + nrSplinePoints: int defines the number of sample points (of the spline) in between two consecutive points + + deprecated options from flot prior to 1.0.0: + ------------------------------------------------ + legacyOverride bool true => use old default + OR + legacyOverride optionArray + { + fit: bool true => forces the max,mins of the curve to be on the datapoints + curvePointFactor int defines how many "virtual" points are used per "real" data point to + emulate the curvedLines (points total = real points * curvePointFactor) + fitPointDist: int defines the x axis distance of the additional two points that are used + } to enforce the min max condition. + */ + +/* + * v0.1 initial commit + * v0.15 negative values should work now (outcommented a negative -> 0 hook hope it does no harm) + * v0.2 added fill option (thanks to monemihir) and multi axis support (thanks to soewono effendi) + * v0.3 improved saddle handling and added basic handling of Dates + * v0.4 rewritten fill option (thomas ritou) mostly from original flot code (now fill between points rather than to graph bottom), corrected fill Opacity bug + * v0.5 rewritten instead of implementing a own draw function CurvedLines is now based on the processDatapoints flot hook (credits go to thomas ritou). + * This change breakes existing code however CurvedLines are now just many tiny straight lines to flot and therefore all flot lines options (like gradient fill, + * shadow) are now supported out of the box + * v0.6 flot 0.8 compatibility and some bug fixes + * v0.6.x changed versioning schema + * + * v1.0.0 API Break marked existing implementation/options as deprecated + * v1.1.0 added the new curved line calculations based on hermite splines + * v1.1.1 added a rough parameter check to make sure the new options are used + */ + +(function($) { + + var options = { + series : { + curvedLines : { + active : false, + apply : false, + monotonicFit : false, + tension : 0.5, + nrSplinePoints : 20, + legacyOverride : undefined + } + } + }; + + function init(plot) { + + plot.hooks.processOptions.push(processOptions); + + //if the plugin is active register processDatapoints method + function processOptions(plot, options) { + if (options.series.curvedLines.active) { + plot.hooks.processDatapoints.unshift(processDatapoints); + } + } + + //only if the plugin is active + function processDatapoints(plot, series, datapoints) { + var nrPoints = datapoints.points.length / datapoints.pointsize; + var EPSILON = 0.005; + + //detects missplaced legacy parameters (prior v1.x.x) in the options object + //this can happen if somebody upgrades to v1.x.x without adjusting the parameters or uses old examples + var invalidLegacyOptions = hasInvalidParameters(series.curvedLines); + + if (!invalidLegacyOptions && series.curvedLines.apply == true && series.originSeries === undefined && nrPoints > (1 + EPSILON)) { + if (series.lines.fill) { + + var pointsTop = calculateCurvePoints(datapoints, series.curvedLines, 1); + var pointsBottom = calculateCurvePoints(datapoints, series.curvedLines, 2); + //flot makes sure for us that we've got a second y point if fill is true ! + + //Merge top and bottom curve + datapoints.pointsize = 3; + datapoints.points = []; + var j = 0; + var k = 0; + var i = 0; + var ps = 2; + while (i < pointsTop.length || j < pointsBottom.length) { + if (pointsTop[i] == pointsBottom[j]) { + datapoints.points[k] = pointsTop[i]; + datapoints.points[k + 1] = pointsTop[i + 1]; + datapoints.points[k + 2] = pointsBottom[j + 1]; + j += ps; + i += ps; + + } else if (pointsTop[i] < pointsBottom[j]) { + datapoints.points[k] = pointsTop[i]; + datapoints.points[k + 1] = pointsTop[i + 1]; + datapoints.points[k + 2] = k > 0 ? datapoints.points[k - 1] : null; + i += ps; + } else { + datapoints.points[k] = pointsBottom[j]; + datapoints.points[k + 1] = k > 1 ? datapoints.points[k - 2] : null; + datapoints.points[k + 2] = pointsBottom[j + 1]; + j += ps; + } + k += 3; + } + } else if (series.lines.lineWidth > 0) { + datapoints.points = calculateCurvePoints(datapoints, series.curvedLines, 1); + datapoints.pointsize = 2; + } + } + } + + function calculateCurvePoints(datapoints, curvedLinesOptions, yPos) { + if ( typeof curvedLinesOptions.legacyOverride != 'undefined' && curvedLinesOptions.legacyOverride != false) { + var defaultOptions = { + fit : false, + curvePointFactor : 20, + fitPointDist : undefined + }; + var legacyOptions = jQuery.extend(defaultOptions, curvedLinesOptions.legacyOverride); + return calculateLegacyCurvePoints(datapoints, legacyOptions, yPos); + } + + return calculateSplineCurvePoints(datapoints, curvedLinesOptions, yPos); + } + + function calculateSplineCurvePoints(datapoints, curvedLinesOptions, yPos) { + var points = datapoints.points; + var ps = datapoints.pointsize; + + //create interpolant fuction + var splines = createHermiteSplines(datapoints, curvedLinesOptions, yPos); + var result = []; + + //sample the function + // (the result is intependent from the input data => + // it is ok to alter the input after this method) + var j = 0; + for (var i = 0; i < points.length - ps; i += ps) { + var curX = i; + var curY = i + yPos; + + var xStart = points[curX]; + var xEnd = points[curX + ps]; + var xStep = (xEnd - xStart) / Number(curvedLinesOptions.nrSplinePoints); + + //add point + result.push(points[curX]); + result.push(points[curY]); + + //add curve point + for (var x = (xStart += xStep); x < xEnd; x += xStep) { + result.push(x); + result.push(splines[j](x)); + } + + j++; + } + + //add last point + result.push(points[points.length - ps]); + result.push(points[points.length - ps + yPos]); + + return result; + } + + + + // Creates an array of splines, one for each segment of the original curve. Algorithm based on the wikipedia articles: + // + // http://de.wikipedia.org/w/index.php?title=Kubisch_Hermitescher_Spline&oldid=130168003 and + // http://en.wikipedia.org/w/index.php?title=Monotone_cubic_interpolation&oldid=622341725 and the description of Fritsch-Carlson from + // http://math.stackexchange.com/questions/45218/implementation-of-monotone-cubic-interpolation + // for a detailed description see https://github.com/MichaelZinsmaier/CurvedLines/docu + function createHermiteSplines(datapoints, curvedLinesOptions, yPos) { + var points = datapoints.points; + var ps = datapoints.pointsize; + + // preparation get length (x_{k+1} - x_k) and slope s=(p_{k+1} - p_k) / (x_{k+1} - x_k) of the segments + var segmentLengths = []; + var segmentSlopes = []; + + for (var i = 0; i < points.length - ps; i += ps) { + var curX = i; + var curY = i + yPos; + var dx = points[curX + ps] - points[curX]; + var dy = points[curY + ps] - points[curY]; + + segmentLengths.push(dx); + segmentSlopes.push(dy / dx); + } + + //get the values for the desired gradients m_k for all points k + //depending on the used method the formula is different + var gradients = [segmentSlopes[0]]; + if (curvedLinesOptions.monotonicFit) { + // Fritsch Carlson + for (var i = 1; i < segmentLengths.length; i++) { + var slope = segmentSlopes[i]; + var prev_slope = segmentSlopes[i - 1]; + if (slope * prev_slope <= 0) { // sign(prev_slope) != sign(slpe) + gradients.push(0); + } else { + var length = segmentLengths[i]; + var prev_length = segmentLengths[i - 1]; + var common = length + prev_length; + //m = 3 (prev_length + length) / ((2 length + prev_length) / prev_slope + (length + 2 prev_length) / slope) + gradients.push(3 * common / ((common + length) / prev_slope + (common + prev_length) / slope)); + } + } + } else { + // Cardinal spline with t € [0,1] + // Catmull-Rom for t = 0 + for (var i = ps; i < points.length - ps; i += ps) { + var curX = i; + var curY = i + yPos; + gradients.push(Number(curvedLinesOptions.tension) * (points[curY + ps] - points[curY - ps]) / (points[curX + ps] - points[curX - ps])); + } + } + gradients.push(segmentSlopes[segmentSlopes.length - 1]); + + //get the two major coefficients (c'_{oef1} and c'_{oef2}) for each segment spline + var coefs1 = []; + var coefs2 = []; + for (i = 0; i < segmentLengths.length; i++) { + var m_k = gradients[i]; + var m_k_plus = gradients[i + 1]; + var slope = segmentSlopes[i]; + var invLength = 1 / segmentLengths[i]; + var common = m_k + m_k_plus - slope - slope; + + coefs1.push(common * invLength * invLength); + coefs2.push((slope - common - m_k) * invLength); + } + + //create functions with from the coefficients and capture the parameters + var ret = []; + for (var i = 0; i < segmentLengths.length; i ++) { + var spline = function (x_k, coef1, coef2, coef3, coef4) { + // spline for a segment + return function (x) { + var diff = x - x_k; + var diffSq = diff * diff; + return coef1 * diff * diffSq + coef2 * diffSq + coef3 * diff + coef4; + }; + }; + + ret.push(spline(points[i * ps], coefs1[i], coefs2[i], gradients[i], points[i * ps + yPos])); + } + + return ret; + }; + + //no real idea whats going on here code mainly from https://code.google.com/p/flot/issues/detail?id=226 + //if fit option is selected additional datapoints get inserted before the curve calculations in nergal.dev s code. + function calculateLegacyCurvePoints(datapoints, curvedLinesOptions, yPos) { + + var points = datapoints.points; + var ps = datapoints.pointsize; + var num = Number(curvedLinesOptions.curvePointFactor) * (points.length / ps); + + var xdata = new Array; + var ydata = new Array; + + var curX = -1; + var curY = -1; + var j = 0; + + if (curvedLinesOptions.fit) { + //insert a point before and after the "real" data point to force the line + //to have a max,min at the data point. + + var fpDist; + if ( typeof curvedLinesOptions.fitPointDist == 'undefined') { + //estimate it + var minX = points[0]; + var maxX = points[points.length - ps]; + fpDist = (maxX - minX) / (500 * 100); + //x range / (estimated pixel length of placeholder * factor) + } else { + //use user defined value + fpDist = Number(curvedLinesOptions.fitPointDist); + } + + for (var i = 0; i < points.length; i += ps) { + + var frontX; + var backX; + curX = i; + curY = i + yPos; + + //add point X s + frontX = points[curX] - fpDist; + backX = points[curX] + fpDist; + + var factor = 2; + while (frontX == points[curX] || backX == points[curX]) { + //inside the ulp + frontX = points[curX] - (fpDist * factor); + backX = points[curX] + (fpDist * factor); + factor++; + } + + //add curve points + xdata[j] = frontX; + ydata[j] = points[curY]; + j++; + + xdata[j] = points[curX]; + ydata[j] = points[curY]; + j++; + + xdata[j] = backX; + ydata[j] = points[curY]; + j++; + } + } else { + //just use the datapoints + for (var i = 0; i < points.length; i += ps) { + curX = i; + curY = i + yPos; + + xdata[j] = points[curX]; + ydata[j] = points[curY]; + j++; + } + } + + var n = xdata.length; + + var y2 = new Array(); + var delta = new Array(); + y2[0] = 0; + y2[n - 1] = 0; + delta[0] = 0; + + for (var i = 1; i < n - 1; ++i) { + var d = (xdata[i + 1] - xdata[i - 1]); + if (d == 0) { + //point before current point and after current point need some space in between + return []; + } + + var s = (xdata[i] - xdata[i - 1]) / d; + var p = s * y2[i - 1] + 2; + y2[i] = (s - 1) / p; + delta[i] = (ydata[i + 1] - ydata[i]) / (xdata[i + 1] - xdata[i]) - (ydata[i] - ydata[i - 1]) / (xdata[i] - xdata[i - 1]); + delta[i] = (6 * delta[i] / (xdata[i + 1] - xdata[i - 1]) - s * delta[i - 1]) / p; + } + + for (var j = n - 2; j >= 0; --j) { + y2[j] = y2[j] * y2[j + 1] + delta[j]; + } + + // xmax - xmin / #points + var step = (xdata[n - 1] - xdata[0]) / (num - 1); + + var xnew = new Array; + var ynew = new Array; + var result = new Array; + + xnew[0] = xdata[0]; + ynew[0] = ydata[0]; + + result.push(xnew[0]); + result.push(ynew[0]); + + for ( j = 1; j < num; ++j) { + //new x point (sampling point for the created curve) + xnew[j] = xnew[0] + j * step; + + var max = n - 1; + var min = 0; + + while (max - min > 1) { + var k = Math.round((max + min) / 2); + if (xdata[k] > xnew[j]) { + max = k; + } else { + min = k; + } + } + + //found point one to the left and one to the right of generated new point + var h = (xdata[max] - xdata[min]); + + if (h == 0) { + //similar to above two points from original x data need some space between them + return []; + } + + var a = (xdata[max] - xnew[j]) / h; + var b = (xnew[j] - xdata[min]) / h; + + ynew[j] = a * ydata[min] + b * ydata[max] + ((a * a * a - a) * y2[min] + (b * b * b - b) * y2[max]) * (h * h) / 6; + + result.push(xnew[j]); + result.push(ynew[j]); + } + + return result; + } + + function hasInvalidParameters(curvedLinesOptions) { + if (typeof curvedLinesOptions.fit != 'undefined' || + typeof curvedLinesOptions.curvePointFactor != 'undefined' || + typeof curvedLinesOptions.fitPointDist != 'undefined') { + throw new Error("CurvedLines detected illegal parameters. The CurvedLines API changed with version 1.0.0 please check the options object."); + return true; + } + return false; + } + + + }//end init + + + $.plot.plugins.push({ + init : init, + options : options, + name : 'curvedLines', + version : '1.1.1' + }); + +})(jQuery); + diff --git a/public/assets/lib/flot.curvedlines/docu/MathStuff.pdf b/public/assets/lib/flot.curvedlines/docu/MathStuff.pdf new file mode 100755 index 0000000..daedd2f Binary files /dev/null and b/public/assets/lib/flot.curvedlines/docu/MathStuff.pdf differ diff --git a/public/assets/lib/flot.curvedlines/docu/MathStuff.tex b/public/assets/lib/flot.curvedlines/docu/MathStuff.tex new file mode 100755 index 0000000..7b17dda --- /dev/null +++ b/public/assets/lib/flot.curvedlines/docu/MathStuff.tex @@ -0,0 +1,105 @@ +\documentclass[a4paper]{article} +\usepackage[english]{babel} +\usepackage[utf8]{inputenc} +\usepackage[fleqn]{amsmath} +\usepackage{hyperref} + +\begin{document} + +\section{Math stuff} + +Cubic interpolation for one segment $[x_k, x_{k+1}]$ can be described as: + +\begin{equation*} + \begin{aligned} + f(t) &= c_{oef1}t^3 + c_{oef2}t^2 + c_{oef3}t + c_{oef4} \hspace{1cm} with \\ + t(x) &= \frac{x - x_k}{x_{k+1} - x_k} + \end{aligned} +\end{equation*} + +\hspace{1cm} and + +\begin{equation*} + \begin{aligned} + c_{oef1} &= 2p_0 - 2p_1 - m_0 - m_1 \\ + c_{oef2} &= -3p_0 + 3p_1 - 2m_0 - m_1 \\ + c_{oef3} &= m_0 \\ + c_{oef4} &= p_0 + \end{aligned} +\end{equation*} + + +(see Wikipedia-Links below)\\ +\\ +If we rewrite this as function of $d = x - x_k$ we get + +\begin{equation*} + \begin{aligned} + f'(d) &= c_{oef1}' d^3 + c_{oef2}' d^2 + c_{oef3}' d + c_{oef4}' \hspace{1cm} with \\ + c_{oef1}' &= \frac{c_{oef1}}{(x_{k+1} - x_k)^3} \\ + c_{oef2}' &= \frac{c_{oef2}}{(x_{k+1} - x_k)^2} \\ + c_{oef3}' &= \frac{c_{oef3}}{x_{k+1} - x_k} \\ + c_{oef4}' &= c_{oef4} + \end{aligned} +\end{equation*} +\\ +The implemented algorithm uses two helper variables to calculate the coefficients of $f'$ efficiently: + +\begin{equation*} + \begin{aligned} + common = m_k + m_{k+1} - 2 \frac{p_{k+1} - p_k}{x_{k+1} - x_k} \\ + invLength = \frac{1}{x_{k+1} - x_k} + \end{aligned} +\end{equation*} +\\ +We use $p_0 = p_k$, $p_1 = p_{k+1}$, $m_0 = m_k (x_{k+1} - x_k)$, $m_1 = m_{k+1} (x_{k+1} - x_k)$ and $s = \frac{p_{k+1}-p_k}{x_{k+1}-x_k}$. The tangents are scaled with the length of the segment. \\ +\\ +If we insert this into the equations for the coefficients we get the formulas that are used in the algorithm: + +\begin{equation*} +\begin{aligned} + c_{oef1}' &= \frac{c_{oef1}}{(x_{k+1} - x_k)^3} \\ + &= \frac{2p_0 - 2p_1 + m_0 + m_1}{(x_{k+1} - x_k)^3}\\ + &= (2p_k - 2p_{k+1} + m_k (x_{k+1} - x_k) + m_{k+1} (x_{k+1} - x_k) / (x_{k+1} - x_k)^3 \\ + &= \frac {(2p_k - 2p_{k+1} + m_k (x_{k+1} - x_k) + m_{k+1} (x_{k+1} - x_k)}{x_{k+1} - x_k} / (x_{k+1} - x_k)^2 \\ + &= (\frac {2p_k - 2p_{k+1}}{x_{k+1} - x_k} + m_k + m_{k+1} ) * invLength^2 \\ + &= (-2\frac {p_{k+1}- p_k}{x_{k+1} - x_k} + m_k + m_{k+1} ) * invLength^2 \\ + &= common * invLenght^2 +\end{aligned} +\end{equation*} + +\begin{equation*} +\begin{aligned} + c_{oef2}' &= \frac{c_{oef2}}{(x_{k+1} - x_k)^2} \\ + &= (-3p_0 + 3p_1 - 2m_0 - m_1) / (x_{k+1} - x_k)^2 \\ + &= (-3p_k + 3p_{k+1} - 2* m_k (x_{k+1} - x_k) - m_{k+1} (x_{k+1} - x_k)) / (x_{k+1} - x_k)^2 \\ + &= (\frac{-3p_k + 3p_{k+1}}{x_{k+1} - x_k} - 2m_k - m_{k+1}) * invLenght \\ + &= (3\frac{p_{k+1} - p_k}{x_{k+1} - x_k} - 2m_k - m_{k+1}) * invLenght \\ + &=(\frac{p_{k+1} - p_k}{x_{k+1} - x_k} + 2\frac{p_{k+1} - p_k}{x_{k+1} - x_k} - m_k - m_{k+1} - m_k) * invLenght \\ + &= (s - common - m_k) * invLenght +\end{aligned} +\end{equation*} + +\begin{equation*} +\begin{aligned} + c_{oef3}' &= \frac{c_{oef3}}{x_{k+1} - x_k} \\ + &= \frac{m_0}{x_{k+1} - x_k} \\ + &= \frac{m_k (x_{k+1} - x_k)}{x_{k+1} - x_k} \\ + &= m_k +\end{aligned} +\end{equation*} + +\begin{equation*} +\begin{aligned} + c_{oef4}' &= c_{oef4} = p_0 = p_k +\end{aligned} +\end{equation*} + +\section{Useful Links} + +\url{http://de.wikipedia.org/w/index.php?title=Kubisch_Hermitescher_Spline&oldid=130168003)}\\ +\url{http://en.wikipedia.org/w/index.php?title=Monotone_cubic_interpolation&oldid=622341725}\\ +\url{http://math.stackexchange.com/questions/45218/implementation-of-monotone-cubic-interpolation}\\ +\url{http://math.stackexchange.com/questions/4082/equation-of-a-curve-given-3-points-and-additional-constant-requirements#4104} + +\end{document} \ No newline at end of file diff --git a/public/assets/lib/flot.curvedlines/exampleCustomizing.txt b/public/assets/lib/flot.curvedlines/exampleCustomizing.txt new file mode 100755 index 0000000..724ad93 --- /dev/null +++ b/public/assets/lib/flot.curvedlines/exampleCustomizing.txt @@ -0,0 +1,70 @@ +### html ### + +

      CurvedLines: customizing and mixing

      + +
      point at: - / - + +
      +
      +
      The example shows two datasets (d1, d2) plotted using different styles (curved line, points, bigger points). The points are hoverable, the curved line is not.
      +
      To achieve such mixed plots you have to define some settings on a per series level. In the example the curved line plugin is generally set to active (as default in the options object) but will be applied only to the first series. Similarly hovering is deactivated for the first series. The combination of "replotting" (series 1 and 2 both origin form dataset d1) and per series settings allows you to mix different plotting styles and settings in one canvas.
      + +### css ### + +.chart-style { + width: 600px; + height: 340px; + margin-bottom: 15px; +} +.text-block { + margin-bottom: 15px; +} + +### javascript ### + +//some random data +var d1 = []; var last = 0; +for (var i = 0; i <= 40; i += (2 + parseInt(Math.random() * 5))) { + last = last + ((Math.random() * 3) - 1.5) + d1.push([i, parseInt(last)]); +} + +var d2 = []; +for (var i = 2; i <= $(d1).get(-1)[0]; i += (2 + parseInt(Math.random() * 5))) { + d2.push([i, parseInt(Math.random() * 8)]); +} + + +//default flot options +var options = { + series: { curvedLines: { active: true } }, + grid: { hoverable: true } // <- generally activate hover +}; + + +//plotting with per series adjustments +$.plot($("#flotContainer"), [ +{ //series 1 + data: d1, + lines: { show: true, lineWidth: 3 }, + hoverable: false, // <- overwrite hoverable with false + curvedLines: { + apply: true // <- set apply <- curve only this data series + } +}, { //series 2 + data: d1, + points: { show: true } +}, { //series 3 + data: d2, + points: { show: true, radius: 5 } +}], options); + + +//adding hover text +$("#flotContainer").bind("plothover", function (event, pos, item) { + if (item) { + $("#hoverText").text("point at: " + pos.x.toFixed(2) + " / " + pos.y.toFixed(2)) + } else { + $("#hoverText").text("point at: - / -") + } +}); \ No newline at end of file diff --git a/public/assets/lib/flot.curvedlines/exampleFillMultiAxis.txt b/public/assets/lib/flot.curvedlines/exampleFillMultiAxis.txt new file mode 100755 index 0000000..6d4c882 --- /dev/null +++ b/public/assets/lib/flot.curvedlines/exampleFillMultiAxis.txt @@ -0,0 +1,49 @@ +### html ### + +

      CurvedLines with multi axis and fill

      +
      + +### css ### + +.chart-style { + width: 500px; + height: 300px; +} + +### javascript ### + +//data +var d1 = [[20,20], [42,60], [54, 20], [80,80]]; +var d2 = [[20,700], [80,300]]; + +//flot options +var options = { + series: { + curvedLines: {active: true} + }, + yaxes: [{ min:10, max: 90}, {position: 'right'}] + }; + +//plotting +$.plot($("#flotContainer"),[ + { + data: d1, + lines: { show: true, fill: true, fillColor: "#C3C3C3", lineWidth: 3}, + //curve the line (old pre 1.0.0 plotting function) + curvedLines: { + apply: true, + legacyOverride: true // <- use legacy plotting function + } + }, { + data: d1, + points: { show: true } + }, { + data: d2, + yaxis: 2, + lines: { show: true, lineWidth: 3}, + }, { + data: d2, + yaxis: 2, + points: { show: true } + } +], options); \ No newline at end of file diff --git a/public/assets/lib/flot.curvedlines/exampleFit.txt b/public/assets/lib/flot.curvedlines/exampleFit.txt new file mode 100755 index 0000000..93ea96f --- /dev/null +++ b/public/assets/lib/flot.curvedlines/exampleFit.txt @@ -0,0 +1,50 @@ +### html ### + +

      CurvedLines: with standard settings (shows effects of tension parameter)

      +
      + +

      CurvedLines: with monotonicFit (no overshooting/wiggles)

      +
      + +### css ### + +.chart-style { + width: 400px; + height: 240px; +} + +### javascript ### +//data +var d1 = [[20, 20], [25, 50], [27.5, 35], [30, 20], [35, 20]]; + +//flot options +var options = { + series: { + curvedLines: {active: true} + } + }; + +//plotting +$.plot($("#flotContainer"),[ + { + data: d1, color: '#2b8cbe', + lines: {show: true, lineWidth: 3}, + //choose tension from [0,1] to see overshooting effects (0.5 is default) + curvedLines: {apply: true, tension: 1} + }, { + data: d1, color: '#f03b20', + points: {show: true} + } +], options); + +$.plot($("#flotContainer2"),[ + { + data: d1, color: '#2b8cbe', + lines: {show: true, lineWidth: 3}, + //monotonicFit enforces monotonicity + curvedLines: {apply: true, monotonicFit: true} + }, { + data: d1, color: '#f03b20', + points: {show: true} + } +], options); \ No newline at end of file diff --git a/public/assets/lib/flot.curvedlines/exampleHelperPoints.txt b/public/assets/lib/flot.curvedlines/exampleHelperPoints.txt new file mode 100755 index 0000000..d97e2d0 --- /dev/null +++ b/public/assets/lib/flot.curvedlines/exampleHelperPoints.txt @@ -0,0 +1,53 @@ +### html ### + +

      CurvedLines: random data points

      +
      + +

      CurvedLines: internally created helper points

      +
      + +### css ### + +.chart-style { + width: 600px; + height: 260px; +} + +### javascript ### + +//random data +var d1 = []; var last = 0; +for (var i = 0; i <= 40; i += (2 + parseInt(Math.random() * 5))) { + last = last + ((Math.random() * 3) - 1.5) + d1.push([i, parseInt(last)]); +} + +//flot options +var options = { + series: { + curvedLines: { + active: true, + nrSplinePoints: 20 // <- control nr of helper points + } // between two poins + } + }; +//plotting +$.plot($("#flotContainer"),[ + { //curved line + data: d1, + lines: {show: true, lineWidth: 3}, + curvedLines: {apply: true } // <- curve line + }, { //original data points + data: d1, + points: {show: true} + } +], options); + +$.plot($("#flotContainer2"),[ + { // <- helper points that are used to curve the lines + data: d1, + color: '#CC0000', + points: {show: true}, + curvedLines: {apply: true} //<- "curve" points + } +], options); \ No newline at end of file diff --git a/public/assets/lib/flot.curvedlines/exampleStackedData.txt b/public/assets/lib/flot.curvedlines/exampleStackedData.txt new file mode 100755 index 0000000..2e58aac --- /dev/null +++ b/public/assets/lib/flot.curvedlines/exampleStackedData.txt @@ -0,0 +1,53 @@ +### html ### + +

      CurvedLines: random stacked data

      +
      + +

      CurvedLines: same data connected with curved lines

      +
      + +### css ### + +.chart-style { + width: 600px; + height: 260px; +} + +### javascript ### + +//random data +var d1 = []; +for (var i = 0; i <= 10; i += 1) { + d1.push([i, parseInt(Math.random() * 30)]); +} +var d2 = []; +for (var i = 0; i <= 10; i += 1) { + d2.push([i, parseInt(Math.random() * 30)]); +} +var d3 = []; +for (var i = 0; i <= 10; i += 1) { + d3.push([i, parseInt(Math.random() * 30)]); +} + +//flot options +var options = { + series: { + curvedLines: { + apply: true, + active: true, + monotonicFit: true + } + } + }; +//plotting +$.plot($("#flotContainer"), [ + {data: d1, lines: { show: true, fill: true }, stack: true }, + {data: d2, lines: { show: true, fill: true }, stack: true }, + {data: d3, lines: { show: true, fill: true }, stack: true } +], {}); + +$.plot($("#flotContainer2"), [ + {data: d1, lines: { show: true, fill: true }, stack: true }, + {data: d2, lines: { show: true, fill: true }, stack: true }, + {data: d3, lines: { show: true, fill: true }, stack: true } + ], options); \ No newline at end of file diff --git a/public/assets/lib/flot.curvedlines/flot/excanvas.min.js b/public/assets/lib/flot.curvedlines/flot/excanvas.min.js new file mode 100755 index 0000000..fcf876c --- /dev/null +++ b/public/assets/lib/flot.curvedlines/flot/excanvas.min.js @@ -0,0 +1 @@ +if(!document.createElement("canvas").getContext){(function(){var ab=Math;var n=ab.round;var l=ab.sin;var A=ab.cos;var H=ab.abs;var N=ab.sqrt;var d=10;var f=d/2;var z=+navigator.userAgent.match(/MSIE ([\d.]+)?/)[1];function y(){return this.context_||(this.context_=new D(this))}var t=Array.prototype.slice;function g(j,m,p){var i=t.call(arguments,2);return function(){return j.apply(m,i.concat(t.call(arguments)))}}function af(i){return String(i).replace(/&/g,"&").replace(/"/g,""")}function Y(m,j,i){if(!m.namespaces[j]){m.namespaces.add(j,i,"#default#VML")}}function R(j){Y(j,"g_vml_","urn:schemas-microsoft-com:vml");Y(j,"g_o_","urn:schemas-microsoft-com:office:office");if(!j.styleSheets.ex_canvas_){var i=j.createStyleSheet();i.owningElement.id="ex_canvas_";i.cssText="canvas{display:inline-block;overflow:hidden;text-align:left;width:300px;height:150px}"}}R(document);var e={init:function(i){var j=i||document;j.createElement("canvas");j.attachEvent("onreadystatechange",g(this.init_,this,j))},init_:function(p){var m=p.getElementsByTagName("canvas");for(var j=0;j1){m--}if(6*m<1){return j+(i-j)*6*m}else{if(2*m<1){return i}else{if(3*m<2){return j+(i-j)*(2/3-m)*6}else{return j}}}}var C={};function F(j){if(j in C){return C[j]}var ag,Z=1;j=String(j);if(j.charAt(0)=="#"){ag=j}else{if(/^rgb/.test(j)){var p=M(j);var ag="#",ah;for(var m=0;m<3;m++){if(p[m].indexOf("%")!=-1){ah=Math.floor(c(p[m])*255)}else{ah=+p[m]}ag+=k[r(ah,0,255)]}Z=+p[3]}else{if(/^hsl/.test(j)){var p=M(j);ag=I(p);Z=p[3]}else{ag=b[j]||j}}}return C[j]={color:ag,alpha:Z}}var o={style:"normal",variant:"normal",weight:"normal",size:10,family:"sans-serif"};var L={};function E(i){if(L[i]){return L[i]}var p=document.createElement("div");var m=p.style;try{m.font=i}catch(j){}return L[i]={style:m.fontStyle||o.style,variant:m.fontVariant||o.variant,weight:m.fontWeight||o.weight,size:m.fontSize||o.size,family:m.fontFamily||o.family}}function u(m,j){var i={};for(var ah in m){i[ah]=m[ah]}var ag=parseFloat(j.currentStyle.fontSize),Z=parseFloat(m.size);if(typeof m.size=="number"){i.size=m.size}else{if(m.size.indexOf("px")!=-1){i.size=Z}else{if(m.size.indexOf("em")!=-1){i.size=ag*Z}else{if(m.size.indexOf("%")!=-1){i.size=(ag/100)*Z}else{if(m.size.indexOf("pt")!=-1){i.size=Z/0.75}else{i.size=ag}}}}}i.size*=0.981;return i}function ac(i){return i.style+" "+i.variant+" "+i.weight+" "+i.size+"px "+i.family}var s={butt:"flat",round:"round"};function S(i){return s[i]||"square"}function D(i){this.m_=B();this.mStack_=[];this.aStack_=[];this.currentPath_=[];this.strokeStyle="#000";this.fillStyle="#000";this.lineWidth=1;this.lineJoin="miter";this.lineCap="butt";this.miterLimit=d*1;this.globalAlpha=1;this.font="10px sans-serif";this.textAlign="left";this.textBaseline="alphabetic";this.canvas=i;var m="width:"+i.clientWidth+"px;height:"+i.clientHeight+"px;overflow:hidden;position:absolute";var j=i.ownerDocument.createElement("div");j.style.cssText=m;i.appendChild(j);var p=j.cloneNode(false);p.style.backgroundColor="red";p.style.filter="alpha(opacity=0)";i.appendChild(p);this.element_=j;this.arcScaleX_=1;this.arcScaleY_=1;this.lineScale_=1}var q=D.prototype;q.clearRect=function(){if(this.textMeasureEl_){this.textMeasureEl_.removeNode(true);this.textMeasureEl_=null}this.element_.innerHTML=""};q.beginPath=function(){this.currentPath_=[]};q.moveTo=function(j,i){var m=V(this,j,i);this.currentPath_.push({type:"moveTo",x:m.x,y:m.y});this.currentX_=m.x;this.currentY_=m.y};q.lineTo=function(j,i){var m=V(this,j,i);this.currentPath_.push({type:"lineTo",x:m.x,y:m.y});this.currentX_=m.x;this.currentY_=m.y};q.bezierCurveTo=function(m,j,ak,aj,ai,ag){var i=V(this,ai,ag);var ah=V(this,m,j);var Z=V(this,ak,aj);K(this,ah,Z,i)};function K(i,Z,m,j){i.currentPath_.push({type:"bezierCurveTo",cp1x:Z.x,cp1y:Z.y,cp2x:m.x,cp2y:m.y,x:j.x,y:j.y});i.currentX_=j.x;i.currentY_=j.y}q.quadraticCurveTo=function(ai,m,j,i){var ah=V(this,ai,m);var ag=V(this,j,i);var aj={x:this.currentX_+2/3*(ah.x-this.currentX_),y:this.currentY_+2/3*(ah.y-this.currentY_)};var Z={x:aj.x+(ag.x-this.currentX_)/3,y:aj.y+(ag.y-this.currentY_)/3};K(this,aj,Z,ag)};q.arc=function(al,aj,ak,ag,j,m){ak*=d;var ap=m?"at":"wa";var am=al+A(ag)*ak-f;var ao=aj+l(ag)*ak-f;var i=al+A(j)*ak-f;var an=aj+l(j)*ak-f;if(am==i&&!m){am+=0.125}var Z=V(this,al,aj);var ai=V(this,am,ao);var ah=V(this,i,an);this.currentPath_.push({type:ap,x:Z.x,y:Z.y,radius:ak,xStart:ai.x,yStart:ai.y,xEnd:ah.x,yEnd:ah.y})};q.rect=function(m,j,i,p){this.moveTo(m,j);this.lineTo(m+i,j);this.lineTo(m+i,j+p);this.lineTo(m,j+p);this.closePath()};q.strokeRect=function(m,j,i,p){var Z=this.currentPath_;this.beginPath();this.moveTo(m,j);this.lineTo(m+i,j);this.lineTo(m+i,j+p);this.lineTo(m,j+p);this.closePath();this.stroke();this.currentPath_=Z};q.fillRect=function(m,j,i,p){var Z=this.currentPath_;this.beginPath();this.moveTo(m,j);this.lineTo(m+i,j);this.lineTo(m+i,j+p);this.lineTo(m,j+p);this.closePath();this.fill();this.currentPath_=Z};q.createLinearGradient=function(j,p,i,m){var Z=new U("gradient");Z.x0_=j;Z.y0_=p;Z.x1_=i;Z.y1_=m;return Z};q.createRadialGradient=function(p,ag,m,j,Z,i){var ah=new U("gradientradial");ah.x0_=p;ah.y0_=ag;ah.r0_=m;ah.x1_=j;ah.y1_=Z;ah.r1_=i;return ah};q.drawImage=function(aq,m){var aj,ah,al,ay,ao,am,at,aA;var ak=aq.runtimeStyle.width;var ap=aq.runtimeStyle.height;aq.runtimeStyle.width="auto";aq.runtimeStyle.height="auto";var ai=aq.width;var aw=aq.height;aq.runtimeStyle.width=ak;aq.runtimeStyle.height=ap;if(arguments.length==3){aj=arguments[1];ah=arguments[2];ao=am=0;at=al=ai;aA=ay=aw}else{if(arguments.length==5){aj=arguments[1];ah=arguments[2];al=arguments[3];ay=arguments[4];ao=am=0;at=ai;aA=aw}else{if(arguments.length==9){ao=arguments[1];am=arguments[2];at=arguments[3];aA=arguments[4];aj=arguments[5];ah=arguments[6];al=arguments[7];ay=arguments[8]}else{throw Error("Invalid number of arguments")}}}var az=V(this,aj,ah);var p=at/2;var j=aA/2;var ax=[];var i=10;var ag=10;ax.push(" ','","");this.element_.insertAdjacentHTML("BeforeEnd",ax.join(""))};q.stroke=function(ao){var Z=10;var ap=10;var ag=5000;var ai={x:null,y:null};var an={x:null,y:null};for(var aj=0;ajan.x){an.x=m.x}if(ai.y==null||m.yan.y){an.y=m.y}}}am.push(' ">');if(!ao){w(this,am)}else{G(this,am,ai,an)}am.push("");this.element_.insertAdjacentHTML("beforeEnd",am.join(""))}};function w(m,ag){var j=F(m.strokeStyle);var p=j.color;var Z=j.alpha*m.globalAlpha;var i=m.lineScale_*m.lineWidth;if(i<1){Z*=i}ag.push("')}function G(aq,ai,aK,ar){var aj=aq.fillStyle;var aB=aq.arcScaleX_;var aA=aq.arcScaleY_;var j=ar.x-aK.x;var p=ar.y-aK.y;if(aj instanceof U){var an=0;var aF={x:0,y:0};var ax=0;var am=1;if(aj.type_=="gradient"){var al=aj.x0_/aB;var m=aj.y0_/aA;var ak=aj.x1_/aB;var aM=aj.y1_/aA;var aJ=V(aq,al,m);var aI=V(aq,ak,aM);var ag=aI.x-aJ.x;var Z=aI.y-aJ.y;an=Math.atan2(ag,Z)*180/Math.PI;if(an<0){an+=360}if(an<0.000001){an=0}}else{var aJ=V(aq,aj.x0_,aj.y0_);aF={x:(aJ.x-aK.x)/j,y:(aJ.y-aK.y)/p};j/=aB*d;p/=aA*d;var aD=ab.max(j,p);ax=2*aj.r0_/aD;am=2*aj.r1_/aD-ax}var av=aj.colors_;av.sort(function(aN,i){return aN.offset-i.offset});var ap=av.length;var au=av[0].color;var at=av[ap-1].color;var az=av[0].alpha*aq.globalAlpha;var ay=av[ap-1].alpha*aq.globalAlpha;var aE=[];for(var aH=0;aH')}else{if(aj instanceof T){if(j&&p){var ah=-aK.x;var aC=-aK.y;ai.push("')}}else{var aL=F(aq.fillStyle);var aw=aL.color;var aG=aL.alpha*aq.globalAlpha;ai.push('')}}}q.fill=function(){this.stroke(true)};q.closePath=function(){this.currentPath_.push({type:"close"})};function V(j,Z,p){var i=j.m_;return{x:d*(Z*i[0][0]+p*i[1][0]+i[2][0])-f,y:d*(Z*i[0][1]+p*i[1][1]+i[2][1])-f}}q.save=function(){var i={};v(this,i);this.aStack_.push(i);this.mStack_.push(this.m_);this.m_=J(B(),this.m_)};q.restore=function(){if(this.aStack_.length){v(this.aStack_.pop(),this);this.m_=this.mStack_.pop()}};function h(i){return isFinite(i[0][0])&&isFinite(i[0][1])&&isFinite(i[1][0])&&isFinite(i[1][1])&&isFinite(i[2][0])&&isFinite(i[2][1])}function aa(j,i,p){if(!h(i)){return}j.m_=i;if(p){var Z=i[0][0]*i[1][1]-i[0][1]*i[1][0];j.lineScale_=N(H(Z))}}q.translate=function(m,j){var i=[[1,0,0],[0,1,0],[m,j,1]];aa(this,J(i,this.m_),false)};q.rotate=function(j){var p=A(j);var m=l(j);var i=[[p,m,0],[-m,p,0],[0,0,1]];aa(this,J(i,this.m_),false)};q.scale=function(m,j){this.arcScaleX_*=m;this.arcScaleY_*=j;var i=[[m,0,0],[0,j,0],[0,0,1]];aa(this,J(i,this.m_),true)};q.transform=function(Z,p,ah,ag,j,i){var m=[[Z,p,0],[ah,ag,0],[j,i,1]];aa(this,J(m,this.m_),true)};q.setTransform=function(ag,Z,ai,ah,p,j){var i=[[ag,Z,0],[ai,ah,0],[p,j,1]];aa(this,i,true)};q.drawText_=function(am,ak,aj,ap,ai){var ao=this.m_,at=1000,j=0,ar=at,ah={x:0,y:0},ag=[];var i=u(E(this.font),this.element_);var p=ac(i);var au=this.element_.currentStyle;var Z=this.textAlign.toLowerCase();switch(Z){case"left":case"center":case"right":break;case"end":Z=au.direction=="ltr"?"right":"left";break;case"start":Z=au.direction=="rtl"?"right":"left";break;default:Z="left"}switch(this.textBaseline){case"hanging":case"top":ah.y=i.size/1.75;break;case"middle":break;default:case null:case"alphabetic":case"ideographic":case"bottom":ah.y=-i.size/2.25;break}switch(Z){case"right":j=at;ar=0.05;break;case"center":j=ar=at/2;break}var aq=V(this,ak+ah.x,aj+ah.y);ag.push('');if(ai){w(this,ag)}else{G(this,ag,{x:-j,y:0},{x:ar,y:i.size})}var an=ao[0][0].toFixed(3)+","+ao[1][0].toFixed(3)+","+ao[0][1].toFixed(3)+","+ao[1][1].toFixed(3)+",0,0";var al=n(aq.x/d)+","+n(aq.y/d);ag.push('','','');this.element_.insertAdjacentHTML("beforeEnd",ag.join(""))};q.fillText=function(m,i,p,j){this.drawText_(m,i,p,j,false)};q.strokeText=function(m,i,p,j){this.drawText_(m,i,p,j,true)};q.measureText=function(m){if(!this.textMeasureEl_){var i='';this.element_.insertAdjacentHTML("beforeEnd",i);this.textMeasureEl_=this.element_.lastChild}var j=this.element_.ownerDocument;this.textMeasureEl_.innerHTML="";this.textMeasureEl_.style.font=this.font;this.textMeasureEl_.appendChild(j.createTextNode(m));return{width:this.textMeasureEl_.offsetWidth}};q.clip=function(){};q.arcTo=function(){};q.createPattern=function(j,i){return new T(j,i)};function U(i){this.type_=i;this.x0_=0;this.y0_=0;this.r0_=0;this.x1_=0;this.y1_=0;this.r1_=0;this.colors_=[]}U.prototype.addColorStop=function(j,i){i=F(i);this.colors_.push({offset:j,color:i.color,alpha:i.alpha})};function T(j,i){Q(j);switch(i){case"repeat":case null:case"":this.repetition_="repeat";break;case"repeat-x":case"repeat-y":case"no-repeat":this.repetition_=i;break;default:O("SYNTAX_ERR")}this.src_=j.src;this.width_=j.width;this.height_=j.height}function O(i){throw new P(i)}function Q(i){if(!i||i.nodeType!=1||i.tagName!="IMG"){O("TYPE_MISMATCH_ERR")}if(i.readyState!="complete"){O("INVALID_STATE_ERR")}}function P(i){this.code=this[i];this.message=i+": DOM Exception "+this.code}var X=P.prototype=new Error;X.INDEX_SIZE_ERR=1;X.DOMSTRING_SIZE_ERR=2;X.HIERARCHY_REQUEST_ERR=3;X.WRONG_DOCUMENT_ERR=4;X.INVALID_CHARACTER_ERR=5;X.NO_DATA_ALLOWED_ERR=6;X.NO_MODIFICATION_ALLOWED_ERR=7;X.NOT_FOUND_ERR=8;X.NOT_SUPPORTED_ERR=9;X.INUSE_ATTRIBUTE_ERR=10;X.INVALID_STATE_ERR=11;X.SYNTAX_ERR=12;X.INVALID_MODIFICATION_ERR=13;X.NAMESPACE_ERR=14;X.INVALID_ACCESS_ERR=15;X.VALIDATION_ERR=16;X.TYPE_MISMATCH_ERR=17;G_vmlCanvasManager=e;CanvasRenderingContext2D=D;CanvasGradient=U;CanvasPattern=T;DOMException=P})()}; \ No newline at end of file diff --git a/public/assets/lib/flot.curvedlines/flot/jquery.colorhelpers.min.js b/public/assets/lib/flot.curvedlines/flot/jquery.colorhelpers.min.js new file mode 100755 index 0000000..7f42659 --- /dev/null +++ b/public/assets/lib/flot.curvedlines/flot/jquery.colorhelpers.min.js @@ -0,0 +1 @@ +(function($){$.color={};$.color.make=function(r,g,b,a){var o={};o.r=r||0;o.g=g||0;o.b=b||0;o.a=a!=null?a:1;o.add=function(c,d){for(var i=0;i=1){return"rgb("+[o.r,o.g,o.b].join(",")+")"}else{return"rgba("+[o.r,o.g,o.b,o.a].join(",")+")"}};o.normalize=function(){function clamp(min,value,max){return valuemax?max:value}o.r=clamp(0,parseInt(o.r),255);o.g=clamp(0,parseInt(o.g),255);o.b=clamp(0,parseInt(o.b),255);o.a=clamp(0,o.a,1);return o};o.clone=function(){return $.color.make(o.r,o.b,o.g,o.a)};return o.normalize()};$.color.extract=function(elem,css){var c;do{c=elem.css(css).toLowerCase();if(c!=""&&c!="transparent")break;elem=elem.parent()}while(elem.length&&!$.nodeName(elem.get(0),"body"));if(c=="rgba(0, 0, 0, 0)")c="transparent";return $.color.parse(c)};$.color.parse=function(str){var res,m=$.color.make;if(res=/rgb\(\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*\)/.exec(str))return m(parseInt(res[1],10),parseInt(res[2],10),parseInt(res[3],10));if(res=/rgba\(\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*,\s*([0-9]+(?:\.[0-9]+)?)\s*\)/.exec(str))return m(parseInt(res[1],10),parseInt(res[2],10),parseInt(res[3],10),parseFloat(res[4]));if(res=/rgb\(\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*\)/.exec(str))return m(parseFloat(res[1])*2.55,parseFloat(res[2])*2.55,parseFloat(res[3])*2.55);if(res=/rgba\(\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\s*\)/.exec(str))return m(parseFloat(res[1])*2.55,parseFloat(res[2])*2.55,parseFloat(res[3])*2.55,parseFloat(res[4]));if(res=/#([a-fA-F0-9]{2})([a-fA-F0-9]{2})([a-fA-F0-9]{2})/.exec(str))return m(parseInt(res[1],16),parseInt(res[2],16),parseInt(res[3],16));if(res=/#([a-fA-F0-9])([a-fA-F0-9])([a-fA-F0-9])/.exec(str))return m(parseInt(res[1]+res[1],16),parseInt(res[2]+res[2],16),parseInt(res[3]+res[3],16));var name=$.trim(str).toLowerCase();if(name=="transparent")return m(255,255,255,0);else{res=lookupColors[name]||[0,0,0];return m(res[0],res[1],res[2])}};var lookupColors={aqua:[0,255,255],azure:[240,255,255],beige:[245,245,220],black:[0,0,0],blue:[0,0,255],brown:[165,42,42],cyan:[0,255,255],darkblue:[0,0,139],darkcyan:[0,139,139],darkgrey:[169,169,169],darkgreen:[0,100,0],darkkhaki:[189,183,107],darkmagenta:[139,0,139],darkolivegreen:[85,107,47],darkorange:[255,140,0],darkorchid:[153,50,204],darkred:[139,0,0],darksalmon:[233,150,122],darkviolet:[148,0,211],fuchsia:[255,0,255],gold:[255,215,0],green:[0,128,0],indigo:[75,0,130],khaki:[240,230,140],lightblue:[173,216,230],lightcyan:[224,255,255],lightgreen:[144,238,144],lightgrey:[211,211,211],lightpink:[255,182,193],lightyellow:[255,255,224],lime:[0,255,0],magenta:[255,0,255],maroon:[128,0,0],navy:[0,0,128],olive:[128,128,0],orange:[255,165,0],pink:[255,192,203],purple:[128,0,128],violet:[128,0,128],red:[255,0,0],silver:[192,192,192],white:[255,255,255],yellow:[255,255,0]}})(jQuery); \ No newline at end of file diff --git a/public/assets/lib/flot.curvedlines/flot/jquery.flot.canvas.min.js b/public/assets/lib/flot.curvedlines/flot/jquery.flot.canvas.min.js new file mode 100755 index 0000000..8d51ad1 --- /dev/null +++ b/public/assets/lib/flot.curvedlines/flot/jquery.flot.canvas.min.js @@ -0,0 +1,7 @@ +/* Javascript plotting library for jQuery, version 0.8.3. + +Copyright (c) 2007-2014 IOLA and Ole Laursen. +Licensed under the MIT license. + +*/ +(function($){var options={canvas:true};var render,getTextInfo,addText;var hasOwnProperty=Object.prototype.hasOwnProperty;function init(plot,classes){var Canvas=classes.Canvas;if(render==null){getTextInfo=Canvas.prototype.getTextInfo,addText=Canvas.prototype.addText,render=Canvas.prototype.render}Canvas.prototype.render=function(){if(!plot.getOptions().canvas){return render.call(this)}var context=this.context,cache=this._textCache;context.save();context.textBaseline="middle";for(var layerKey in cache){if(hasOwnProperty.call(cache,layerKey)){var layerCache=cache[layerKey];for(var styleKey in layerCache){if(hasOwnProperty.call(layerCache,styleKey)){var styleCache=layerCache[styleKey],updateStyles=true;for(var key in styleCache){if(hasOwnProperty.call(styleCache,key)){var info=styleCache[key],positions=info.positions,lines=info.lines;if(updateStyles){context.fillStyle=info.font.color;context.font=info.font.definition;updateStyles=false}for(var i=0,position;position=positions[i];i++){if(position.active){for(var j=0,line;line=position.lines[j];j++){context.fillText(lines[j].text,line[0],line[1])}}else{positions.splice(i--,1)}}if(positions.length==0){delete styleCache[key]}}}}}}}context.restore()};Canvas.prototype.getTextInfo=function(layer,text,font,angle,width){if(!plot.getOptions().canvas){return getTextInfo.call(this,layer,text,font,angle,width)}var textStyle,layerCache,styleCache,info;text=""+text;if(typeof font==="object"){textStyle=font.style+" "+font.variant+" "+font.weight+" "+font.size+"px "+font.family}else{textStyle=font}layerCache=this._textCache[layer];if(layerCache==null){layerCache=this._textCache[layer]={}}styleCache=layerCache[textStyle];if(styleCache==null){styleCache=layerCache[textStyle]={}}info=styleCache[text];if(info==null){var context=this.context;if(typeof font!=="object"){var element=$("
       
      ").css("position","absolute").addClass(typeof font==="string"?font:null).appendTo(this.getTextLayer(layer));font={lineHeight:element.height(),style:element.css("font-style"),variant:element.css("font-variant"),weight:element.css("font-weight"),family:element.css("font-family"),color:element.css("color")};font.size=element.css("line-height",1).height();element.remove()}textStyle=font.style+" "+font.variant+" "+font.weight+" "+font.size+"px "+font.family;info=styleCache[text]={width:0,height:0,positions:[],lines:[],font:{definition:textStyle,color:font.color}};context.save();context.font=textStyle;var lines=(text+"").replace(/
      |\r\n|\r/g,"\n").split("\n");for(var i=0;iindex)index=categories[v];return index+1}function categoriesTickGenerator(axis){var res=[];for(var label in axis.categories){var v=axis.categories[label];if(v>=axis.min&&v<=axis.max)res.push([v,label])}res.sort(function(a,b){return a[0]-b[0]});return res}function setupCategoriesForAxis(series,axis,datapoints){if(series[axis].options.mode!="categories")return;if(!series[axis].categories){var c={},o=series[axis].options.categories||{};if($.isArray(o)){for(var i=0;iax[1].max||yax[0].max)continue;if(err[e].err=="y")if(x>ax[0].max||xax[1].max)continue;var drawUpper=true,drawLower=true;if(upper>minmax[1]){drawUpper=false;upper=minmax[1]}if(lower0&&sw>0){var w=sw/2;ctx.lineWidth=w;ctx.strokeStyle="rgba(0,0,0,0.1)";drawError(ctx,err[e],x,y,upper,lower,drawUpper,drawLower,radius,w+w/2,minmax);ctx.strokeStyle="rgba(0,0,0,0.2)";drawError(ctx,err[e],x,y,upper,lower,drawUpper,drawLower,radius,w/2,minmax)}ctx.strokeStyle=err[e].color?err[e].color:s.color;ctx.lineWidth=lw;drawError(ctx,err[e],x,y,upper,lower,drawUpper,drawLower,radius,0,minmax)}}}}function drawError(ctx,err,x,y,upper,lower,drawUpper,drawLower,radius,offset,minmax){y+=offset;upper+=offset;lower+=offset;if(err.err=="x"){if(upper>x+radius)drawPath(ctx,[[upper,y],[Math.max(x+radius,minmax[0]),y]]);else drawUpper=false;if(lowery+radius)drawPath(ctx,[[x,Math.max(y+radius,minmax[1])],[x,lower]]);else drawLower=false}radius=err.radius!=null?err.radius:radius;if(drawUpper){if(err.upperCap=="-"){if(err.err=="x")drawPath(ctx,[[upper,y-radius],[upper,y+radius]]);else drawPath(ctx,[[x-radius,upper],[x+radius,upper]])}else if($.isFunction(err.upperCap)){if(err.err=="x")err.upperCap(ctx,upper,y,radius);else err.upperCap(ctx,x,upper,radius)}}if(drawLower){if(err.lowerCap=="-"){if(err.err=="x")drawPath(ctx,[[lower,y-radius],[lower,y+radius]]);else drawPath(ctx,[[x-radius,lower],[x+radius,lower]])}else if($.isFunction(err.lowerCap)){if(err.err=="x")err.lowerCap(ctx,lower,y,radius);else err.lowerCap(ctx,x,lower,radius)}}}function drawPath(ctx,pts){ctx.beginPath();ctx.moveTo(pts[0][0],pts[0][1]);for(var p=1;p=allseries.length){return null}return allseries[s.fillBetween]}return null}function computeFillBottoms(plot,s,datapoints){if(s.fillBetween==null){return}var other=findBottomSeries(s,plot.getData());if(!other){return}var ps=datapoints.pointsize,points=datapoints.points,otherps=other.datapoints.pointsize,otherpoints=other.datapoints.points,newpoints=[],px,py,intery,qx,qy,bottom,withlines=s.lines.show,withbottom=ps>2&&datapoints.format[2].y,withsteps=withlines&&s.lines.steps,fromgap=true,i=0,j=0,l,m;while(true){if(i>=points.length){break}l=newpoints.length;if(points[i]==null){for(m=0;m=otherpoints.length){if(!withlines){for(m=0;mqx){if(withlines&&i>0&&points[i-ps]!=null){intery=py+(points[i-ps+1]-py)*(qx-px)/(points[i-ps]-px);newpoints.push(qx);newpoints.push(intery);for(m=2;m0&&otherpoints[j-otherps]!=null){bottom=qy+(otherpoints[j-otherps+1]-qy)*(px-qx)/(otherpoints[j-otherps]-qx)}i+=ps}fromgap=false;if(l!==newpoints.length&&withbottom){newpoints[l+2]=bottom}}if(withsteps&&l!==newpoints.length&&l>0&&newpoints[l]!==null&&newpoints[l]!==newpoints[l-ps]&&newpoints[l+1]!==newpoints[l-ps+1]){for(m=0;m").load(handler).error(handler).attr("src",url)})};function drawSeries(plot,ctx,series){var plotOffset=plot.getPlotOffset();if(!series.images||!series.images.show)return;var points=series.datapoints.points,ps=series.datapoints.pointsize;for(var i=0;ix2){tmp=x2;x2=x1;x1=tmp}if(y1>y2){tmp=y2;y2=y1;y1=tmp}if(series.images.anchor=="center"){tmp=.5*(x2-x1)/(img.width-1);x1-=tmp;x2+=tmp;tmp=.5*(y2-y1)/(img.height-1);y1-=tmp;y2+=tmp}if(x1==x2||y1==y2||x1>=xaxis.max||x2<=xaxis.min||y1>=yaxis.max||y2<=yaxis.min)continue;var sx1=0,sy1=0,sx2=img.width,sy2=img.height;if(x1xaxis.max){sx2+=(sx2-sx1)*(xaxis.max-x2)/(x2-x1);x2=xaxis.max}if(y1yaxis.max){sy1+=(sy1-sy2)*(yaxis.max-y2)/(y2-y1);y2=yaxis.max}x1=xaxis.p2c(x1);x2=xaxis.p2c(x2);y1=yaxis.p2c(y1);y2=yaxis.p2c(y2);if(x1>x2){tmp=x2;x2=x1;x1=tmp}if(y1>y2){tmp=y2;y2=y1;y1=tmp}tmp=ctx.globalAlpha;ctx.globalAlpha*=series.images.alpha;ctx.drawImage(img,sx1,sy1,sx2-sx1,sy2-sy1,x1+plotOffset.left,y1+plotOffset.top,x2-x1,y2-y1);ctx.globalAlpha=tmp}}function processRawData(plot,series,data,datapoints){if(!series.images.show)return;datapoints.format=[{required:true},{x:true,number:true,required:true},{y:true,number:true,required:true},{x:true,number:true,required:true},{y:true,number:true,required:true}]}function init(plot){plot.hooks.processRawData.push(processRawData);plot.hooks.drawSeries.push(drawSeries)}$.plot.plugins.push({init:init,options:options,name:"image",version:"1.1"})})(jQuery); \ No newline at end of file diff --git a/public/assets/lib/flot.curvedlines/flot/jquery.flot.min.js b/public/assets/lib/flot.curvedlines/flot/jquery.flot.min.js new file mode 100755 index 0000000..a349637 --- /dev/null +++ b/public/assets/lib/flot.curvedlines/flot/jquery.flot.min.js @@ -0,0 +1,8 @@ +/* Javascript plotting library for jQuery, version 0.8.3. + +Copyright (c) 2007-2014 IOLA and Ole Laursen. +Licensed under the MIT license. + +*/ +(function($){$.color={};$.color.make=function(r,g,b,a){var o={};o.r=r||0;o.g=g||0;o.b=b||0;o.a=a!=null?a:1;o.add=function(c,d){for(var i=0;i=1){return"rgb("+[o.r,o.g,o.b].join(",")+")"}else{return"rgba("+[o.r,o.g,o.b,o.a].join(",")+")"}};o.normalize=function(){function clamp(min,value,max){return valuemax?max:value}o.r=clamp(0,parseInt(o.r),255);o.g=clamp(0,parseInt(o.g),255);o.b=clamp(0,parseInt(o.b),255);o.a=clamp(0,o.a,1);return o};o.clone=function(){return $.color.make(o.r,o.b,o.g,o.a)};return o.normalize()};$.color.extract=function(elem,css){var c;do{c=elem.css(css).toLowerCase();if(c!=""&&c!="transparent")break;elem=elem.parent()}while(elem.length&&!$.nodeName(elem.get(0),"body"));if(c=="rgba(0, 0, 0, 0)")c="transparent";return $.color.parse(c)};$.color.parse=function(str){var res,m=$.color.make;if(res=/rgb\(\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*\)/.exec(str))return m(parseInt(res[1],10),parseInt(res[2],10),parseInt(res[3],10));if(res=/rgba\(\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*,\s*([0-9]+(?:\.[0-9]+)?)\s*\)/.exec(str))return m(parseInt(res[1],10),parseInt(res[2],10),parseInt(res[3],10),parseFloat(res[4]));if(res=/rgb\(\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*\)/.exec(str))return m(parseFloat(res[1])*2.55,parseFloat(res[2])*2.55,parseFloat(res[3])*2.55);if(res=/rgba\(\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\s*\)/.exec(str))return m(parseFloat(res[1])*2.55,parseFloat(res[2])*2.55,parseFloat(res[3])*2.55,parseFloat(res[4]));if(res=/#([a-fA-F0-9]{2})([a-fA-F0-9]{2})([a-fA-F0-9]{2})/.exec(str))return m(parseInt(res[1],16),parseInt(res[2],16),parseInt(res[3],16));if(res=/#([a-fA-F0-9])([a-fA-F0-9])([a-fA-F0-9])/.exec(str))return m(parseInt(res[1]+res[1],16),parseInt(res[2]+res[2],16),parseInt(res[3]+res[3],16));var name=$.trim(str).toLowerCase();if(name=="transparent")return m(255,255,255,0);else{res=lookupColors[name]||[0,0,0];return m(res[0],res[1],res[2])}};var lookupColors={aqua:[0,255,255],azure:[240,255,255],beige:[245,245,220],black:[0,0,0],blue:[0,0,255],brown:[165,42,42],cyan:[0,255,255],darkblue:[0,0,139],darkcyan:[0,139,139],darkgrey:[169,169,169],darkgreen:[0,100,0],darkkhaki:[189,183,107],darkmagenta:[139,0,139],darkolivegreen:[85,107,47],darkorange:[255,140,0],darkorchid:[153,50,204],darkred:[139,0,0],darksalmon:[233,150,122],darkviolet:[148,0,211],fuchsia:[255,0,255],gold:[255,215,0],green:[0,128,0],indigo:[75,0,130],khaki:[240,230,140],lightblue:[173,216,230],lightcyan:[224,255,255],lightgreen:[144,238,144],lightgrey:[211,211,211],lightpink:[255,182,193],lightyellow:[255,255,224],lime:[0,255,0],magenta:[255,0,255],maroon:[128,0,0],navy:[0,0,128],olive:[128,128,0],orange:[255,165,0],pink:[255,192,203],purple:[128,0,128],violet:[128,0,128],red:[255,0,0],silver:[192,192,192],white:[255,255,255],yellow:[255,255,0]}})(jQuery);(function($){var hasOwnProperty=Object.prototype.hasOwnProperty;if(!$.fn.detach){$.fn.detach=function(){return this.each(function(){if(this.parentNode){this.parentNode.removeChild(this)}})}}function Canvas(cls,container){var element=container.children("."+cls)[0];if(element==null){element=document.createElement("canvas");element.className=cls;$(element).css({direction:"ltr",position:"absolute",left:0,top:0}).appendTo(container);if(!element.getContext){if(window.G_vmlCanvasManager){element=window.G_vmlCanvasManager.initElement(element)}else{throw new Error("Canvas is not available. If you're using IE with a fall-back such as Excanvas, then there's either a mistake in your conditional include, or the page has no DOCTYPE and is rendering in Quirks Mode.")}}}this.element=element;var context=this.context=element.getContext("2d");var devicePixelRatio=window.devicePixelRatio||1,backingStoreRatio=context.webkitBackingStorePixelRatio||context.mozBackingStorePixelRatio||context.msBackingStorePixelRatio||context.oBackingStorePixelRatio||context.backingStorePixelRatio||1;this.pixelRatio=devicePixelRatio/backingStoreRatio;this.resize(container.width(),container.height());this.textContainer=null;this.text={};this._textCache={}}Canvas.prototype.resize=function(width,height){if(width<=0||height<=0){throw new Error("Invalid dimensions for plot, width = "+width+", height = "+height)}var element=this.element,context=this.context,pixelRatio=this.pixelRatio;if(this.width!=width){element.width=width*pixelRatio;element.style.width=width+"px";this.width=width}if(this.height!=height){element.height=height*pixelRatio;element.style.height=height+"px";this.height=height}context.restore();context.save();context.scale(pixelRatio,pixelRatio)};Canvas.prototype.clear=function(){this.context.clearRect(0,0,this.width,this.height)};Canvas.prototype.render=function(){var cache=this._textCache;for(var layerKey in cache){if(hasOwnProperty.call(cache,layerKey)){var layer=this.getTextLayer(layerKey),layerCache=cache[layerKey];layer.hide();for(var styleKey in layerCache){if(hasOwnProperty.call(layerCache,styleKey)){var styleCache=layerCache[styleKey];for(var key in styleCache){if(hasOwnProperty.call(styleCache,key)){var positions=styleCache[key].positions;for(var i=0,position;position=positions[i];i++){if(position.active){if(!position.rendered){layer.append(position.element);position.rendered=true}}else{positions.splice(i--,1);if(position.rendered){position.element.detach()}}}if(positions.length==0){delete styleCache[key]}}}}}layer.show()}}};Canvas.prototype.getTextLayer=function(classes){var layer=this.text[classes];if(layer==null){if(this.textContainer==null){this.textContainer=$("
      ").css({position:"absolute",top:0,left:0,bottom:0,right:0,"font-size":"smaller",color:"#545454"}).insertAfter(this.element)}layer=this.text[classes]=$("
      ").addClass(classes).css({position:"absolute",top:0,left:0,bottom:0,right:0}).appendTo(this.textContainer)}return layer};Canvas.prototype.getTextInfo=function(layer,text,font,angle,width){var textStyle,layerCache,styleCache,info;text=""+text;if(typeof font==="object"){textStyle=font.style+" "+font.variant+" "+font.weight+" "+font.size+"px/"+font.lineHeight+"px "+font.family}else{textStyle=font}layerCache=this._textCache[layer];if(layerCache==null){layerCache=this._textCache[layer]={}}styleCache=layerCache[textStyle];if(styleCache==null){styleCache=layerCache[textStyle]={}}info=styleCache[text];if(info==null){var element=$("
      ").html(text).css({position:"absolute","max-width":width,top:-9999}).appendTo(this.getTextLayer(layer));if(typeof font==="object"){element.css({font:textStyle,color:font.color})}else if(typeof font==="string"){element.addClass(font)}info=styleCache[text]={width:element.outerWidth(true),height:element.outerHeight(true),element:element,positions:[]};element.detach()}return info};Canvas.prototype.addText=function(layer,x,y,text,font,angle,width,halign,valign){var info=this.getTextInfo(layer,text,font,angle,width),positions=info.positions;if(halign=="center"){x-=info.width/2}else if(halign=="right"){x-=info.width}if(valign=="middle"){y-=info.height/2}else if(valign=="bottom"){y-=info.height}for(var i=0,position;position=positions[i];i++){if(position.x==x&&position.y==y){position.active=true;return}}position={active:true,rendered:false,element:positions.length?info.element.clone():info.element,x:x,y:y};positions.push(position);position.element.css({top:Math.round(y),left:Math.round(x),"text-align":halign})};Canvas.prototype.removeText=function(layer,x,y,text,font,angle){if(text==null){var layerCache=this._textCache[layer];if(layerCache!=null){for(var styleKey in layerCache){if(hasOwnProperty.call(layerCache,styleKey)){var styleCache=layerCache[styleKey];for(var key in styleCache){if(hasOwnProperty.call(styleCache,key)){var positions=styleCache[key].positions;for(var i=0,position;position=positions[i];i++){position.active=false}}}}}}}else{var positions=this.getTextInfo(layer,text,font,angle).positions;for(var i=0,position;position=positions[i];i++){if(position.x==x&&position.y==y){position.active=false}}}};function Plot(placeholder,data_,options_,plugins){var series=[],options={colors:["#edc240","#afd8f8","#cb4b4b","#4da74d","#9440ed"],legend:{show:true,noColumns:1,labelFormatter:null,labelBoxBorderColor:"#ccc",container:null,position:"ne",margin:5,backgroundColor:null,backgroundOpacity:.85,sorted:null},xaxis:{show:null,position:"bottom",mode:null,font:null,color:null,tickColor:null,transform:null,inverseTransform:null,min:null,max:null,autoscaleMargin:null,ticks:null,tickFormatter:null,labelWidth:null,labelHeight:null,reserveSpace:null,tickLength:null,alignTicksWithAxis:null,tickDecimals:null,tickSize:null,minTickSize:null},yaxis:{autoscaleMargin:.02,position:"left"},xaxes:[],yaxes:[],series:{points:{show:false,radius:3,lineWidth:2,fill:true,fillColor:"#ffffff",symbol:"circle"},lines:{lineWidth:2,fill:false,fillColor:null,steps:false},bars:{show:false,lineWidth:2,barWidth:1,fill:true,fillColor:null,align:"left",horizontal:false,zero:true},shadowSize:3,highlightColor:null},grid:{show:true,aboveData:false,color:"#545454",backgroundColor:null,borderColor:null,tickColor:null,margin:0,labelMargin:5,axisMargin:8,borderWidth:2,minBorderMargin:null,markings:null,markingsColor:"#f4f4f4",markingsLineWidth:2,clickable:false,hoverable:false,autoHighlight:true,mouseActiveRadius:10},interaction:{redrawOverlayInterval:1e3/60},hooks:{}},surface=null,overlay=null,eventHolder=null,ctx=null,octx=null,xaxes=[],yaxes=[],plotOffset={left:0,right:0,top:0,bottom:0},plotWidth=0,plotHeight=0,hooks={processOptions:[],processRawData:[],processDatapoints:[],processOffset:[],drawBackground:[],drawSeries:[],draw:[],bindEvents:[],drawOverlay:[],shutdown:[]},plot=this;plot.setData=setData;plot.setupGrid=setupGrid;plot.draw=draw;plot.getPlaceholder=function(){return placeholder};plot.getCanvas=function(){return surface.element};plot.getPlotOffset=function(){return plotOffset};plot.width=function(){return plotWidth};plot.height=function(){return plotHeight};plot.offset=function(){var o=eventHolder.offset();o.left+=plotOffset.left;o.top+=plotOffset.top;return o};plot.getData=function(){return series};plot.getAxes=function(){var res={},i;$.each(xaxes.concat(yaxes),function(_,axis){if(axis)res[axis.direction+(axis.n!=1?axis.n:"")+"axis"]=axis});return res};plot.getXAxes=function(){return xaxes};plot.getYAxes=function(){return yaxes};plot.c2p=canvasToAxisCoords;plot.p2c=axisToCanvasCoords;plot.getOptions=function(){return options};plot.highlight=highlight;plot.unhighlight=unhighlight;plot.triggerRedrawOverlay=triggerRedrawOverlay;plot.pointOffset=function(point){return{left:parseInt(xaxes[axisNumber(point,"x")-1].p2c(+point.x)+plotOffset.left,10),top:parseInt(yaxes[axisNumber(point,"y")-1].p2c(+point.y)+plotOffset.top,10)}};plot.shutdown=shutdown;plot.destroy=function(){shutdown();placeholder.removeData("plot").empty();series=[];options=null;surface=null;overlay=null;eventHolder=null;ctx=null;octx=null;xaxes=[];yaxes=[];hooks=null;highlights=[];plot=null};plot.resize=function(){var width=placeholder.width(),height=placeholder.height();surface.resize(width,height);overlay.resize(width,height)};plot.hooks=hooks;initPlugins(plot);parseOptions(options_);setupCanvases();setData(data_);setupGrid();draw();bindEvents();function executeHooks(hook,args){args=[plot].concat(args);for(var i=0;imaxIndex){maxIndex=sc}}}if(neededColors<=maxIndex){neededColors=maxIndex+1}var c,colors=[],colorPool=options.colors,colorPoolSize=colorPool.length,variation=0;for(i=0;i=0){if(variation<.5){variation=-variation-.2}else variation=0}else variation=-variation}colors[i]=c.scale("rgb",1+variation)}var colori=0,s;for(i=0;iaxis.datamax&&max!=fakeInfinity)axis.datamax=max}$.each(allAxes(),function(_,axis){axis.datamin=topSentry;axis.datamax=bottomSentry;axis.used=false});for(i=0;i0&&points[k-ps]!=null&&points[k-ps]!=points[k]&&points[k-ps+1]!=points[k+1]){for(m=0;mxmax)xmax=val}if(f.y){if(valymax)ymax=val}}}if(s.bars.show){var delta;switch(s.bars.align){case"left":delta=0;break;case"right":delta=-s.bars.barWidth;break;default:delta=-s.bars.barWidth/2}if(s.bars.horizontal){ymin+=delta;ymax+=delta+s.bars.barWidth}else{xmin+=delta;xmax+=delta+s.bars.barWidth}}updateAxis(s.xaxis,xmin,xmax);updateAxis(s.yaxis,ymin,ymax)}$.each(allAxes(),function(_,axis){if(axis.datamin==topSentry)axis.datamin=null;if(axis.datamax==bottomSentry)axis.datamax=null})}function setupCanvases(){placeholder.css("padding",0).children().filter(function(){return!$(this).hasClass("flot-overlay")&&!$(this).hasClass("flot-base")}).remove();if(placeholder.css("position")=="static")placeholder.css("position","relative");surface=new Canvas("flot-base",placeholder);overlay=new Canvas("flot-overlay",placeholder);ctx=surface.context;octx=overlay.context;eventHolder=$(overlay.element).unbind();var existing=placeholder.data("plot");if(existing){existing.shutdown();overlay.clear()}placeholder.data("plot",plot)}function bindEvents(){if(options.grid.hoverable){eventHolder.mousemove(onMouseMove);eventHolder.bind("mouseleave",onMouseLeave)}if(options.grid.clickable)eventHolder.click(onClick);executeHooks(hooks.bindEvents,[eventHolder])}function shutdown(){if(redrawTimeout)clearTimeout(redrawTimeout);eventHolder.unbind("mousemove",onMouseMove);eventHolder.unbind("mouseleave",onMouseLeave);eventHolder.unbind("click",onClick);executeHooks(hooks.shutdown,[eventHolder])}function setTransformationHelpers(axis){function identity(x){return x}var s,m,t=axis.options.transform||identity,it=axis.options.inverseTransform;if(axis.direction=="x"){s=axis.scale=plotWidth/Math.abs(t(axis.max)-t(axis.min));m=Math.min(t(axis.max),t(axis.min))}else{s=axis.scale=plotHeight/Math.abs(t(axis.max)-t(axis.min));s=-s;m=Math.max(t(axis.max),t(axis.min))}if(t==identity)axis.p2c=function(p){return(p-m)*s};else axis.p2c=function(p){return(t(p)-m)*s};if(!it)axis.c2p=function(c){return m+c/s};else axis.c2p=function(c){return it(m+c/s)}}function measureTickLabels(axis){var opts=axis.options,ticks=axis.ticks||[],labelWidth=opts.labelWidth||0,labelHeight=opts.labelHeight||0,maxWidth=labelWidth||(axis.direction=="x"?Math.floor(surface.width/(ticks.length||1)):null),legacyStyles=axis.direction+"Axis "+axis.direction+axis.n+"Axis",layer="flot-"+axis.direction+"-axis flot-"+axis.direction+axis.n+"-axis "+legacyStyles,font=opts.font||"flot-tick-label tickLabel";for(var i=0;i=0;--i)allocateAxisBoxFirstPhase(allocatedAxes[i]);adjustLayoutForThingsStickingOut();$.each(allocatedAxes,function(_,axis){allocateAxisBoxSecondPhase(axis)})}plotWidth=surface.width-plotOffset.left-plotOffset.right;plotHeight=surface.height-plotOffset.bottom-plotOffset.top;$.each(axes,function(_,axis){setTransformationHelpers(axis)});if(showGrid){drawAxisLabels()}insertLegend()}function setRange(axis){var opts=axis.options,min=+(opts.min!=null?opts.min:axis.datamin),max=+(opts.max!=null?opts.max:axis.datamax),delta=max-min;if(delta==0){var widen=max==0?1:.01;if(opts.min==null)min-=widen;if(opts.max==null||opts.min!=null)max+=widen}else{var margin=opts.autoscaleMargin;if(margin!=null){if(opts.min==null){min-=delta*margin;if(min<0&&axis.datamin!=null&&axis.datamin>=0)min=0}if(opts.max==null){max+=delta*margin;if(max>0&&axis.datamax!=null&&axis.datamax<=0)max=0}}}axis.min=min;axis.max=max}function setupTickGeneration(axis){var opts=axis.options;var noTicks;if(typeof opts.ticks=="number"&&opts.ticks>0)noTicks=opts.ticks;else noTicks=.3*Math.sqrt(axis.direction=="x"?surface.width:surface.height);var delta=(axis.max-axis.min)/noTicks,dec=-Math.floor(Math.log(delta)/Math.LN10),maxDec=opts.tickDecimals;if(maxDec!=null&&dec>maxDec){dec=maxDec}var magn=Math.pow(10,-dec),norm=delta/magn,size;if(norm<1.5){size=1}else if(norm<3){size=2;if(norm>2.25&&(maxDec==null||dec+1<=maxDec)){size=2.5;++dec}}else if(norm<7.5){size=5}else{size=10}size*=magn;if(opts.minTickSize!=null&&size0){if(opts.min==null)axis.min=Math.min(axis.min,niceTicks[0]);if(opts.max==null&&niceTicks.length>1)axis.max=Math.max(axis.max,niceTicks[niceTicks.length-1])}axis.tickGenerator=function(axis){var ticks=[],v,i;for(i=0;i1&&/\..*0$/.test((ts[1]-ts[0]).toFixed(extraDec))))axis.tickDecimals=extraDec}}}}function setTicks(axis){var oticks=axis.options.ticks,ticks=[];if(oticks==null||typeof oticks=="number"&&oticks>0)ticks=axis.tickGenerator(axis);else if(oticks){if($.isFunction(oticks))ticks=oticks(axis);else ticks=oticks}var i,v;axis.ticks=[];for(i=0;i1)label=t[1]}else v=+t;if(label==null)label=axis.tickFormatter(v,axis);if(!isNaN(v))axis.ticks.push({v:v,label:label})}}function snapRangeToTicks(axis,ticks){if(axis.options.autoscaleMargin&&ticks.length>0){if(axis.options.min==null)axis.min=Math.min(axis.min,ticks[0].v);if(axis.options.max==null&&ticks.length>1)axis.max=Math.max(axis.max,ticks[ticks.length-1].v)}}function draw(){surface.clear();executeHooks(hooks.drawBackground,[ctx]);var grid=options.grid;if(grid.show&&grid.backgroundColor)drawBackground();if(grid.show&&!grid.aboveData){drawGrid()}for(var i=0;ito){var tmp=from;from=to;to=tmp}return{from:from,to:to,axis:axis}}function drawBackground(){ctx.save();ctx.translate(plotOffset.left,plotOffset.top);ctx.fillStyle=getColorOrGradient(options.grid.backgroundColor,plotHeight,0,"rgba(255, 255, 255, 0)");ctx.fillRect(0,0,plotWidth,plotHeight);ctx.restore()}function drawGrid(){var i,axes,bw,bc;ctx.save();ctx.translate(plotOffset.left,plotOffset.top);var markings=options.grid.markings;if(markings){if($.isFunction(markings)){axes=plot.getAxes();axes.xmin=axes.xaxis.min;axes.xmax=axes.xaxis.max;axes.ymin=axes.yaxis.min;axes.ymax=axes.yaxis.max;markings=markings(axes)}for(i=0;ixrange.axis.max||yrange.toyrange.axis.max)continue;xrange.from=Math.max(xrange.from,xrange.axis.min);xrange.to=Math.min(xrange.to,xrange.axis.max);yrange.from=Math.max(yrange.from,yrange.axis.min);yrange.to=Math.min(yrange.to,yrange.axis.max);var xequal=xrange.from===xrange.to,yequal=yrange.from===yrange.to;if(xequal&&yequal){continue}xrange.from=Math.floor(xrange.axis.p2c(xrange.from));xrange.to=Math.floor(xrange.axis.p2c(xrange.to));yrange.from=Math.floor(yrange.axis.p2c(yrange.from));yrange.to=Math.floor(yrange.axis.p2c(yrange.to));if(xequal||yequal){var lineWidth=m.lineWidth||options.grid.markingsLineWidth,subPixel=lineWidth%2?.5:0;ctx.beginPath();ctx.strokeStyle=m.color||options.grid.markingsColor;ctx.lineWidth=lineWidth;if(xequal){ctx.moveTo(xrange.to+subPixel,yrange.from);ctx.lineTo(xrange.to+subPixel,yrange.to)}else{ctx.moveTo(xrange.from,yrange.to+subPixel);ctx.lineTo(xrange.to,yrange.to+subPixel)}ctx.stroke()}else{ctx.fillStyle=m.color||options.grid.markingsColor;ctx.fillRect(xrange.from,yrange.to,xrange.to-xrange.from,yrange.from-yrange.to)}}}axes=allAxes();bw=options.grid.borderWidth;for(var j=0;jaxis.max||t=="full"&&(typeof bw=="object"&&bw[axis.position]>0||bw>0)&&(v==axis.min||v==axis.max))continue;if(axis.direction=="x"){x=axis.p2c(v);yoff=t=="full"?-plotHeight:t;if(axis.position=="top")yoff=-yoff}else{y=axis.p2c(v);xoff=t=="full"?-plotWidth:t;if(axis.position=="left")xoff=-xoff}if(ctx.lineWidth==1){if(axis.direction=="x")x=Math.floor(x)+.5;else y=Math.floor(y)+.5}ctx.moveTo(x,y);ctx.lineTo(x+xoff,y+yoff)}ctx.stroke()}if(bw){bc=options.grid.borderColor;if(typeof bw=="object"||typeof bc=="object"){if(typeof bw!=="object"){bw={top:bw,right:bw,bottom:bw,left:bw}}if(typeof bc!=="object"){bc={top:bc,right:bc,bottom:bc,left:bc}}if(bw.top>0){ctx.strokeStyle=bc.top;ctx.lineWidth=bw.top;ctx.beginPath();ctx.moveTo(0-bw.left,0-bw.top/2);ctx.lineTo(plotWidth,0-bw.top/2);ctx.stroke()}if(bw.right>0){ctx.strokeStyle=bc.right;ctx.lineWidth=bw.right;ctx.beginPath();ctx.moveTo(plotWidth+bw.right/2,0-bw.top);ctx.lineTo(plotWidth+bw.right/2,plotHeight);ctx.stroke()}if(bw.bottom>0){ctx.strokeStyle=bc.bottom;ctx.lineWidth=bw.bottom;ctx.beginPath();ctx.moveTo(plotWidth+bw.right,plotHeight+bw.bottom/2);ctx.lineTo(0,plotHeight+bw.bottom/2);ctx.stroke()}if(bw.left>0){ctx.strokeStyle=bc.left;ctx.lineWidth=bw.left;ctx.beginPath();ctx.moveTo(0-bw.left/2,plotHeight+bw.bottom);ctx.lineTo(0-bw.left/2,0);ctx.stroke()}}else{ctx.lineWidth=bw;ctx.strokeStyle=options.grid.borderColor;ctx.strokeRect(-bw/2,-bw/2,plotWidth+bw,plotHeight+bw)}}ctx.restore()}function drawAxisLabels(){$.each(allAxes(),function(_,axis){var box=axis.box,legacyStyles=axis.direction+"Axis "+axis.direction+axis.n+"Axis",layer="flot-"+axis.direction+"-axis flot-"+axis.direction+axis.n+"-axis "+legacyStyles,font=axis.options.font||"flot-tick-label tickLabel",tick,x,y,halign,valign;surface.removeText(layer);if(!axis.show||axis.ticks.length==0)return;for(var i=0;iaxis.max)continue;if(axis.direction=="x"){halign="center";x=plotOffset.left+axis.p2c(tick.v);if(axis.position=="bottom"){y=box.top+box.padding}else{y=box.top+box.height-box.padding;valign="bottom"}}else{valign="middle";y=plotOffset.top+axis.p2c(tick.v);if(axis.position=="left"){x=box.left+box.width-box.padding;halign="right"}else{x=box.left+box.padding}}surface.addText(layer,x,y,tick.label,font,null,null,halign,valign)}})}function drawSeries(series){if(series.lines.show)drawSeriesLines(series);if(series.bars.show)drawSeriesBars(series);if(series.points.show)drawSeriesPoints(series)}function drawSeriesLines(series){function plotLine(datapoints,xoffset,yoffset,axisx,axisy){var points=datapoints.points,ps=datapoints.pointsize,prevx=null,prevy=null;ctx.beginPath();for(var i=ps;i=y2&&y1>axisy.max){if(y2>axisy.max)continue;x1=(axisy.max-y1)/(y2-y1)*(x2-x1)+x1;y1=axisy.max}else if(y2>=y1&&y2>axisy.max){if(y1>axisy.max)continue;x2=(axisy.max-y1)/(y2-y1)*(x2-x1)+x1;y2=axisy.max}if(x1<=x2&&x1=x2&&x1>axisx.max){if(x2>axisx.max)continue;y1=(axisx.max-x1)/(x2-x1)*(y2-y1)+y1;x1=axisx.max}else if(x2>=x1&&x2>axisx.max){if(x1>axisx.max)continue;y2=(axisx.max-x1)/(x2-x1)*(y2-y1)+y1;x2=axisx.max}if(x1!=prevx||y1!=prevy)ctx.moveTo(axisx.p2c(x1)+xoffset,axisy.p2c(y1)+yoffset);prevx=x2;prevy=y2;ctx.lineTo(axisx.p2c(x2)+xoffset,axisy.p2c(y2)+yoffset)}ctx.stroke()}function plotLineArea(datapoints,axisx,axisy){var points=datapoints.points,ps=datapoints.pointsize,bottom=Math.min(Math.max(0,axisy.min),axisy.max),i=0,top,areaOpen=false,ypos=1,segmentStart=0,segmentEnd=0;while(true){if(ps>0&&i>points.length+ps)break;i+=ps;var x1=points[i-ps],y1=points[i-ps+ypos],x2=points[i],y2=points[i+ypos];if(areaOpen){if(ps>0&&x1!=null&&x2==null){segmentEnd=i;ps=-ps;ypos=2;continue}if(ps<0&&i==segmentStart+ps){ctx.fill();areaOpen=false;ps=-ps;ypos=1;i=segmentStart=segmentEnd+ps;continue}}if(x1==null||x2==null)continue;if(x1<=x2&&x1=x2&&x1>axisx.max){if(x2>axisx.max)continue;y1=(axisx.max-x1)/(x2-x1)*(y2-y1)+y1;x1=axisx.max}else if(x2>=x1&&x2>axisx.max){if(x1>axisx.max)continue;y2=(axisx.max-x1)/(x2-x1)*(y2-y1)+y1;x2=axisx.max}if(!areaOpen){ctx.beginPath();ctx.moveTo(axisx.p2c(x1),axisy.p2c(bottom));areaOpen=true}if(y1>=axisy.max&&y2>=axisy.max){ctx.lineTo(axisx.p2c(x1),axisy.p2c(axisy.max));ctx.lineTo(axisx.p2c(x2),axisy.p2c(axisy.max));continue}else if(y1<=axisy.min&&y2<=axisy.min){ctx.lineTo(axisx.p2c(x1),axisy.p2c(axisy.min));ctx.lineTo(axisx.p2c(x2),axisy.p2c(axisy.min));continue}var x1old=x1,x2old=x2;if(y1<=y2&&y1=axisy.min){x1=(axisy.min-y1)/(y2-y1)*(x2-x1)+x1;y1=axisy.min}else if(y2<=y1&&y2=axisy.min){x2=(axisy.min-y1)/(y2-y1)*(x2-x1)+x1;y2=axisy.min}if(y1>=y2&&y1>axisy.max&&y2<=axisy.max){x1=(axisy.max-y1)/(y2-y1)*(x2-x1)+x1;y1=axisy.max}else if(y2>=y1&&y2>axisy.max&&y1<=axisy.max){x2=(axisy.max-y1)/(y2-y1)*(x2-x1)+x1;y2=axisy.max}if(x1!=x1old){ctx.lineTo(axisx.p2c(x1old),axisy.p2c(y1))}ctx.lineTo(axisx.p2c(x1),axisy.p2c(y1));ctx.lineTo(axisx.p2c(x2),axisy.p2c(y2));if(x2!=x2old){ctx.lineTo(axisx.p2c(x2),axisy.p2c(y2));ctx.lineTo(axisx.p2c(x2old),axisy.p2c(y2))}}}ctx.save();ctx.translate(plotOffset.left,plotOffset.top);ctx.lineJoin="round";var lw=series.lines.lineWidth,sw=series.shadowSize;if(lw>0&&sw>0){ctx.lineWidth=sw;ctx.strokeStyle="rgba(0,0,0,0.1)";var angle=Math.PI/18;plotLine(series.datapoints,Math.sin(angle)*(lw/2+sw/2),Math.cos(angle)*(lw/2+sw/2),series.xaxis,series.yaxis);ctx.lineWidth=sw/2;plotLine(series.datapoints,Math.sin(angle)*(lw/2+sw/4),Math.cos(angle)*(lw/2+sw/4),series.xaxis,series.yaxis)}ctx.lineWidth=lw;ctx.strokeStyle=series.color;var fillStyle=getFillStyle(series.lines,series.color,0,plotHeight);if(fillStyle){ctx.fillStyle=fillStyle;plotLineArea(series.datapoints,series.xaxis,series.yaxis)}if(lw>0)plotLine(series.datapoints,0,0,series.xaxis,series.yaxis);ctx.restore()}function drawSeriesPoints(series){function plotPoints(datapoints,radius,fillStyle,offset,shadow,axisx,axisy,symbol){var points=datapoints.points,ps=datapoints.pointsize;for(var i=0;iaxisx.max||yaxisy.max)continue;ctx.beginPath();x=axisx.p2c(x);y=axisy.p2c(y)+offset;if(symbol=="circle")ctx.arc(x,y,radius,0,shadow?Math.PI:Math.PI*2,false);else symbol(ctx,x,y,radius,shadow);ctx.closePath();if(fillStyle){ctx.fillStyle=fillStyle;ctx.fill()}ctx.stroke()}}ctx.save();ctx.translate(plotOffset.left,plotOffset.top);var lw=series.points.lineWidth,sw=series.shadowSize,radius=series.points.radius,symbol=series.points.symbol;if(lw==0)lw=1e-4;if(lw>0&&sw>0){var w=sw/2;ctx.lineWidth=w;ctx.strokeStyle="rgba(0,0,0,0.1)";plotPoints(series.datapoints,radius,null,w+w/2,true,series.xaxis,series.yaxis,symbol);ctx.strokeStyle="rgba(0,0,0,0.2)";plotPoints(series.datapoints,radius,null,w/2,true,series.xaxis,series.yaxis,symbol)}ctx.lineWidth=lw;ctx.strokeStyle=series.color;plotPoints(series.datapoints,radius,getFillStyle(series.points,series.color),0,false,series.xaxis,series.yaxis,symbol);ctx.restore()}function drawBar(x,y,b,barLeft,barRight,fillStyleCallback,axisx,axisy,c,horizontal,lineWidth){var left,right,bottom,top,drawLeft,drawRight,drawTop,drawBottom,tmp;if(horizontal){drawBottom=drawRight=drawTop=true;drawLeft=false;left=b;right=x;top=y+barLeft;bottom=y+barRight;if(rightaxisx.max||topaxisy.max)return;if(leftaxisx.max){right=axisx.max;drawRight=false}if(bottomaxisy.max){top=axisy.max;drawTop=false}left=axisx.p2c(left);bottom=axisy.p2c(bottom);right=axisx.p2c(right);top=axisy.p2c(top);if(fillStyleCallback){c.fillStyle=fillStyleCallback(bottom,top);c.fillRect(left,top,right-left,bottom-top)}if(lineWidth>0&&(drawLeft||drawRight||drawTop||drawBottom)){c.beginPath();c.moveTo(left,bottom);if(drawLeft)c.lineTo(left,top);else c.moveTo(left,top);if(drawTop)c.lineTo(right,top);else c.moveTo(right,top);if(drawRight)c.lineTo(right,bottom);else c.moveTo(right,bottom);if(drawBottom)c.lineTo(left,bottom);else c.moveTo(left,bottom);c.stroke()}}function drawSeriesBars(series){function plotBars(datapoints,barLeft,barRight,fillStyleCallback,axisx,axisy){var points=datapoints.points,ps=datapoints.pointsize;for(var i=0;i");fragments.push("
      ");rowStarted=true}fragments.push(''+'")}if(rowStarted)fragments.push("");if(fragments.length==0)return;var table='
      ",{valign:"top",colSpan:V(a),"class":a.oClasses.sRowEmpty}).html(c))[0];r(a,"aoHeaderCallback","header",[h(a.nTHead).children("tr")[0],Ka(a),g,m,i]);r(a,"aoFooterCallback","footer",[h(a.nTFoot).children("tr")[0],Ka(a),g,m,i]);d=h(a.nTBody);d.children().detach(); +d.append(h(b));r(a,"aoDrawCallback","draw",[a]);a.bSorted=!1;a.bFiltered=!1;a.bDrawing=!1}}function T(a,b){var c=a.oFeatures,d=c.bFilter;c.bSort&&nb(a);d?ga(a,a.oPreviousSearch):a.aiDisplay=a.aiDisplayMaster.slice();!0!==b&&(a._iDisplayStart=0);a._drawHold=b;P(a);a._drawHold=!1}function ob(a){var b=a.oClasses,c=h(a.nTable),c=h("
      ").insertBefore(c),d=a.oFeatures,e=h("
      ",{id:a.sTableId+"_wrapper","class":b.sWrapper+(a.nTFoot?"":" "+b.sNoFooter)});a.nHolding=c[0];a.nTableWrapper=e[0];a.nTableReinsertBefore= +a.nTable.nextSibling;for(var f=a.sDom.split(""),g,j,i,m,l,q,k=0;k")[0];m=f[k+1];if("'"==m||'"'==m){l="";for(q=2;f[k+q]!=m;)l+=f[k+q],q++;"H"==l?l=b.sJUIHeader:"F"==l&&(l=b.sJUIFooter);-1!=l.indexOf(".")?(m=l.split("."),i.id=m[0].substr(1,m[0].length-1),i.className=m[1]):"#"==l.charAt(0)?i.id=l.substr(1,l.length-1):i.className=l;k+=q}e.append(i);e=h(i)}else if(">"==j)e=e.parent();else if("l"==j&&d.bPaginate&&d.bLengthChange)g=pb(a);else if("f"==j&& +d.bFilter)g=qb(a);else if("r"==j&&d.bProcessing)g=rb(a);else if("t"==j)g=sb(a);else if("i"==j&&d.bInfo)g=tb(a);else if("p"==j&&d.bPaginate)g=ub(a);else if(0!==n.ext.feature.length){i=n.ext.feature;q=0;for(m=i.length;q',j=d.sSearch,j=j.match(/_INPUT_/)?j.replace("_INPUT_", +g):j+g,b=h("
      ",{id:!f.f?c+"_filter":null,"class":b.sFilter}).append(h("
      ").addClass(b.sLength);a.aanFeatures.l||(i[0].id=c+"_length");i.children().append(a.oLanguage.sLengthMenu.replace("_MENU_",e[0].outerHTML));h("select",i).val(a._iDisplayLength).on("change.DT",function(){Ra(a,h(this).val());P(a)});h(a.nTable).on("length.dt.DT",function(b,c,d){a=== +c&&h("select",i).val(d)});return i[0]}function ub(a){var b=a.sPaginationType,c=n.ext.pager[b],d="function"===typeof c,e=function(a){P(a)},b=h("
      ").addClass(a.oClasses.sPaging+b)[0],f=a.aanFeatures;d||c.fnInit(a,b,e);f.p||(b.id=a.sTableId+"_paginate",a.aoDrawCallback.push({fn:function(a){if(d){var b=a._iDisplayStart,i=a._iDisplayLength,h=a.fnRecordsDisplay(),l=-1===i,b=l?0:Math.ceil(b/i),i=l?1:Math.ceil(h/i),h=c(b,i),k,l=0;for(k=f.p.length;lf&&(d=0)):"first"==b?d=0:"previous"==b?(d=0<=e?d-e:0,0>d&&(d=0)):"next"==b?d+e",{id:!a.aanFeatures.r?a.sTableId+"_processing":null,"class":a.oClasses.sProcessing}).html(a.oLanguage.sProcessing).insertBefore(a.nTable)[0]} +function C(a,b){a.oFeatures.bProcessing&&h(a.aanFeatures.r).css("display",b?"block":"none");r(a,null,"processing",[a,b])}function sb(a){var b=h(a.nTable);b.attr("role","grid");var c=a.oScroll;if(""===c.sX&&""===c.sY)return a.nTable;var d=c.sX,e=c.sY,f=a.oClasses,g=b.children("caption"),j=g.length?g[0]._captionSide:null,i=h(b[0].cloneNode(!1)),m=h(b[0].cloneNode(!1)),l=b.children("tfoot");l.length||(l=null);i=h("
      ",{"class":f.sScrollWrapper}).append(h("
      ",{"class":f.sScrollHead}).css({overflow:"hidden", +position:"relative",border:0,width:d?!d?null:v(d):"100%"}).append(h("
      ",{"class":f.sScrollHeadInner}).css({"box-sizing":"content-box",width:c.sXInner||"100%"}).append(i.removeAttr("id").css("margin-left",0).append("top"===j?g:null).append(b.children("thead"))))).append(h("
      ",{"class":f.sScrollBody}).css({position:"relative",overflow:"auto",width:!d?null:v(d)}).append(b));l&&i.append(h("
      ",{"class":f.sScrollFoot}).css({overflow:"hidden",border:0,width:d?!d?null:v(d):"100%"}).append(h("
      ", +{"class":f.sScrollFootInner}).append(m.removeAttr("id").css("margin-left",0).append("bottom"===j?g:null).append(b.children("tfoot")))));var b=i.children(),k=b[0],f=b[1],t=l?b[2]:null;if(d)h(f).on("scroll.DT",function(){var a=this.scrollLeft;k.scrollLeft=a;l&&(t.scrollLeft=a)});h(f).css(e&&c.bCollapse?"max-height":"height",e);a.nScrollHead=k;a.nScrollBody=f;a.nScrollFoot=t;a.aoDrawCallback.push({fn:la,sName:"scrolling"});return i[0]}function la(a){var b=a.oScroll,c=b.sX,d=b.sXInner,e=b.sY,b=b.iBarWidth, +f=h(a.nScrollHead),g=f[0].style,j=f.children("div"),i=j[0].style,m=j.children("table"),j=a.nScrollBody,l=h(j),q=j.style,t=h(a.nScrollFoot).children("div"),n=t.children("table"),o=h(a.nTHead),p=h(a.nTable),s=p[0],r=s.style,u=a.nTFoot?h(a.nTFoot):null,x=a.oBrowser,U=x.bScrollOversize,Xb=D(a.aoColumns,"nTh"),Q,L,R,w,Ua=[],y=[],z=[],A=[],B,C=function(a){a=a.style;a.paddingTop="0";a.paddingBottom="0";a.borderTopWidth="0";a.borderBottomWidth="0";a.height=0};L=j.scrollHeight>j.clientHeight;if(a.scrollBarVis!== +L&&a.scrollBarVis!==k)a.scrollBarVis=L,$(a);else{a.scrollBarVis=L;p.children("thead, tfoot").remove();u&&(R=u.clone().prependTo(p),Q=u.find("tr"),R=R.find("tr"));w=o.clone().prependTo(p);o=o.find("tr");L=w.find("tr");w.find("th, td").removeAttr("tabindex");c||(q.width="100%",f[0].style.width="100%");h.each(ra(a,w),function(b,c){B=aa(a,b);c.style.width=a.aoColumns[B].sWidth});u&&I(function(a){a.style.width=""},R);f=p.outerWidth();if(""===c){r.width="100%";if(U&&(p.find("tbody").height()>j.offsetHeight|| +"scroll"==l.css("overflow-y")))r.width=v(p.outerWidth()-b);f=p.outerWidth()}else""!==d&&(r.width=v(d),f=p.outerWidth());I(C,L);I(function(a){z.push(a.innerHTML);Ua.push(v(h(a).css("width")))},L);I(function(a,b){if(h.inArray(a,Xb)!==-1)a.style.width=Ua[b]},o);h(L).height(0);u&&(I(C,R),I(function(a){A.push(a.innerHTML);y.push(v(h(a).css("width")))},R),I(function(a,b){a.style.width=y[b]},Q),h(R).height(0));I(function(a,b){a.innerHTML='
      '+z[b]+"
      ";a.childNodes[0].style.height= +"0";a.childNodes[0].style.overflow="hidden";a.style.width=Ua[b]},L);u&&I(function(a,b){a.innerHTML='
      '+A[b]+"
      ";a.childNodes[0].style.height="0";a.childNodes[0].style.overflow="hidden";a.style.width=y[b]},R);if(p.outerWidth()j.offsetHeight||"scroll"==l.css("overflow-y")?f+b:f;if(U&&(j.scrollHeight>j.offsetHeight||"scroll"==l.css("overflow-y")))r.width=v(Q-b);(""===c||""!==d)&&K(a,1,"Possible column misalignment",6)}else Q="100%";q.width=v(Q); +g.width=v(Q);u&&(a.nScrollFoot.style.width=v(Q));!e&&U&&(q.height=v(s.offsetHeight+b));c=p.outerWidth();m[0].style.width=v(c);i.width=v(c);d=p.height()>j.clientHeight||"scroll"==l.css("overflow-y");e="padding"+(x.bScrollbarLeft?"Left":"Right");i[e]=d?b+"px":"0px";u&&(n[0].style.width=v(c),t[0].style.width=v(c),t[0].style[e]=d?b+"px":"0px");p.children("colgroup").insertBefore(p.children("thead"));l.scroll();if((a.bSorted||a.bFiltered)&&!a._drawHold)j.scrollTop=0}}function I(a,b,c){for(var d=0,e=0, +f=b.length,g,j;e").appendTo(j.find("tbody"));j.find("thead, tfoot").remove();j.append(h(a.nTHead).clone()).append(h(a.nTFoot).clone());j.find("tfoot th, tfoot td").css("width","");m=ra(a,j.find("thead")[0]);for(n=0;n").css({width:o.sWidthOrig,margin:0,padding:0,border:0,height:1}));if(a.aoData.length)for(n=0;n").css(f||e?{position:"absolute",top:0,left:0,height:1,right:0,overflow:"hidden"}:{}).append(j).appendTo(k);f&&g?j.width(g):f?(j.css("width","auto"),j.removeAttr("width"),j.width()").css("width",v(a)).appendTo(b||H.body),d=c[0].offsetWidth;c.remove();return d}function Gb(a, +b){var c=Hb(a,b);if(0>c)return null;var d=a.aoData[c];return!d.nTr?h("
      ").html(B(a,c,b,"display"))[0]:d.anCells[b]}function Hb(a,b){for(var c,d=-1,e=-1,f=0,g=a.aoData.length;fd&&(d=c.length,e=f);return e}function v(a){return null===a?"0px":"number"==typeof a?0>a?"0px":a+"px":a.match(/\d$/)?a+"px":a}function X(a){var b,c,d=[],e=a.aoColumns,f,g,j,i;b=a.aaSortingFixed;c=h.isPlainObject(b);var m=[];f=function(a){a.length&& +!h.isArray(a[0])?m.push(a):h.merge(m,a)};h.isArray(b)&&f(b);c&&b.pre&&f(b.pre);f(a.aaSorting);c&&b.post&&f(b.post);for(a=0;ae?1:0,0!==c)return"asc"===j.dir?c:-c;c=d[a];e=d[b];return ce?1:0}):i.sort(function(a,b){var c,g,j,i,k=h.length,n=f[a]._aSortData,o=f[b]._aSortData;for(j=0;jg?1:0})}a.bSorted=!0}function Jb(a){for(var b,c,d=a.aoColumns,e=X(a),a=a.oLanguage.oAria,f=0,g=d.length;f/g,"");var i=c.nTh;i.removeAttribute("aria-sort");c.bSortable&&(0e?e+1:3));e=0;for(f=d.length;ee?e+1:3))}a.aLastSort=d}function Ib(a,b){var c=a.aoColumns[b],d=n.ext.order[c.sSortDataType],e;d&&(e=d.call(a.oInstance,a,b,ba(a,b)));for(var f,g=n.ext.type.order[c.sType+"-pre"],j=0,i=a.aoData.length;j=f.length?[0,c[1]]:c)}));b.search!==k&&h.extend(a.oPreviousSearch,Cb(b.search));if(b.columns){d=0;for(e=b.columns.length;d=c&&(b=c-d);b-=b%d;if(-1===d||0>b)b=0;a._iDisplayStart=b}function Na(a,b){var c=a.renderer,d=n.ext.renderer[b];return h.isPlainObject(c)&&c[b]?d[c[b]]||d._:"string"=== +typeof c?d[c]||d._:d._}function y(a){return a.oFeatures.bServerSide?"ssp":a.ajax||a.sAjaxSource?"ajax":"dom"}function ia(a,b){var c=[],c=Lb.numbers_length,d=Math.floor(c/2);b<=c?c=Y(0,b):a<=d?(c=Y(0,c-2),c.push("ellipsis"),c.push(b-1)):(a>=b-1-d?c=Y(b-(c-2),b):(c=Y(a-d+2,a+d-1),c.push("ellipsis"),c.push(b-1)),c.splice(0,0,"ellipsis"),c.splice(0,0,0));c.DT_el="span";return c}function Da(a){h.each({num:function(b){return za(b,a)},"num-fmt":function(b){return za(b,a,Ya)},"html-num":function(b){return za(b, +a,Aa)},"html-num-fmt":function(b){return za(b,a,Aa,Ya)}},function(b,c){x.type.order[b+a+"-pre"]=c;b.match(/^html\-/)&&(x.type.search[b+a]=x.type.search.html)})}function Mb(a){return function(){var b=[ya(this[n.ext.iApiIndex])].concat(Array.prototype.slice.call(arguments));return n.ext.internal[a].apply(this,b)}}var n=function(a){this.$=function(a,b){return this.api(!0).$(a,b)};this._=function(a,b){return this.api(!0).rows(a,b).data()};this.api=function(a){return a?new s(ya(this[x.iApiIndex])):new s(this)}; +this.fnAddData=function(a,b){var c=this.api(!0),d=h.isArray(a)&&(h.isArray(a[0])||h.isPlainObject(a[0]))?c.rows.add(a):c.row.add(a);(b===k||b)&&c.draw();return d.flatten().toArray()};this.fnAdjustColumnSizing=function(a){var b=this.api(!0).columns.adjust(),c=b.settings()[0],d=c.oScroll;a===k||a?b.draw(!1):(""!==d.sX||""!==d.sY)&&la(c)};this.fnClearTable=function(a){var b=this.api(!0).clear();(a===k||a)&&b.draw()};this.fnClose=function(a){this.api(!0).row(a).child.hide()};this.fnDeleteRow=function(a, +b,c){var d=this.api(!0),a=d.rows(a),e=a.settings()[0],h=e.aoData[a[0][0]];a.remove();b&&b.call(this,e,h);(c===k||c)&&d.draw();return h};this.fnDestroy=function(a){this.api(!0).destroy(a)};this.fnDraw=function(a){this.api(!0).draw(a)};this.fnFilter=function(a,b,c,d,e,h){e=this.api(!0);null===b||b===k?e.search(a,c,d,h):e.column(b).search(a,c,d,h);e.draw()};this.fnGetData=function(a,b){var c=this.api(!0);if(a!==k){var d=a.nodeName?a.nodeName.toLowerCase():"";return b!==k||"td"==d||"th"==d?c.cell(a,b).data(): +c.row(a).data()||null}return c.data().toArray()};this.fnGetNodes=function(a){var b=this.api(!0);return a!==k?b.row(a).node():b.rows().nodes().flatten().toArray()};this.fnGetPosition=function(a){var b=this.api(!0),c=a.nodeName.toUpperCase();return"TR"==c?b.row(a).index():"TD"==c||"TH"==c?(a=b.cell(a).index(),[a.row,a.columnVisible,a.column]):null};this.fnIsOpen=function(a){return this.api(!0).row(a).child.isShown()};this.fnOpen=function(a,b,c){return this.api(!0).row(a).child(b,c).show().child()[0]}; +this.fnPageChange=function(a,b){var c=this.api(!0).page(a);(b===k||b)&&c.draw(!1)};this.fnSetColumnVis=function(a,b,c){a=this.api(!0).column(a).visible(b);(c===k||c)&&a.columns.adjust().draw()};this.fnSettings=function(){return ya(this[x.iApiIndex])};this.fnSort=function(a){this.api(!0).order(a).draw()};this.fnSortListener=function(a,b,c){this.api(!0).order.listener(a,b,c)};this.fnUpdate=function(a,b,c,d,e){var h=this.api(!0);c===k||null===c?h.row(b).data(a):h.cell(b,c).data(a);(e===k||e)&&h.columns.adjust(); +(d===k||d)&&h.draw();return 0};this.fnVersionCheck=x.fnVersionCheck;var b=this,c=a===k,d=this.length;c&&(a={});this.oApi=this.internal=x.internal;for(var e in n.ext.internal)e&&(this[e]=Mb(e));this.each(function(){var e={},g=1").appendTo(q)); +p.nTHead=b[0];b=q.children("tbody");b.length===0&&(b=h("
      '+entry.label+"
      '+fragments.join("")+"
      ";if(options.legend.container!=null)$(options.legend.container).html(table);else{var pos="",p=options.legend.position,m=options.legend.margin;if(m[0]==null)m=[m,m];if(p.charAt(0)=="n")pos+="top:"+(m[1]+plotOffset.top)+"px;";else if(p.charAt(0)=="s")pos+="bottom:"+(m[1]+plotOffset.bottom)+"px;";if(p.charAt(1)=="e")pos+="right:"+(m[0]+plotOffset.right)+"px;";else if(p.charAt(1)=="w")pos+="left:"+(m[0]+plotOffset.left)+"px;";var legend=$('
      '+table.replace('style="','style="position:absolute;'+pos+";")+"
      ").appendTo(placeholder);if(options.legend.backgroundOpacity!=0){var c=options.legend.backgroundColor;if(c==null){c=options.grid.backgroundColor;if(c&&typeof c=="string")c=$.color.parse(c);else c=$.color.extract(legend,"background-color");c.a=1;c=c.toString()}var div=legend.children();$('
      ').prependTo(legend).css("opacity",options.legend.backgroundOpacity)}}}var highlights=[],redrawTimeout=null;function findNearbyItem(mouseX,mouseY,seriesFilter){var maxDistance=options.grid.mouseActiveRadius,smallestDistance=maxDistance*maxDistance+1,item=null,foundPoint=false,i,j,ps;for(i=series.length-1;i>=0;--i){if(!seriesFilter(series[i]))continue;var s=series[i],axisx=s.xaxis,axisy=s.yaxis,points=s.datapoints.points,mx=axisx.c2p(mouseX),my=axisy.c2p(mouseY),maxx=maxDistance/axisx.scale,maxy=maxDistance/axisy.scale;ps=s.datapoints.pointsize;if(axisx.options.inverseTransform)maxx=Number.MAX_VALUE;if(axisy.options.inverseTransform)maxy=Number.MAX_VALUE;if(s.lines.show||s.points.show){for(j=0;jmaxx||x-mx<-maxx||y-my>maxy||y-my<-maxy)continue;var dx=Math.abs(axisx.p2c(x)-mouseX),dy=Math.abs(axisy.p2c(y)-mouseY),dist=dx*dx+dy*dy;if(dist=Math.min(b,x)&&my>=y+barLeft&&my<=y+barRight:mx>=x+barLeft&&mx<=x+barRight&&my>=Math.min(b,y)&&my<=Math.max(b,y))item=[i,j/ps]}}}if(item){i=item[0];j=item[1];ps=series[i].datapoints.pointsize;return{datapoint:series[i].datapoints.points.slice(j*ps,(j+1)*ps),dataIndex:j,series:series[i],seriesIndex:i}}return null}function onMouseMove(e){if(options.grid.hoverable)triggerClickHoverEvent("plothover",e,function(s){return s["hoverable"]!=false})}function onMouseLeave(e){if(options.grid.hoverable)triggerClickHoverEvent("plothover",e,function(s){return false})}function onClick(e){triggerClickHoverEvent("plotclick",e,function(s){return s["clickable"]!=false})}function triggerClickHoverEvent(eventname,event,seriesFilter){var offset=eventHolder.offset(),canvasX=event.pageX-offset.left-plotOffset.left,canvasY=event.pageY-offset.top-plotOffset.top,pos=canvasToAxisCoords({left:canvasX,top:canvasY});pos.pageX=event.pageX;pos.pageY=event.pageY;var item=findNearbyItem(canvasX,canvasY,seriesFilter);if(item){item.pageX=parseInt(item.series.xaxis.p2c(item.datapoint[0])+offset.left+plotOffset.left,10);item.pageY=parseInt(item.series.yaxis.p2c(item.datapoint[1])+offset.top+plotOffset.top,10)}if(options.grid.autoHighlight){for(var i=0;iaxisx.max||yaxisy.max)return;var pointRadius=series.points.radius+series.points.lineWidth/2;octx.lineWidth=pointRadius;octx.strokeStyle=highlightColor;var radius=1.5*pointRadius;x=axisx.p2c(x);y=axisy.p2c(y);octx.beginPath();if(series.points.symbol=="circle")octx.arc(x,y,radius,0,2*Math.PI,false);else series.points.symbol(octx,x,y,radius,false);octx.closePath();octx.stroke()}function drawBarHighlight(series,point){var highlightColor=typeof series.highlightColor==="string"?series.highlightColor:$.color.parse(series.color).scale("a",.5).toString(),fillStyle=highlightColor,barLeft;switch(series.bars.align){case"left":barLeft=0;break;case"right":barLeft=-series.bars.barWidth;break;default:barLeft=-series.bars.barWidth/2}octx.lineWidth=series.bars.lineWidth;octx.strokeStyle=highlightColor;drawBar(point[0],point[1],point[2]||0,barLeft,barLeft+series.bars.barWidth,function(){return fillStyle},series.xaxis,series.yaxis,octx,series.bars.horizontal,series.bars.lineWidth)}function getColorOrGradient(spec,bottom,top,defaultColor){if(typeof spec=="string")return spec;else{var gradient=ctx.createLinearGradient(0,top,0,bottom);for(var i=0,l=spec.colors.length;i0&&h.which!=l.which||a(h.target).is(l.not))return;switch(h.type){case"mousedown":return a.extend(l,a(j).offset(),{elem:j,target:h.target,pageX:h.pageX,pageY:h.pageY}),b.add(document,"mousemove mouseup",e,l),i(j,!1),d.dragging=null,!1;case!d.dragging&&"mousemove":if(g(h.pageX-l.pageX)+g(h.pageY-l.pageY)max){var tmp=min;min=max;max=tmp}if(pr){if(pr[0]!=null&&minpr[1]){max=pr[1]}}var range=max-min;if(zr&&(zr[0]!=null&&range1||zr[1]!=null&&range>zr[1]&&amount<1))return;opts.min=min;opts.max=max});plot.setupGrid();plot.draw();if(!args.preventEvent)plot.getPlaceholder().trigger("plotzoom",[plot,args])};plot.pan=function(args){var delta={x:+args.left,y:+args.top};if(isNaN(delta.x))delta.x=0;if(isNaN(delta.y))delta.y=0;$.each(plot.getAxes(),function(_,axis){var opts=axis.options,min,max,d=delta[axis.direction];min=axis.c2p(axis.p2c(axis.min)+d),max=axis.c2p(axis.p2c(axis.max)+d);var pr=opts.panRange;if(pr===false)return;if(pr){if(pr[0]!=null&&pr[0]>min){d=pr[0]-min;min+=d;max+=d}if(pr[1]!=null&&pr[1]1){options.series.pie.tilt=1}else if(options.series.pie.tilt<0){options.series.pie.tilt=0}}});plot.hooks.bindEvents.push(function(plot,eventHolder){var options=plot.getOptions();if(options.series.pie.show){if(options.grid.hoverable){eventHolder.unbind("mousemove").mousemove(onMouseMove)}if(options.grid.clickable){eventHolder.unbind("click").click(onClick)}}});plot.hooks.processDatapoints.push(function(plot,series,data,datapoints){var options=plot.getOptions();if(options.series.pie.show){processDatapoints(plot,series,data,datapoints)}});plot.hooks.drawOverlay.push(function(plot,octx){var options=plot.getOptions();if(options.series.pie.show){drawOverlay(plot,octx)}});plot.hooks.draw.push(function(plot,newCtx){var options=plot.getOptions();if(options.series.pie.show){draw(plot,newCtx)}});function processDatapoints(plot,series,datapoints){if(!processed){processed=true;canvas=plot.getCanvas();target=$(canvas).parent();options=plot.getOptions();plot.setData(combine(plot.getData()))}}function combine(data){var total=0,combined=0,numCombined=0,color=options.series.pie.combine.color,newdata=[];for(var i=0;ioptions.series.pie.combine.threshold){newdata.push($.extend(data[i],{data:[[1,value]],color:data[i].color,label:data[i].label,angle:value*Math.PI*2/total,percent:value/(total/100)}))}}if(numCombined>1){newdata.push({data:[[1,combined]],color:color,label:options.series.pie.combine.label,angle:combined*Math.PI*2/total,percent:combined/(total/100)})}return newdata}function draw(plot,newCtx){if(!target){return}var canvasWidth=plot.getPlaceholder().width(),canvasHeight=plot.getPlaceholder().height(),legendWidth=target.children().filter(".legend").children().width()||0;ctx=newCtx;processed=false;maxRadius=Math.min(canvasWidth,canvasHeight/options.series.pie.tilt)/2;centerTop=canvasHeight/2+options.series.pie.offset.top;centerLeft=canvasWidth/2;if(options.series.pie.offset.left=="auto"){if(options.legend.position.match("w")){centerLeft+=legendWidth/2}else{centerLeft-=legendWidth/2}if(centerLeftcanvasWidth-maxRadius){centerLeft=canvasWidth-maxRadius}}else{centerLeft+=options.series.pie.offset.left}var slices=plot.getData(),attempts=0;do{if(attempts>0){maxRadius*=REDRAW_SHRINK}attempts+=1;clear();if(options.series.pie.tilt<=.8){drawShadow()}}while(!drawPie()&&attempts=REDRAW_ATTEMPTS){clear();target.prepend("
      Could not draw pie with labels contained inside canvas
      ")}if(plot.setSeries&&plot.insertLegend){plot.setSeries(slices);plot.insertLegend()}function clear(){ctx.clearRect(0,0,canvasWidth,canvasHeight);target.children().filter(".pieLabel, .pieLabelBackground").remove()}function drawShadow(){var shadowLeft=options.series.pie.shadow.left;var shadowTop=options.series.pie.shadow.top;var edge=10;var alpha=options.series.pie.shadow.alpha;var radius=options.series.pie.radius>1?options.series.pie.radius:maxRadius*options.series.pie.radius;if(radius>=canvasWidth/2-shadowLeft||radius*options.series.pie.tilt>=canvasHeight/2-shadowTop||radius<=edge){return}ctx.save();ctx.translate(shadowLeft,shadowTop);ctx.globalAlpha=alpha;ctx.fillStyle="#000";ctx.translate(centerLeft,centerTop);ctx.scale(1,options.series.pie.tilt);for(var i=1;i<=edge;i++){ctx.beginPath();ctx.arc(0,0,radius,0,Math.PI*2,false);ctx.fill();radius-=i}ctx.restore()}function drawPie(){var startAngle=Math.PI*options.series.pie.startAngle;var radius=options.series.pie.radius>1?options.series.pie.radius:maxRadius*options.series.pie.radius;ctx.save();ctx.translate(centerLeft,centerTop);ctx.scale(1,options.series.pie.tilt);ctx.save();var currentAngle=startAngle;for(var i=0;i0){ctx.save();ctx.lineWidth=options.series.pie.stroke.width;currentAngle=startAngle;for(var i=0;i1e-9){ctx.moveTo(0,0)}ctx.arc(0,0,radius,currentAngle,currentAngle+angle/2,false);ctx.arc(0,0,radius,currentAngle+angle/2,currentAngle+angle,false);ctx.closePath();currentAngle+=angle;if(fill){ctx.fill()}else{ctx.stroke()}}function drawLabels(){var currentAngle=startAngle;var radius=options.series.pie.label.radius>1?options.series.pie.label.radius:maxRadius*options.series.pie.label.radius;for(var i=0;i=options.series.pie.label.threshold*100){if(!drawLabel(slices[i],currentAngle,i)){return false}}currentAngle+=slices[i].angle}return true;function drawLabel(slice,startAngle,index){if(slice.data[0][1]==0){return true}var lf=options.legend.labelFormatter,text,plf=options.series.pie.label.formatter;if(lf){text=lf(slice.label,slice)}else{text=slice.label}if(plf){text=plf(text,slice)}var halfAngle=(startAngle+slice.angle+startAngle)/2;var x=centerLeft+Math.round(Math.cos(halfAngle)*radius);var y=centerTop+Math.round(Math.sin(halfAngle)*radius)*options.series.pie.tilt;var html=""+text+"";target.append(html);var label=target.children("#pieLabel"+index);var labelTop=y-label.height()/2;var labelLeft=x-label.width()/2;label.css("top",labelTop);label.css("left",labelLeft);if(0-labelTop>0||0-labelLeft>0||canvasHeight-(labelTop+label.height())<0||canvasWidth-(labelLeft+label.width())<0){return false}if(options.series.pie.label.background.opacity!=0){var c=options.series.pie.label.background.color;if(c==null){c=slice.color}var pos="top:"+labelTop+"px;left:"+labelLeft+"px;";$("
      ").css("opacity",options.series.pie.label.background.opacity).insertBefore(label)}return true}}}}function drawDonutHole(layer){if(options.series.pie.innerRadius>0){layer.save();var innerRadius=options.series.pie.innerRadius>1?options.series.pie.innerRadius:maxRadius*options.series.pie.innerRadius;layer.globalCompositeOperation="destination-out";layer.beginPath();layer.fillStyle=options.series.pie.stroke.color;layer.arc(0,0,innerRadius,0,Math.PI*2,false);layer.fill();layer.closePath();layer.restore();layer.save();layer.beginPath();layer.strokeStyle=options.series.pie.stroke.color;layer.arc(0,0,innerRadius,0,Math.PI*2,false);layer.stroke();layer.closePath();layer.restore()}}function isPointInPoly(poly,pt){for(var c=false,i=-1,l=poly.length,j=l-1;++i1?options.series.pie.radius:maxRadius*options.series.pie.radius,x,y;for(var i=0;i1?options.series.pie.radius:maxRadius*options.series.pie.radius;octx.save();octx.translate(centerLeft,centerTop);octx.scale(1,options.series.pie.tilt);for(var i=0;i1e-9){octx.moveTo(0,0)}octx.arc(0,0,radius,series.startAngle,series.startAngle+series.angle/2,false);octx.arc(0,0,radius,series.startAngle+series.angle/2,series.startAngle+series.angle,false);octx.closePath();octx.fill()}}}var options={series:{pie:{show:false,radius:"auto",innerRadius:0,startAngle:3/2,tilt:1,shadow:{left:5,top:15,alpha:.02},offset:{top:0,left:"auto"},stroke:{color:"#fff",width:1},label:{show:"auto",formatter:function(label,slice){return"
      "+label+"
      "+Math.round(slice.percent)+"%
      "},radius:1,background:{color:null,opacity:0},threshold:0},combine:{threshold:-1,color:null,label:"Other"},highlight:{opacity:.5}}}};$.plot.plugins.push({init:init,options:options,name:"pie",version:"1.1"})})(jQuery); \ No newline at end of file diff --git a/public/assets/lib/flot.curvedlines/flot/jquery.flot.resize.min.js b/public/assets/lib/flot.curvedlines/flot/jquery.flot.resize.min.js new file mode 100755 index 0000000..a4fb5be --- /dev/null +++ b/public/assets/lib/flot.curvedlines/flot/jquery.flot.resize.min.js @@ -0,0 +1,7 @@ +/* Javascript plotting library for jQuery, version 0.8.3. + +Copyright (c) 2007-2014 IOLA and Ole Laursen. +Licensed under the MIT license. + +*/ +(function($,e,t){"$:nomunge";var i=[],n=$.resize=$.extend($.resize,{}),a,r=false,s="setTimeout",u="resize",m=u+"-special-event",o="pendingDelay",l="activeDelay",f="throttleWindow";n[o]=200;n[l]=20;n[f]=true;$.event.special[u]={setup:function(){if(!n[f]&&this[s]){return false}var e=$(this);i.push(this);e.data(m,{w:e.width(),h:e.height()});if(i.length===1){a=t;h()}},teardown:function(){if(!n[f]&&this[s]){return false}var e=$(this);for(var t=i.length-1;t>=0;t--){if(i[t]==this){i.splice(t,1);break}}e.removeData(m);if(!i.length){if(r){cancelAnimationFrame(a)}else{clearTimeout(a)}a=null}},add:function(e){if(!n[f]&&this[s]){return false}var i;function a(e,n,a){var r=$(this),s=r.data(m)||{};s.w=n!==t?n:r.width();s.h=a!==t?a:r.height();i.apply(this,arguments)}if($.isFunction(e)){i=e;return a}else{i=e.handler;e.handler=a}}};function h(t){if(r===true){r=t||1}for(var s=i.length-1;s>=0;s--){var l=$(i[s]);if(l[0]==e||l.is(":visible")){var f=l.width(),c=l.height(),d=l.data(m);if(d&&(f!==d.w||c!==d.h)){l.trigger(u,[d.w=f,d.h=c]);r=t||true}}else{d=l.data(m);d.w=0;d.h=0}}if(a!==null){if(r&&(t==null||t-r<1e3)){a=e.requestAnimationFrame(h)}else{a=setTimeout(h,n[o]);r=false}}}if(!e.requestAnimationFrame){e.requestAnimationFrame=function(){return e.webkitRequestAnimationFrame||e.mozRequestAnimationFrame||e.oRequestAnimationFrame||e.msRequestAnimationFrame||function(t,i){return e.setTimeout(function(){t((new Date).getTime())},n[l])}}()}if(!e.cancelAnimationFrame){e.cancelAnimationFrame=function(){return e.webkitCancelRequestAnimationFrame||e.mozCancelRequestAnimationFrame||e.oCancelRequestAnimationFrame||e.msCancelRequestAnimationFrame||clearTimeout}()}})(jQuery,this);(function($){var options={};function init(plot){function onResize(){var placeholder=plot.getPlaceholder();if(placeholder.width()==0||placeholder.height()==0)return;plot.resize();plot.setupGrid();plot.draw()}function bindEvents(plot,eventHolder){plot.getPlaceholder().resize(onResize)}function shutdown(plot,eventHolder){plot.getPlaceholder().unbind("resize",onResize)}plot.hooks.bindEvents.push(bindEvents);plot.hooks.shutdown.push(shutdown)}$.plot.plugins.push({init:init,options:options,name:"resize",version:"1.0"})})(jQuery); \ No newline at end of file diff --git a/public/assets/lib/flot.curvedlines/flot/jquery.flot.selection.min.js b/public/assets/lib/flot.curvedlines/flot/jquery.flot.selection.min.js new file mode 100755 index 0000000..c2f42db --- /dev/null +++ b/public/assets/lib/flot.curvedlines/flot/jquery.flot.selection.min.js @@ -0,0 +1,7 @@ +/* Javascript plotting library for jQuery, version 0.8.3. + +Copyright (c) 2007-2014 IOLA and Ole Laursen. +Licensed under the MIT license. + +*/ +(function($){function init(plot){var selection={first:{x:-1,y:-1},second:{x:-1,y:-1},show:false,active:false};var savedhandlers={};var mouseUpHandler=null;function onMouseMove(e){if(selection.active){updateSelection(e);plot.getPlaceholder().trigger("plotselecting",[getSelection()])}}function onMouseDown(e){if(e.which!=1)return;document.body.focus();if(document.onselectstart!==undefined&&savedhandlers.onselectstart==null){savedhandlers.onselectstart=document.onselectstart;document.onselectstart=function(){return false}}if(document.ondrag!==undefined&&savedhandlers.ondrag==null){savedhandlers.ondrag=document.ondrag;document.ondrag=function(){return false}}setSelectionPos(selection.first,e);selection.active=true;mouseUpHandler=function(e){onMouseUp(e)};$(document).one("mouseup",mouseUpHandler)}function onMouseUp(e){mouseUpHandler=null;if(document.onselectstart!==undefined)document.onselectstart=savedhandlers.onselectstart;if(document.ondrag!==undefined)document.ondrag=savedhandlers.ondrag;selection.active=false;updateSelection(e);if(selectionIsSane())triggerSelectedEvent();else{plot.getPlaceholder().trigger("plotunselected",[]);plot.getPlaceholder().trigger("plotselecting",[null])}return false}function getSelection(){if(!selectionIsSane())return null;if(!selection.show)return null;var r={},c1=selection.first,c2=selection.second;$.each(plot.getAxes(),function(name,axis){if(axis.used){var p1=axis.c2p(c1[axis.direction]),p2=axis.c2p(c2[axis.direction]);r[name]={from:Math.min(p1,p2),to:Math.max(p1,p2)}}});return r}function triggerSelectedEvent(){var r=getSelection();plot.getPlaceholder().trigger("plotselected",[r]);if(r.xaxis&&r.yaxis)plot.getPlaceholder().trigger("selected",[{x1:r.xaxis.from,y1:r.yaxis.from,x2:r.xaxis.to,y2:r.yaxis.to}])}function clamp(min,value,max){return valuemax?max:value}function setSelectionPos(pos,e){var o=plot.getOptions();var offset=plot.getPlaceholder().offset();var plotOffset=plot.getPlotOffset();pos.x=clamp(0,e.pageX-offset.left-plotOffset.left,plot.width());pos.y=clamp(0,e.pageY-offset.top-plotOffset.top,plot.height());if(o.selection.mode=="y")pos.x=pos==selection.first?0:plot.width();if(o.selection.mode=="x")pos.y=pos==selection.first?0:plot.height()}function updateSelection(pos){if(pos.pageX==null)return;setSelectionPos(selection.second,pos);if(selectionIsSane()){selection.show=true;plot.triggerRedrawOverlay()}else clearSelection(true)}function clearSelection(preventEvent){if(selection.show){selection.show=false;plot.triggerRedrawOverlay();if(!preventEvent)plot.getPlaceholder().trigger("plotunselected",[])}}function extractRange(ranges,coord){var axis,from,to,key,axes=plot.getAxes();for(var k in axes){axis=axes[k];if(axis.direction==coord){key=coord+axis.n+"axis";if(!ranges[key]&&axis.n==1)key=coord+"axis";if(ranges[key]){from=ranges[key].from;to=ranges[key].to;break}}}if(!ranges[key]){axis=coord=="x"?plot.getXAxes()[0]:plot.getYAxes()[0];from=ranges[coord+"1"];to=ranges[coord+"2"]}if(from!=null&&to!=null&&from>to){var tmp=from;from=to;to=tmp}return{from:from,to:to,axis:axis}}function setSelection(ranges,preventEvent){var axis,range,o=plot.getOptions();if(o.selection.mode=="y"){selection.first.x=0;selection.second.x=plot.width()}else{range=extractRange(ranges,"x");selection.first.x=range.axis.p2c(range.from);selection.second.x=range.axis.p2c(range.to)}if(o.selection.mode=="x"){selection.first.y=0;selection.second.y=plot.height()}else{range=extractRange(ranges,"y");selection.first.y=range.axis.p2c(range.from);selection.second.y=range.axis.p2c(range.to)}selection.show=true;plot.triggerRedrawOverlay();if(!preventEvent&&selectionIsSane())triggerSelectedEvent()}function selectionIsSane(){var minSize=plot.getOptions().selection.minSize;return Math.abs(selection.second.x-selection.first.x)>=minSize&&Math.abs(selection.second.y-selection.first.y)>=minSize}plot.clearSelection=clearSelection;plot.setSelection=setSelection;plot.getSelection=getSelection;plot.hooks.bindEvents.push(function(plot,eventHolder){var o=plot.getOptions();if(o.selection.mode!=null){eventHolder.mousemove(onMouseMove);eventHolder.mousedown(onMouseDown)}});plot.hooks.drawOverlay.push(function(plot,ctx){if(selection.show&&selectionIsSane()){var plotOffset=plot.getPlotOffset();var o=plot.getOptions();ctx.save();ctx.translate(plotOffset.left,plotOffset.top);var c=$.color.parse(o.selection.color);ctx.strokeStyle=c.scale("a",.8).toString();ctx.lineWidth=1;ctx.lineJoin=o.selection.shape;ctx.fillStyle=c.scale("a",.4).toString();var x=Math.min(selection.first.x,selection.second.x)+.5,y=Math.min(selection.first.y,selection.second.y)+.5,w=Math.abs(selection.second.x-selection.first.x)-1,h=Math.abs(selection.second.y-selection.first.y)-1;ctx.fillRect(x,y,w,h);ctx.strokeRect(x,y,w,h);ctx.restore()}});plot.hooks.shutdown.push(function(plot,eventHolder){eventHolder.unbind("mousemove",onMouseMove);eventHolder.unbind("mousedown",onMouseDown);if(mouseUpHandler)$(document).unbind("mouseup",mouseUpHandler)})}$.plot.plugins.push({init:init,options:{selection:{mode:null,color:"#e8cfac",shape:"round",minSize:5}},name:"selection",version:"1.1"})})(jQuery); \ No newline at end of file diff --git a/public/assets/lib/flot.curvedlines/flot/jquery.flot.stack.min.js b/public/assets/lib/flot.curvedlines/flot/jquery.flot.stack.min.js new file mode 100755 index 0000000..2cf34ce --- /dev/null +++ b/public/assets/lib/flot.curvedlines/flot/jquery.flot.stack.min.js @@ -0,0 +1,7 @@ +/* Javascript plotting library for jQuery, version 0.8.3. + +Copyright (c) 2007-2014 IOLA and Ole Laursen. +Licensed under the MIT license. + +*/ +(function($){var options={series:{stack:null}};function init(plot){function findMatchingSeries(s,allseries){var res=null;for(var i=0;i2&&(horizontal?datapoints.format[2].x:datapoints.format[2].y),withsteps=withlines&&s.lines.steps,fromgap=true,keyOffset=horizontal?1:0,accumulateOffset=horizontal?0:1,i=0,j=0,l,m;while(true){if(i>=points.length)break;l=newpoints.length;if(points[i]==null){for(m=0;m=otherpoints.length){if(!withlines){for(m=0;mqx){if(withlines&&i>0&&points[i-ps]!=null){intery=py+(points[i-ps+accumulateOffset]-py)*(qx-px)/(points[i-ps+keyOffset]-px);newpoints.push(qx);newpoints.push(intery+qy);for(m=2;m0&&otherpoints[j-otherps]!=null)bottom=qy+(otherpoints[j-otherps+accumulateOffset]-qy)*(px-qx)/(otherpoints[j-otherps+keyOffset]-qx);newpoints[l+accumulateOffset]+=bottom;i+=ps}fromgap=false;if(l!=newpoints.length&&withbottom)newpoints[l+2]+=bottom}if(withsteps&&l!=newpoints.length&&l>0&&newpoints[l]!=null&&newpoints[l]!=newpoints[l-ps]&&newpoints[l+1]!=newpoints[l-ps+1]){for(m=0;m0&&origpoints[i-ps]!=null){var interx=x+(below-y)*(x-origpoints[i-ps])/(y-origpoints[i-ps+1]);prevp.push(interx);prevp.push(below);for(m=2;m0){var origIndex=$.inArray(s,plot.getData());plot.getData().splice(origIndex+1,0,thresholded)}}function processThresholds(plot,s,datapoints){if(!s.threshold)return;if(s.threshold instanceof Array){s.threshold.sort(function(a,b){return a.below-b.below});$(s.threshold).each(function(i,th){thresholdData(plot,s,datapoints,th.below,th.color)})}else{thresholdData(plot,s,datapoints,s.threshold.below,s.threshold.color)}}plot.hooks.processDatapoints.push(processThresholds)}$.plot.plugins.push({init:init,options:options,name:"threshold",version:"1.2"})})(jQuery); \ No newline at end of file diff --git a/public/assets/lib/flot.curvedlines/flot/jquery.flot.time.min.js b/public/assets/lib/flot.curvedlines/flot/jquery.flot.time.min.js new file mode 100755 index 0000000..53912ab --- /dev/null +++ b/public/assets/lib/flot.curvedlines/flot/jquery.flot.time.min.js @@ -0,0 +1,7 @@ +/* Javascript plotting library for jQuery, version 0.8.3. + +Copyright (c) 2007-2014 IOLA and Ole Laursen. +Licensed under the MIT license. + +*/ +(function($){var options={xaxis:{timezone:null,timeformat:null,twelveHourClock:false,monthNames:null}};function floorInBase(n,base){return base*Math.floor(n/base)}function formatDate(d,fmt,monthNames,dayNames){if(typeof d.strftime=="function"){return d.strftime(fmt)}var leftPad=function(n,pad){n=""+n;pad=""+(pad==null?"0":pad);return n.length==1?pad+n:n};var r=[];var escape=false;var hours=d.getHours();var isAM=hours<12;if(monthNames==null){monthNames=["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"]}if(dayNames==null){dayNames=["Sun","Mon","Tue","Wed","Thu","Fri","Sat"]}var hours12;if(hours>12){hours12=hours-12}else if(hours==0){hours12=12}else{hours12=hours}for(var i=0;i=minSize){break}}var size=spec[i][0];var unit=spec[i][1];if(unit=="year"){if(opts.minTickSize!=null&&opts.minTickSize[1]=="year"){size=Math.floor(opts.minTickSize[0])}else{var magn=Math.pow(10,Math.floor(Math.log(axis.delta/timeUnitSize.year)/Math.LN10));var norm=axis.delta/timeUnitSize.year/magn;if(norm<1.5){size=1}else if(norm<3){size=2}else if(norm<7.5){size=5}else{size=10}size*=magn}if(size<1){size=1}}axis.tickSize=opts.tickSize||[size,unit];var tickSize=axis.tickSize[0];unit=axis.tickSize[1];var step=tickSize*timeUnitSize[unit];if(unit=="second"){d.setSeconds(floorInBase(d.getSeconds(),tickSize))}else if(unit=="minute"){d.setMinutes(floorInBase(d.getMinutes(),tickSize))}else if(unit=="hour"){d.setHours(floorInBase(d.getHours(),tickSize))}else if(unit=="month"){d.setMonth(floorInBase(d.getMonth(),tickSize))}else if(unit=="quarter"){d.setMonth(3*floorInBase(d.getMonth()/3,tickSize))}else if(unit=="year"){d.setFullYear(floorInBase(d.getFullYear(),tickSize))}d.setMilliseconds(0);if(step>=timeUnitSize.minute){d.setSeconds(0)}if(step>=timeUnitSize.hour){d.setMinutes(0)}if(step>=timeUnitSize.day){d.setHours(0)}if(step>=timeUnitSize.day*4){d.setDate(1)}if(step>=timeUnitSize.month*2){d.setMonth(floorInBase(d.getMonth(),3))}if(step>=timeUnitSize.quarter*2){d.setMonth(floorInBase(d.getMonth(),6))}if(step>=timeUnitSize.year){d.setMonth(0)}var carry=0;var v=Number.NaN;var prev;do{prev=v;v=d.getTime();ticks.push(v);if(unit=="month"||unit=="quarter"){if(tickSize<1){d.setDate(1);var start=d.getTime();d.setMonth(d.getMonth()+(unit=="quarter"?3:1));var end=d.getTime();d.setTime(v+carry*timeUnitSize.hour+(end-start)*tickSize);carry=d.getHours();d.setHours(0)}else{d.setMonth(d.getMonth()+tickSize*(unit=="quarter"?3:1))}}else if(unit=="year"){d.setFullYear(d.getFullYear()+tickSize)}else{d.setTime(v+step)}}while(v)[^>]*$|#([\w\-]*)$)/,rsingleTag=/^<(\w+)\s*\/?>(?:<\/\1>|)$/,rvalidchars=/^[\],:{}\s]*$/,rvalidbraces=/(?:^|:|,)(?:\s*\[)+/g,rvalidescape=/\\(?:["\\\/bfnrt]|u[\da-fA-F]{4})/g,rvalidtokens=/"[^"\\\r\n]*"|true|false|null|-?(?:\d\d*\.|)\d+(?:[eE][\-+]?\d+|)/g,rmsPrefix=/^-ms-/,rdashAlpha=/-([\da-z])/gi,fcamelCase=function(all,letter){return(letter+"").toUpperCase()},DOMContentLoaded=function(){if(document.addEventListener){document.removeEventListener("DOMContentLoaded",DOMContentLoaded,false);jQuery.ready()}else if(document.readyState==="complete"){document.detachEvent("onreadystatechange",DOMContentLoaded);jQuery.ready()}},class2type={};jQuery.fn=jQuery.prototype={constructor:jQuery,init:function(selector,context,rootjQuery){var match,elem,ret,doc;if(!selector){return this}if(selector.nodeType){this.context=this[0]=selector;this.length=1;return this}if(typeof selector==="string"){if(selector.charAt(0)==="<"&&selector.charAt(selector.length-1)===">"&&selector.length>=3){match=[null,selector,null]}else{match=rquickExpr.exec(selector)}if(match&&(match[1]||!context)){if(match[1]){context=context instanceof jQuery?context[0]:context;doc=context&&context.nodeType?context.ownerDocument||context:document;selector=jQuery.parseHTML(match[1],doc,true);if(rsingleTag.test(match[1])&&jQuery.isPlainObject(context)){this.attr.call(selector,context,true)}return jQuery.merge(this,selector)}else{elem=document.getElementById(match[2]);if(elem&&elem.parentNode){if(elem.id!==match[2]){return rootjQuery.find(selector)}this.length=1;this[0]=elem}this.context=document;this.selector=selector;return this}}else if(!context||context.jquery){return(context||rootjQuery).find(selector)}else{return this.constructor(context).find(selector)}}else if(jQuery.isFunction(selector)){return rootjQuery.ready(selector)}if(selector.selector!==undefined){this.selector=selector.selector;this.context=selector.context}return jQuery.makeArray(selector,this)},selector:"",jquery:"1.8.3",length:0,size:function(){return this.length},toArray:function(){return core_slice.call(this)},get:function(num){return num==null?this.toArray():num<0?this[this.length+num]:this[num]},pushStack:function(elems,name,selector){var ret=jQuery.merge(this.constructor(),elems);ret.prevObject=this;ret.context=this.context;if(name==="find"){ret.selector=this.selector+(this.selector?" ":"")+selector}else if(name){ret.selector=this.selector+"."+name+"("+selector+")"}return ret},each:function(callback,args){return jQuery.each(this,callback,args)},ready:function(fn){jQuery.ready.promise().done(fn);return this},eq:function(i){i=+i;return i===-1?this.slice(i):this.slice(i,i+1)},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},slice:function(){return this.pushStack(core_slice.apply(this,arguments),"slice",core_slice.call(arguments).join(","))},map:function(callback){return this.pushStack(jQuery.map(this,function(elem,i){return callback.call(elem,i,elem)}))},end:function(){return this.prevObject||this.constructor(null)},push:core_push,sort:[].sort,splice:[].splice};jQuery.fn.init.prototype=jQuery.fn;jQuery.extend=jQuery.fn.extend=function(){var options,name,src,copy,copyIsArray,clone,target=arguments[0]||{},i=1,length=arguments.length,deep=false;if(typeof target==="boolean"){deep=target;target=arguments[1]||{};i=2}if(typeof target!=="object"&&!jQuery.isFunction(target)){target={}}if(length===i){target=this;--i}for(;i0){return}readyList.resolveWith(document,[jQuery]);if(jQuery.fn.trigger){jQuery(document).trigger("ready").off("ready")}},isFunction:function(obj){return jQuery.type(obj)==="function"},isArray:Array.isArray||function(obj){return jQuery.type(obj)==="array"},isWindow:function(obj){return obj!=null&&obj==obj.window},isNumeric:function(obj){return!isNaN(parseFloat(obj))&&isFinite(obj)},type:function(obj){return obj==null?String(obj):class2type[core_toString.call(obj)]||"object"},isPlainObject:function(obj){if(!obj||jQuery.type(obj)!=="object"||obj.nodeType||jQuery.isWindow(obj)){return false}try{if(obj.constructor&&!core_hasOwn.call(obj,"constructor")&&!core_hasOwn.call(obj.constructor.prototype,"isPrototypeOf")){return false}}catch(e){return false}var key;for(key in obj){}return key===undefined||core_hasOwn.call(obj,key)},isEmptyObject:function(obj){var name;for(name in obj){return false}return true},error:function(msg){throw new Error(msg)},parseHTML:function(data,context,scripts){var parsed;if(!data||typeof data!=="string"){return null}if(typeof context==="boolean"){scripts=context;context=0}context=context||document;if(parsed=rsingleTag.exec(data)){return[context.createElement(parsed[1])]}parsed=jQuery.buildFragment([data],context,scripts?null:[]);return jQuery.merge([],(parsed.cacheable?jQuery.clone(parsed.fragment):parsed.fragment).childNodes)},parseJSON:function(data){if(!data||typeof data!=="string"){return null}data=jQuery.trim(data);if(window.JSON&&window.JSON.parse){return window.JSON.parse(data)}if(rvalidchars.test(data.replace(rvalidescape,"@").replace(rvalidtokens,"]").replace(rvalidbraces,""))){return new Function("return "+data)()}jQuery.error("Invalid JSON: "+data)},parseXML:function(data){var xml,tmp;if(!data||typeof data!=="string"){return null}try{if(window.DOMParser){tmp=new DOMParser;xml=tmp.parseFromString(data,"text/xml")}else{xml=new ActiveXObject("Microsoft.XMLDOM");xml.async="false";xml.loadXML(data)}}catch(e){xml=undefined}if(!xml||!xml.documentElement||xml.getElementsByTagName("parsererror").length){jQuery.error("Invalid XML: "+data)}return xml},noop:function(){},globalEval:function(data){if(data&&core_rnotwhite.test(data)){(window.execScript||function(data){window["eval"].call(window,data)})(data)}},camelCase:function(string){return string.replace(rmsPrefix,"ms-").replace(rdashAlpha,fcamelCase)},nodeName:function(elem,name){return elem.nodeName&&elem.nodeName.toLowerCase()===name.toLowerCase()},each:function(obj,callback,args){var name,i=0,length=obj.length,isObj=length===undefined||jQuery.isFunction(obj);if(args){if(isObj){for(name in obj){if(callback.apply(obj[name],args)===false){break}}}else{for(;i0&&elems[0]&&elems[length-1]||length===0||jQuery.isArray(elems));if(isArray){for(;i-1){list.splice(index,1);if(firing){if(index<=firingLength){firingLength--}if(index<=firingIndex){firingIndex--}}}})}return this},has:function(fn){return jQuery.inArray(fn,list)>-1},empty:function(){list=[];return this},disable:function(){list=stack=memory=undefined;return this},disabled:function(){return!list},lock:function(){stack=undefined;if(!memory){self.disable()}return this},locked:function(){return!stack},fireWith:function(context,args){args=args||[];args=[context,args.slice?args.slice():args];if(list&&(!fired||stack)){if(firing){stack.push(args)}else{fire(args)}}return this},fire:function(){self.fireWith(this,arguments);return this},fired:function(){return!!fired}};return self};jQuery.extend({Deferred:function(func){var tuples=[["resolve","done",jQuery.Callbacks("once memory"),"resolved"],["reject","fail",jQuery.Callbacks("once memory"),"rejected"],["notify","progress",jQuery.Callbacks("memory")]],state="pending",promise={state:function(){return state},always:function(){deferred.done(arguments).fail(arguments);return this},then:function(){var fns=arguments;return jQuery.Deferred(function(newDefer){jQuery.each(tuples,function(i,tuple){var action=tuple[0],fn=fns[i];deferred[tuple[1]](jQuery.isFunction(fn)?function(){var returned=fn.apply(this,arguments);if(returned&&jQuery.isFunction(returned.promise)){returned.promise().done(newDefer.resolve).fail(newDefer.reject).progress(newDefer.notify)}else{newDefer[action+"With"](this===deferred?newDefer:this,[returned])}}:newDefer[action])});fns=null}).promise()},promise:function(obj){return obj!=null?jQuery.extend(obj,promise):promise}},deferred={};promise.pipe=promise.then;jQuery.each(tuples,function(i,tuple){var list=tuple[2],stateString=tuple[3];promise[tuple[1]]=list.add;if(stateString){list.add(function(){state=stateString},tuples[i^1][2].disable,tuples[2][2].lock)}deferred[tuple[0]]=list.fire;deferred[tuple[0]+"With"]=list.fireWith});promise.promise(deferred);if(func){func.call(deferred,deferred)}return deferred},when:function(subordinate){var i=0,resolveValues=core_slice.call(arguments),length=resolveValues.length,remaining=length!==1||subordinate&&jQuery.isFunction(subordinate.promise)?length:0,deferred=remaining===1?subordinate:jQuery.Deferred(),updateFunc=function(i,contexts,values){return function(value){contexts[i]=this;values[i]=arguments.length>1?core_slice.call(arguments):value;if(values===progressValues){deferred.notifyWith(contexts,values)}else if(!--remaining){deferred.resolveWith(contexts,values)}}},progressValues,progressContexts,resolveContexts;if(length>1){progressValues=new Array(length);progressContexts=new Array(length);resolveContexts=new Array(length);for(;i
      a";all=div.getElementsByTagName("*");a=div.getElementsByTagName("a")[0];if(!all||!a||!all.length){return{}}select=document.createElement("select");opt=select.appendChild(document.createElement("option"));input=div.getElementsByTagName("input")[0];a.style.cssText="top:1px;float:left;opacity:.5";support={leadingWhitespace:div.firstChild.nodeType===3,tbody:!div.getElementsByTagName("tbody").length,htmlSerialize:!!div.getElementsByTagName("link").length,style:/top/.test(a.getAttribute("style")),hrefNormalized:a.getAttribute("href")==="/a",opacity:/^0.5/.test(a.style.opacity),cssFloat:!!a.style.cssFloat,checkOn:input.value==="on",optSelected:opt.selected,getSetAttribute:div.className!=="t",enctype:!!document.createElement("form").enctype,html5Clone:document.createElement("nav").cloneNode(true).outerHTML!=="<:nav>",boxModel:document.compatMode==="CSS1Compat",submitBubbles:true,changeBubbles:true,focusinBubbles:false,deleteExpando:true,noCloneEvent:true,inlineBlockNeedsLayout:false,shrinkWrapBlocks:false,reliableMarginRight:true,boxSizingReliable:true,pixelPosition:false};input.checked=true;support.noCloneChecked=input.cloneNode(true).checked;select.disabled=true;support.optDisabled=!opt.disabled;try{delete div.test}catch(e){support.deleteExpando=false}if(!div.addEventListener&&div.attachEvent&&div.fireEvent){div.attachEvent("onclick",clickFn=function(){support.noCloneEvent=false});div.cloneNode(true).fireEvent("onclick");div.detachEvent("onclick",clickFn)}input=document.createElement("input");input.value="t";input.setAttribute("type","radio");support.radioValue=input.value==="t";input.setAttribute("checked","checked");input.setAttribute("name","t");div.appendChild(input);fragment=document.createDocumentFragment();fragment.appendChild(div.lastChild);support.checkClone=fragment.cloneNode(true).cloneNode(true).lastChild.checked;support.appendChecked=input.checked;fragment.removeChild(input);fragment.appendChild(div);if(div.attachEvent){for(i in{submit:true,change:true,focusin:true}){eventName="on"+i;isSupported=eventName in div;if(!isSupported){div.setAttribute(eventName,"return;");isSupported=typeof div[eventName]==="function"}support[i+"Bubbles"]=isSupported}}jQuery(function(){var container,div,tds,marginDiv,divReset="padding:0;margin:0;border:0;display:block;overflow:hidden;",body=document.getElementsByTagName("body")[0];if(!body){return}container=document.createElement("div");container.style.cssText="visibility:hidden;border:0;width:0;height:0;position:static;top:0;margin-top:1px";body.insertBefore(container,body.firstChild);div=document.createElement("div");container.appendChild(div);div.innerHTML="
      t
      ";tds=div.getElementsByTagName("td");tds[0].style.cssText="padding:0;margin:0;border:0;display:none";isSupported=tds[0].offsetHeight===0;tds[0].style.display="";tds[1].style.display="none";support.reliableHiddenOffsets=isSupported&&tds[0].offsetHeight===0;div.innerHTML="";div.style.cssText="box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;padding:1px;border:1px;display:block;width:4px;margin-top:1%;position:absolute;top:1%;";support.boxSizing=div.offsetWidth===4;support.doesNotIncludeMarginInBodyOffset=body.offsetTop!==1;if(window.getComputedStyle){support.pixelPosition=(window.getComputedStyle(div,null)||{}).top!=="1%";support.boxSizingReliable=(window.getComputedStyle(div,null)||{width:"4px"}).width==="4px";marginDiv=document.createElement("div");marginDiv.style.cssText=div.style.cssText=divReset;marginDiv.style.marginRight=marginDiv.style.width="0";div.style.width="1px";div.appendChild(marginDiv);support.reliableMarginRight=!parseFloat((window.getComputedStyle(marginDiv,null)||{}).marginRight)}if(typeof div.style.zoom!=="undefined"){div.innerHTML="";div.style.cssText=divReset+"width:1px;padding:1px;display:inline;zoom:1";support.inlineBlockNeedsLayout=div.offsetWidth===3;div.style.display="block";div.style.overflow="visible";div.innerHTML="
      ";div.firstChild.style.width="5px";support.shrinkWrapBlocks=div.offsetWidth!==3;container.style.zoom=1}body.removeChild(container);container=div=tds=marginDiv=null});fragment.removeChild(div);all=a=select=opt=input=fragment=div=null;return support}();var rbrace=/(?:\{[\s\S]*\}|\[[\s\S]*\])$/,rmultiDash=/([A-Z])/g;jQuery.extend({cache:{},deletedIds:[],uuid:0,expando:"jQuery"+(jQuery.fn.jquery+Math.random()).replace(/\D/g,""),noData:{embed:true,object:"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000",applet:true},hasData:function(elem){elem=elem.nodeType?jQuery.cache[elem[jQuery.expando]]:elem[jQuery.expando];return!!elem&&!isEmptyDataObject(elem)},data:function(elem,name,data,pvt){if(!jQuery.acceptData(elem)){return}var thisCache,ret,internalKey=jQuery.expando,getByName=typeof name==="string",isNode=elem.nodeType,cache=isNode?jQuery.cache:elem,id=isNode?elem[internalKey]:elem[internalKey]&&internalKey;if((!id||!cache[id]||!pvt&&!cache[id].data)&&getByName&&data===undefined){return}if(!id){if(isNode){elem[internalKey]=id=jQuery.deletedIds.pop()||jQuery.guid++}else{id=internalKey}}if(!cache[id]){cache[id]={};if(!isNode){cache[id].toJSON=jQuery.noop}}if(typeof name==="object"||typeof name==="function"){if(pvt){cache[id]=jQuery.extend(cache[id],name)}else{cache[id].data=jQuery.extend(cache[id].data,name)}}thisCache=cache[id];if(!pvt){if(!thisCache.data){thisCache.data={}}thisCache=thisCache.data}if(data!==undefined){thisCache[jQuery.camelCase(name)]=data}if(getByName){ret=thisCache[name];if(ret==null){ret=thisCache[jQuery.camelCase(name)]}}else{ret=thisCache}return ret},removeData:function(elem,name,pvt){if(!jQuery.acceptData(elem)){return}var thisCache,i,l,isNode=elem.nodeType,cache=isNode?jQuery.cache:elem,id=isNode?elem[jQuery.expando]:jQuery.expando;if(!cache[id]){return}if(name){thisCache=pvt?cache[id]:cache[id].data;if(thisCache){if(!jQuery.isArray(name)){if(name in thisCache){name=[name]}else{name=jQuery.camelCase(name);if(name in thisCache){name=[name]}else{name=name.split(" ")}}}for(i=0,l=name.length;i1,null,false)},removeData:function(key){return this.each(function(){jQuery.removeData(this,key)})}});function dataAttr(elem,key,data){if(data===undefined&&elem.nodeType===1){var name="data-"+key.replace(rmultiDash,"-$1").toLowerCase();data=elem.getAttribute(name);if(typeof data==="string"){try{data=data==="true"?true:data==="false"?false:data==="null"?null:+data+""===data?+data:rbrace.test(data)?jQuery.parseJSON(data):data}catch(e){}jQuery.data(elem,key,data)}else{data=undefined}}return data}function isEmptyDataObject(obj){var name;for(name in obj){if(name==="data"&&jQuery.isEmptyObject(obj[name])){continue}if(name!=="toJSON"){return false}}return true}jQuery.extend({queue:function(elem,type,data){var queue;if(elem){type=(type||"fx")+"queue";queue=jQuery._data(elem,type);if(data){if(!queue||jQuery.isArray(data)){queue=jQuery._data(elem,type,jQuery.makeArray(data))}else{queue.push(data)}}return queue||[]}},dequeue:function(elem,type){type=type||"fx";var queue=jQuery.queue(elem,type),startLength=queue.length,fn=queue.shift(),hooks=jQuery._queueHooks(elem,type),next=function(){jQuery.dequeue(elem,type)};if(fn==="inprogress"){fn=queue.shift();startLength--}if(fn){if(type==="fx"){queue.unshift("inprogress")}delete hooks.stop;fn.call(elem,next,hooks)}if(!startLength&&hooks){hooks.empty.fire()}},_queueHooks:function(elem,type){var key=type+"queueHooks";return jQuery._data(elem,key)||jQuery._data(elem,key,{empty:jQuery.Callbacks("once memory").add(function(){jQuery.removeData(elem,type+"queue",true);jQuery.removeData(elem,key,true)})})}});jQuery.fn.extend({queue:function(type,data){var setter=2;if(typeof type!=="string"){data=type;type="fx";setter--}if(arguments.length1)},removeAttr:function(name){return this.each(function(){jQuery.removeAttr(this,name)})},prop:function(name,value){return jQuery.access(this,jQuery.prop,name,value,arguments.length>1)},removeProp:function(name){name=jQuery.propFix[name]||name;return this.each(function(){try{this[name]=undefined;delete this[name]}catch(e){}})},addClass:function(value){var classNames,i,l,elem,setClass,c,cl;if(jQuery.isFunction(value)){return this.each(function(j){jQuery(this).addClass(value.call(this,j,this.className))})}if(value&&typeof value==="string"){classNames=value.split(core_rspace);for(i=0,l=this.length;i=0){className=className.replace(" "+removes[c]+" "," ")}}elem.className=value?jQuery.trim(className):""}}}return this},toggleClass:function(value,stateVal){var type=typeof value,isBool=typeof stateVal==="boolean";if(jQuery.isFunction(value)){return this.each(function(i){jQuery(this).toggleClass(value.call(this,i,this.className,stateVal),stateVal)})}return this.each(function(){if(type==="string"){var className,i=0,self=jQuery(this),state=stateVal,classNames=value.split(core_rspace);while(className=classNames[i++]){state=isBool?state:!self.hasClass(className);self[state?"addClass":"removeClass"](className)}}else if(type==="undefined"||type==="boolean"){if(this.className){jQuery._data(this,"__className__",this.className)}this.className=this.className||value===false?"":jQuery._data(this,"__className__")||""}})},hasClass:function(selector){var className=" "+selector+" ",i=0,l=this.length;for(;i=0){return true}}return false},val:function(value){var hooks,ret,isFunction,elem=this[0];if(!arguments.length){if(elem){hooks=jQuery.valHooks[elem.type]||jQuery.valHooks[elem.nodeName.toLowerCase()];if(hooks&&"get"in hooks&&(ret=hooks.get(elem,"value"))!==undefined){return ret}ret=elem.value;return typeof ret==="string"?ret.replace(rreturn,""):ret==null?"":ret}return}isFunction=jQuery.isFunction(value);return this.each(function(i){var val,self=jQuery(this);if(this.nodeType!==1){return}if(isFunction){val=value.call(this,i,self.val())}else{val=value}if(val==null){val=""}else if(typeof val==="number"){val+=""}else if(jQuery.isArray(val)){val=jQuery.map(val,function(value){return value==null?"":value+""})}hooks=jQuery.valHooks[this.type]||jQuery.valHooks[this.nodeName.toLowerCase()];if(!hooks||!("set"in hooks)||hooks.set(this,val,"value")===undefined){this.value=val}})}});jQuery.extend({valHooks:{option:{get:function(elem){var val=elem.attributes.value;return!val||val.specified?elem.value:elem.text}},select:{get:function(elem){var value,option,options=elem.options,index=elem.selectedIndex,one=elem.type==="select-one"||index<0,values=one?null:[],max=one?index+1:options.length,i=index<0?max:one?index:0;for(;i=0});if(!values.length){elem.selectedIndex=-1}return values}}},attrFn:{},attr:function(elem,name,value,pass){var ret,hooks,notxml,nType=elem.nodeType;if(!elem||nType===3||nType===8||nType===2){return}if(pass&&jQuery.isFunction(jQuery.fn[name])){return jQuery(elem)[name](value)}if(typeof elem.getAttribute==="undefined"){return jQuery.prop(elem,name,value)}notxml=nType!==1||!jQuery.isXMLDoc(elem);if(notxml){name=name.toLowerCase();hooks=jQuery.attrHooks[name]||(rboolean.test(name)?boolHook:nodeHook)}if(value!==undefined){if(value===null){jQuery.removeAttr(elem,name);return}else if(hooks&&"set"in hooks&¬xml&&(ret=hooks.set(elem,value,name))!==undefined){return ret}else{elem.setAttribute(name,value+"");return value}}else if(hooks&&"get"in hooks&¬xml&&(ret=hooks.get(elem,name))!==null){return ret}else{ret=elem.getAttribute(name);return ret===null?undefined:ret}},removeAttr:function(elem,value){var propName,attrNames,name,isBool,i=0;if(value&&elem.nodeType===1){attrNames=value.split(core_rspace);for(;i=0}}})});var rformElems=/^(?:textarea|input|select)$/i,rtypenamespace=/^([^\.]*|)(?:\.(.+)|)$/,rhoverHack=/(?:^|\s)hover(\.\S+|)\b/,rkeyEvent=/^key/,rmouseEvent=/^(?:mouse|contextmenu)|click/,rfocusMorph=/^(?:focusinfocus|focusoutblur)$/,hoverHack=function(events){return jQuery.event.special.hover?events:events.replace(rhoverHack,"mouseenter$1 mouseleave$1")};jQuery.event={add:function(elem,types,handler,data,selector){var elemData,eventHandle,events,t,tns,type,namespaces,handleObj,handleObjIn,handlers,special;if(elem.nodeType===3||elem.nodeType===8||!types||!handler||!(elemData=jQuery._data(elem))){return}if(handler.handler){handleObjIn=handler;handler=handleObjIn.handler;selector=handleObjIn.selector}if(!handler.guid){handler.guid=jQuery.guid++}events=elemData.events;if(!events){elemData.events=events={}}eventHandle=elemData.handle;if(!eventHandle){elemData.handle=eventHandle=function(e){return typeof jQuery!=="undefined"&&(!e||jQuery.event.triggered!==e.type)?jQuery.event.dispatch.apply(eventHandle.elem,arguments):undefined};eventHandle.elem=elem}types=jQuery.trim(hoverHack(types)).split(" ");for(t=0;t=0){type=type.slice(0,-1);exclusive=true}if(type.indexOf(".")>=0){namespaces=type.split(".");type=namespaces.shift();namespaces.sort()}if((!elem||jQuery.event.customEvent[type])&&!jQuery.event.global[type]){return}event=typeof event==="object"?event[jQuery.expando]?event:new jQuery.Event(type,event):new jQuery.Event(type);event.type=type;event.isTrigger=true;event.exclusive=exclusive;event.namespace=namespaces.join(".");event.namespace_re=event.namespace?new RegExp("(^|\\.)"+namespaces.join("\\.(?:.*\\.|)")+"(\\.|$)"):null;ontype=type.indexOf(":")<0?"on"+type:"";if(!elem){cache=jQuery.cache;for(i in cache){if(cache[i].events&&cache[i].events[type]){jQuery.event.trigger(event,data,cache[i].handle.elem,true)}}return}event.result=undefined;if(!event.target){event.target=elem}data=data!=null?jQuery.makeArray(data):[];data.unshift(event);special=jQuery.event.special[type]||{};if(special.trigger&&special.trigger.apply(elem,data)===false){return}eventPath=[[elem,special.bindType||type]];if(!onlyHandlers&&!special.noBubble&&!jQuery.isWindow(elem)){bubbleType=special.delegateType||type;cur=rfocusMorph.test(bubbleType+type)?elem:elem.parentNode;for(old=elem;cur;cur=cur.parentNode){eventPath.push([cur,bubbleType]);old=cur}if(old===(elem.ownerDocument||document)){eventPath.push([old.defaultView||old.parentWindow||window,bubbleType])}}for(i=0;i=0:jQuery.find(sel,this,null,[cur]).length}if(selMatch[sel]){matches.push(handleObj)}}if(matches.length){handlerQueue.push({elem:cur,matches:matches})}}}}if(handlers.length>delegateCount){handlerQueue.push({elem:this,matches:handlers.slice(delegateCount)})}for(i=0;i0?this.on(name,null,data,fn):this.trigger(name)};if(rkeyEvent.test(name)){jQuery.event.fixHooks[name]=jQuery.event.keyHooks}if(rmouseEvent.test(name)){jQuery.event.fixHooks[name]=jQuery.event.mouseHooks}});(function(window,undefined){var cachedruns,assertGetIdNotName,Expr,getText,isXML,contains,compile,sortOrder,hasDuplicate,outermostContext,baseHasDuplicate=true,strundefined="undefined",expando=("sizcache"+Math.random()).replace(".",""),Token=String,document=window.document,docElem=document.documentElement,dirruns=0,done=0,pop=[].pop,push=[].push,slice=[].slice,indexOf=[].indexOf||function(elem){var i=0,len=this.length;for(;iExpr.cacheLength){delete cache[keys.shift()]}return cache[key+" "]=value},cache)},classCache=createCache(),tokenCache=createCache(),compilerCache=createCache(),whitespace="[\\x20\\t\\r\\n\\f]",characterEncoding="(?:\\\\.|[-\\w]|[^\\x00-\\xa0])+",identifier=characterEncoding.replace("w","w#"),operators="([*^$|!~]?=)",attributes="\\["+whitespace+"*("+characterEncoding+")"+whitespace+"*(?:"+operators+whitespace+"*(?:(['\"])((?:\\\\.|[^\\\\])*?)\\3|("+identifier+")|)|)"+whitespace+"*\\]",pseudos=":("+characterEncoding+")(?:\\((?:(['\"])((?:\\\\.|[^\\\\])*?)\\2|([^()[\\]]*|(?:(?:"+attributes+")|[^:]|\\\\.)*|.*))\\)|)",pos=":(even|odd|eq|gt|lt|nth|first|last)(?:\\("+whitespace+"*((?:-\\d)?\\d*)"+whitespace+"*\\)|)(?=[^-]|$)",rtrim=new RegExp("^"+whitespace+"+|((?:^|[^\\\\])(?:\\\\.)*)"+whitespace+"+$","g"),rcomma=new RegExp("^"+whitespace+"*,"+whitespace+"*"),rcombinators=new RegExp("^"+whitespace+"*([\\x20\\t\\r\\n\\f>+~])"+whitespace+"*"),rpseudo=new RegExp(pseudos),rquickExpr=/^(?:#([\w\-]+)|(\w+)|\.([\w\-]+))$/,rnot=/^:not/,rsibling=/[\x20\t\r\n\f]*[+~]/,rendsWithNot=/:not\($/,rheader=/h\d/i,rinputs=/input|select|textarea|button/i,rbackslash=/\\(?!\\)/g,matchExpr={ID:new RegExp("^#("+characterEncoding+")"),CLASS:new RegExp("^\\.("+characterEncoding+")"),NAME:new RegExp("^\\[name=['\"]?("+characterEncoding+")['\"]?\\]"),TAG:new RegExp("^("+characterEncoding.replace("w","w*")+")"),ATTR:new RegExp("^"+attributes),PSEUDO:new RegExp("^"+pseudos),POS:new RegExp(pos,"i"),CHILD:new RegExp("^:(only|nth|first|last)-child(?:\\("+whitespace+"*(even|odd|(([+-]|)(\\d*)n|)"+whitespace+"*(?:([+-]|)"+whitespace+"*(\\d+)|))"+whitespace+"*\\)|)","i"),needsContext:new RegExp("^"+whitespace+"*[>+~]|"+pos,"i")},assert=function(fn){var div=document.createElement("div");try{return fn(div)}catch(e){return false}finally{div=null}},assertTagNameNoComments=assert(function(div){div.appendChild(document.createComment(""));return!div.getElementsByTagName("*").length}),assertHrefNotNormalized=assert(function(div){div.innerHTML="";return div.firstChild&&typeof div.firstChild.getAttribute!==strundefined&&div.firstChild.getAttribute("href")==="#"}),assertAttributes=assert(function(div){div.innerHTML="";var type=typeof div.lastChild.getAttribute("multiple");return type!=="boolean"&&type!=="string"}),assertUsableClassName=assert(function(div){div.innerHTML="";if(!div.getElementsByClassName||!div.getElementsByClassName("e").length){return false}div.lastChild.className="e";return div.getElementsByClassName("e").length===2}),assertUsableName=assert(function(div){div.id=expando+0;div.innerHTML="
      ";docElem.insertBefore(div,docElem.firstChild);var pass=document.getElementsByName&&document.getElementsByName(expando).length===2+document.getElementsByName(expando+0).length;assertGetIdNotName=!document.getElementById(expando);docElem.removeChild(div);return pass});try{slice.call(docElem.childNodes,0)[0].nodeType}catch(e){slice=function(i){var elem,results=[];for(;elem=this[i];i++){results.push(elem)}return results}}function Sizzle(selector,context,results,seed){results=results||[];context=context||document;var match,elem,xml,m,nodeType=context.nodeType;if(!selector||typeof selector!=="string"){return results}if(nodeType!==1&&nodeType!==9){return[]}xml=isXML(context);if(!xml&&!seed){if(match=rquickExpr.exec(selector)){if(m=match[1]){if(nodeType===9){elem=context.getElementById(m);if(elem&&elem.parentNode){if(elem.id===m){results.push(elem);return results}}else{return results}}else{if(context.ownerDocument&&(elem=context.ownerDocument.getElementById(m))&&contains(context,elem)&&elem.id===m){results.push(elem);return results}}}else if(match[2]){push.apply(results,slice.call(context.getElementsByTagName(selector),0));return results}else if((m=match[3])&&assertUsableClassName&&context.getElementsByClassName){push.apply(results,slice.call(context.getElementsByClassName(m),0));return results}}}return select(selector.replace(rtrim,"$1"),context,results,seed,xml)}Sizzle.matches=function(expr,elements){return Sizzle(expr,null,null,elements)};Sizzle.matchesSelector=function(elem,expr){return Sizzle(expr,null,null,[elem]).length>0};function createInputPseudo(type){return function(elem){var name=elem.nodeName.toLowerCase();return name==="input"&&elem.type===type}}function createButtonPseudo(type){return function(elem){var name=elem.nodeName.toLowerCase();return(name==="input"||name==="button")&&elem.type===type}}function createPositionalPseudo(fn){return markFunction(function(argument){argument=+argument;return markFunction(function(seed,matches){var j,matchIndexes=fn([],seed.length,argument),i=matchIndexes.length;while(i--){if(seed[j=matchIndexes[i]]){seed[j]=!(matches[j]=seed[j])}}})})}getText=Sizzle.getText=function(elem){var node,ret="",i=0,nodeType=elem.nodeType;if(nodeType){if(nodeType===1||nodeType===9||nodeType===11){if(typeof elem.textContent==="string"){return elem.textContent}else{for(elem=elem.firstChild;elem;elem=elem.nextSibling){ret+=getText(elem)}}}else if(nodeType===3||nodeType===4){return elem.nodeValue}}else{for(;node=elem[i];i++){ret+=getText(node)}}return ret};isXML=Sizzle.isXML=function(elem){var documentElement=elem&&(elem.ownerDocument||elem).documentElement;return documentElement?documentElement.nodeName!=="HTML":false};contains=Sizzle.contains=docElem.contains?function(a,b){var adown=a.nodeType===9?a.documentElement:a,bup=b&&b.parentNode;return a===bup||!!(bup&&bup.nodeType===1&&adown.contains&&adown.contains(bup))}:docElem.compareDocumentPosition?function(a,b){return b&&!!(a.compareDocumentPosition(b)&16)}:function(a,b){while(b=b.parentNode){if(b===a){return true}}return false};Sizzle.attr=function(elem,name){var val,xml=isXML(elem);if(!xml){name=name.toLowerCase()}if(val=Expr.attrHandle[name]){return val(elem)}if(xml||assertAttributes){return elem.getAttribute(name)}val=elem.getAttributeNode(name);return val?typeof elem[name]==="boolean"?elem[name]?name:null:val.specified?val.value:null:null};Expr=Sizzle.selectors={cacheLength:50,createPseudo:markFunction,match:matchExpr,attrHandle:assertHrefNotNormalized?{}:{href:function(elem){return elem.getAttribute("href",2)},type:function(elem){return elem.getAttribute("type")}},find:{ID:assertGetIdNotName?function(id,context,xml){if(typeof context.getElementById!==strundefined&&!xml){var m=context.getElementById(id);return m&&m.parentNode?[m]:[]}}:function(id,context,xml){if(typeof context.getElementById!==strundefined&&!xml){var m=context.getElementById(id);return m?m.id===id||typeof m.getAttributeNode!==strundefined&&m.getAttributeNode("id").value===id?[m]:undefined:[]}},TAG:assertTagNameNoComments?function(tag,context){if(typeof context.getElementsByTagName!==strundefined){return context.getElementsByTagName(tag)}}:function(tag,context){var results=context.getElementsByTagName(tag);if(tag==="*"){var elem,tmp=[],i=0;for(;elem=results[i];i++){if(elem.nodeType===1){tmp.push(elem)}}return tmp}return results},NAME:assertUsableName&&function(tag,context){if(typeof context.getElementsByName!==strundefined){return context.getElementsByName(name)}},CLASS:assertUsableClassName&&function(className,context,xml){if(typeof context.getElementsByClassName!==strundefined&&!xml){return context.getElementsByClassName(className)}}},relative:{">":{dir:"parentNode",first:true}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:true},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(match){match[1]=match[1].replace(rbackslash,"");match[3]=(match[4]||match[5]||"").replace(rbackslash,"");if(match[2]==="~="){match[3]=" "+match[3]+" "}return match.slice(0,4)},CHILD:function(match){match[1]=match[1].toLowerCase();if(match[1]==="nth"){if(!match[2]){Sizzle.error(match[0])}match[3]=+(match[3]?match[4]+(match[5]||1):2*(match[2]==="even"||match[2]==="odd"));match[4]=+(match[6]+match[7]||match[2]==="odd")}else if(match[2]){Sizzle.error(match[0])}return match},PSEUDO:function(match){var unquoted,excess;if(matchExpr["CHILD"].test(match[0])){return null}if(match[3]){match[2]=match[3]}else if(unquoted=match[4]){if(rpseudo.test(unquoted)&&(excess=tokenize(unquoted,true))&&(excess=unquoted.indexOf(")",unquoted.length-excess)-unquoted.length)){unquoted=unquoted.slice(0,excess);match[0]=match[0].slice(0,excess)}match[2]=unquoted}return match.slice(0,3)}},filter:{ID:assertGetIdNotName?function(id){id=id.replace(rbackslash,"");return function(elem){return elem.getAttribute("id")===id}}:function(id){id=id.replace(rbackslash,"");return function(elem){var node=typeof elem.getAttributeNode!==strundefined&&elem.getAttributeNode("id");return node&&node.value===id}},TAG:function(nodeName){if(nodeName==="*"){return function(){return true}}nodeName=nodeName.replace(rbackslash,"").toLowerCase();return function(elem){return elem.nodeName&&elem.nodeName.toLowerCase()===nodeName}},CLASS:function(className){var pattern=classCache[expando][className+" "];return pattern||(pattern=new RegExp("(^|"+whitespace+")"+className+"("+whitespace+"|$)"))&&classCache(className,function(elem){return pattern.test(elem.className||typeof elem.getAttribute!==strundefined&&elem.getAttribute("class")||"")})},ATTR:function(name,operator,check){return function(elem,context){var result=Sizzle.attr(elem,name);if(result==null){return operator==="!="}if(!operator){return true}result+="";return operator==="="?result===check:operator==="!="?result!==check:operator==="^="?check&&result.indexOf(check)===0:operator==="*="?check&&result.indexOf(check)>-1:operator==="$="?check&&result.substr(result.length-check.length)===check:operator==="~="?(" "+result+" ").indexOf(check)>-1:operator==="|="?result===check||result.substr(0,check.length+1)===check+"-":false}},CHILD:function(type,argument,first,last){if(type==="nth"){return function(elem){var node,diff,parent=elem.parentNode;if(first===1&&last===0){return true}if(parent){diff=0;for(node=parent.firstChild;node;node=node.nextSibling){if(node.nodeType===1){diff++; +if(elem===node){break}}}}diff-=last;return diff===first||diff%first===0&&diff/first>=0}}return function(elem){var node=elem;switch(type){case"only":case"first":while(node=node.previousSibling){if(node.nodeType===1){return false}}if(type==="first"){return true}node=elem;case"last":while(node=node.nextSibling){if(node.nodeType===1){return false}}return true}}},PSEUDO:function(pseudo,argument){var args,fn=Expr.pseudos[pseudo]||Expr.setFilters[pseudo.toLowerCase()]||Sizzle.error("unsupported pseudo: "+pseudo);if(fn[expando]){return fn(argument)}if(fn.length>1){args=[pseudo,pseudo,"",argument];return Expr.setFilters.hasOwnProperty(pseudo.toLowerCase())?markFunction(function(seed,matches){var idx,matched=fn(seed,argument),i=matched.length;while(i--){idx=indexOf.call(seed,matched[i]);seed[idx]=!(matches[idx]=matched[i])}}):function(elem){return fn(elem,0,args)}}return fn}},pseudos:{not:markFunction(function(selector){var input=[],results=[],matcher=compile(selector.replace(rtrim,"$1"));return matcher[expando]?markFunction(function(seed,matches,context,xml){var elem,unmatched=matcher(seed,null,xml,[]),i=seed.length;while(i--){if(elem=unmatched[i]){seed[i]=!(matches[i]=elem)}}}):function(elem,context,xml){input[0]=elem;matcher(input,null,xml,results);return!results.pop()}}),has:markFunction(function(selector){return function(elem){return Sizzle(selector,elem).length>0}}),contains:markFunction(function(text){return function(elem){return(elem.textContent||elem.innerText||getText(elem)).indexOf(text)>-1}}),enabled:function(elem){return elem.disabled===false},disabled:function(elem){return elem.disabled===true},checked:function(elem){var nodeName=elem.nodeName.toLowerCase();return nodeName==="input"&&!!elem.checked||nodeName==="option"&&!!elem.selected},selected:function(elem){if(elem.parentNode){elem.parentNode.selectedIndex}return elem.selected===true},parent:function(elem){return!Expr.pseudos["empty"](elem)},empty:function(elem){var nodeType;elem=elem.firstChild;while(elem){if(elem.nodeName>"@"||(nodeType=elem.nodeType)===3||nodeType===4){return false}elem=elem.nextSibling}return true},header:function(elem){return rheader.test(elem.nodeName)},text:function(elem){var type,attr;return elem.nodeName.toLowerCase()==="input"&&(type=elem.type)==="text"&&((attr=elem.getAttribute("type"))==null||attr.toLowerCase()===type)},radio:createInputPseudo("radio"),checkbox:createInputPseudo("checkbox"),file:createInputPseudo("file"),password:createInputPseudo("password"),image:createInputPseudo("image"),submit:createButtonPseudo("submit"),reset:createButtonPseudo("reset"),button:function(elem){var name=elem.nodeName.toLowerCase();return name==="input"&&elem.type==="button"||name==="button"},input:function(elem){return rinputs.test(elem.nodeName)},focus:function(elem){var doc=elem.ownerDocument;return elem===doc.activeElement&&(!doc.hasFocus||doc.hasFocus())&&!!(elem.type||elem.href||~elem.tabIndex)},active:function(elem){return elem===elem.ownerDocument.activeElement},first:createPositionalPseudo(function(){return[0]}),last:createPositionalPseudo(function(matchIndexes,length){return[length-1]}),eq:createPositionalPseudo(function(matchIndexes,length,argument){return[argument<0?argument+length:argument]}),even:createPositionalPseudo(function(matchIndexes,length){for(var i=0;i=0;){matchIndexes.push(i)}return matchIndexes}),gt:createPositionalPseudo(function(matchIndexes,length,argument){for(var i=argument<0?argument+length:argument;++i1?function(elem,context,xml){var i=matchers.length;while(i--){if(!matchers[i](elem,context,xml)){return false}}return true}:matchers[0]}function condense(unmatched,map,filter,context,xml){var elem,newUnmatched=[],i=0,len=unmatched.length,mapped=map!=null;for(;i-1){seed[temp]=!(results[temp]=elem)}}}}else{matcherOut=condense(matcherOut===results?matcherOut.splice(preexisting,matcherOut.length):matcherOut);if(postFinder){postFinder(null,results,matcherOut,xml)}else{push.apply(results,matcherOut)}}})}function matcherFromTokens(tokens){var checkContext,matcher,j,len=tokens.length,leadingRelative=Expr.relative[tokens[0].type],implicitRelative=leadingRelative||Expr.relative[" "],i=leadingRelative?1:0,matchContext=addCombinator(function(elem){return elem===checkContext},implicitRelative,true),matchAnyContext=addCombinator(function(elem){return indexOf.call(checkContext,elem)>-1},implicitRelative,true),matchers=[function(elem,context,xml){return!leadingRelative&&(xml||context!==outermostContext)||((checkContext=context).nodeType?matchContext(elem,context,xml):matchAnyContext(elem,context,xml))}];for(;i1&&elementMatcher(matchers),i>1&&tokens.slice(0,i-1).join("").replace(rtrim,"$1"),matcher,i0,byElement=elementMatchers.length>0,superMatcher=function(seed,context,xml,results,expandContext){var elem,j,matcher,setMatched=[],matchedCount=0,i="0",unmatched=seed&&[],outermost=expandContext!=null,contextBackup=outermostContext,elems=seed||byElement&&Expr.find["TAG"]("*",expandContext&&context.parentNode||context),dirrunsUnique=dirruns+=contextBackup==null?1:Math.E;if(outermost){outermostContext=context!==document&&context;cachedruns=superMatcher.el}for(;(elem=elems[i])!=null;i++){if(byElement&&elem){for(j=0;matcher=elementMatchers[j];j++){if(matcher(elem,context,xml)){results.push(elem);break}}if(outermost){dirruns=dirrunsUnique;cachedruns=++superMatcher.el}}if(bySet){if(elem=!matcher&&elem){matchedCount--}if(seed){unmatched.push(elem)}}}matchedCount+=i;if(bySet&&i!==matchedCount){for(j=0;matcher=setMatchers[j];j++){matcher(unmatched,setMatched,context,xml)}if(seed){if(matchedCount>0){while(i--){if(!(unmatched[i]||setMatched[i])){setMatched[i]=pop.call(results)}}}setMatched=condense(setMatched)}push.apply(results,setMatched);if(outermost&&!seed&&setMatched.length>0&&matchedCount+setMatchers.length>1){Sizzle.uniqueSort(results)}}if(outermost){dirruns=dirrunsUnique;outermostContext=contextBackup}return unmatched};superMatcher.el=0;return bySet?markFunction(superMatcher):superMatcher}compile=Sizzle.compile=function(selector,group){var i,setMatchers=[],elementMatchers=[],cached=compilerCache[expando][selector+" "];if(!cached){if(!group){group=tokenize(selector)}i=group.length;while(i--){cached=matcherFromTokens(group[i]);if(cached[expando]){setMatchers.push(cached)}else{elementMatchers.push(cached)}}cached=compilerCache(selector,matcherFromGroupMatchers(elementMatchers,setMatchers))}return cached};function multipleContexts(selector,contexts,results){var i=0,len=contexts.length;for(;i2&&(token=tokens[0]).type==="ID"&&context.nodeType===9&&!xml&&Expr.relative[tokens[1].type]){context=Expr.find["ID"](token.matches[0].replace(rbackslash,""),context,xml)[0];if(!context){return results}selector=selector.slice(tokens.shift().length)}for(i=matchExpr["POS"].test(selector)?-1:tokens.length-1;i>=0;i--){token=tokens[i];if(Expr.relative[type=token.type]){break}if(find=Expr.find[type]){if(seed=find(token.matches[0].replace(rbackslash,""),rsibling.test(tokens[0].type)&&context.parentNode||context,xml)){tokens.splice(i,1);selector=seed.length&&tokens.join("");if(!selector){push.apply(results,slice.call(seed,0));return results}break}}}}}compile(selector,match)(seed,context,xml,results,rsibling.test(selector));return results}if(document.querySelectorAll){(function(){var disconnectedMatch,oldSelect=select,rescape=/'|\\/g,rattributeQuotes=/\=[\x20\t\r\n\f]*([^'"\]]*)[\x20\t\r\n\f]*\]/g,rbuggyQSA=[":focus"],rbuggyMatches=[":active"],matches=docElem.matchesSelector||docElem.mozMatchesSelector||docElem.webkitMatchesSelector||docElem.oMatchesSelector||docElem.msMatchesSelector;assert(function(div){div.innerHTML="";if(!div.querySelectorAll("[selected]").length){rbuggyQSA.push("\\["+whitespace+"*(?:checked|disabled|ismap|multiple|readonly|selected|value)")}if(!div.querySelectorAll(":checked").length){rbuggyQSA.push(":checked")}});assert(function(div){div.innerHTML="

      ";if(div.querySelectorAll("[test^='']").length){rbuggyQSA.push("[*^$]="+whitespace+"*(?:\"\"|'')")}div.innerHTML="";if(!div.querySelectorAll(":enabled").length){rbuggyQSA.push(":enabled",":disabled")}});rbuggyQSA=new RegExp(rbuggyQSA.join("|"));select=function(selector,context,results,seed,xml){if(!seed&&!xml&&!rbuggyQSA.test(selector)){var groups,i,old=true,nid=expando,newContext=context,newSelector=context.nodeType===9&&selector;if(context.nodeType===1&&context.nodeName.toLowerCase()!=="object"){groups=tokenize(selector);if(old=context.getAttribute("id")){nid=old.replace(rescape,"\\$&")}else{context.setAttribute("id",nid)}nid="[id='"+nid+"'] ";i=groups.length;while(i--){groups[i]=nid+groups[i].join("")}newContext=rsibling.test(selector)&&context.parentNode||context;newSelector=groups.join(",")}if(newSelector){try{push.apply(results,slice.call(newContext.querySelectorAll(newSelector),0));return results}catch(qsaError){}finally{if(!old){context.removeAttribute("id")}}}}return oldSelect(selector,context,results,seed,xml)};if(matches){assert(function(div){disconnectedMatch=matches.call(div,"div");try{matches.call(div,"[test!='']:sizzle");rbuggyMatches.push("!=",pseudos)}catch(e){}});rbuggyMatches=new RegExp(rbuggyMatches.join("|"));Sizzle.matchesSelector=function(elem,expr){expr=expr.replace(rattributeQuotes,"='$1']");if(!isXML(elem)&&!rbuggyMatches.test(expr)&&!rbuggyQSA.test(expr)){try{var ret=matches.call(elem,expr);if(ret||disconnectedMatch||elem.document&&elem.document.nodeType!==11){return ret}}catch(e){}}return Sizzle(expr,null,null,[elem]).length>0}}})()}Expr.pseudos["nth"]=Expr.pseudos["eq"];function setFilters(){}Expr.filters=setFilters.prototype=Expr.pseudos;Expr.setFilters=new setFilters;Sizzle.attr=jQuery.attr;jQuery.find=Sizzle;jQuery.expr=Sizzle.selectors;jQuery.expr[":"]=jQuery.expr.pseudos;jQuery.unique=Sizzle.uniqueSort;jQuery.text=Sizzle.getText;jQuery.isXMLDoc=Sizzle.isXML;jQuery.contains=Sizzle.contains})(window);var runtil=/Until$/,rparentsprev=/^(?:parents|prev(?:Until|All))/,isSimple=/^.[^:#\[\.,]*$/,rneedsContext=jQuery.expr.match.needsContext,guaranteedUnique={children:true,contents:true,next:true,prev:true};jQuery.fn.extend({find:function(selector){var i,l,length,n,r,ret,self=this;if(typeof selector!=="string"){return jQuery(selector).filter(function(){for(i=0,l=self.length;i0){for(n=length;n=0:jQuery.filter(selector,this).length>0:this.filter(selector).length>0)},closest:function(selectors,context){var cur,i=0,l=this.length,ret=[],pos=rneedsContext.test(selectors)||typeof selectors!=="string"?jQuery(selectors,context||this.context):0;for(;i-1:jQuery.find.matchesSelector(cur,selectors)){ret.push(cur);break}cur=cur.parentNode}}ret=ret.length>1?jQuery.unique(ret):ret;return this.pushStack(ret,"closest",selectors)},index:function(elem){if(!elem){return this[0]&&this[0].parentNode?this.prevAll().length:-1}if(typeof elem==="string"){return jQuery.inArray(this[0],jQuery(elem))}return jQuery.inArray(elem.jquery?elem[0]:elem,this)},add:function(selector,context){var set=typeof selector==="string"?jQuery(selector,context):jQuery.makeArray(selector&&selector.nodeType?[selector]:selector),all=jQuery.merge(this.get(),set);return this.pushStack(isDisconnected(set[0])||isDisconnected(all[0])?all:jQuery.unique(all))},addBack:function(selector){return this.add(selector==null?this.prevObject:this.prevObject.filter(selector))}});jQuery.fn.andSelf=jQuery.fn.addBack;function isDisconnected(node){return!node||!node.parentNode||node.parentNode.nodeType===11}function sibling(cur,dir){do{cur=cur[dir]}while(cur&&cur.nodeType!==1);return cur}jQuery.each({parent:function(elem){var parent=elem.parentNode;return parent&&parent.nodeType!==11?parent:null},parents:function(elem){return jQuery.dir(elem,"parentNode")},parentsUntil:function(elem,i,until){return jQuery.dir(elem,"parentNode",until)},next:function(elem){return sibling(elem,"nextSibling")},prev:function(elem){return sibling(elem,"previousSibling")},nextAll:function(elem){return jQuery.dir(elem,"nextSibling")},prevAll:function(elem){return jQuery.dir(elem,"previousSibling")},nextUntil:function(elem,i,until){return jQuery.dir(elem,"nextSibling",until)},prevUntil:function(elem,i,until){return jQuery.dir(elem,"previousSibling",until)},siblings:function(elem){return jQuery.sibling((elem.parentNode||{}).firstChild,elem)},children:function(elem){return jQuery.sibling(elem.firstChild)},contents:function(elem){return jQuery.nodeName(elem,"iframe")?elem.contentDocument||elem.contentWindow.document:jQuery.merge([],elem.childNodes)}},function(name,fn){jQuery.fn[name]=function(until,selector){var ret=jQuery.map(this,fn,until);if(!runtil.test(name)){selector=until}if(selector&&typeof selector==="string"){ret=jQuery.filter(selector,ret)}ret=this.length>1&&!guaranteedUnique[name]?jQuery.unique(ret):ret;if(this.length>1&&rparentsprev.test(name)){ret=ret.reverse()}return this.pushStack(ret,name,core_slice.call(arguments).join(","))}});jQuery.extend({filter:function(expr,elems,not){if(not){expr=":not("+expr+")"}return elems.length===1?jQuery.find.matchesSelector(elems[0],expr)?[elems[0]]:[]:jQuery.find.matches(expr,elems)},dir:function(elem,dir,until){var matched=[],cur=elem[dir];while(cur&&cur.nodeType!==9&&(until===undefined||cur.nodeType!==1||!jQuery(cur).is(until))){if(cur.nodeType===1){matched.push(cur)}cur=cur[dir]}return matched},sibling:function(n,elem){var r=[];for(;n;n=n.nextSibling){if(n.nodeType===1&&n!==elem){r.push(n)}}return r}});function winnow(elements,qualifier,keep){qualifier=qualifier||0;if(jQuery.isFunction(qualifier)){return jQuery.grep(elements,function(elem,i){var retVal=!!qualifier.call(elem,i,elem);return retVal===keep})}else if(qualifier.nodeType){return jQuery.grep(elements,function(elem,i){return elem===qualifier===keep})}else if(typeof qualifier==="string"){var filtered=jQuery.grep(elements,function(elem){return elem.nodeType===1});if(isSimple.test(qualifier)){return jQuery.filter(qualifier,filtered,!keep)}else{qualifier=jQuery.filter(qualifier,filtered)}}return jQuery.grep(elements,function(elem,i){return jQuery.inArray(elem,qualifier)>=0===keep})}function createSafeFragment(document){var list=nodeNames.split("|"),safeFrag=document.createDocumentFragment();if(safeFrag.createElement){while(list.length){safeFrag.createElement(list.pop())}}return safeFrag}var nodeNames="abbr|article|aside|audio|bdi|canvas|data|datalist|details|figcaption|figure|footer|"+"header|hgroup|mark|meter|nav|output|progress|section|summary|time|video",rinlinejQuery=/ jQuery\d+="(?:null|\d+)"/g,rleadingWhitespace=/^\s+/,rxhtmlTag=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/gi,rtagName=/<([\w:]+)/,rtbody=/]","i"),rcheckableType=/^(?:checkbox|radio)$/,rchecked=/checked\s*(?:[^=]|=\s*.checked.)/i,rscriptType=/\/(java|ecma)script/i,rcleanScript=/^\s*\s*$/g,wrapMap={option:[1,""],legend:[1,"
      ","
      "],thead:[1,"","
      "],tr:[2,"","
      "],td:[3,"","
      "],col:[2,"","
      "],area:[1,"",""],_default:[0,"",""]},safeFragment=createSafeFragment(document),fragmentDiv=safeFragment.appendChild(document.createElement("div"));wrapMap.optgroup=wrapMap.option;wrapMap.tbody=wrapMap.tfoot=wrapMap.colgroup=wrapMap.caption=wrapMap.thead;wrapMap.th=wrapMap.td;if(!jQuery.support.htmlSerialize){wrapMap._default=[1,"X
      ","
      "]}jQuery.fn.extend({text:function(value){return jQuery.access(this,function(value){return value===undefined?jQuery.text(this):this.empty().append((this[0]&&this[0].ownerDocument||document).createTextNode(value))},null,value,arguments.length)},wrapAll:function(html){if(jQuery.isFunction(html)){return this.each(function(i){jQuery(this).wrapAll(html.call(this,i))})}if(this[0]){var wrap=jQuery(html,this[0].ownerDocument).eq(0).clone(true);if(this[0].parentNode){wrap.insertBefore(this[0])}wrap.map(function(){var elem=this;while(elem.firstChild&&elem.firstChild.nodeType===1){elem=elem.firstChild}return elem}).append(this)}return this},wrapInner:function(html){if(jQuery.isFunction(html)){return this.each(function(i){jQuery(this).wrapInner(html.call(this,i))})}return this.each(function(){var self=jQuery(this),contents=self.contents();if(contents.length){contents.wrapAll(html)}else{self.append(html)}})},wrap:function(html){var isFunction=jQuery.isFunction(html);return this.each(function(i){jQuery(this).wrapAll(isFunction?html.call(this,i):html)})},unwrap:function(){return this.parent().each(function(){if(!jQuery.nodeName(this,"body")){jQuery(this).replaceWith(this.childNodes)}}).end()},append:function(){return this.domManip(arguments,true,function(elem){if(this.nodeType===1||this.nodeType===11){this.appendChild(elem)}})},prepend:function(){return this.domManip(arguments,true,function(elem){if(this.nodeType===1||this.nodeType===11){this.insertBefore(elem,this.firstChild)}})},before:function(){if(!isDisconnected(this[0])){return this.domManip(arguments,false,function(elem){this.parentNode.insertBefore(elem,this)})}if(arguments.length){var set=jQuery.clean(arguments);return this.pushStack(jQuery.merge(set,this),"before",this.selector)}},after:function(){if(!isDisconnected(this[0])){return this.domManip(arguments,false,function(elem){this.parentNode.insertBefore(elem,this.nextSibling)})}if(arguments.length){var set=jQuery.clean(arguments);return this.pushStack(jQuery.merge(this,set),"after",this.selector)}},remove:function(selector,keepData){var elem,i=0;for(;(elem=this[i])!=null;i++){if(!selector||jQuery.filter(selector,[elem]).length){if(!keepData&&elem.nodeType===1){jQuery.cleanData(elem.getElementsByTagName("*"));jQuery.cleanData([elem])}if(elem.parentNode){elem.parentNode.removeChild(elem)}}}return this},empty:function(){var elem,i=0;for(;(elem=this[i])!=null;i++){if(elem.nodeType===1){jQuery.cleanData(elem.getElementsByTagName("*"))}while(elem.firstChild){elem.removeChild(elem.firstChild)}}return this},clone:function(dataAndEvents,deepDataAndEvents){dataAndEvents=dataAndEvents==null?false:dataAndEvents;deepDataAndEvents=deepDataAndEvents==null?dataAndEvents:deepDataAndEvents;return this.map(function(){return jQuery.clone(this,dataAndEvents,deepDataAndEvents)})},html:function(value){return jQuery.access(this,function(value){var elem=this[0]||{},i=0,l=this.length;if(value===undefined){return elem.nodeType===1?elem.innerHTML.replace(rinlinejQuery,""):undefined}if(typeof value==="string"&&!rnoInnerhtml.test(value)&&(jQuery.support.htmlSerialize||!rnoshimcache.test(value))&&(jQuery.support.leadingWhitespace||!rleadingWhitespace.test(value))&&!wrapMap[(rtagName.exec(value)||["",""])[1].toLowerCase()]){value=value.replace(rxhtmlTag,"<$1>");try{for(;i1&&typeof value==="string"&&rchecked.test(value)){return this.each(function(){jQuery(this).domManip(args,table,callback)})}if(jQuery.isFunction(value)){return this.each(function(i){var self=jQuery(this);args[0]=value.call(this,i,table?self.html():undefined);self.domManip(args,table,callback)})}if(this[0]){results=jQuery.buildFragment(args,this,scripts);fragment=results.fragment;first=fragment.firstChild;if(fragment.childNodes.length===1){fragment=first}if(first){table=table&&jQuery.nodeName(first,"tr");for(iNoClone=results.cacheable||l-1;i0?this.clone(true):this).get();jQuery(insert[i])[original](elems);ret=ret.concat(elems)}return this.pushStack(ret,name,insert.selector)}}});function getAll(elem){if(typeof elem.getElementsByTagName!=="undefined"){return elem.getElementsByTagName("*")}else if(typeof elem.querySelectorAll!=="undefined"){return elem.querySelectorAll("*")}else{return[]}}function fixDefaultChecked(elem){if(rcheckableType.test(elem.type)){elem.defaultChecked=elem.checked}}jQuery.extend({clone:function(elem,dataAndEvents,deepDataAndEvents){var srcElements,destElements,i,clone;if(jQuery.support.html5Clone||jQuery.isXMLDoc(elem)||!rnoshimcache.test("<"+elem.nodeName+">")){clone=elem.cloneNode(true)}else{fragmentDiv.innerHTML=elem.outerHTML;fragmentDiv.removeChild(clone=fragmentDiv.firstChild)}if((!jQuery.support.noCloneEvent||!jQuery.support.noCloneChecked)&&(elem.nodeType===1||elem.nodeType===11)&&!jQuery.isXMLDoc(elem)){cloneFixAttributes(elem,clone);srcElements=getAll(elem);destElements=getAll(clone);for(i=0;srcElements[i];++i){if(destElements[i]){cloneFixAttributes(srcElements[i],destElements[i])}}}if(dataAndEvents){cloneCopyEvent(elem,clone);if(deepDataAndEvents){srcElements=getAll(elem);destElements=getAll(clone);for(i=0;srcElements[i];++i){cloneCopyEvent(srcElements[i],destElements[i])}}}srcElements=destElements=null;return clone},clean:function(elems,context,fragment,scripts){var i,j,elem,tag,wrap,depth,div,hasBody,tbody,len,handleScript,jsTags,safe=context===document&&safeFragment,ret=[];if(!context||typeof context.createDocumentFragment==="undefined"){context=document}for(i=0;(elem=elems[i])!=null;i++){if(typeof elem==="number"){elem+=""}if(!elem){continue}if(typeof elem==="string"){if(!rhtml.test(elem)){elem=context.createTextNode(elem)}else{safe=safe||createSafeFragment(context);div=context.createElement("div");safe.appendChild(div);elem=elem.replace(rxhtmlTag,"<$1>");tag=(rtagName.exec(elem)||["",""])[1].toLowerCase();wrap=wrapMap[tag]||wrapMap._default;depth=wrap[0];div.innerHTML=wrap[1]+elem+wrap[2];while(depth--){div=div.lastChild +}if(!jQuery.support.tbody){hasBody=rtbody.test(elem);tbody=tag==="table"&&!hasBody?div.firstChild&&div.firstChild.childNodes:wrap[1]===""&&!hasBody?div.childNodes:[];for(j=tbody.length-1;j>=0;--j){if(jQuery.nodeName(tbody[j],"tbody")&&!tbody[j].childNodes.length){tbody[j].parentNode.removeChild(tbody[j])}}}if(!jQuery.support.leadingWhitespace&&rleadingWhitespace.test(elem)){div.insertBefore(context.createTextNode(rleadingWhitespace.exec(elem)[0]),div.firstChild)}elem=div.childNodes;div.parentNode.removeChild(div)}}if(elem.nodeType){ret.push(elem)}else{jQuery.merge(ret,elem)}}if(div){elem=div=safe=null}if(!jQuery.support.appendChecked){for(i=0;(elem=ret[i])!=null;i++){if(jQuery.nodeName(elem,"input")){fixDefaultChecked(elem)}else if(typeof elem.getElementsByTagName!=="undefined"){jQuery.grep(elem.getElementsByTagName("input"),fixDefaultChecked)}}}if(fragment){handleScript=function(elem){if(!elem.type||rscriptType.test(elem.type)){return scripts?scripts.push(elem.parentNode?elem.parentNode.removeChild(elem):elem):fragment.appendChild(elem)}};for(i=0;(elem=ret[i])!=null;i++){if(!(jQuery.nodeName(elem,"script")&&handleScript(elem))){fragment.appendChild(elem);if(typeof elem.getElementsByTagName!=="undefined"){jsTags=jQuery.grep(jQuery.merge([],elem.getElementsByTagName("script")),handleScript);ret.splice.apply(ret,[i+1,0].concat(jsTags));i+=jsTags.length}}}}return ret},cleanData:function(elems,acceptData){var data,id,elem,type,i=0,internalKey=jQuery.expando,cache=jQuery.cache,deleteExpando=jQuery.support.deleteExpando,special=jQuery.event.special;for(;(elem=elems[i])!=null;i++){if(acceptData||jQuery.acceptData(elem)){id=elem[internalKey];data=id&&cache[id];if(data){if(data.events){for(type in data.events){if(special[type]){jQuery.event.remove(elem,type)}else{jQuery.removeEvent(elem,type,data.handle)}}}if(cache[id]){delete cache[id];if(deleteExpando){delete elem[internalKey]}else if(elem.removeAttribute){elem.removeAttribute(internalKey)}else{elem[internalKey]=null}jQuery.deletedIds.push(id)}}}}}});(function(){var matched,browser;jQuery.uaMatch=function(ua){ua=ua.toLowerCase();var match=/(chrome)[ \/]([\w.]+)/.exec(ua)||/(webkit)[ \/]([\w.]+)/.exec(ua)||/(opera)(?:.*version|)[ \/]([\w.]+)/.exec(ua)||/(msie) ([\w.]+)/.exec(ua)||ua.indexOf("compatible")<0&&/(mozilla)(?:.*? rv:([\w.]+)|)/.exec(ua)||[];return{browser:match[1]||"",version:match[2]||"0"}};matched=jQuery.uaMatch(navigator.userAgent);browser={};if(matched.browser){browser[matched.browser]=true;browser.version=matched.version}if(browser.chrome){browser.webkit=true}else if(browser.webkit){browser.safari=true}jQuery.browser=browser;jQuery.sub=function(){function jQuerySub(selector,context){return new jQuerySub.fn.init(selector,context)}jQuery.extend(true,jQuerySub,this);jQuerySub.superclass=this;jQuerySub.fn=jQuerySub.prototype=this();jQuerySub.fn.constructor=jQuerySub;jQuerySub.sub=this.sub;jQuerySub.fn.init=function init(selector,context){if(context&&context instanceof jQuery&&!(context instanceof jQuerySub)){context=jQuerySub(context)}return jQuery.fn.init.call(this,selector,context,rootjQuerySub)};jQuerySub.fn.init.prototype=jQuerySub.fn;var rootjQuerySub=jQuerySub(document);return jQuerySub}})();var curCSS,iframe,iframeDoc,ralpha=/alpha\([^)]*\)/i,ropacity=/opacity=([^)]*)/,rposition=/^(top|right|bottom|left)$/,rdisplayswap=/^(none|table(?!-c[ea]).+)/,rmargin=/^margin/,rnumsplit=new RegExp("^("+core_pnum+")(.*)$","i"),rnumnonpx=new RegExp("^("+core_pnum+")(?!px)[a-z%]+$","i"),rrelNum=new RegExp("^([-+])=("+core_pnum+")","i"),elemdisplay={BODY:"block"},cssShow={position:"absolute",visibility:"hidden",display:"block"},cssNormalTransform={letterSpacing:0,fontWeight:400},cssExpand=["Top","Right","Bottom","Left"],cssPrefixes=["Webkit","O","Moz","ms"],eventsToggle=jQuery.fn.toggle;function vendorPropName(style,name){if(name in style){return name}var capName=name.charAt(0).toUpperCase()+name.slice(1),origName=name,i=cssPrefixes.length;while(i--){name=cssPrefixes[i]+capName;if(name in style){return name}}return origName}function isHidden(elem,el){elem=el||elem;return jQuery.css(elem,"display")==="none"||!jQuery.contains(elem.ownerDocument,elem)}function showHide(elements,show){var elem,display,values=[],index=0,length=elements.length;for(;index1)},show:function(){return showHide(this,true)},hide:function(){return showHide(this)},toggle:function(state,fn2){var bool=typeof state==="boolean";if(jQuery.isFunction(state)&&jQuery.isFunction(fn2)){return eventsToggle.apply(this,arguments)}return this.each(function(){if(bool?state:isHidden(this)){jQuery(this).show()}else{jQuery(this).hide()}})}});jQuery.extend({cssHooks:{opacity:{get:function(elem,computed){if(computed){var ret=curCSS(elem,"opacity");return ret===""?"1":ret}}}},cssNumber:{fillOpacity:true,fontWeight:true,lineHeight:true,opacity:true,orphans:true,widows:true,zIndex:true,zoom:true},cssProps:{"float":jQuery.support.cssFloat?"cssFloat":"styleFloat"},style:function(elem,name,value,extra){if(!elem||elem.nodeType===3||elem.nodeType===8||!elem.style){return}var ret,type,hooks,origName=jQuery.camelCase(name),style=elem.style;name=jQuery.cssProps[origName]||(jQuery.cssProps[origName]=vendorPropName(style,origName));hooks=jQuery.cssHooks[name]||jQuery.cssHooks[origName];if(value!==undefined){type=typeof value;if(type==="string"&&(ret=rrelNum.exec(value))){value=(ret[1]+1)*ret[2]+parseFloat(jQuery.css(elem,name));type="number"}if(value==null||type==="number"&&isNaN(value)){return}if(type==="number"&&!jQuery.cssNumber[origName]){value+="px"}if(!hooks||!("set"in hooks)||(value=hooks.set(elem,value,extra))!==undefined){try{style[name]=value}catch(e){}}}else{if(hooks&&"get"in hooks&&(ret=hooks.get(elem,false,extra))!==undefined){return ret}return style[name]}},css:function(elem,name,numeric,extra){var val,num,hooks,origName=jQuery.camelCase(name);name=jQuery.cssProps[origName]||(jQuery.cssProps[origName]=vendorPropName(elem.style,origName));hooks=jQuery.cssHooks[name]||jQuery.cssHooks[origName];if(hooks&&"get"in hooks){val=hooks.get(elem,true,extra)}if(val===undefined){val=curCSS(elem,name)}if(val==="normal"&&name in cssNormalTransform){val=cssNormalTransform[name]}if(numeric||extra!==undefined){num=parseFloat(val);return numeric||jQuery.isNumeric(num)?num||0:val}return val},swap:function(elem,options,callback){var ret,name,old={};for(name in options){old[name]=elem.style[name];elem.style[name]=options[name]}ret=callback.call(elem);for(name in options){elem.style[name]=old[name]}return ret}});if(window.getComputedStyle){curCSS=function(elem,name){var ret,width,minWidth,maxWidth,computed=window.getComputedStyle(elem,null),style=elem.style;if(computed){ret=computed.getPropertyValue(name)||computed[name];if(ret===""&&!jQuery.contains(elem.ownerDocument,elem)){ret=jQuery.style(elem,name)}if(rnumnonpx.test(ret)&&rmargin.test(name)){width=style.width;minWidth=style.minWidth;maxWidth=style.maxWidth;style.minWidth=style.maxWidth=style.width=ret;ret=computed.width;style.width=width;style.minWidth=minWidth;style.maxWidth=maxWidth}}return ret}}else if(document.documentElement.currentStyle){curCSS=function(elem,name){var left,rsLeft,ret=elem.currentStyle&&elem.currentStyle[name],style=elem.style;if(ret==null&&style&&style[name]){ret=style[name]}if(rnumnonpx.test(ret)&&!rposition.test(name)){left=style.left;rsLeft=elem.runtimeStyle&&elem.runtimeStyle.left;if(rsLeft){elem.runtimeStyle.left=elem.currentStyle.left}style.left=name==="fontSize"?"1em":ret;ret=style.pixelLeft+"px";style.left=left;if(rsLeft){elem.runtimeStyle.left=rsLeft}}return ret===""?"auto":ret}}function setPositiveNumber(elem,value,subtract){var matches=rnumsplit.exec(value);return matches?Math.max(0,matches[1]-(subtract||0))+(matches[2]||"px"):value}function augmentWidthOrHeight(elem,name,extra,isBorderBox){var i=extra===(isBorderBox?"border":"content")?4:name==="width"?1:0,val=0;for(;i<4;i+=2){if(extra==="margin"){val+=jQuery.css(elem,extra+cssExpand[i],true)}if(isBorderBox){if(extra==="content"){val-=parseFloat(curCSS(elem,"padding"+cssExpand[i]))||0}if(extra!=="margin"){val-=parseFloat(curCSS(elem,"border"+cssExpand[i]+"Width"))||0}}else{val+=parseFloat(curCSS(elem,"padding"+cssExpand[i]))||0;if(extra!=="padding"){val+=parseFloat(curCSS(elem,"border"+cssExpand[i]+"Width"))||0}}}return val}function getWidthOrHeight(elem,name,extra){var val=name==="width"?elem.offsetWidth:elem.offsetHeight,valueIsBorderBox=true,isBorderBox=jQuery.support.boxSizing&&jQuery.css(elem,"boxSizing")==="border-box";if(val<=0||val==null){val=curCSS(elem,name);if(val<0||val==null){val=elem.style[name]}if(rnumnonpx.test(val)){return val}valueIsBorderBox=isBorderBox&&(jQuery.support.boxSizingReliable||val===elem.style[name]);val=parseFloat(val)||0}return val+augmentWidthOrHeight(elem,name,extra||(isBorderBox?"border":"content"),valueIsBorderBox)+"px"}function css_defaultDisplay(nodeName){if(elemdisplay[nodeName]){return elemdisplay[nodeName]}var elem=jQuery("<"+nodeName+">").appendTo(document.body),display=elem.css("display");elem.remove();if(display==="none"||display===""){iframe=document.body.appendChild(iframe||jQuery.extend(document.createElement("iframe"),{frameBorder:0,width:0,height:0}));if(!iframeDoc||!iframe.createElement){iframeDoc=(iframe.contentWindow||iframe.contentDocument).document;iframeDoc.write("");iframeDoc.close()}elem=iframeDoc.body.appendChild(iframeDoc.createElement(nodeName));display=curCSS(elem,"display");document.body.removeChild(iframe)}elemdisplay[nodeName]=display;return display}jQuery.each(["height","width"],function(i,name){jQuery.cssHooks[name]={get:function(elem,computed,extra){if(computed){if(elem.offsetWidth===0&&rdisplayswap.test(curCSS(elem,"display"))){return jQuery.swap(elem,cssShow,function(){return getWidthOrHeight(elem,name,extra)})}else{return getWidthOrHeight(elem,name,extra)}}},set:function(elem,value,extra){return setPositiveNumber(elem,value,extra?augmentWidthOrHeight(elem,name,extra,jQuery.support.boxSizing&&jQuery.css(elem,"boxSizing")==="border-box"):0)}}});if(!jQuery.support.opacity){jQuery.cssHooks.opacity={get:function(elem,computed){return ropacity.test((computed&&elem.currentStyle?elem.currentStyle.filter:elem.style.filter)||"")?.01*parseFloat(RegExp.$1)+"":computed?"1":""},set:function(elem,value){var style=elem.style,currentStyle=elem.currentStyle,opacity=jQuery.isNumeric(value)?"alpha(opacity="+value*100+")":"",filter=currentStyle&¤tStyle.filter||style.filter||"";style.zoom=1;if(value>=1&&jQuery.trim(filter.replace(ralpha,""))===""&&style.removeAttribute){style.removeAttribute("filter");if(currentStyle&&!currentStyle.filter){return}}style.filter=ralpha.test(filter)?filter.replace(ralpha,opacity):filter+" "+opacity}}}jQuery(function(){if(!jQuery.support.reliableMarginRight){jQuery.cssHooks.marginRight={get:function(elem,computed){return jQuery.swap(elem,{display:"inline-block"},function(){if(computed){return curCSS(elem,"marginRight")}})}}}if(!jQuery.support.pixelPosition&&jQuery.fn.position){jQuery.each(["top","left"],function(i,prop){jQuery.cssHooks[prop]={get:function(elem,computed){if(computed){var ret=curCSS(elem,prop);return rnumnonpx.test(ret)?jQuery(elem).position()[prop]+"px":ret}}}})}});if(jQuery.expr&&jQuery.expr.filters){jQuery.expr.filters.hidden=function(elem){return elem.offsetWidth===0&&elem.offsetHeight===0||!jQuery.support.reliableHiddenOffsets&&(elem.style&&elem.style.display||curCSS(elem,"display"))==="none"};jQuery.expr.filters.visible=function(elem){return!jQuery.expr.filters.hidden(elem)}}jQuery.each({margin:"",padding:"",border:"Width"},function(prefix,suffix){jQuery.cssHooks[prefix+suffix]={expand:function(value){var i,parts=typeof value==="string"?value.split(" "):[value],expanded={};for(i=0;i<4;i++){expanded[prefix+cssExpand[i]+suffix]=parts[i]||parts[i-2]||parts[0]}return expanded}};if(!rmargin.test(prefix)){jQuery.cssHooks[prefix+suffix].set=setPositiveNumber}});var r20=/%20/g,rbracket=/\[\]$/,rCRLF=/\r?\n/g,rinput=/^(?:color|date|datetime|datetime-local|email|hidden|month|number|password|range|search|tel|text|time|url|week)$/i,rselectTextarea=/^(?:select|textarea)/i;jQuery.fn.extend({serialize:function(){return jQuery.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?jQuery.makeArray(this.elements):this}).filter(function(){return this.name&&!this.disabled&&(this.checked||rselectTextarea.test(this.nodeName)||rinput.test(this.type))}).map(function(i,elem){var val=jQuery(this).val();return val==null?null:jQuery.isArray(val)?jQuery.map(val,function(val,i){return{name:elem.name,value:val.replace(rCRLF,"\r\n")}}):{name:elem.name,value:val.replace(rCRLF,"\r\n")}}).get()}});jQuery.param=function(a,traditional){var prefix,s=[],add=function(key,value){value=jQuery.isFunction(value)?value():value==null?"":value;s[s.length]=encodeURIComponent(key)+"="+encodeURIComponent(value)};if(traditional===undefined){traditional=jQuery.ajaxSettings&&jQuery.ajaxSettings.traditional}if(jQuery.isArray(a)||a.jquery&&!jQuery.isPlainObject(a)){jQuery.each(a,function(){add(this.name,this.value)})}else{for(prefix in a){buildParams(prefix,a[prefix],traditional,add)}}return s.join("&").replace(r20,"+")};function buildParams(prefix,obj,traditional,add){var name;if(jQuery.isArray(obj)){jQuery.each(obj,function(i,v){if(traditional||rbracket.test(prefix)){add(prefix,v)}else{buildParams(prefix+"["+(typeof v==="object"?i:"")+"]",v,traditional,add)}})}else if(!traditional&&jQuery.type(obj)==="object"){for(name in obj){buildParams(prefix+"["+name+"]",obj[name],traditional,add)}}else{add(prefix,obj)}}var ajaxLocParts,ajaxLocation,rhash=/#.*$/,rheaders=/^(.*?):[ \t]*([^\r\n]*)\r?$/gm,rlocalProtocol=/^(?:about|app|app\-storage|.+\-extension|file|res|widget):$/,rnoContent=/^(?:GET|HEAD)$/,rprotocol=/^\/\//,rquery=/\?/,rscript=/)<[^<]*)*<\/script>/gi,rts=/([?&])_=[^&]*/,rurl=/^([\w\+\.\-]+:)(?:\/\/([^\/?#:]*)(?::(\d+)|)|)/,_load=jQuery.fn.load,prefilters={},transports={},allTypes=["*/"]+["*"];try{ajaxLocation=location.href}catch(e){ajaxLocation=document.createElement("a");ajaxLocation.href="";ajaxLocation=ajaxLocation.href}ajaxLocParts=rurl.exec(ajaxLocation.toLowerCase())||[];function addToPrefiltersOrTransports(structure){return function(dataTypeExpression,func){if(typeof dataTypeExpression!=="string"){func=dataTypeExpression;dataTypeExpression="*"}var dataType,list,placeBefore,dataTypes=dataTypeExpression.toLowerCase().split(core_rspace),i=0,length=dataTypes.length;if(jQuery.isFunction(func)){for(;i=0){selector=url.slice(off,url.length);url=url.slice(0,off)}if(jQuery.isFunction(params)){callback=params;params=undefined}else if(params&&typeof params==="object"){type="POST"}jQuery.ajax({url:url,type:type,dataType:"html",data:params,complete:function(jqXHR,status){if(callback){self.each(callback,response||[jqXHR.responseText,status,jqXHR])}}}).done(function(responseText){response=arguments;self.html(selector?jQuery("
      ").append(responseText.replace(rscript,"")).find(selector):responseText)});return this};jQuery.each("ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend".split(" "),function(i,o){jQuery.fn[o]=function(f){return this.on(o,f)}});jQuery.each(["get","post"],function(i,method){jQuery[method]=function(url,data,callback,type){if(jQuery.isFunction(data)){type=type||callback;callback=data;data=undefined}return jQuery.ajax({type:method,url:url,data:data,success:callback,dataType:type})}});jQuery.extend({getScript:function(url,callback){return jQuery.get(url,undefined,callback,"script")},getJSON:function(url,data,callback){return jQuery.get(url,data,callback,"json")},ajaxSetup:function(target,settings){if(settings){ajaxExtend(target,jQuery.ajaxSettings)}else{settings=target;target=jQuery.ajaxSettings}ajaxExtend(target,settings);return target},ajaxSettings:{url:ajaxLocation,isLocal:rlocalProtocol.test(ajaxLocParts[1]),global:true,type:"GET",contentType:"application/x-www-form-urlencoded; charset=UTF-8",processData:true,async:true,accepts:{xml:"application/xml, text/xml",html:"text/html",text:"text/plain",json:"application/json, text/javascript","*":allTypes},contents:{xml:/xml/,html:/html/,json:/json/},responseFields:{xml:"responseXML",text:"responseText"},converters:{"* text":window.String,"text html":true,"text json":jQuery.parseJSON,"text xml":jQuery.parseXML},flatOptions:{context:true,url:true}},ajaxPrefilter:addToPrefiltersOrTransports(prefilters),ajaxTransport:addToPrefiltersOrTransports(transports),ajax:function(url,options){if(typeof url==="object"){options=url;url=undefined}options=options||{};var ifModifiedKey,responseHeadersString,responseHeaders,transport,timeoutTimer,parts,fireGlobals,i,s=jQuery.ajaxSetup({},options),callbackContext=s.context||s,globalEventContext=callbackContext!==s&&(callbackContext.nodeType||callbackContext instanceof jQuery)?jQuery(callbackContext):jQuery.event,deferred=jQuery.Deferred(),completeDeferred=jQuery.Callbacks("once memory"),statusCode=s.statusCode||{},requestHeaders={},requestHeadersNames={},state=0,strAbort="canceled",jqXHR={readyState:0,setRequestHeader:function(name,value){if(!state){var lname=name.toLowerCase();name=requestHeadersNames[lname]=requestHeadersNames[lname]||name;requestHeaders[name]=value}return this},getAllResponseHeaders:function(){return state===2?responseHeadersString:null},getResponseHeader:function(key){var match;if(state===2){if(!responseHeaders){responseHeaders={};while(match=rheaders.exec(responseHeadersString)){responseHeaders[match[1].toLowerCase()]=match[2]}}match=responseHeaders[key.toLowerCase()]}return match===undefined?null:match},overrideMimeType:function(type){if(!state){s.mimeType=type}return this},abort:function(statusText){statusText=statusText||strAbort;if(transport){transport.abort(statusText)}done(0,statusText);return this}};function done(status,nativeStatusText,responses,headers){var isSuccess,success,error,response,modified,statusText=nativeStatusText;if(state===2){return}state=2;if(timeoutTimer){clearTimeout(timeoutTimer)}transport=undefined;responseHeadersString=headers||"";jqXHR.readyState=status>0?4:0;if(responses){response=ajaxHandleResponses(s,jqXHR,responses)}if(status>=200&&status<300||status===304){if(s.ifModified){modified=jqXHR.getResponseHeader("Last-Modified");if(modified){jQuery.lastModified[ifModifiedKey]=modified}modified=jqXHR.getResponseHeader("Etag");if(modified){jQuery.etag[ifModifiedKey]=modified}}if(status===304){statusText="notmodified";isSuccess=true}else{isSuccess=ajaxConvert(s,response);statusText=isSuccess.state;success=isSuccess.data;error=isSuccess.error;isSuccess=!error}}else{error=statusText;if(!statusText||status){statusText="error";if(status<0){status=0}}}jqXHR.status=status;jqXHR.statusText=(nativeStatusText||statusText)+"";if(isSuccess){deferred.resolveWith(callbackContext,[success,statusText,jqXHR])}else{deferred.rejectWith(callbackContext,[jqXHR,statusText,error])}jqXHR.statusCode(statusCode);statusCode=undefined;if(fireGlobals){globalEventContext.trigger("ajax"+(isSuccess?"Success":"Error"),[jqXHR,s,isSuccess?success:error])}completeDeferred.fireWith(callbackContext,[jqXHR,statusText]);if(fireGlobals){globalEventContext.trigger("ajaxComplete",[jqXHR,s]);if(!--jQuery.active){jQuery.event.trigger("ajaxStop")}}}deferred.promise(jqXHR);jqXHR.success=jqXHR.done;jqXHR.error=jqXHR.fail;jqXHR.complete=completeDeferred.add;jqXHR.statusCode=function(map){if(map){var tmp;if(state<2){for(tmp in map){statusCode[tmp]=[statusCode[tmp],map[tmp]]}}else{tmp=map[jqXHR.status];jqXHR.always(tmp)}}return this};s.url=((url||s.url)+"").replace(rhash,"").replace(rprotocol,ajaxLocParts[1]+"//");s.dataTypes=jQuery.trim(s.dataType||"*").toLowerCase().split(core_rspace);if(s.crossDomain==null){parts=rurl.exec(s.url.toLowerCase());s.crossDomain=!!(parts&&(parts[1]!==ajaxLocParts[1]||parts[2]!==ajaxLocParts[2]||(parts[3]||(parts[1]==="http:"?80:443))!=(ajaxLocParts[3]||(ajaxLocParts[1]==="http:"?80:443))))}if(s.data&&s.processData&&typeof s.data!=="string"){s.data=jQuery.param(s.data,s.traditional)}inspectPrefiltersOrTransports(prefilters,s,options,jqXHR);if(state===2){return jqXHR}fireGlobals=s.global;s.type=s.type.toUpperCase();s.hasContent=!rnoContent.test(s.type);if(fireGlobals&&jQuery.active++===0){jQuery.event.trigger("ajaxStart")}if(!s.hasContent){if(s.data){s.url+=(rquery.test(s.url)?"&":"?")+s.data;delete s.data}ifModifiedKey=s.url;if(s.cache===false){var ts=jQuery.now(),ret=s.url.replace(rts,"$1_="+ts);s.url=ret+(ret===s.url?(rquery.test(s.url)?"&":"?")+"_="+ts:"")}}if(s.data&&s.hasContent&&s.contentType!==false||options.contentType){jqXHR.setRequestHeader("Content-Type",s.contentType)}if(s.ifModified){ifModifiedKey=ifModifiedKey||s.url;if(jQuery.lastModified[ifModifiedKey]){jqXHR.setRequestHeader("If-Modified-Since",jQuery.lastModified[ifModifiedKey])}if(jQuery.etag[ifModifiedKey]){jqXHR.setRequestHeader("If-None-Match",jQuery.etag[ifModifiedKey])}}jqXHR.setRequestHeader("Accept",s.dataTypes[0]&&s.accepts[s.dataTypes[0]]?s.accepts[s.dataTypes[0]]+(s.dataTypes[0]!=="*"?", "+allTypes+"; q=0.01":""):s.accepts["*"]);for(i in s.headers){jqXHR.setRequestHeader(i,s.headers[i])}if(s.beforeSend&&(s.beforeSend.call(callbackContext,jqXHR,s)===false||state===2)){return jqXHR.abort()}strAbort="abort";for(i in{success:1,error:1,complete:1}){jqXHR[i](s[i])}transport=inspectPrefiltersOrTransports(transports,s,options,jqXHR);if(!transport){done(-1,"No Transport")}else{jqXHR.readyState=1;if(fireGlobals){globalEventContext.trigger("ajaxSend",[jqXHR,s])}if(s.async&&s.timeout>0){timeoutTimer=setTimeout(function(){jqXHR.abort("timeout")},s.timeout)}try{state=1;transport.send(requestHeaders,done)}catch(e){if(state<2){done(-1,e)}else{throw e}}}return jqXHR},active:0,lastModified:{},etag:{}});function ajaxHandleResponses(s,jqXHR,responses){var ct,type,finalDataType,firstDataType,contents=s.contents,dataTypes=s.dataTypes,responseFields=s.responseFields;for(type in responseFields){if(type in responses){jqXHR[responseFields[type]]=responses[type]}}while(dataTypes[0]==="*"){dataTypes.shift();if(ct===undefined){ct=s.mimeType||jqXHR.getResponseHeader("content-type")}}if(ct){for(type in contents){if(contents[type]&&contents[type].test(ct)){dataTypes.unshift(type);break}}}if(dataTypes[0]in responses){finalDataType=dataTypes[0]}else{for(type in responses){if(!dataTypes[0]||s.converters[type+" "+dataTypes[0]]){finalDataType=type;break}if(!firstDataType){firstDataType=type}}finalDataType=finalDataType||firstDataType}if(finalDataType){if(finalDataType!==dataTypes[0]){dataTypes.unshift(finalDataType)}return responses[finalDataType]}}function ajaxConvert(s,response){var conv,conv2,current,tmp,dataTypes=s.dataTypes.slice(),prev=dataTypes[0],converters={},i=0;if(s.dataFilter){response=s.dataFilter(response,s.dataType)}if(dataTypes[1]){for(conv in s.converters){converters[conv.toLowerCase()]=s.converters[conv]}}for(;current=dataTypes[++i];){if(current!=="*"){if(prev!=="*"&&prev!==current){conv=converters[prev+" "+current]||converters["* "+current];if(!conv){for(conv2 in converters){tmp=conv2.split(" ");if(tmp[1]===current){conv=converters[prev+" "+tmp[0]]||converters["* "+tmp[0]];if(conv){if(conv===true){conv=converters[conv2]}else if(converters[conv2]!==true){current=tmp[0];dataTypes.splice(i--,0,current)}break}}}}if(conv!==true){if(conv&&s["throws"]){response=conv(response)}else{try{response=conv(response)}catch(e){return{state:"parsererror",error:conv?e:"No conversion from "+prev+" to "+current}}}}}prev=current}}return{state:"success",data:response}}var oldCallbacks=[],rquestion=/\?/,rjsonp=/(=)\?(?=&|$)|\?\?/,nonce=jQuery.now();jQuery.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var callback=oldCallbacks.pop()||jQuery.expando+"_"+nonce++;this[callback]=true;return callback}});jQuery.ajaxPrefilter("json jsonp",function(s,originalSettings,jqXHR){var callbackName,overwritten,responseContainer,data=s.data,url=s.url,hasCallback=s.jsonp!==false,replaceInUrl=hasCallback&&rjsonp.test(url),replaceInData=hasCallback&&!replaceInUrl&&typeof data==="string"&&!(s.contentType||"").indexOf("application/x-www-form-urlencoded")&&rjsonp.test(data);if(s.dataTypes[0]==="jsonp"||replaceInUrl||replaceInData){callbackName=s.jsonpCallback=jQuery.isFunction(s.jsonpCallback)?s.jsonpCallback():s.jsonpCallback;overwritten=window[callbackName];if(replaceInUrl){s.url=url.replace(rjsonp,"$1"+callbackName)}else if(replaceInData){s.data=data.replace(rjsonp,"$1"+callbackName)}else if(hasCallback){s.url+=(rquestion.test(url)?"&":"?")+s.jsonp+"="+callbackName}s.converters["script json"]=function(){if(!responseContainer){jQuery.error(callbackName+" was not called")}return responseContainer[0]};s.dataTypes[0]="json";window[callbackName]=function(){responseContainer=arguments};jqXHR.always(function(){window[callbackName]=overwritten;if(s[callbackName]){s.jsonpCallback=originalSettings.jsonpCallback;oldCallbacks.push(callbackName)}if(responseContainer&&jQuery.isFunction(overwritten)){overwritten(responseContainer[0])}responseContainer=overwritten=undefined});return"script"}});jQuery.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/javascript|ecmascript/},converters:{"text script":function(text){jQuery.globalEval(text);return text}}});jQuery.ajaxPrefilter("script",function(s){if(s.cache===undefined){s.cache=false}if(s.crossDomain){s.type="GET";s.global=false}});jQuery.ajaxTransport("script",function(s){if(s.crossDomain){var script,head=document.head||document.getElementsByTagName("head")[0]||document.documentElement;return{send:function(_,callback){script=document.createElement("script");script.async="async";if(s.scriptCharset){script.charset=s.scriptCharset}script.src=s.url;script.onload=script.onreadystatechange=function(_,isAbort){if(isAbort||!script.readyState||/loaded|complete/.test(script.readyState)){script.onload=script.onreadystatechange=null;if(head&&script.parentNode){head.removeChild(script)}script=undefined;if(!isAbort){callback(200,"success")}}};head.insertBefore(script,head.firstChild)},abort:function(){if(script){script.onload(0,1)}}}}});var xhrCallbacks,xhrOnUnloadAbort=window.ActiveXObject?function(){for(var key in xhrCallbacks){xhrCallbacks[key](0,1)}}:false,xhrId=0;function createStandardXHR(){try{return new window.XMLHttpRequest}catch(e){}}function createActiveXHR(){try{return new window.ActiveXObject("Microsoft.XMLHTTP")}catch(e){}}jQuery.ajaxSettings.xhr=window.ActiveXObject?function(){return!this.isLocal&&createStandardXHR()||createActiveXHR()}:createStandardXHR;(function(xhr){jQuery.extend(jQuery.support,{ajax:!!xhr,cors:!!xhr&&"withCredentials"in xhr})})(jQuery.ajaxSettings.xhr());if(jQuery.support.ajax){jQuery.ajaxTransport(function(s){if(!s.crossDomain||jQuery.support.cors){var callback;return{send:function(headers,complete){var handle,i,xhr=s.xhr();if(s.username){xhr.open(s.type,s.url,s.async,s.username,s.password)}else{xhr.open(s.type,s.url,s.async)}if(s.xhrFields){for(i in s.xhrFields){xhr[i]=s.xhrFields[i]}}if(s.mimeType&&xhr.overrideMimeType){xhr.overrideMimeType(s.mimeType)}if(!s.crossDomain&&!headers["X-Requested-With"]){headers["X-Requested-With"]="XMLHttpRequest"}try{for(i in headers){xhr.setRequestHeader(i,headers[i])}}catch(_){}xhr.send(s.hasContent&&s.data||null);callback=function(_,isAbort){var status,statusText,responseHeaders,responses,xml;try{if(callback&&(isAbort||xhr.readyState===4)){callback=undefined;if(handle){xhr.onreadystatechange=jQuery.noop;if(xhrOnUnloadAbort){delete xhrCallbacks[handle]}}if(isAbort){if(xhr.readyState!==4){xhr.abort()}}else{status=xhr.status;responseHeaders=xhr.getAllResponseHeaders();responses={};xml=xhr.responseXML;if(xml&&xml.documentElement){responses.xml=xml}try{responses.text=xhr.responseText}catch(e){}try{statusText=xhr.statusText}catch(e){statusText=""}if(!status&&s.isLocal&&!s.crossDomain){status=responses.text?200:404}else if(status===1223){status=204}}}}catch(firefoxAccessException){if(!isAbort){complete(-1,firefoxAccessException)}}if(responses){complete(status,statusText,responses,responseHeaders)}};if(!s.async){callback()}else if(xhr.readyState===4){setTimeout(callback,0)}else{handle=++xhrId;if(xhrOnUnloadAbort){if(!xhrCallbacks){xhrCallbacks={};jQuery(window).unload(xhrOnUnloadAbort)}xhrCallbacks[handle]=callback}xhr.onreadystatechange=callback}},abort:function(){if(callback){callback(0,1)}}}}})}var fxNow,timerId,rfxtypes=/^(?:toggle|show|hide)$/,rfxnum=new RegExp("^(?:([-+])=|)("+core_pnum+")([a-z%]*)$","i"),rrun=/queueHooks$/,animationPrefilters=[defaultPrefilter],tweeners={"*":[function(prop,value){var end,unit,tween=this.createTween(prop,value),parts=rfxnum.exec(value),target=tween.cur(),start=+target||0,scale=1,maxIterations=20;if(parts){end=+parts[2];unit=parts[3]||(jQuery.cssNumber[prop]?"":"px");if(unit!=="px"&&start){start=jQuery.css(tween.elem,prop,true)||end||1;do{scale=scale||".5";start=start/scale;jQuery.style(tween.elem,prop,start+unit)}while(scale!==(scale=tween.cur()/target)&&scale!==1&&--maxIterations)}tween.unit=unit;tween.start=start;tween.end=parts[1]?start+(parts[1]+1)*end:end}return tween}]};function createFxNow(){setTimeout(function(){fxNow=undefined},0);return fxNow=jQuery.now()}function createTweens(animation,props){jQuery.each(props,function(prop,value){var collection=(tweeners[prop]||[]).concat(tweeners["*"]),index=0,length=collection.length;for(;index-1,props={},curPosition={},curTop,curLeft;if(calculatePosition){curPosition=curElem.position();curTop=curPosition.top;curLeft=curPosition.left}else{curTop=parseFloat(curCSSTop)||0;curLeft=parseFloat(curCSSLeft)||0}if(jQuery.isFunction(options)){options=options.call(elem,i,curOffset)}if(options.top!=null){props.top=options.top-curOffset.top+curTop}if(options.left!=null){props.left=options.left-curOffset.left+curLeft}if("using"in options){options.using.call(elem,props)}else{curElem.css(props)}}};jQuery.fn.extend({position:function(){if(!this[0]){return}var elem=this[0],offsetParent=this.offsetParent(),offset=this.offset(),parentOffset=rroot.test(offsetParent[0].nodeName)?{top:0,left:0}:offsetParent.offset();offset.top-=parseFloat(jQuery.css(elem,"marginTop"))||0;offset.left-=parseFloat(jQuery.css(elem,"marginLeft"))||0;parentOffset.top+=parseFloat(jQuery.css(offsetParent[0],"borderTopWidth"))||0;parentOffset.left+=parseFloat(jQuery.css(offsetParent[0],"borderLeftWidth"))||0;return{top:offset.top-parentOffset.top,left:offset.left-parentOffset.left}},offsetParent:function(){return this.map(function(){var offsetParent=this.offsetParent||document.body;while(offsetParent&&(!rroot.test(offsetParent.nodeName)&&jQuery.css(offsetParent,"position")==="static")){offsetParent=offsetParent.offsetParent}return offsetParent||document.body})}});jQuery.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(method,prop){var top=/Y/.test(prop);jQuery.fn[method]=function(val){return jQuery.access(this,function(elem,method,val){var win=getWindow(elem);if(val===undefined){return win?prop in win?win[prop]:win.document.documentElement[method]:elem[method]}if(win){win.scrollTo(!top?val:jQuery(win).scrollLeft(),top?val:jQuery(win).scrollTop())}else{elem[method]=val}},method,val,arguments.length,null)}});function getWindow(elem){return jQuery.isWindow(elem)?elem:elem.nodeType===9?elem.defaultView||elem.parentWindow:false}jQuery.each({Height:"height",Width:"width"},function(name,type){jQuery.each({padding:"inner"+name,content:type,"":"outer"+name},function(defaultExtra,funcName){jQuery.fn[funcName]=function(margin,value){var chainable=arguments.length&&(defaultExtra||typeof margin!=="boolean"),extra=defaultExtra||(margin===true||value===true?"margin":"border");return jQuery.access(this,function(elem,type,value){var doc;if(jQuery.isWindow(elem)){return elem.document.documentElement["client"+name]}if(elem.nodeType===9){doc=elem.documentElement;return Math.max(elem.body["scroll"+name],doc["scroll"+name],elem.body["offset"+name],doc["offset"+name],doc["client"+name])}return value===undefined?jQuery.css(elem,type,value,extra):jQuery.style(elem,type,value,extra)},type,chainable?margin:undefined,chainable,null)}})});window.jQuery=window.$=jQuery;if(typeof define==="function"&&define.amd&&define.amd.jQuery){define("jquery",[],function(){return jQuery})}})(window); \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/LICENSE.txt b/public/assets/lib/fontawesome-free/LICENSE.txt new file mode 100755 index 0000000..0abfaa6 --- /dev/null +++ b/public/assets/lib/fontawesome-free/LICENSE.txt @@ -0,0 +1,34 @@ +Font Awesome Free License +------------------------- + +Font Awesome Free is free, open source, and GPL friendly. You can use it for +commercial projects, open source projects, or really almost whatever you want. +Full Font Awesome Free license: https://fontawesome.com/license/free. + +# Icons: CC BY 4.0 License (https://creativecommons.org/licenses/by/4.0/) +In the Font Awesome Free download, the CC BY 4.0 license applies to all icons +packaged as SVG and JS file types. + +# Fonts: SIL OFL 1.1 License (https://scripts.sil.org/OFL) +In the Font Awesome Free download, the SIL OLF license applies to all icons +packaged as web and desktop font files. + +# Code: MIT License (https://opensource.org/licenses/MIT) +In the Font Awesome Free download, the MIT license applies to all non-font and +non-icon files. + +# Attribution +Attribution is required by MIT, SIL OLF, and CC BY licenses. Downloaded Font +Awesome Free files already contain embedded comments with sufficient +attribution, so you shouldn't need to do anything additional when using these +files normally. + +We've kept attribution comments terse, so we ask that you do not actively work +to remove them from files, especially code. They're a great way for folks to +learn about Font Awesome. + +# Brand Icons +All brand icons are trademarks of their respective owners. The use of these +trademarks does not indicate endorsement of the trademark holder by Font +Awesome, nor vice versa. **Please do not use brand logos for any purpose except +to represent the company, product, or service to which they refer.** diff --git a/public/assets/lib/fontawesome-free/css/all.min.css b/public/assets/lib/fontawesome-free/css/all.min.css new file mode 100755 index 0000000..03c0a79 --- /dev/null +++ b/public/assets/lib/fontawesome-free/css/all.min.css @@ -0,0 +1,5 @@ +/*! + * Font Awesome Free 5.3.1 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + */ +.fa,.fab,.fal,.far,.fas{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:inline-block;font-style:normal;font-variant:normal;text-rendering:auto;line-height:1}.fa-lg{font-size:1.33333em;line-height:.75em;vertical-align:-.0667em}.fa-xs{font-size:.75em}.fa-sm{font-size:.875em}.fa-1x{font-size:1em}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-6x{font-size:6em}.fa-7x{font-size:7em}.fa-8x{font-size:8em}.fa-9x{font-size:9em}.fa-10x{font-size:10em}.fa-fw{text-align:center;width:1.25em}.fa-ul{list-style-type:none;margin-left:2.5em;padding-left:0}.fa-ul>li{position:relative}.fa-li{left:-2em;position:absolute;text-align:center;width:2em;line-height:inherit}.fa-border{border:.08em solid #eee;border-radius:.1em;padding:.2em .25em .15em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left,.fab.fa-pull-left,.fal.fa-pull-left,.far.fa-pull-left,.fas.fa-pull-left{margin-right:.3em}.fa.fa-pull-right,.fab.fa-pull-right,.fal.fa-pull-right,.far.fa-pull-right,.fas.fa-pull-right{margin-left:.3em}.fa-spin{animation:fa-spin 2s infinite linear}.fa-pulse{animation:fa-spin 1s infinite steps(8)}@keyframes fa-spin{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";transform:scaleX(-1)}.fa-flip-vertical{transform:scaleY(-1)}.fa-flip-horizontal.fa-flip-vertical,.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)"}.fa-flip-horizontal.fa-flip-vertical{transform:scale(-1)}:root .fa-flip-horizontal,:root .fa-flip-vertical,:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270{-webkit-filter:none;filter:none}.fa-stack{display:inline-block;height:2em;line-height:2em;position:relative;vertical-align:middle;width:2em}.fa-stack-1x,.fa-stack-2x{left:0;position:absolute;text-align:center;width:100%}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-500px:before{content:"\f26e"}.fa-accessible-icon:before{content:"\f368"}.fa-accusoft:before{content:"\f369"}.fa-ad:before{content:"\f641"}.fa-address-book:before{content:"\f2b9"}.fa-address-card:before{content:"\f2bb"}.fa-adjust:before{content:"\f042"}.fa-adn:before{content:"\f170"}.fa-adversal:before{content:"\f36a"}.fa-affiliatetheme:before{content:"\f36b"}.fa-air-freshener:before{content:"\f5d0"}.fa-algolia:before{content:"\f36c"}.fa-align-center:before{content:"\f037"}.fa-align-justify:before{content:"\f039"}.fa-align-left:before{content:"\f036"}.fa-align-right:before{content:"\f038"}.fa-alipay:before{content:"\f642"}.fa-allergies:before{content:"\f461"}.fa-amazon:before{content:"\f270"}.fa-amazon-pay:before{content:"\f42c"}.fa-ambulance:before{content:"\f0f9"}.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-amilia:before{content:"\f36d"}.fa-anchor:before{content:"\f13d"}.fa-android:before{content:"\f17b"}.fa-angellist:before{content:"\f209"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-down:before{content:"\f107"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angry:before{content:"\f556"}.fa-angrycreative:before{content:"\f36e"}.fa-angular:before{content:"\f420"}.fa-ankh:before{content:"\f644"}.fa-app-store:before{content:"\f36f"}.fa-app-store-ios:before{content:"\f370"}.fa-apper:before{content:"\f371"}.fa-apple:before{content:"\f179"}.fa-apple-alt:before{content:"\f5d1"}.fa-apple-pay:before{content:"\f415"}.fa-archive:before{content:"\f187"}.fa-archway:before{content:"\f557"}.fa-arrow-alt-circle-down:before{content:"\f358"}.fa-arrow-alt-circle-left:before{content:"\f359"}.fa-arrow-alt-circle-right:before{content:"\f35a"}.fa-arrow-alt-circle-up:before{content:"\f35b"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-down:before{content:"\f063"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrows-alt:before{content:"\f0b2"}.fa-arrows-alt-h:before{content:"\f337"}.fa-arrows-alt-v:before{content:"\f338"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asterisk:before{content:"\f069"}.fa-asymmetrik:before{content:"\f372"}.fa-at:before{content:"\f1fa"}.fa-atlas:before{content:"\f558"}.fa-atom:before{content:"\f5d2"}.fa-audible:before{content:"\f373"}.fa-audio-description:before{content:"\f29e"}.fa-autoprefixer:before{content:"\f41c"}.fa-avianex:before{content:"\f374"}.fa-aviato:before{content:"\f421"}.fa-award:before{content:"\f559"}.fa-aws:before{content:"\f375"}.fa-backspace:before{content:"\f55a"}.fa-backward:before{content:"\f04a"}.fa-balance-scale:before{content:"\f24e"}.fa-ban:before{content:"\f05e"}.fa-band-aid:before{content:"\f462"}.fa-bandcamp:before{content:"\f2d5"}.fa-barcode:before{content:"\f02a"}.fa-bars:before{content:"\f0c9"}.fa-baseball-ball:before{content:"\f433"}.fa-basketball-ball:before{content:"\f434"}.fa-bath:before{content:"\f2cd"}.fa-battery-empty:before{content:"\f244"}.fa-battery-full:before{content:"\f240"}.fa-battery-half:before{content:"\f242"}.fa-battery-quarter:before{content:"\f243"}.fa-battery-three-quarters:before{content:"\f241"}.fa-bed:before{content:"\f236"}.fa-beer:before{content:"\f0fc"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-bell:before{content:"\f0f3"}.fa-bell-slash:before{content:"\f1f6"}.fa-bezier-curve:before{content:"\f55b"}.fa-bible:before{content:"\f647"}.fa-bicycle:before{content:"\f206"}.fa-bimobject:before{content:"\f378"}.fa-binoculars:before{content:"\f1e5"}.fa-birthday-cake:before{content:"\f1fd"}.fa-bitbucket:before{content:"\f171"}.fa-bitcoin:before{content:"\f379"}.fa-bity:before{content:"\f37a"}.fa-black-tie:before{content:"\f27e"}.fa-blackberry:before{content:"\f37b"}.fa-blender:before{content:"\f517"}.fa-blind:before{content:"\f29d"}.fa-blogger:before{content:"\f37c"}.fa-blogger-b:before{content:"\f37d"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-bold:before{content:"\f032"}.fa-bolt:before{content:"\f0e7"}.fa-bomb:before{content:"\f1e2"}.fa-bone:before{content:"\f5d7"}.fa-bong:before{content:"\f55c"}.fa-book:before{content:"\f02d"}.fa-book-open:before{content:"\f518"}.fa-book-reader:before{content:"\f5da"}.fa-bookmark:before{content:"\f02e"}.fa-bowling-ball:before{content:"\f436"}.fa-box:before{content:"\f466"}.fa-box-open:before{content:"\f49e"}.fa-boxes:before{content:"\f468"}.fa-braille:before{content:"\f2a1"}.fa-brain:before{content:"\f5dc"}.fa-briefcase:before{content:"\f0b1"}.fa-briefcase-medical:before{content:"\f469"}.fa-broadcast-tower:before{content:"\f519"}.fa-broom:before{content:"\f51a"}.fa-brush:before{content:"\f55d"}.fa-btc:before{content:"\f15a"}.fa-bug:before{content:"\f188"}.fa-building:before{content:"\f1ad"}.fa-bullhorn:before{content:"\f0a1"}.fa-bullseye:before{content:"\f140"}.fa-burn:before{content:"\f46a"}.fa-buromobelexperte:before{content:"\f37f"}.fa-bus:before{content:"\f207"}.fa-bus-alt:before{content:"\f55e"}.fa-business-time:before{content:"\f64a"}.fa-buysellads:before{content:"\f20d"}.fa-calculator:before{content:"\f1ec"}.fa-calendar:before{content:"\f133"}.fa-calendar-alt:before{content:"\f073"}.fa-calendar-check:before{content:"\f274"}.fa-calendar-minus:before{content:"\f272"}.fa-calendar-plus:before{content:"\f271"}.fa-calendar-times:before{content:"\f273"}.fa-camera:before{content:"\f030"}.fa-camera-retro:before{content:"\f083"}.fa-cannabis:before{content:"\f55f"}.fa-capsules:before{content:"\f46b"}.fa-car:before{content:"\f1b9"}.fa-car-alt:before{content:"\f5de"}.fa-car-battery:before{content:"\f5df"}.fa-car-crash:before{content:"\f5e1"}.fa-car-side:before{content:"\f5e4"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-caret-square-down:before{content:"\f150"}.fa-caret-square-left:before{content:"\f191"}.fa-caret-square-right:before{content:"\f152"}.fa-caret-square-up:before{content:"\f151"}.fa-caret-up:before{content:"\f0d8"}.fa-cart-arrow-down:before{content:"\f218"}.fa-cart-plus:before{content:"\f217"}.fa-cc-amazon-pay:before{content:"\f42d"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-apple-pay:before{content:"\f416"}.fa-cc-diners-club:before{content:"\f24c"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-cc-visa:before{content:"\f1f0"}.fa-centercode:before{content:"\f380"}.fa-certificate:before{content:"\f0a3"}.fa-chalkboard:before{content:"\f51b"}.fa-chalkboard-teacher:before{content:"\f51c"}.fa-charging-station:before{content:"\f5e7"}.fa-chart-area:before{content:"\f1fe"}.fa-chart-bar:before{content:"\f080"}.fa-chart-line:before{content:"\f201"}.fa-chart-pie:before{content:"\f200"}.fa-check:before{content:"\f00c"}.fa-check-circle:before{content:"\f058"}.fa-check-double:before{content:"\f560"}.fa-check-square:before{content:"\f14a"}.fa-chess:before{content:"\f439"}.fa-chess-bishop:before{content:"\f43a"}.fa-chess-board:before{content:"\f43c"}.fa-chess-king:before{content:"\f43f"}.fa-chess-knight:before{content:"\f441"}.fa-chess-pawn:before{content:"\f443"}.fa-chess-queen:before{content:"\f445"}.fa-chess-rook:before{content:"\f447"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-down:before{content:"\f078"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-chevron-up:before{content:"\f077"}.fa-child:before{content:"\f1ae"}.fa-chrome:before{content:"\f268"}.fa-church:before{content:"\f51d"}.fa-circle:before{content:"\f111"}.fa-circle-notch:before{content:"\f1ce"}.fa-city:before{content:"\f64f"}.fa-clipboard:before{content:"\f328"}.fa-clipboard-check:before{content:"\f46c"}.fa-clipboard-list:before{content:"\f46d"}.fa-clock:before{content:"\f017"}.fa-clone:before{content:"\f24d"}.fa-closed-captioning:before{content:"\f20a"}.fa-cloud:before{content:"\f0c2"}.fa-cloud-download-alt:before{content:"\f381"}.fa-cloud-upload-alt:before{content:"\f382"}.fa-cloudscale:before{content:"\f383"}.fa-cloudsmith:before{content:"\f384"}.fa-cloudversify:before{content:"\f385"}.fa-cocktail:before{content:"\f561"}.fa-code:before{content:"\f121"}.fa-code-branch:before{content:"\f126"}.fa-codepen:before{content:"\f1cb"}.fa-codiepie:before{content:"\f284"}.fa-coffee:before{content:"\f0f4"}.fa-cog:before{content:"\f013"}.fa-cogs:before{content:"\f085"}.fa-coins:before{content:"\f51e"}.fa-columns:before{content:"\f0db"}.fa-comment:before{content:"\f075"}.fa-comment-alt:before{content:"\f27a"}.fa-comment-dollar:before{content:"\f651"}.fa-comment-dots:before{content:"\f4ad"}.fa-comment-slash:before{content:"\f4b3"}.fa-comments:before{content:"\f086"}.fa-comments-dollar:before{content:"\f653"}.fa-compact-disc:before{content:"\f51f"}.fa-compass:before{content:"\f14e"}.fa-compress:before{content:"\f066"}.fa-concierge-bell:before{content:"\f562"}.fa-connectdevelop:before{content:"\f20e"}.fa-contao:before{content:"\f26d"}.fa-cookie:before{content:"\f563"}.fa-cookie-bite:before{content:"\f564"}.fa-copy:before{content:"\f0c5"}.fa-copyright:before{content:"\f1f9"}.fa-couch:before{content:"\f4b8"}.fa-cpanel:before{content:"\f388"}.fa-creative-commons:before{content:"\f25e"}.fa-creative-commons-by:before{content:"\f4e7"}.fa-creative-commons-nc:before{content:"\f4e8"}.fa-creative-commons-nc-eu:before{content:"\f4e9"}.fa-creative-commons-nc-jp:before{content:"\f4ea"}.fa-creative-commons-nd:before{content:"\f4eb"}.fa-creative-commons-pd:before{content:"\f4ec"}.fa-creative-commons-pd-alt:before{content:"\f4ed"}.fa-creative-commons-remix:before{content:"\f4ee"}.fa-creative-commons-sa:before{content:"\f4ef"}.fa-creative-commons-sampling:before{content:"\f4f0"}.fa-creative-commons-sampling-plus:before{content:"\f4f1"}.fa-creative-commons-share:before{content:"\f4f2"}.fa-credit-card:before{content:"\f09d"}.fa-crop:before{content:"\f125"}.fa-crop-alt:before{content:"\f565"}.fa-cross:before{content:"\f654"}.fa-crosshairs:before{content:"\f05b"}.fa-crow:before{content:"\f520"}.fa-crown:before{content:"\f521"}.fa-css3:before{content:"\f13c"}.fa-css3-alt:before{content:"\f38b"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-cut:before{content:"\f0c4"}.fa-cuttlefish:before{content:"\f38c"}.fa-d-and-d:before{content:"\f38d"}.fa-dashcube:before{content:"\f210"}.fa-database:before{content:"\f1c0"}.fa-deaf:before{content:"\f2a4"}.fa-delicious:before{content:"\f1a5"}.fa-deploydog:before{content:"\f38e"}.fa-deskpro:before{content:"\f38f"}.fa-desktop:before{content:"\f108"}.fa-deviantart:before{content:"\f1bd"}.fa-dharmachakra:before{content:"\f655"}.fa-diagnoses:before{content:"\f470"}.fa-dice:before{content:"\f522"}.fa-dice-five:before{content:"\f523"}.fa-dice-four:before{content:"\f524"}.fa-dice-one:before{content:"\f525"}.fa-dice-six:before{content:"\f526"}.fa-dice-three:before{content:"\f527"}.fa-dice-two:before{content:"\f528"}.fa-digg:before{content:"\f1a6"}.fa-digital-ocean:before{content:"\f391"}.fa-digital-tachograph:before{content:"\f566"}.fa-directions:before{content:"\f5eb"}.fa-discord:before{content:"\f392"}.fa-discourse:before{content:"\f393"}.fa-divide:before{content:"\f529"}.fa-dizzy:before{content:"\f567"}.fa-dna:before{content:"\f471"}.fa-dochub:before{content:"\f394"}.fa-docker:before{content:"\f395"}.fa-dollar-sign:before{content:"\f155"}.fa-dolly:before{content:"\f472"}.fa-dolly-flatbed:before{content:"\f474"}.fa-donate:before{content:"\f4b9"}.fa-door-closed:before{content:"\f52a"}.fa-door-open:before{content:"\f52b"}.fa-dot-circle:before{content:"\f192"}.fa-dove:before{content:"\f4ba"}.fa-download:before{content:"\f019"}.fa-draft2digital:before{content:"\f396"}.fa-drafting-compass:before{content:"\f568"}.fa-draw-polygon:before{content:"\f5ee"}.fa-dribbble:before{content:"\f17d"}.fa-dribbble-square:before{content:"\f397"}.fa-dropbox:before{content:"\f16b"}.fa-drum:before{content:"\f569"}.fa-drum-steelpan:before{content:"\f56a"}.fa-drupal:before{content:"\f1a9"}.fa-dumbbell:before{content:"\f44b"}.fa-dyalog:before{content:"\f399"}.fa-earlybirds:before{content:"\f39a"}.fa-ebay:before{content:"\f4f4"}.fa-edge:before{content:"\f282"}.fa-edit:before{content:"\f044"}.fa-eject:before{content:"\f052"}.fa-elementor:before{content:"\f430"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-ello:before{content:"\f5f1"}.fa-ember:before{content:"\f423"}.fa-empire:before{content:"\f1d1"}.fa-envelope:before{content:"\f0e0"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-text:before{content:"\f658"}.fa-envelope-square:before{content:"\f199"}.fa-envira:before{content:"\f299"}.fa-equals:before{content:"\f52c"}.fa-eraser:before{content:"\f12d"}.fa-erlang:before{content:"\f39d"}.fa-ethereum:before{content:"\f42e"}.fa-etsy:before{content:"\f2d7"}.fa-euro-sign:before{content:"\f153"}.fa-exchange-alt:before{content:"\f362"}.fa-exclamation:before{content:"\f12a"}.fa-exclamation-circle:before{content:"\f06a"}.fa-exclamation-triangle:before{content:"\f071"}.fa-expand:before{content:"\f065"}.fa-expand-arrows-alt:before{content:"\f31e"}.fa-expeditedssl:before{content:"\f23e"}.fa-external-link-alt:before{content:"\f35d"}.fa-external-link-square-alt:before{content:"\f360"}.fa-eye:before{content:"\f06e"}.fa-eye-dropper:before{content:"\f1fb"}.fa-eye-slash:before{content:"\f070"}.fa-facebook:before{content:"\f09a"}.fa-facebook-f:before{content:"\f39e"}.fa-facebook-messenger:before{content:"\f39f"}.fa-facebook-square:before{content:"\f082"}.fa-fast-backward:before{content:"\f049"}.fa-fast-forward:before{content:"\f050"}.fa-fax:before{content:"\f1ac"}.fa-feather:before{content:"\f52d"}.fa-feather-alt:before{content:"\f56b"}.fa-female:before{content:"\f182"}.fa-fighter-jet:before{content:"\f0fb"}.fa-file:before{content:"\f15b"}.fa-file-alt:before{content:"\f15c"}.fa-file-archive:before{content:"\f1c6"}.fa-file-audio:before{content:"\f1c7"}.fa-file-code:before{content:"\f1c9"}.fa-file-contract:before{content:"\f56c"}.fa-file-download:before{content:"\f56d"}.fa-file-excel:before{content:"\f1c3"}.fa-file-export:before{content:"\f56e"}.fa-file-image:before{content:"\f1c5"}.fa-file-import:before{content:"\f56f"}.fa-file-invoice:before{content:"\f570"}.fa-file-invoice-dollar:before{content:"\f571"}.fa-file-medical:before{content:"\f477"}.fa-file-medical-alt:before{content:"\f478"}.fa-file-pdf:before{content:"\f1c1"}.fa-file-powerpoint:before{content:"\f1c4"}.fa-file-prescription:before{content:"\f572"}.fa-file-signature:before{content:"\f573"}.fa-file-upload:before{content:"\f574"}.fa-file-video:before{content:"\f1c8"}.fa-file-word:before{content:"\f1c2"}.fa-fill:before{content:"\f575"}.fa-fill-drip:before{content:"\f576"}.fa-film:before{content:"\f008"}.fa-filter:before{content:"\f0b0"}.fa-fingerprint:before{content:"\f577"}.fa-fire:before{content:"\f06d"}.fa-fire-extinguisher:before{content:"\f134"}.fa-firefox:before{content:"\f269"}.fa-first-aid:before{content:"\f479"}.fa-first-order:before{content:"\f2b0"}.fa-first-order-alt:before{content:"\f50a"}.fa-firstdraft:before{content:"\f3a1"}.fa-fish:before{content:"\f578"}.fa-flag:before{content:"\f024"}.fa-flag-checkered:before{content:"\f11e"}.fa-flask:before{content:"\f0c3"}.fa-flickr:before{content:"\f16e"}.fa-flipboard:before{content:"\f44d"}.fa-flushed:before{content:"\f579"}.fa-fly:before{content:"\f417"}.fa-folder:before{content:"\f07b"}.fa-folder-minus:before{content:"\f65d"}.fa-folder-open:before{content:"\f07c"}.fa-folder-plus:before{content:"\f65e"}.fa-font:before{content:"\f031"}.fa-font-awesome:before{content:"\f2b4"}.fa-font-awesome-alt:before{content:"\f35c"}.fa-font-awesome-flag:before{content:"\f425"}.fa-font-awesome-logo-full:before{content:"\f4e6"}.fa-fonticons:before{content:"\f280"}.fa-fonticons-fi:before{content:"\f3a2"}.fa-football-ball:before{content:"\f44e"}.fa-fort-awesome:before{content:"\f286"}.fa-fort-awesome-alt:before{content:"\f3a3"}.fa-forumbee:before{content:"\f211"}.fa-forward:before{content:"\f04e"}.fa-foursquare:before{content:"\f180"}.fa-free-code-camp:before{content:"\f2c5"}.fa-freebsd:before{content:"\f3a4"}.fa-frog:before{content:"\f52e"}.fa-frown:before{content:"\f119"}.fa-frown-open:before{content:"\f57a"}.fa-fulcrum:before{content:"\f50b"}.fa-funnel-dollar:before{content:"\f662"}.fa-futbol:before{content:"\f1e3"}.fa-galactic-republic:before{content:"\f50c"}.fa-galactic-senate:before{content:"\f50d"}.fa-gamepad:before{content:"\f11b"}.fa-gas-pump:before{content:"\f52f"}.fa-gavel:before{content:"\f0e3"}.fa-gem:before{content:"\f3a5"}.fa-genderless:before{content:"\f22d"}.fa-get-pocket:before{content:"\f265"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-gift:before{content:"\f06b"}.fa-git:before{content:"\f1d3"}.fa-git-square:before{content:"\f1d2"}.fa-github:before{content:"\f09b"}.fa-github-alt:before{content:"\f113"}.fa-github-square:before{content:"\f092"}.fa-gitkraken:before{content:"\f3a6"}.fa-gitlab:before{content:"\f296"}.fa-gitter:before{content:"\f426"}.fa-glass-martini:before{content:"\f000"}.fa-glass-martini-alt:before{content:"\f57b"}.fa-glasses:before{content:"\f530"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-globe:before{content:"\f0ac"}.fa-globe-africa:before{content:"\f57c"}.fa-globe-americas:before{content:"\f57d"}.fa-globe-asia:before{content:"\f57e"}.fa-gofore:before{content:"\f3a7"}.fa-golf-ball:before{content:"\f450"}.fa-goodreads:before{content:"\f3a8"}.fa-goodreads-g:before{content:"\f3a9"}.fa-google:before{content:"\f1a0"}.fa-google-drive:before{content:"\f3aa"}.fa-google-play:before{content:"\f3ab"}.fa-google-plus:before{content:"\f2b3"}.fa-google-plus-g:before{content:"\f0d5"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-wallet:before{content:"\f1ee"}.fa-gopuram:before{content:"\f664"}.fa-graduation-cap:before{content:"\f19d"}.fa-gratipay:before{content:"\f184"}.fa-grav:before{content:"\f2d6"}.fa-greater-than:before{content:"\f531"}.fa-greater-than-equal:before{content:"\f532"}.fa-grimace:before{content:"\f57f"}.fa-grin:before{content:"\f580"}.fa-grin-alt:before{content:"\f581"}.fa-grin-beam:before{content:"\f582"}.fa-grin-beam-sweat:before{content:"\f583"}.fa-grin-hearts:before{content:"\f584"}.fa-grin-squint:before{content:"\f585"}.fa-grin-squint-tears:before{content:"\f586"}.fa-grin-stars:before{content:"\f587"}.fa-grin-tears:before{content:"\f588"}.fa-grin-tongue:before{content:"\f589"}.fa-grin-tongue-squint:before{content:"\f58a"}.fa-grin-tongue-wink:before{content:"\f58b"}.fa-grin-wink:before{content:"\f58c"}.fa-grip-horizontal:before{content:"\f58d"}.fa-grip-vertical:before{content:"\f58e"}.fa-gripfire:before{content:"\f3ac"}.fa-grunt:before{content:"\f3ad"}.fa-gulp:before{content:"\f3ae"}.fa-h-square:before{content:"\f0fd"}.fa-hacker-news:before{content:"\f1d4"}.fa-hacker-news-square:before{content:"\f3af"}.fa-hackerrank:before{content:"\f5f7"}.fa-hamsa:before{content:"\f665"}.fa-hand-holding:before{content:"\f4bd"}.fa-hand-holding-heart:before{content:"\f4be"}.fa-hand-holding-usd:before{content:"\f4c0"}.fa-hand-lizard:before{content:"\f258"}.fa-hand-paper:before{content:"\f256"}.fa-hand-peace:before{content:"\f25b"}.fa-hand-point-down:before{content:"\f0a7"}.fa-hand-point-left:before{content:"\f0a5"}.fa-hand-point-right:before{content:"\f0a4"}.fa-hand-point-up:before{content:"\f0a6"}.fa-hand-pointer:before{content:"\f25a"}.fa-hand-rock:before{content:"\f255"}.fa-hand-scissors:before{content:"\f257"}.fa-hand-spock:before{content:"\f259"}.fa-hands:before{content:"\f4c2"}.fa-hands-helping:before{content:"\f4c4"}.fa-handshake:before{content:"\f2b5"}.fa-hashtag:before{content:"\f292"}.fa-haykal:before{content:"\f666"}.fa-hdd:before{content:"\f0a0"}.fa-heading:before{content:"\f1dc"}.fa-headphones:before{content:"\f025"}.fa-headphones-alt:before{content:"\f58f"}.fa-headset:before{content:"\f590"}.fa-heart:before{content:"\f004"}.fa-heartbeat:before{content:"\f21e"}.fa-helicopter:before{content:"\f533"}.fa-highlighter:before{content:"\f591"}.fa-hips:before{content:"\f452"}.fa-hire-a-helper:before{content:"\f3b0"}.fa-history:before{content:"\f1da"}.fa-hockey-puck:before{content:"\f453"}.fa-home:before{content:"\f015"}.fa-hooli:before{content:"\f427"}.fa-hornbill:before{content:"\f592"}.fa-hospital:before{content:"\f0f8"}.fa-hospital-alt:before{content:"\f47d"}.fa-hospital-symbol:before{content:"\f47e"}.fa-hot-tub:before{content:"\f593"}.fa-hotel:before{content:"\f594"}.fa-hotjar:before{content:"\f3b1"}.fa-hourglass:before{content:"\f254"}.fa-hourglass-end:before{content:"\f253"}.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-start:before{content:"\f251"}.fa-houzz:before{content:"\f27c"}.fa-html5:before{content:"\f13b"}.fa-hubspot:before{content:"\f3b2"}.fa-i-cursor:before{content:"\f246"}.fa-id-badge:before{content:"\f2c1"}.fa-id-card:before{content:"\f2c2"}.fa-id-card-alt:before{content:"\f47f"}.fa-image:before{content:"\f03e"}.fa-images:before{content:"\f302"}.fa-imdb:before{content:"\f2d8"}.fa-inbox:before{content:"\f01c"}.fa-indent:before{content:"\f03c"}.fa-industry:before{content:"\f275"}.fa-infinity:before{content:"\f534"}.fa-info:before{content:"\f129"}.fa-info-circle:before{content:"\f05a"}.fa-instagram:before{content:"\f16d"}.fa-internet-explorer:before{content:"\f26b"}.fa-ioxhost:before{content:"\f208"}.fa-italic:before{content:"\f033"}.fa-itunes:before{content:"\f3b4"}.fa-itunes-note:before{content:"\f3b5"}.fa-java:before{content:"\f4e4"}.fa-jedi:before{content:"\f669"}.fa-jedi-order:before{content:"\f50e"}.fa-jenkins:before{content:"\f3b6"}.fa-joget:before{content:"\f3b7"}.fa-joint:before{content:"\f595"}.fa-joomla:before{content:"\f1aa"}.fa-journal-whills:before{content:"\f66a"}.fa-js:before{content:"\f3b8"}.fa-js-square:before{content:"\f3b9"}.fa-jsfiddle:before{content:"\f1cc"}.fa-kaaba:before{content:"\f66b"}.fa-kaggle:before{content:"\f5fa"}.fa-key:before{content:"\f084"}.fa-keybase:before{content:"\f4f5"}.fa-keyboard:before{content:"\f11c"}.fa-keycdn:before{content:"\f3ba"}.fa-khanda:before{content:"\f66d"}.fa-kickstarter:before{content:"\f3bb"}.fa-kickstarter-k:before{content:"\f3bc"}.fa-kiss:before{content:"\f596"}.fa-kiss-beam:before{content:"\f597"}.fa-kiss-wink-heart:before{content:"\f598"}.fa-kiwi-bird:before{content:"\f535"}.fa-korvue:before{content:"\f42f"}.fa-landmark:before{content:"\f66f"}.fa-language:before{content:"\f1ab"}.fa-laptop:before{content:"\f109"}.fa-laptop-code:before{content:"\f5fc"}.fa-laravel:before{content:"\f3bd"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-laugh:before{content:"\f599"}.fa-laugh-beam:before{content:"\f59a"}.fa-laugh-squint:before{content:"\f59b"}.fa-laugh-wink:before{content:"\f59c"}.fa-layer-group:before{content:"\f5fd"}.fa-leaf:before{content:"\f06c"}.fa-leanpub:before{content:"\f212"}.fa-lemon:before{content:"\f094"}.fa-less:before{content:"\f41d"}.fa-less-than:before{content:"\f536"}.fa-less-than-equal:before{content:"\f537"}.fa-level-down-alt:before{content:"\f3be"}.fa-level-up-alt:before{content:"\f3bf"}.fa-life-ring:before{content:"\f1cd"}.fa-lightbulb:before{content:"\f0eb"}.fa-line:before{content:"\f3c0"}.fa-link:before{content:"\f0c1"}.fa-linkedin:before{content:"\f08c"}.fa-linkedin-in:before{content:"\f0e1"}.fa-linode:before{content:"\f2b8"}.fa-linux:before{content:"\f17c"}.fa-lira-sign:before{content:"\f195"}.fa-list:before{content:"\f03a"}.fa-list-alt:before{content:"\f022"}.fa-list-ol:before{content:"\f0cb"}.fa-list-ul:before{content:"\f0ca"}.fa-location-arrow:before{content:"\f124"}.fa-lock:before{content:"\f023"}.fa-lock-open:before{content:"\f3c1"}.fa-long-arrow-alt-down:before{content:"\f309"}.fa-long-arrow-alt-left:before{content:"\f30a"}.fa-long-arrow-alt-right:before{content:"\f30b"}.fa-long-arrow-alt-up:before{content:"\f30c"}.fa-low-vision:before{content:"\f2a8"}.fa-luggage-cart:before{content:"\f59d"}.fa-lyft:before{content:"\f3c3"}.fa-magento:before{content:"\f3c4"}.fa-magic:before{content:"\f0d0"}.fa-magnet:before{content:"\f076"}.fa-mail-bulk:before{content:"\f674"}.fa-mailchimp:before{content:"\f59e"}.fa-male:before{content:"\f183"}.fa-mandalorian:before{content:"\f50f"}.fa-map:before{content:"\f279"}.fa-map-marked:before{content:"\f59f"}.fa-map-marked-alt:before{content:"\f5a0"}.fa-map-marker:before{content:"\f041"}.fa-map-marker-alt:before{content:"\f3c5"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-markdown:before{content:"\f60f"}.fa-marker:before{content:"\f5a1"}.fa-mars:before{content:"\f222"}.fa-mars-double:before{content:"\f227"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mastodon:before{content:"\f4f6"}.fa-maxcdn:before{content:"\f136"}.fa-medal:before{content:"\f5a2"}.fa-medapps:before{content:"\f3c6"}.fa-medium:before{content:"\f23a"}.fa-medium-m:before{content:"\f3c7"}.fa-medkit:before{content:"\f0fa"}.fa-medrt:before{content:"\f3c8"}.fa-meetup:before{content:"\f2e0"}.fa-megaport:before{content:"\f5a3"}.fa-meh:before{content:"\f11a"}.fa-meh-blank:before{content:"\f5a4"}.fa-meh-rolling-eyes:before{content:"\f5a5"}.fa-memory:before{content:"\f538"}.fa-menorah:before{content:"\f676"}.fa-mercury:before{content:"\f223"}.fa-microchip:before{content:"\f2db"}.fa-microphone:before{content:"\f130"}.fa-microphone-alt:before{content:"\f3c9"}.fa-microphone-alt-slash:before{content:"\f539"}.fa-microphone-slash:before{content:"\f131"}.fa-microscope:before{content:"\f610"}.fa-microsoft:before{content:"\f3ca"}.fa-minus:before{content:"\f068"}.fa-minus-circle:before{content:"\f056"}.fa-minus-square:before{content:"\f146"}.fa-mix:before{content:"\f3cb"}.fa-mixcloud:before{content:"\f289"}.fa-mizuni:before{content:"\f3cc"}.fa-mobile:before{content:"\f10b"}.fa-mobile-alt:before{content:"\f3cd"}.fa-modx:before{content:"\f285"}.fa-monero:before{content:"\f3d0"}.fa-money-bill:before{content:"\f0d6"}.fa-money-bill-alt:before{content:"\f3d1"}.fa-money-bill-wave:before{content:"\f53a"}.fa-money-bill-wave-alt:before{content:"\f53b"}.fa-money-check:before{content:"\f53c"}.fa-money-check-alt:before{content:"\f53d"}.fa-monument:before{content:"\f5a6"}.fa-moon:before{content:"\f186"}.fa-mortar-pestle:before{content:"\f5a7"}.fa-mosque:before{content:"\f678"}.fa-motorcycle:before{content:"\f21c"}.fa-mouse-pointer:before{content:"\f245"}.fa-music:before{content:"\f001"}.fa-napster:before{content:"\f3d2"}.fa-neos:before{content:"\f612"}.fa-neuter:before{content:"\f22c"}.fa-newspaper:before{content:"\f1ea"}.fa-nimblr:before{content:"\f5a8"}.fa-nintendo-switch:before{content:"\f418"}.fa-node:before{content:"\f419"}.fa-node-js:before{content:"\f3d3"}.fa-not-equal:before{content:"\f53e"}.fa-notes-medical:before{content:"\f481"}.fa-npm:before{content:"\f3d4"}.fa-ns8:before{content:"\f3d5"}.fa-nutritionix:before{content:"\f3d6"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-oil-can:before{content:"\f613"}.fa-old-republic:before{content:"\f510"}.fa-om:before{content:"\f679"}.fa-opencart:before{content:"\f23d"}.fa-openid:before{content:"\f19b"}.fa-opera:before{content:"\f26a"}.fa-optin-monster:before{content:"\f23c"}.fa-osi:before{content:"\f41a"}.fa-outdent:before{content:"\f03b"}.fa-page4:before{content:"\f3d7"}.fa-pagelines:before{content:"\f18c"}.fa-paint-brush:before{content:"\f1fc"}.fa-paint-roller:before{content:"\f5aa"}.fa-palette:before{content:"\f53f"}.fa-palfed:before{content:"\f3d8"}.fa-pallet:before{content:"\f482"}.fa-paper-plane:before{content:"\f1d8"}.fa-paperclip:before{content:"\f0c6"}.fa-parachute-box:before{content:"\f4cd"}.fa-paragraph:before{content:"\f1dd"}.fa-parking:before{content:"\f540"}.fa-passport:before{content:"\f5ab"}.fa-pastafarianism:before{content:"\f67b"}.fa-paste:before{content:"\f0ea"}.fa-patreon:before{content:"\f3d9"}.fa-pause:before{content:"\f04c"}.fa-pause-circle:before{content:"\f28b"}.fa-paw:before{content:"\f1b0"}.fa-paypal:before{content:"\f1ed"}.fa-peace:before{content:"\f67c"}.fa-pen:before{content:"\f304"}.fa-pen-alt:before{content:"\f305"}.fa-pen-fancy:before{content:"\f5ac"}.fa-pen-nib:before{content:"\f5ad"}.fa-pen-square:before{content:"\f14b"}.fa-pencil-alt:before{content:"\f303"}.fa-pencil-ruler:before{content:"\f5ae"}.fa-people-carry:before{content:"\f4ce"}.fa-percent:before{content:"\f295"}.fa-percentage:before{content:"\f541"}.fa-periscope:before{content:"\f3da"}.fa-phabricator:before{content:"\f3db"}.fa-phoenix-framework:before{content:"\f3dc"}.fa-phoenix-squadron:before{content:"\f511"}.fa-phone:before{content:"\f095"}.fa-phone-slash:before{content:"\f3dd"}.fa-phone-square:before{content:"\f098"}.fa-phone-volume:before{content:"\f2a0"}.fa-php:before{content:"\f457"}.fa-pied-piper:before{content:"\f2ae"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-pied-piper-hat:before{content:"\f4e5"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-piggy-bank:before{content:"\f4d3"}.fa-pills:before{content:"\f484"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-p:before{content:"\f231"}.fa-pinterest-square:before{content:"\f0d3"}.fa-place-of-worship:before{content:"\f67f"}.fa-plane:before{content:"\f072"}.fa-plane-arrival:before{content:"\f5af"}.fa-plane-departure:before{content:"\f5b0"}.fa-play:before{content:"\f04b"}.fa-play-circle:before{content:"\f144"}.fa-playstation:before{content:"\f3df"}.fa-plug:before{content:"\f1e6"}.fa-plus:before{content:"\f067"}.fa-plus-circle:before{content:"\f055"}.fa-plus-square:before{content:"\f0fe"}.fa-podcast:before{content:"\f2ce"}.fa-poll:before{content:"\f681"}.fa-poll-h:before{content:"\f682"}.fa-poo:before{content:"\f2fe"}.fa-poop:before{content:"\f619"}.fa-portrait:before{content:"\f3e0"}.fa-pound-sign:before{content:"\f154"}.fa-power-off:before{content:"\f011"}.fa-pray:before{content:"\f683"}.fa-praying-hands:before{content:"\f684"}.fa-prescription:before{content:"\f5b1"}.fa-prescription-bottle:before{content:"\f485"}.fa-prescription-bottle-alt:before{content:"\f486"}.fa-print:before{content:"\f02f"}.fa-procedures:before{content:"\f487"}.fa-product-hunt:before{content:"\f288"}.fa-project-diagram:before{content:"\f542"}.fa-pushed:before{content:"\f3e1"}.fa-puzzle-piece:before{content:"\f12e"}.fa-python:before{content:"\f3e2"}.fa-qq:before{content:"\f1d6"}.fa-qrcode:before{content:"\f029"}.fa-question:before{content:"\f128"}.fa-question-circle:before{content:"\f059"}.fa-quidditch:before{content:"\f458"}.fa-quinscape:before{content:"\f459"}.fa-quora:before{content:"\f2c4"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-quran:before{content:"\f687"}.fa-r-project:before{content:"\f4f7"}.fa-random:before{content:"\f074"}.fa-ravelry:before{content:"\f2d9"}.fa-react:before{content:"\f41b"}.fa-readme:before{content:"\f4d5"}.fa-rebel:before{content:"\f1d0"}.fa-receipt:before{content:"\f543"}.fa-recycle:before{content:"\f1b8"}.fa-red-river:before{content:"\f3e3"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-alien:before{content:"\f281"}.fa-reddit-square:before{content:"\f1a2"}.fa-redo:before{content:"\f01e"}.fa-redo-alt:before{content:"\f2f9"}.fa-registered:before{content:"\f25d"}.fa-rendact:before{content:"\f3e4"}.fa-renren:before{content:"\f18b"}.fa-reply:before{content:"\f3e5"}.fa-reply-all:before{content:"\f122"}.fa-replyd:before{content:"\f3e6"}.fa-researchgate:before{content:"\f4f8"}.fa-resolving:before{content:"\f3e7"}.fa-retweet:before{content:"\f079"}.fa-rev:before{content:"\f5b2"}.fa-ribbon:before{content:"\f4d6"}.fa-road:before{content:"\f018"}.fa-robot:before{content:"\f544"}.fa-rocket:before{content:"\f135"}.fa-rocketchat:before{content:"\f3e8"}.fa-rockrms:before{content:"\f3e9"}.fa-route:before{content:"\f4d7"}.fa-rss:before{content:"\f09e"}.fa-rss-square:before{content:"\f143"}.fa-ruble-sign:before{content:"\f158"}.fa-ruler:before{content:"\f545"}.fa-ruler-combined:before{content:"\f546"}.fa-ruler-horizontal:before{content:"\f547"}.fa-ruler-vertical:before{content:"\f548"}.fa-rupee-sign:before{content:"\f156"}.fa-sad-cry:before{content:"\f5b3"}.fa-sad-tear:before{content:"\f5b4"}.fa-safari:before{content:"\f267"}.fa-sass:before{content:"\f41e"}.fa-save:before{content:"\f0c7"}.fa-schlix:before{content:"\f3ea"}.fa-school:before{content:"\f549"}.fa-screwdriver:before{content:"\f54a"}.fa-scribd:before{content:"\f28a"}.fa-search:before{content:"\f002"}.fa-search-dollar:before{content:"\f688"}.fa-search-location:before{content:"\f689"}.fa-search-minus:before{content:"\f010"}.fa-search-plus:before{content:"\f00e"}.fa-searchengin:before{content:"\f3eb"}.fa-seedling:before{content:"\f4d8"}.fa-sellcast:before{content:"\f2da"}.fa-sellsy:before{content:"\f213"}.fa-server:before{content:"\f233"}.fa-servicestack:before{content:"\f3ec"}.fa-shapes:before{content:"\f61f"}.fa-share:before{content:"\f064"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-share-square:before{content:"\f14d"}.fa-shekel-sign:before{content:"\f20b"}.fa-shield-alt:before{content:"\f3ed"}.fa-ship:before{content:"\f21a"}.fa-shipping-fast:before{content:"\f48b"}.fa-shirtsinbulk:before{content:"\f214"}.fa-shoe-prints:before{content:"\f54b"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-shopping-cart:before{content:"\f07a"}.fa-shopware:before{content:"\f5b5"}.fa-shower:before{content:"\f2cc"}.fa-shuttle-van:before{content:"\f5b6"}.fa-sign:before{content:"\f4d9"}.fa-sign-in-alt:before{content:"\f2f6"}.fa-sign-language:before{content:"\f2a7"}.fa-sign-out-alt:before{content:"\f2f5"}.fa-signal:before{content:"\f012"}.fa-signature:before{content:"\f5b7"}.fa-simplybuilt:before{content:"\f215"}.fa-sistrix:before{content:"\f3ee"}.fa-sitemap:before{content:"\f0e8"}.fa-sith:before{content:"\f512"}.fa-skull:before{content:"\f54c"}.fa-skyatlas:before{content:"\f216"}.fa-skype:before{content:"\f17e"}.fa-slack:before{content:"\f198"}.fa-slack-hash:before{content:"\f3ef"}.fa-sliders-h:before{content:"\f1de"}.fa-slideshare:before{content:"\f1e7"}.fa-smile:before{content:"\f118"}.fa-smile-beam:before{content:"\f5b8"}.fa-smile-wink:before{content:"\f4da"}.fa-smoking:before{content:"\f48d"}.fa-smoking-ban:before{content:"\f54d"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-snowflake:before{content:"\f2dc"}.fa-socks:before{content:"\f696"}.fa-solar-panel:before{content:"\f5ba"}.fa-sort:before{content:"\f0dc"}.fa-sort-alpha-down:before{content:"\f15d"}.fa-sort-alpha-up:before{content:"\f15e"}.fa-sort-amount-down:before{content:"\f160"}.fa-sort-amount-up:before{content:"\f161"}.fa-sort-down:before{content:"\f0dd"}.fa-sort-numeric-down:before{content:"\f162"}.fa-sort-numeric-up:before{content:"\f163"}.fa-sort-up:before{content:"\f0de"}.fa-soundcloud:before{content:"\f1be"}.fa-spa:before{content:"\f5bb"}.fa-space-shuttle:before{content:"\f197"}.fa-speakap:before{content:"\f3f3"}.fa-spinner:before{content:"\f110"}.fa-splotch:before{content:"\f5bc"}.fa-spotify:before{content:"\f1bc"}.fa-spray-can:before{content:"\f5bd"}.fa-square:before{content:"\f0c8"}.fa-square-full:before{content:"\f45c"}.fa-square-root-alt:before{content:"\f698"}.fa-squarespace:before{content:"\f5be"}.fa-stack-exchange:before{content:"\f18d"}.fa-stack-overflow:before{content:"\f16c"}.fa-stamp:before{content:"\f5bf"}.fa-star:before{content:"\f005"}.fa-star-and-crescent:before{content:"\f699"}.fa-star-half:before{content:"\f089"}.fa-star-half-alt:before{content:"\f5c0"}.fa-star-of-david:before{content:"\f69a"}.fa-star-of-life:before{content:"\f621"}.fa-staylinked:before{content:"\f3f5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-steam-symbol:before{content:"\f3f6"}.fa-step-backward:before{content:"\f048"}.fa-step-forward:before{content:"\f051"}.fa-stethoscope:before{content:"\f0f1"}.fa-sticker-mule:before{content:"\f3f7"}.fa-sticky-note:before{content:"\f249"}.fa-stop:before{content:"\f04d"}.fa-stop-circle:before{content:"\f28d"}.fa-stopwatch:before{content:"\f2f2"}.fa-store:before{content:"\f54e"}.fa-store-alt:before{content:"\f54f"}.fa-strava:before{content:"\f428"}.fa-stream:before{content:"\f550"}.fa-street-view:before{content:"\f21d"}.fa-strikethrough:before{content:"\f0cc"}.fa-stripe:before{content:"\f429"}.fa-stripe-s:before{content:"\f42a"}.fa-stroopwafel:before{content:"\f551"}.fa-studiovinari:before{content:"\f3f8"}.fa-stumbleupon:before{content:"\f1a4"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-subscript:before{content:"\f12c"}.fa-subway:before{content:"\f239"}.fa-suitcase:before{content:"\f0f2"}.fa-suitcase-rolling:before{content:"\f5c1"}.fa-sun:before{content:"\f185"}.fa-superpowers:before{content:"\f2dd"}.fa-superscript:before{content:"\f12b"}.fa-supple:before{content:"\f3f9"}.fa-surprise:before{content:"\f5c2"}.fa-swatchbook:before{content:"\f5c3"}.fa-swimmer:before{content:"\f5c4"}.fa-swimming-pool:before{content:"\f5c5"}.fa-synagogue:before{content:"\f69b"}.fa-sync:before{content:"\f021"}.fa-sync-alt:before{content:"\f2f1"}.fa-syringe:before{content:"\f48e"}.fa-table:before{content:"\f0ce"}.fa-table-tennis:before{content:"\f45d"}.fa-tablet:before{content:"\f10a"}.fa-tablet-alt:before{content:"\f3fa"}.fa-tablets:before{content:"\f490"}.fa-tachometer-alt:before{content:"\f3fd"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-tape:before{content:"\f4db"}.fa-tasks:before{content:"\f0ae"}.fa-taxi:before{content:"\f1ba"}.fa-teamspeak:before{content:"\f4f9"}.fa-teeth:before{content:"\f62e"}.fa-teeth-open:before{content:"\f62f"}.fa-telegram:before{content:"\f2c6"}.fa-telegram-plane:before{content:"\f3fe"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-terminal:before{content:"\f120"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-th:before{content:"\f00a"}.fa-th-large:before{content:"\f009"}.fa-th-list:before{content:"\f00b"}.fa-the-red-yeti:before{content:"\f69d"}.fa-theater-masks:before{content:"\f630"}.fa-themeco:before{content:"\f5c6"}.fa-themeisle:before{content:"\f2b2"}.fa-thermometer:before{content:"\f491"}.fa-thermometer-empty:before{content:"\f2cb"}.fa-thermometer-full:before{content:"\f2c7"}.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-thumbs-down:before{content:"\f165"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbtack:before{content:"\f08d"}.fa-ticket-alt:before{content:"\f3ff"}.fa-times:before{content:"\f00d"}.fa-times-circle:before{content:"\f057"}.fa-tint:before{content:"\f043"}.fa-tint-slash:before{content:"\f5c7"}.fa-tired:before{content:"\f5c8"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-toolbox:before{content:"\f552"}.fa-tooth:before{content:"\f5c9"}.fa-torah:before{content:"\f6a0"}.fa-torii-gate:before{content:"\f6a1"}.fa-trade-federation:before{content:"\f513"}.fa-trademark:before{content:"\f25c"}.fa-traffic-light:before{content:"\f637"}.fa-train:before{content:"\f238"}.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-trash:before{content:"\f1f8"}.fa-trash-alt:before{content:"\f2ed"}.fa-tree:before{content:"\f1bb"}.fa-trello:before{content:"\f181"}.fa-tripadvisor:before{content:"\f262"}.fa-trophy:before{content:"\f091"}.fa-truck:before{content:"\f0d1"}.fa-truck-loading:before{content:"\f4de"}.fa-truck-monster:before{content:"\f63b"}.fa-truck-moving:before{content:"\f4df"}.fa-truck-pickup:before{content:"\f63c"}.fa-tshirt:before{content:"\f553"}.fa-tty:before{content:"\f1e4"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-tv:before{content:"\f26c"}.fa-twitch:before{content:"\f1e8"}.fa-twitter:before{content:"\f099"}.fa-twitter-square:before{content:"\f081"}.fa-typo3:before{content:"\f42b"}.fa-uber:before{content:"\f402"}.fa-uikit:before{content:"\f403"}.fa-umbrella:before{content:"\f0e9"}.fa-umbrella-beach:before{content:"\f5ca"}.fa-underline:before{content:"\f0cd"}.fa-undo:before{content:"\f0e2"}.fa-undo-alt:before{content:"\f2ea"}.fa-uniregistry:before{content:"\f404"}.fa-universal-access:before{content:"\f29a"}.fa-university:before{content:"\f19c"}.fa-unlink:before{content:"\f127"}.fa-unlock:before{content:"\f09c"}.fa-unlock-alt:before{content:"\f13e"}.fa-untappd:before{content:"\f405"}.fa-upload:before{content:"\f093"}.fa-usb:before{content:"\f287"}.fa-user:before{content:"\f007"}.fa-user-alt:before{content:"\f406"}.fa-user-alt-slash:before{content:"\f4fa"}.fa-user-astronaut:before{content:"\f4fb"}.fa-user-check:before{content:"\f4fc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-clock:before{content:"\f4fd"}.fa-user-cog:before{content:"\f4fe"}.fa-user-edit:before{content:"\f4ff"}.fa-user-friends:before{content:"\f500"}.fa-user-graduate:before{content:"\f501"}.fa-user-lock:before{content:"\f502"}.fa-user-md:before{content:"\f0f0"}.fa-user-minus:before{content:"\f503"}.fa-user-ninja:before{content:"\f504"}.fa-user-plus:before{content:"\f234"}.fa-user-secret:before{content:"\f21b"}.fa-user-shield:before{content:"\f505"}.fa-user-slash:before{content:"\f506"}.fa-user-tag:before{content:"\f507"}.fa-user-tie:before{content:"\f508"}.fa-user-times:before{content:"\f235"}.fa-users:before{content:"\f0c0"}.fa-users-cog:before{content:"\f509"}.fa-ussunnah:before{content:"\f407"}.fa-utensil-spoon:before{content:"\f2e5"}.fa-utensils:before{content:"\f2e7"}.fa-vaadin:before{content:"\f408"}.fa-vector-square:before{content:"\f5cb"}.fa-venus:before{content:"\f221"}.fa-venus-double:before{content:"\f226"}.fa-venus-mars:before{content:"\f228"}.fa-viacoin:before{content:"\f237"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-vial:before{content:"\f492"}.fa-vials:before{content:"\f493"}.fa-viber:before{content:"\f409"}.fa-video:before{content:"\f03d"}.fa-video-slash:before{content:"\f4e2"}.fa-vihara:before{content:"\f6a7"}.fa-vimeo:before{content:"\f40a"}.fa-vimeo-square:before{content:"\f194"}.fa-vimeo-v:before{content:"\f27d"}.fa-vine:before{content:"\f1ca"}.fa-vk:before{content:"\f189"}.fa-vnv:before{content:"\f40b"}.fa-volleyball-ball:before{content:"\f45f"}.fa-volume-down:before{content:"\f027"}.fa-volume-off:before{content:"\f026"}.fa-volume-up:before{content:"\f028"}.fa-vuejs:before{content:"\f41f"}.fa-walking:before{content:"\f554"}.fa-wallet:before{content:"\f555"}.fa-warehouse:before{content:"\f494"}.fa-weebly:before{content:"\f5cc"}.fa-weibo:before{content:"\f18a"}.fa-weight:before{content:"\f496"}.fa-weight-hanging:before{content:"\f5cd"}.fa-weixin:before{content:"\f1d7"}.fa-whatsapp:before{content:"\f232"}.fa-whatsapp-square:before{content:"\f40c"}.fa-wheelchair:before{content:"\f193"}.fa-whmcs:before{content:"\f40d"}.fa-wifi:before{content:"\f1eb"}.fa-wikipedia-w:before{content:"\f266"}.fa-window-close:before{content:"\f410"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-windows:before{content:"\f17a"}.fa-wine-glass:before{content:"\f4e3"}.fa-wine-glass-alt:before{content:"\f5ce"}.fa-wix:before{content:"\f5cf"}.fa-wolf-pack-battalion:before{content:"\f514"}.fa-won-sign:before{content:"\f159"}.fa-wordpress:before{content:"\f19a"}.fa-wordpress-simple:before{content:"\f411"}.fa-wpbeginner:before{content:"\f297"}.fa-wpexplorer:before{content:"\f2de"}.fa-wpforms:before{content:"\f298"}.fa-wrench:before{content:"\f0ad"}.fa-x-ray:before{content:"\f497"}.fa-xbox:before{content:"\f412"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-y-combinator:before{content:"\f23b"}.fa-yahoo:before{content:"\f19e"}.fa-yandex:before{content:"\f413"}.fa-yandex-international:before{content:"\f414"}.fa-yelp:before{content:"\f1e9"}.fa-yen-sign:before{content:"\f157"}.fa-yin-yang:before{content:"\f6ad"}.fa-yoast:before{content:"\f2b1"}.fa-youtube:before{content:"\f167"}.fa-youtube-square:before{content:"\f431"}.fa-zhihu:before{content:"\f63f"}.sr-only{border:0;clip:rect(0,0,0,0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.sr-only-focusable:active,.sr-only-focusable:focus{clip:auto;height:auto;margin:0;overflow:visible;position:static;width:auto}@font-face{font-family:"Font Awesome 5 Brands";font-style:normal;font-weight:normal;src:url(../webfonts/fa-brands-400.eot);src:url(../webfonts/fa-brands-400.eot?#iefix) format("embedded-opentype"),url(../webfonts/fa-brands-400.woff2) format("woff2"),url(../webfonts/fa-brands-400.woff) format("woff"),url(../webfonts/fa-brands-400.ttf) format("truetype"),url(../webfonts/fa-brands-400.svg#fontawesome) format("svg")}.fab{font-family:"Font Awesome 5 Brands"}@font-face{font-family:"Font Awesome 5 Free";font-style:normal;font-weight:400;src:url(../webfonts/fa-regular-400.eot);src:url(../webfonts/fa-regular-400.eot?#iefix) format("embedded-opentype"),url(../webfonts/fa-regular-400.woff2) format("woff2"),url(../webfonts/fa-regular-400.woff) format("woff"),url(../webfonts/fa-regular-400.ttf) format("truetype"),url(../webfonts/fa-regular-400.svg#fontawesome) format("svg")}.far{font-weight:400}@font-face{font-family:"Font Awesome 5 Free";font-style:normal;font-weight:900;src:url(../webfonts/fa-solid-900.eot);src:url(../webfonts/fa-solid-900.eot?#iefix) format("embedded-opentype"),url(../webfonts/fa-solid-900.woff2) format("woff2"),url(../webfonts/fa-solid-900.woff) format("woff"),url(../webfonts/fa-solid-900.ttf) format("truetype"),url(../webfonts/fa-solid-900.svg#fontawesome) format("svg")}.fa,.far,.fas{font-family:"Font Awesome 5 Free"}.fa,.fas{font-weight:900} \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/css/brands.min.css b/public/assets/lib/fontawesome-free/css/brands.min.css new file mode 100755 index 0000000..8a828a7 --- /dev/null +++ b/public/assets/lib/fontawesome-free/css/brands.min.css @@ -0,0 +1,5 @@ +/*! + * Font Awesome Free 5.3.1 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + */ +@font-face{font-family:"Font Awesome 5 Brands";font-style:normal;font-weight:normal;src:url(../webfonts/fa-brands-400.eot);src:url(../webfonts/fa-brands-400.eot?#iefix) format("embedded-opentype"),url(../webfonts/fa-brands-400.woff2) format("woff2"),url(../webfonts/fa-brands-400.woff) format("woff"),url(../webfonts/fa-brands-400.ttf) format("truetype"),url(../webfonts/fa-brands-400.svg#fontawesome) format("svg")}.fab{font-family:"Font Awesome 5 Brands"} \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/css/fontawesome.min.css b/public/assets/lib/fontawesome-free/css/fontawesome.min.css new file mode 100755 index 0000000..343943c --- /dev/null +++ b/public/assets/lib/fontawesome-free/css/fontawesome.min.css @@ -0,0 +1,5 @@ +/*! + * Font Awesome Free 5.3.1 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + */ +.fa,.fab,.fal,.far,.fas{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:inline-block;font-style:normal;font-variant:normal;text-rendering:auto;line-height:1}.fa-lg{font-size:1.33333em;line-height:.75em;vertical-align:-.0667em}.fa-xs{font-size:.75em}.fa-sm{font-size:.875em}.fa-1x{font-size:1em}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-6x{font-size:6em}.fa-7x{font-size:7em}.fa-8x{font-size:8em}.fa-9x{font-size:9em}.fa-10x{font-size:10em}.fa-fw{text-align:center;width:1.25em}.fa-ul{list-style-type:none;margin-left:2.5em;padding-left:0}.fa-ul>li{position:relative}.fa-li{left:-2em;position:absolute;text-align:center;width:2em;line-height:inherit}.fa-border{border:.08em solid #eee;border-radius:.1em;padding:.2em .25em .15em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left,.fab.fa-pull-left,.fal.fa-pull-left,.far.fa-pull-left,.fas.fa-pull-left{margin-right:.3em}.fa.fa-pull-right,.fab.fa-pull-right,.fal.fa-pull-right,.far.fa-pull-right,.fas.fa-pull-right{margin-left:.3em}.fa-spin{animation:fa-spin 2s infinite linear}.fa-pulse{animation:fa-spin 1s infinite steps(8)}@keyframes fa-spin{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";transform:scaleX(-1)}.fa-flip-vertical{transform:scaleY(-1)}.fa-flip-horizontal.fa-flip-vertical,.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)"}.fa-flip-horizontal.fa-flip-vertical{transform:scale(-1)}:root .fa-flip-horizontal,:root .fa-flip-vertical,:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270{-webkit-filter:none;filter:none}.fa-stack{display:inline-block;height:2em;line-height:2em;position:relative;vertical-align:middle;width:2em}.fa-stack-1x,.fa-stack-2x{left:0;position:absolute;text-align:center;width:100%}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-500px:before{content:"\f26e"}.fa-accessible-icon:before{content:"\f368"}.fa-accusoft:before{content:"\f369"}.fa-ad:before{content:"\f641"}.fa-address-book:before{content:"\f2b9"}.fa-address-card:before{content:"\f2bb"}.fa-adjust:before{content:"\f042"}.fa-adn:before{content:"\f170"}.fa-adversal:before{content:"\f36a"}.fa-affiliatetheme:before{content:"\f36b"}.fa-air-freshener:before{content:"\f5d0"}.fa-algolia:before{content:"\f36c"}.fa-align-center:before{content:"\f037"}.fa-align-justify:before{content:"\f039"}.fa-align-left:before{content:"\f036"}.fa-align-right:before{content:"\f038"}.fa-alipay:before{content:"\f642"}.fa-allergies:before{content:"\f461"}.fa-amazon:before{content:"\f270"}.fa-amazon-pay:before{content:"\f42c"}.fa-ambulance:before{content:"\f0f9"}.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-amilia:before{content:"\f36d"}.fa-anchor:before{content:"\f13d"}.fa-android:before{content:"\f17b"}.fa-angellist:before{content:"\f209"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-down:before{content:"\f107"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angry:before{content:"\f556"}.fa-angrycreative:before{content:"\f36e"}.fa-angular:before{content:"\f420"}.fa-ankh:before{content:"\f644"}.fa-app-store:before{content:"\f36f"}.fa-app-store-ios:before{content:"\f370"}.fa-apper:before{content:"\f371"}.fa-apple:before{content:"\f179"}.fa-apple-alt:before{content:"\f5d1"}.fa-apple-pay:before{content:"\f415"}.fa-archive:before{content:"\f187"}.fa-archway:before{content:"\f557"}.fa-arrow-alt-circle-down:before{content:"\f358"}.fa-arrow-alt-circle-left:before{content:"\f359"}.fa-arrow-alt-circle-right:before{content:"\f35a"}.fa-arrow-alt-circle-up:before{content:"\f35b"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-down:before{content:"\f063"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrows-alt:before{content:"\f0b2"}.fa-arrows-alt-h:before{content:"\f337"}.fa-arrows-alt-v:before{content:"\f338"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asterisk:before{content:"\f069"}.fa-asymmetrik:before{content:"\f372"}.fa-at:before{content:"\f1fa"}.fa-atlas:before{content:"\f558"}.fa-atom:before{content:"\f5d2"}.fa-audible:before{content:"\f373"}.fa-audio-description:before{content:"\f29e"}.fa-autoprefixer:before{content:"\f41c"}.fa-avianex:before{content:"\f374"}.fa-aviato:before{content:"\f421"}.fa-award:before{content:"\f559"}.fa-aws:before{content:"\f375"}.fa-backspace:before{content:"\f55a"}.fa-backward:before{content:"\f04a"}.fa-balance-scale:before{content:"\f24e"}.fa-ban:before{content:"\f05e"}.fa-band-aid:before{content:"\f462"}.fa-bandcamp:before{content:"\f2d5"}.fa-barcode:before{content:"\f02a"}.fa-bars:before{content:"\f0c9"}.fa-baseball-ball:before{content:"\f433"}.fa-basketball-ball:before{content:"\f434"}.fa-bath:before{content:"\f2cd"}.fa-battery-empty:before{content:"\f244"}.fa-battery-full:before{content:"\f240"}.fa-battery-half:before{content:"\f242"}.fa-battery-quarter:before{content:"\f243"}.fa-battery-three-quarters:before{content:"\f241"}.fa-bed:before{content:"\f236"}.fa-beer:before{content:"\f0fc"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-bell:before{content:"\f0f3"}.fa-bell-slash:before{content:"\f1f6"}.fa-bezier-curve:before{content:"\f55b"}.fa-bible:before{content:"\f647"}.fa-bicycle:before{content:"\f206"}.fa-bimobject:before{content:"\f378"}.fa-binoculars:before{content:"\f1e5"}.fa-birthday-cake:before{content:"\f1fd"}.fa-bitbucket:before{content:"\f171"}.fa-bitcoin:before{content:"\f379"}.fa-bity:before{content:"\f37a"}.fa-black-tie:before{content:"\f27e"}.fa-blackberry:before{content:"\f37b"}.fa-blender:before{content:"\f517"}.fa-blind:before{content:"\f29d"}.fa-blogger:before{content:"\f37c"}.fa-blogger-b:before{content:"\f37d"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-bold:before{content:"\f032"}.fa-bolt:before{content:"\f0e7"}.fa-bomb:before{content:"\f1e2"}.fa-bone:before{content:"\f5d7"}.fa-bong:before{content:"\f55c"}.fa-book:before{content:"\f02d"}.fa-book-open:before{content:"\f518"}.fa-book-reader:before{content:"\f5da"}.fa-bookmark:before{content:"\f02e"}.fa-bowling-ball:before{content:"\f436"}.fa-box:before{content:"\f466"}.fa-box-open:before{content:"\f49e"}.fa-boxes:before{content:"\f468"}.fa-braille:before{content:"\f2a1"}.fa-brain:before{content:"\f5dc"}.fa-briefcase:before{content:"\f0b1"}.fa-briefcase-medical:before{content:"\f469"}.fa-broadcast-tower:before{content:"\f519"}.fa-broom:before{content:"\f51a"}.fa-brush:before{content:"\f55d"}.fa-btc:before{content:"\f15a"}.fa-bug:before{content:"\f188"}.fa-building:before{content:"\f1ad"}.fa-bullhorn:before{content:"\f0a1"}.fa-bullseye:before{content:"\f140"}.fa-burn:before{content:"\f46a"}.fa-buromobelexperte:before{content:"\f37f"}.fa-bus:before{content:"\f207"}.fa-bus-alt:before{content:"\f55e"}.fa-business-time:before{content:"\f64a"}.fa-buysellads:before{content:"\f20d"}.fa-calculator:before{content:"\f1ec"}.fa-calendar:before{content:"\f133"}.fa-calendar-alt:before{content:"\f073"}.fa-calendar-check:before{content:"\f274"}.fa-calendar-minus:before{content:"\f272"}.fa-calendar-plus:before{content:"\f271"}.fa-calendar-times:before{content:"\f273"}.fa-camera:before{content:"\f030"}.fa-camera-retro:before{content:"\f083"}.fa-cannabis:before{content:"\f55f"}.fa-capsules:before{content:"\f46b"}.fa-car:before{content:"\f1b9"}.fa-car-alt:before{content:"\f5de"}.fa-car-battery:before{content:"\f5df"}.fa-car-crash:before{content:"\f5e1"}.fa-car-side:before{content:"\f5e4"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-caret-square-down:before{content:"\f150"}.fa-caret-square-left:before{content:"\f191"}.fa-caret-square-right:before{content:"\f152"}.fa-caret-square-up:before{content:"\f151"}.fa-caret-up:before{content:"\f0d8"}.fa-cart-arrow-down:before{content:"\f218"}.fa-cart-plus:before{content:"\f217"}.fa-cc-amazon-pay:before{content:"\f42d"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-apple-pay:before{content:"\f416"}.fa-cc-diners-club:before{content:"\f24c"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-cc-visa:before{content:"\f1f0"}.fa-centercode:before{content:"\f380"}.fa-certificate:before{content:"\f0a3"}.fa-chalkboard:before{content:"\f51b"}.fa-chalkboard-teacher:before{content:"\f51c"}.fa-charging-station:before{content:"\f5e7"}.fa-chart-area:before{content:"\f1fe"}.fa-chart-bar:before{content:"\f080"}.fa-chart-line:before{content:"\f201"}.fa-chart-pie:before{content:"\f200"}.fa-check:before{content:"\f00c"}.fa-check-circle:before{content:"\f058"}.fa-check-double:before{content:"\f560"}.fa-check-square:before{content:"\f14a"}.fa-chess:before{content:"\f439"}.fa-chess-bishop:before{content:"\f43a"}.fa-chess-board:before{content:"\f43c"}.fa-chess-king:before{content:"\f43f"}.fa-chess-knight:before{content:"\f441"}.fa-chess-pawn:before{content:"\f443"}.fa-chess-queen:before{content:"\f445"}.fa-chess-rook:before{content:"\f447"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-down:before{content:"\f078"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-chevron-up:before{content:"\f077"}.fa-child:before{content:"\f1ae"}.fa-chrome:before{content:"\f268"}.fa-church:before{content:"\f51d"}.fa-circle:before{content:"\f111"}.fa-circle-notch:before{content:"\f1ce"}.fa-city:before{content:"\f64f"}.fa-clipboard:before{content:"\f328"}.fa-clipboard-check:before{content:"\f46c"}.fa-clipboard-list:before{content:"\f46d"}.fa-clock:before{content:"\f017"}.fa-clone:before{content:"\f24d"}.fa-closed-captioning:before{content:"\f20a"}.fa-cloud:before{content:"\f0c2"}.fa-cloud-download-alt:before{content:"\f381"}.fa-cloud-upload-alt:before{content:"\f382"}.fa-cloudscale:before{content:"\f383"}.fa-cloudsmith:before{content:"\f384"}.fa-cloudversify:before{content:"\f385"}.fa-cocktail:before{content:"\f561"}.fa-code:before{content:"\f121"}.fa-code-branch:before{content:"\f126"}.fa-codepen:before{content:"\f1cb"}.fa-codiepie:before{content:"\f284"}.fa-coffee:before{content:"\f0f4"}.fa-cog:before{content:"\f013"}.fa-cogs:before{content:"\f085"}.fa-coins:before{content:"\f51e"}.fa-columns:before{content:"\f0db"}.fa-comment:before{content:"\f075"}.fa-comment-alt:before{content:"\f27a"}.fa-comment-dollar:before{content:"\f651"}.fa-comment-dots:before{content:"\f4ad"}.fa-comment-slash:before{content:"\f4b3"}.fa-comments:before{content:"\f086"}.fa-comments-dollar:before{content:"\f653"}.fa-compact-disc:before{content:"\f51f"}.fa-compass:before{content:"\f14e"}.fa-compress:before{content:"\f066"}.fa-concierge-bell:before{content:"\f562"}.fa-connectdevelop:before{content:"\f20e"}.fa-contao:before{content:"\f26d"}.fa-cookie:before{content:"\f563"}.fa-cookie-bite:before{content:"\f564"}.fa-copy:before{content:"\f0c5"}.fa-copyright:before{content:"\f1f9"}.fa-couch:before{content:"\f4b8"}.fa-cpanel:before{content:"\f388"}.fa-creative-commons:before{content:"\f25e"}.fa-creative-commons-by:before{content:"\f4e7"}.fa-creative-commons-nc:before{content:"\f4e8"}.fa-creative-commons-nc-eu:before{content:"\f4e9"}.fa-creative-commons-nc-jp:before{content:"\f4ea"}.fa-creative-commons-nd:before{content:"\f4eb"}.fa-creative-commons-pd:before{content:"\f4ec"}.fa-creative-commons-pd-alt:before{content:"\f4ed"}.fa-creative-commons-remix:before{content:"\f4ee"}.fa-creative-commons-sa:before{content:"\f4ef"}.fa-creative-commons-sampling:before{content:"\f4f0"}.fa-creative-commons-sampling-plus:before{content:"\f4f1"}.fa-creative-commons-share:before{content:"\f4f2"}.fa-credit-card:before{content:"\f09d"}.fa-crop:before{content:"\f125"}.fa-crop-alt:before{content:"\f565"}.fa-cross:before{content:"\f654"}.fa-crosshairs:before{content:"\f05b"}.fa-crow:before{content:"\f520"}.fa-crown:before{content:"\f521"}.fa-css3:before{content:"\f13c"}.fa-css3-alt:before{content:"\f38b"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-cut:before{content:"\f0c4"}.fa-cuttlefish:before{content:"\f38c"}.fa-d-and-d:before{content:"\f38d"}.fa-dashcube:before{content:"\f210"}.fa-database:before{content:"\f1c0"}.fa-deaf:before{content:"\f2a4"}.fa-delicious:before{content:"\f1a5"}.fa-deploydog:before{content:"\f38e"}.fa-deskpro:before{content:"\f38f"}.fa-desktop:before{content:"\f108"}.fa-deviantart:before{content:"\f1bd"}.fa-dharmachakra:before{content:"\f655"}.fa-diagnoses:before{content:"\f470"}.fa-dice:before{content:"\f522"}.fa-dice-five:before{content:"\f523"}.fa-dice-four:before{content:"\f524"}.fa-dice-one:before{content:"\f525"}.fa-dice-six:before{content:"\f526"}.fa-dice-three:before{content:"\f527"}.fa-dice-two:before{content:"\f528"}.fa-digg:before{content:"\f1a6"}.fa-digital-ocean:before{content:"\f391"}.fa-digital-tachograph:before{content:"\f566"}.fa-directions:before{content:"\f5eb"}.fa-discord:before{content:"\f392"}.fa-discourse:before{content:"\f393"}.fa-divide:before{content:"\f529"}.fa-dizzy:before{content:"\f567"}.fa-dna:before{content:"\f471"}.fa-dochub:before{content:"\f394"}.fa-docker:before{content:"\f395"}.fa-dollar-sign:before{content:"\f155"}.fa-dolly:before{content:"\f472"}.fa-dolly-flatbed:before{content:"\f474"}.fa-donate:before{content:"\f4b9"}.fa-door-closed:before{content:"\f52a"}.fa-door-open:before{content:"\f52b"}.fa-dot-circle:before{content:"\f192"}.fa-dove:before{content:"\f4ba"}.fa-download:before{content:"\f019"}.fa-draft2digital:before{content:"\f396"}.fa-drafting-compass:before{content:"\f568"}.fa-draw-polygon:before{content:"\f5ee"}.fa-dribbble:before{content:"\f17d"}.fa-dribbble-square:before{content:"\f397"}.fa-dropbox:before{content:"\f16b"}.fa-drum:before{content:"\f569"}.fa-drum-steelpan:before{content:"\f56a"}.fa-drupal:before{content:"\f1a9"}.fa-dumbbell:before{content:"\f44b"}.fa-dyalog:before{content:"\f399"}.fa-earlybirds:before{content:"\f39a"}.fa-ebay:before{content:"\f4f4"}.fa-edge:before{content:"\f282"}.fa-edit:before{content:"\f044"}.fa-eject:before{content:"\f052"}.fa-elementor:before{content:"\f430"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-ello:before{content:"\f5f1"}.fa-ember:before{content:"\f423"}.fa-empire:before{content:"\f1d1"}.fa-envelope:before{content:"\f0e0"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-text:before{content:"\f658"}.fa-envelope-square:before{content:"\f199"}.fa-envira:before{content:"\f299"}.fa-equals:before{content:"\f52c"}.fa-eraser:before{content:"\f12d"}.fa-erlang:before{content:"\f39d"}.fa-ethereum:before{content:"\f42e"}.fa-etsy:before{content:"\f2d7"}.fa-euro-sign:before{content:"\f153"}.fa-exchange-alt:before{content:"\f362"}.fa-exclamation:before{content:"\f12a"}.fa-exclamation-circle:before{content:"\f06a"}.fa-exclamation-triangle:before{content:"\f071"}.fa-expand:before{content:"\f065"}.fa-expand-arrows-alt:before{content:"\f31e"}.fa-expeditedssl:before{content:"\f23e"}.fa-external-link-alt:before{content:"\f35d"}.fa-external-link-square-alt:before{content:"\f360"}.fa-eye:before{content:"\f06e"}.fa-eye-dropper:before{content:"\f1fb"}.fa-eye-slash:before{content:"\f070"}.fa-facebook:before{content:"\f09a"}.fa-facebook-f:before{content:"\f39e"}.fa-facebook-messenger:before{content:"\f39f"}.fa-facebook-square:before{content:"\f082"}.fa-fast-backward:before{content:"\f049"}.fa-fast-forward:before{content:"\f050"}.fa-fax:before{content:"\f1ac"}.fa-feather:before{content:"\f52d"}.fa-feather-alt:before{content:"\f56b"}.fa-female:before{content:"\f182"}.fa-fighter-jet:before{content:"\f0fb"}.fa-file:before{content:"\f15b"}.fa-file-alt:before{content:"\f15c"}.fa-file-archive:before{content:"\f1c6"}.fa-file-audio:before{content:"\f1c7"}.fa-file-code:before{content:"\f1c9"}.fa-file-contract:before{content:"\f56c"}.fa-file-download:before{content:"\f56d"}.fa-file-excel:before{content:"\f1c3"}.fa-file-export:before{content:"\f56e"}.fa-file-image:before{content:"\f1c5"}.fa-file-import:before{content:"\f56f"}.fa-file-invoice:before{content:"\f570"}.fa-file-invoice-dollar:before{content:"\f571"}.fa-file-medical:before{content:"\f477"}.fa-file-medical-alt:before{content:"\f478"}.fa-file-pdf:before{content:"\f1c1"}.fa-file-powerpoint:before{content:"\f1c4"}.fa-file-prescription:before{content:"\f572"}.fa-file-signature:before{content:"\f573"}.fa-file-upload:before{content:"\f574"}.fa-file-video:before{content:"\f1c8"}.fa-file-word:before{content:"\f1c2"}.fa-fill:before{content:"\f575"}.fa-fill-drip:before{content:"\f576"}.fa-film:before{content:"\f008"}.fa-filter:before{content:"\f0b0"}.fa-fingerprint:before{content:"\f577"}.fa-fire:before{content:"\f06d"}.fa-fire-extinguisher:before{content:"\f134"}.fa-firefox:before{content:"\f269"}.fa-first-aid:before{content:"\f479"}.fa-first-order:before{content:"\f2b0"}.fa-first-order-alt:before{content:"\f50a"}.fa-firstdraft:before{content:"\f3a1"}.fa-fish:before{content:"\f578"}.fa-flag:before{content:"\f024"}.fa-flag-checkered:before{content:"\f11e"}.fa-flask:before{content:"\f0c3"}.fa-flickr:before{content:"\f16e"}.fa-flipboard:before{content:"\f44d"}.fa-flushed:before{content:"\f579"}.fa-fly:before{content:"\f417"}.fa-folder:before{content:"\f07b"}.fa-folder-minus:before{content:"\f65d"}.fa-folder-open:before{content:"\f07c"}.fa-folder-plus:before{content:"\f65e"}.fa-font:before{content:"\f031"}.fa-font-awesome:before{content:"\f2b4"}.fa-font-awesome-alt:before{content:"\f35c"}.fa-font-awesome-flag:before{content:"\f425"}.fa-font-awesome-logo-full:before{content:"\f4e6"}.fa-fonticons:before{content:"\f280"}.fa-fonticons-fi:before{content:"\f3a2"}.fa-football-ball:before{content:"\f44e"}.fa-fort-awesome:before{content:"\f286"}.fa-fort-awesome-alt:before{content:"\f3a3"}.fa-forumbee:before{content:"\f211"}.fa-forward:before{content:"\f04e"}.fa-foursquare:before{content:"\f180"}.fa-free-code-camp:before{content:"\f2c5"}.fa-freebsd:before{content:"\f3a4"}.fa-frog:before{content:"\f52e"}.fa-frown:before{content:"\f119"}.fa-frown-open:before{content:"\f57a"}.fa-fulcrum:before{content:"\f50b"}.fa-funnel-dollar:before{content:"\f662"}.fa-futbol:before{content:"\f1e3"}.fa-galactic-republic:before{content:"\f50c"}.fa-galactic-senate:before{content:"\f50d"}.fa-gamepad:before{content:"\f11b"}.fa-gas-pump:before{content:"\f52f"}.fa-gavel:before{content:"\f0e3"}.fa-gem:before{content:"\f3a5"}.fa-genderless:before{content:"\f22d"}.fa-get-pocket:before{content:"\f265"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-gift:before{content:"\f06b"}.fa-git:before{content:"\f1d3"}.fa-git-square:before{content:"\f1d2"}.fa-github:before{content:"\f09b"}.fa-github-alt:before{content:"\f113"}.fa-github-square:before{content:"\f092"}.fa-gitkraken:before{content:"\f3a6"}.fa-gitlab:before{content:"\f296"}.fa-gitter:before{content:"\f426"}.fa-glass-martini:before{content:"\f000"}.fa-glass-martini-alt:before{content:"\f57b"}.fa-glasses:before{content:"\f530"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-globe:before{content:"\f0ac"}.fa-globe-africa:before{content:"\f57c"}.fa-globe-americas:before{content:"\f57d"}.fa-globe-asia:before{content:"\f57e"}.fa-gofore:before{content:"\f3a7"}.fa-golf-ball:before{content:"\f450"}.fa-goodreads:before{content:"\f3a8"}.fa-goodreads-g:before{content:"\f3a9"}.fa-google:before{content:"\f1a0"}.fa-google-drive:before{content:"\f3aa"}.fa-google-play:before{content:"\f3ab"}.fa-google-plus:before{content:"\f2b3"}.fa-google-plus-g:before{content:"\f0d5"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-wallet:before{content:"\f1ee"}.fa-gopuram:before{content:"\f664"}.fa-graduation-cap:before{content:"\f19d"}.fa-gratipay:before{content:"\f184"}.fa-grav:before{content:"\f2d6"}.fa-greater-than:before{content:"\f531"}.fa-greater-than-equal:before{content:"\f532"}.fa-grimace:before{content:"\f57f"}.fa-grin:before{content:"\f580"}.fa-grin-alt:before{content:"\f581"}.fa-grin-beam:before{content:"\f582"}.fa-grin-beam-sweat:before{content:"\f583"}.fa-grin-hearts:before{content:"\f584"}.fa-grin-squint:before{content:"\f585"}.fa-grin-squint-tears:before{content:"\f586"}.fa-grin-stars:before{content:"\f587"}.fa-grin-tears:before{content:"\f588"}.fa-grin-tongue:before{content:"\f589"}.fa-grin-tongue-squint:before{content:"\f58a"}.fa-grin-tongue-wink:before{content:"\f58b"}.fa-grin-wink:before{content:"\f58c"}.fa-grip-horizontal:before{content:"\f58d"}.fa-grip-vertical:before{content:"\f58e"}.fa-gripfire:before{content:"\f3ac"}.fa-grunt:before{content:"\f3ad"}.fa-gulp:before{content:"\f3ae"}.fa-h-square:before{content:"\f0fd"}.fa-hacker-news:before{content:"\f1d4"}.fa-hacker-news-square:before{content:"\f3af"}.fa-hackerrank:before{content:"\f5f7"}.fa-hamsa:before{content:"\f665"}.fa-hand-holding:before{content:"\f4bd"}.fa-hand-holding-heart:before{content:"\f4be"}.fa-hand-holding-usd:before{content:"\f4c0"}.fa-hand-lizard:before{content:"\f258"}.fa-hand-paper:before{content:"\f256"}.fa-hand-peace:before{content:"\f25b"}.fa-hand-point-down:before{content:"\f0a7"}.fa-hand-point-left:before{content:"\f0a5"}.fa-hand-point-right:before{content:"\f0a4"}.fa-hand-point-up:before{content:"\f0a6"}.fa-hand-pointer:before{content:"\f25a"}.fa-hand-rock:before{content:"\f255"}.fa-hand-scissors:before{content:"\f257"}.fa-hand-spock:before{content:"\f259"}.fa-hands:before{content:"\f4c2"}.fa-hands-helping:before{content:"\f4c4"}.fa-handshake:before{content:"\f2b5"}.fa-hashtag:before{content:"\f292"}.fa-haykal:before{content:"\f666"}.fa-hdd:before{content:"\f0a0"}.fa-heading:before{content:"\f1dc"}.fa-headphones:before{content:"\f025"}.fa-headphones-alt:before{content:"\f58f"}.fa-headset:before{content:"\f590"}.fa-heart:before{content:"\f004"}.fa-heartbeat:before{content:"\f21e"}.fa-helicopter:before{content:"\f533"}.fa-highlighter:before{content:"\f591"}.fa-hips:before{content:"\f452"}.fa-hire-a-helper:before{content:"\f3b0"}.fa-history:before{content:"\f1da"}.fa-hockey-puck:before{content:"\f453"}.fa-home:before{content:"\f015"}.fa-hooli:before{content:"\f427"}.fa-hornbill:before{content:"\f592"}.fa-hospital:before{content:"\f0f8"}.fa-hospital-alt:before{content:"\f47d"}.fa-hospital-symbol:before{content:"\f47e"}.fa-hot-tub:before{content:"\f593"}.fa-hotel:before{content:"\f594"}.fa-hotjar:before{content:"\f3b1"}.fa-hourglass:before{content:"\f254"}.fa-hourglass-end:before{content:"\f253"}.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-start:before{content:"\f251"}.fa-houzz:before{content:"\f27c"}.fa-html5:before{content:"\f13b"}.fa-hubspot:before{content:"\f3b2"}.fa-i-cursor:before{content:"\f246"}.fa-id-badge:before{content:"\f2c1"}.fa-id-card:before{content:"\f2c2"}.fa-id-card-alt:before{content:"\f47f"}.fa-image:before{content:"\f03e"}.fa-images:before{content:"\f302"}.fa-imdb:before{content:"\f2d8"}.fa-inbox:before{content:"\f01c"}.fa-indent:before{content:"\f03c"}.fa-industry:before{content:"\f275"}.fa-infinity:before{content:"\f534"}.fa-info:before{content:"\f129"}.fa-info-circle:before{content:"\f05a"}.fa-instagram:before{content:"\f16d"}.fa-internet-explorer:before{content:"\f26b"}.fa-ioxhost:before{content:"\f208"}.fa-italic:before{content:"\f033"}.fa-itunes:before{content:"\f3b4"}.fa-itunes-note:before{content:"\f3b5"}.fa-java:before{content:"\f4e4"}.fa-jedi:before{content:"\f669"}.fa-jedi-order:before{content:"\f50e"}.fa-jenkins:before{content:"\f3b6"}.fa-joget:before{content:"\f3b7"}.fa-joint:before{content:"\f595"}.fa-joomla:before{content:"\f1aa"}.fa-journal-whills:before{content:"\f66a"}.fa-js:before{content:"\f3b8"}.fa-js-square:before{content:"\f3b9"}.fa-jsfiddle:before{content:"\f1cc"}.fa-kaaba:before{content:"\f66b"}.fa-kaggle:before{content:"\f5fa"}.fa-key:before{content:"\f084"}.fa-keybase:before{content:"\f4f5"}.fa-keyboard:before{content:"\f11c"}.fa-keycdn:before{content:"\f3ba"}.fa-khanda:before{content:"\f66d"}.fa-kickstarter:before{content:"\f3bb"}.fa-kickstarter-k:before{content:"\f3bc"}.fa-kiss:before{content:"\f596"}.fa-kiss-beam:before{content:"\f597"}.fa-kiss-wink-heart:before{content:"\f598"}.fa-kiwi-bird:before{content:"\f535"}.fa-korvue:before{content:"\f42f"}.fa-landmark:before{content:"\f66f"}.fa-language:before{content:"\f1ab"}.fa-laptop:before{content:"\f109"}.fa-laptop-code:before{content:"\f5fc"}.fa-laravel:before{content:"\f3bd"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-laugh:before{content:"\f599"}.fa-laugh-beam:before{content:"\f59a"}.fa-laugh-squint:before{content:"\f59b"}.fa-laugh-wink:before{content:"\f59c"}.fa-layer-group:before{content:"\f5fd"}.fa-leaf:before{content:"\f06c"}.fa-leanpub:before{content:"\f212"}.fa-lemon:before{content:"\f094"}.fa-less:before{content:"\f41d"}.fa-less-than:before{content:"\f536"}.fa-less-than-equal:before{content:"\f537"}.fa-level-down-alt:before{content:"\f3be"}.fa-level-up-alt:before{content:"\f3bf"}.fa-life-ring:before{content:"\f1cd"}.fa-lightbulb:before{content:"\f0eb"}.fa-line:before{content:"\f3c0"}.fa-link:before{content:"\f0c1"}.fa-linkedin:before{content:"\f08c"}.fa-linkedin-in:before{content:"\f0e1"}.fa-linode:before{content:"\f2b8"}.fa-linux:before{content:"\f17c"}.fa-lira-sign:before{content:"\f195"}.fa-list:before{content:"\f03a"}.fa-list-alt:before{content:"\f022"}.fa-list-ol:before{content:"\f0cb"}.fa-list-ul:before{content:"\f0ca"}.fa-location-arrow:before{content:"\f124"}.fa-lock:before{content:"\f023"}.fa-lock-open:before{content:"\f3c1"}.fa-long-arrow-alt-down:before{content:"\f309"}.fa-long-arrow-alt-left:before{content:"\f30a"}.fa-long-arrow-alt-right:before{content:"\f30b"}.fa-long-arrow-alt-up:before{content:"\f30c"}.fa-low-vision:before{content:"\f2a8"}.fa-luggage-cart:before{content:"\f59d"}.fa-lyft:before{content:"\f3c3"}.fa-magento:before{content:"\f3c4"}.fa-magic:before{content:"\f0d0"}.fa-magnet:before{content:"\f076"}.fa-mail-bulk:before{content:"\f674"}.fa-mailchimp:before{content:"\f59e"}.fa-male:before{content:"\f183"}.fa-mandalorian:before{content:"\f50f"}.fa-map:before{content:"\f279"}.fa-map-marked:before{content:"\f59f"}.fa-map-marked-alt:before{content:"\f5a0"}.fa-map-marker:before{content:"\f041"}.fa-map-marker-alt:before{content:"\f3c5"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-markdown:before{content:"\f60f"}.fa-marker:before{content:"\f5a1"}.fa-mars:before{content:"\f222"}.fa-mars-double:before{content:"\f227"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mastodon:before{content:"\f4f6"}.fa-maxcdn:before{content:"\f136"}.fa-medal:before{content:"\f5a2"}.fa-medapps:before{content:"\f3c6"}.fa-medium:before{content:"\f23a"}.fa-medium-m:before{content:"\f3c7"}.fa-medkit:before{content:"\f0fa"}.fa-medrt:before{content:"\f3c8"}.fa-meetup:before{content:"\f2e0"}.fa-megaport:before{content:"\f5a3"}.fa-meh:before{content:"\f11a"}.fa-meh-blank:before{content:"\f5a4"}.fa-meh-rolling-eyes:before{content:"\f5a5"}.fa-memory:before{content:"\f538"}.fa-menorah:before{content:"\f676"}.fa-mercury:before{content:"\f223"}.fa-microchip:before{content:"\f2db"}.fa-microphone:before{content:"\f130"}.fa-microphone-alt:before{content:"\f3c9"}.fa-microphone-alt-slash:before{content:"\f539"}.fa-microphone-slash:before{content:"\f131"}.fa-microscope:before{content:"\f610"}.fa-microsoft:before{content:"\f3ca"}.fa-minus:before{content:"\f068"}.fa-minus-circle:before{content:"\f056"}.fa-minus-square:before{content:"\f146"}.fa-mix:before{content:"\f3cb"}.fa-mixcloud:before{content:"\f289"}.fa-mizuni:before{content:"\f3cc"}.fa-mobile:before{content:"\f10b"}.fa-mobile-alt:before{content:"\f3cd"}.fa-modx:before{content:"\f285"}.fa-monero:before{content:"\f3d0"}.fa-money-bill:before{content:"\f0d6"}.fa-money-bill-alt:before{content:"\f3d1"}.fa-money-bill-wave:before{content:"\f53a"}.fa-money-bill-wave-alt:before{content:"\f53b"}.fa-money-check:before{content:"\f53c"}.fa-money-check-alt:before{content:"\f53d"}.fa-monument:before{content:"\f5a6"}.fa-moon:before{content:"\f186"}.fa-mortar-pestle:before{content:"\f5a7"}.fa-mosque:before{content:"\f678"}.fa-motorcycle:before{content:"\f21c"}.fa-mouse-pointer:before{content:"\f245"}.fa-music:before{content:"\f001"}.fa-napster:before{content:"\f3d2"}.fa-neos:before{content:"\f612"}.fa-neuter:before{content:"\f22c"}.fa-newspaper:before{content:"\f1ea"}.fa-nimblr:before{content:"\f5a8"}.fa-nintendo-switch:before{content:"\f418"}.fa-node:before{content:"\f419"}.fa-node-js:before{content:"\f3d3"}.fa-not-equal:before{content:"\f53e"}.fa-notes-medical:before{content:"\f481"}.fa-npm:before{content:"\f3d4"}.fa-ns8:before{content:"\f3d5"}.fa-nutritionix:before{content:"\f3d6"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-oil-can:before{content:"\f613"}.fa-old-republic:before{content:"\f510"}.fa-om:before{content:"\f679"}.fa-opencart:before{content:"\f23d"}.fa-openid:before{content:"\f19b"}.fa-opera:before{content:"\f26a"}.fa-optin-monster:before{content:"\f23c"}.fa-osi:before{content:"\f41a"}.fa-outdent:before{content:"\f03b"}.fa-page4:before{content:"\f3d7"}.fa-pagelines:before{content:"\f18c"}.fa-paint-brush:before{content:"\f1fc"}.fa-paint-roller:before{content:"\f5aa"}.fa-palette:before{content:"\f53f"}.fa-palfed:before{content:"\f3d8"}.fa-pallet:before{content:"\f482"}.fa-paper-plane:before{content:"\f1d8"}.fa-paperclip:before{content:"\f0c6"}.fa-parachute-box:before{content:"\f4cd"}.fa-paragraph:before{content:"\f1dd"}.fa-parking:before{content:"\f540"}.fa-passport:before{content:"\f5ab"}.fa-pastafarianism:before{content:"\f67b"}.fa-paste:before{content:"\f0ea"}.fa-patreon:before{content:"\f3d9"}.fa-pause:before{content:"\f04c"}.fa-pause-circle:before{content:"\f28b"}.fa-paw:before{content:"\f1b0"}.fa-paypal:before{content:"\f1ed"}.fa-peace:before{content:"\f67c"}.fa-pen:before{content:"\f304"}.fa-pen-alt:before{content:"\f305"}.fa-pen-fancy:before{content:"\f5ac"}.fa-pen-nib:before{content:"\f5ad"}.fa-pen-square:before{content:"\f14b"}.fa-pencil-alt:before{content:"\f303"}.fa-pencil-ruler:before{content:"\f5ae"}.fa-people-carry:before{content:"\f4ce"}.fa-percent:before{content:"\f295"}.fa-percentage:before{content:"\f541"}.fa-periscope:before{content:"\f3da"}.fa-phabricator:before{content:"\f3db"}.fa-phoenix-framework:before{content:"\f3dc"}.fa-phoenix-squadron:before{content:"\f511"}.fa-phone:before{content:"\f095"}.fa-phone-slash:before{content:"\f3dd"}.fa-phone-square:before{content:"\f098"}.fa-phone-volume:before{content:"\f2a0"}.fa-php:before{content:"\f457"}.fa-pied-piper:before{content:"\f2ae"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-pied-piper-hat:before{content:"\f4e5"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-piggy-bank:before{content:"\f4d3"}.fa-pills:before{content:"\f484"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-p:before{content:"\f231"}.fa-pinterest-square:before{content:"\f0d3"}.fa-place-of-worship:before{content:"\f67f"}.fa-plane:before{content:"\f072"}.fa-plane-arrival:before{content:"\f5af"}.fa-plane-departure:before{content:"\f5b0"}.fa-play:before{content:"\f04b"}.fa-play-circle:before{content:"\f144"}.fa-playstation:before{content:"\f3df"}.fa-plug:before{content:"\f1e6"}.fa-plus:before{content:"\f067"}.fa-plus-circle:before{content:"\f055"}.fa-plus-square:before{content:"\f0fe"}.fa-podcast:before{content:"\f2ce"}.fa-poll:before{content:"\f681"}.fa-poll-h:before{content:"\f682"}.fa-poo:before{content:"\f2fe"}.fa-poop:before{content:"\f619"}.fa-portrait:before{content:"\f3e0"}.fa-pound-sign:before{content:"\f154"}.fa-power-off:before{content:"\f011"}.fa-pray:before{content:"\f683"}.fa-praying-hands:before{content:"\f684"}.fa-prescription:before{content:"\f5b1"}.fa-prescription-bottle:before{content:"\f485"}.fa-prescription-bottle-alt:before{content:"\f486"}.fa-print:before{content:"\f02f"}.fa-procedures:before{content:"\f487"}.fa-product-hunt:before{content:"\f288"}.fa-project-diagram:before{content:"\f542"}.fa-pushed:before{content:"\f3e1"}.fa-puzzle-piece:before{content:"\f12e"}.fa-python:before{content:"\f3e2"}.fa-qq:before{content:"\f1d6"}.fa-qrcode:before{content:"\f029"}.fa-question:before{content:"\f128"}.fa-question-circle:before{content:"\f059"}.fa-quidditch:before{content:"\f458"}.fa-quinscape:before{content:"\f459"}.fa-quora:before{content:"\f2c4"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-quran:before{content:"\f687"}.fa-r-project:before{content:"\f4f7"}.fa-random:before{content:"\f074"}.fa-ravelry:before{content:"\f2d9"}.fa-react:before{content:"\f41b"}.fa-readme:before{content:"\f4d5"}.fa-rebel:before{content:"\f1d0"}.fa-receipt:before{content:"\f543"}.fa-recycle:before{content:"\f1b8"}.fa-red-river:before{content:"\f3e3"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-alien:before{content:"\f281"}.fa-reddit-square:before{content:"\f1a2"}.fa-redo:before{content:"\f01e"}.fa-redo-alt:before{content:"\f2f9"}.fa-registered:before{content:"\f25d"}.fa-rendact:before{content:"\f3e4"}.fa-renren:before{content:"\f18b"}.fa-reply:before{content:"\f3e5"}.fa-reply-all:before{content:"\f122"}.fa-replyd:before{content:"\f3e6"}.fa-researchgate:before{content:"\f4f8"}.fa-resolving:before{content:"\f3e7"}.fa-retweet:before{content:"\f079"}.fa-rev:before{content:"\f5b2"}.fa-ribbon:before{content:"\f4d6"}.fa-road:before{content:"\f018"}.fa-robot:before{content:"\f544"}.fa-rocket:before{content:"\f135"}.fa-rocketchat:before{content:"\f3e8"}.fa-rockrms:before{content:"\f3e9"}.fa-route:before{content:"\f4d7"}.fa-rss:before{content:"\f09e"}.fa-rss-square:before{content:"\f143"}.fa-ruble-sign:before{content:"\f158"}.fa-ruler:before{content:"\f545"}.fa-ruler-combined:before{content:"\f546"}.fa-ruler-horizontal:before{content:"\f547"}.fa-ruler-vertical:before{content:"\f548"}.fa-rupee-sign:before{content:"\f156"}.fa-sad-cry:before{content:"\f5b3"}.fa-sad-tear:before{content:"\f5b4"}.fa-safari:before{content:"\f267"}.fa-sass:before{content:"\f41e"}.fa-save:before{content:"\f0c7"}.fa-schlix:before{content:"\f3ea"}.fa-school:before{content:"\f549"}.fa-screwdriver:before{content:"\f54a"}.fa-scribd:before{content:"\f28a"}.fa-search:before{content:"\f002"}.fa-search-dollar:before{content:"\f688"}.fa-search-location:before{content:"\f689"}.fa-search-minus:before{content:"\f010"}.fa-search-plus:before{content:"\f00e"}.fa-searchengin:before{content:"\f3eb"}.fa-seedling:before{content:"\f4d8"}.fa-sellcast:before{content:"\f2da"}.fa-sellsy:before{content:"\f213"}.fa-server:before{content:"\f233"}.fa-servicestack:before{content:"\f3ec"}.fa-shapes:before{content:"\f61f"}.fa-share:before{content:"\f064"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-share-square:before{content:"\f14d"}.fa-shekel-sign:before{content:"\f20b"}.fa-shield-alt:before{content:"\f3ed"}.fa-ship:before{content:"\f21a"}.fa-shipping-fast:before{content:"\f48b"}.fa-shirtsinbulk:before{content:"\f214"}.fa-shoe-prints:before{content:"\f54b"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-shopping-cart:before{content:"\f07a"}.fa-shopware:before{content:"\f5b5"}.fa-shower:before{content:"\f2cc"}.fa-shuttle-van:before{content:"\f5b6"}.fa-sign:before{content:"\f4d9"}.fa-sign-in-alt:before{content:"\f2f6"}.fa-sign-language:before{content:"\f2a7"}.fa-sign-out-alt:before{content:"\f2f5"}.fa-signal:before{content:"\f012"}.fa-signature:before{content:"\f5b7"}.fa-simplybuilt:before{content:"\f215"}.fa-sistrix:before{content:"\f3ee"}.fa-sitemap:before{content:"\f0e8"}.fa-sith:before{content:"\f512"}.fa-skull:before{content:"\f54c"}.fa-skyatlas:before{content:"\f216"}.fa-skype:before{content:"\f17e"}.fa-slack:before{content:"\f198"}.fa-slack-hash:before{content:"\f3ef"}.fa-sliders-h:before{content:"\f1de"}.fa-slideshare:before{content:"\f1e7"}.fa-smile:before{content:"\f118"}.fa-smile-beam:before{content:"\f5b8"}.fa-smile-wink:before{content:"\f4da"}.fa-smoking:before{content:"\f48d"}.fa-smoking-ban:before{content:"\f54d"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-snowflake:before{content:"\f2dc"}.fa-socks:before{content:"\f696"}.fa-solar-panel:before{content:"\f5ba"}.fa-sort:before{content:"\f0dc"}.fa-sort-alpha-down:before{content:"\f15d"}.fa-sort-alpha-up:before{content:"\f15e"}.fa-sort-amount-down:before{content:"\f160"}.fa-sort-amount-up:before{content:"\f161"}.fa-sort-down:before{content:"\f0dd"}.fa-sort-numeric-down:before{content:"\f162"}.fa-sort-numeric-up:before{content:"\f163"}.fa-sort-up:before{content:"\f0de"}.fa-soundcloud:before{content:"\f1be"}.fa-spa:before{content:"\f5bb"}.fa-space-shuttle:before{content:"\f197"}.fa-speakap:before{content:"\f3f3"}.fa-spinner:before{content:"\f110"}.fa-splotch:before{content:"\f5bc"}.fa-spotify:before{content:"\f1bc"}.fa-spray-can:before{content:"\f5bd"}.fa-square:before{content:"\f0c8"}.fa-square-full:before{content:"\f45c"}.fa-square-root-alt:before{content:"\f698"}.fa-squarespace:before{content:"\f5be"}.fa-stack-exchange:before{content:"\f18d"}.fa-stack-overflow:before{content:"\f16c"}.fa-stamp:before{content:"\f5bf"}.fa-star:before{content:"\f005"}.fa-star-and-crescent:before{content:"\f699"}.fa-star-half:before{content:"\f089"}.fa-star-half-alt:before{content:"\f5c0"}.fa-star-of-david:before{content:"\f69a"}.fa-star-of-life:before{content:"\f621"}.fa-staylinked:before{content:"\f3f5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-steam-symbol:before{content:"\f3f6"}.fa-step-backward:before{content:"\f048"}.fa-step-forward:before{content:"\f051"}.fa-stethoscope:before{content:"\f0f1"}.fa-sticker-mule:before{content:"\f3f7"}.fa-sticky-note:before{content:"\f249"}.fa-stop:before{content:"\f04d"}.fa-stop-circle:before{content:"\f28d"}.fa-stopwatch:before{content:"\f2f2"}.fa-store:before{content:"\f54e"}.fa-store-alt:before{content:"\f54f"}.fa-strava:before{content:"\f428"}.fa-stream:before{content:"\f550"}.fa-street-view:before{content:"\f21d"}.fa-strikethrough:before{content:"\f0cc"}.fa-stripe:before{content:"\f429"}.fa-stripe-s:before{content:"\f42a"}.fa-stroopwafel:before{content:"\f551"}.fa-studiovinari:before{content:"\f3f8"}.fa-stumbleupon:before{content:"\f1a4"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-subscript:before{content:"\f12c"}.fa-subway:before{content:"\f239"}.fa-suitcase:before{content:"\f0f2"}.fa-suitcase-rolling:before{content:"\f5c1"}.fa-sun:before{content:"\f185"}.fa-superpowers:before{content:"\f2dd"}.fa-superscript:before{content:"\f12b"}.fa-supple:before{content:"\f3f9"}.fa-surprise:before{content:"\f5c2"}.fa-swatchbook:before{content:"\f5c3"}.fa-swimmer:before{content:"\f5c4"}.fa-swimming-pool:before{content:"\f5c5"}.fa-synagogue:before{content:"\f69b"}.fa-sync:before{content:"\f021"}.fa-sync-alt:before{content:"\f2f1"}.fa-syringe:before{content:"\f48e"}.fa-table:before{content:"\f0ce"}.fa-table-tennis:before{content:"\f45d"}.fa-tablet:before{content:"\f10a"}.fa-tablet-alt:before{content:"\f3fa"}.fa-tablets:before{content:"\f490"}.fa-tachometer-alt:before{content:"\f3fd"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-tape:before{content:"\f4db"}.fa-tasks:before{content:"\f0ae"}.fa-taxi:before{content:"\f1ba"}.fa-teamspeak:before{content:"\f4f9"}.fa-teeth:before{content:"\f62e"}.fa-teeth-open:before{content:"\f62f"}.fa-telegram:before{content:"\f2c6"}.fa-telegram-plane:before{content:"\f3fe"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-terminal:before{content:"\f120"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-th:before{content:"\f00a"}.fa-th-large:before{content:"\f009"}.fa-th-list:before{content:"\f00b"}.fa-the-red-yeti:before{content:"\f69d"}.fa-theater-masks:before{content:"\f630"}.fa-themeco:before{content:"\f5c6"}.fa-themeisle:before{content:"\f2b2"}.fa-thermometer:before{content:"\f491"}.fa-thermometer-empty:before{content:"\f2cb"}.fa-thermometer-full:before{content:"\f2c7"}.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-thumbs-down:before{content:"\f165"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbtack:before{content:"\f08d"}.fa-ticket-alt:before{content:"\f3ff"}.fa-times:before{content:"\f00d"}.fa-times-circle:before{content:"\f057"}.fa-tint:before{content:"\f043"}.fa-tint-slash:before{content:"\f5c7"}.fa-tired:before{content:"\f5c8"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-toolbox:before{content:"\f552"}.fa-tooth:before{content:"\f5c9"}.fa-torah:before{content:"\f6a0"}.fa-torii-gate:before{content:"\f6a1"}.fa-trade-federation:before{content:"\f513"}.fa-trademark:before{content:"\f25c"}.fa-traffic-light:before{content:"\f637"}.fa-train:before{content:"\f238"}.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-trash:before{content:"\f1f8"}.fa-trash-alt:before{content:"\f2ed"}.fa-tree:before{content:"\f1bb"}.fa-trello:before{content:"\f181"}.fa-tripadvisor:before{content:"\f262"}.fa-trophy:before{content:"\f091"}.fa-truck:before{content:"\f0d1"}.fa-truck-loading:before{content:"\f4de"}.fa-truck-monster:before{content:"\f63b"}.fa-truck-moving:before{content:"\f4df"}.fa-truck-pickup:before{content:"\f63c"}.fa-tshirt:before{content:"\f553"}.fa-tty:before{content:"\f1e4"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-tv:before{content:"\f26c"}.fa-twitch:before{content:"\f1e8"}.fa-twitter:before{content:"\f099"}.fa-twitter-square:before{content:"\f081"}.fa-typo3:before{content:"\f42b"}.fa-uber:before{content:"\f402"}.fa-uikit:before{content:"\f403"}.fa-umbrella:before{content:"\f0e9"}.fa-umbrella-beach:before{content:"\f5ca"}.fa-underline:before{content:"\f0cd"}.fa-undo:before{content:"\f0e2"}.fa-undo-alt:before{content:"\f2ea"}.fa-uniregistry:before{content:"\f404"}.fa-universal-access:before{content:"\f29a"}.fa-university:before{content:"\f19c"}.fa-unlink:before{content:"\f127"}.fa-unlock:before{content:"\f09c"}.fa-unlock-alt:before{content:"\f13e"}.fa-untappd:before{content:"\f405"}.fa-upload:before{content:"\f093"}.fa-usb:before{content:"\f287"}.fa-user:before{content:"\f007"}.fa-user-alt:before{content:"\f406"}.fa-user-alt-slash:before{content:"\f4fa"}.fa-user-astronaut:before{content:"\f4fb"}.fa-user-check:before{content:"\f4fc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-clock:before{content:"\f4fd"}.fa-user-cog:before{content:"\f4fe"}.fa-user-edit:before{content:"\f4ff"}.fa-user-friends:before{content:"\f500"}.fa-user-graduate:before{content:"\f501"}.fa-user-lock:before{content:"\f502"}.fa-user-md:before{content:"\f0f0"}.fa-user-minus:before{content:"\f503"}.fa-user-ninja:before{content:"\f504"}.fa-user-plus:before{content:"\f234"}.fa-user-secret:before{content:"\f21b"}.fa-user-shield:before{content:"\f505"}.fa-user-slash:before{content:"\f506"}.fa-user-tag:before{content:"\f507"}.fa-user-tie:before{content:"\f508"}.fa-user-times:before{content:"\f235"}.fa-users:before{content:"\f0c0"}.fa-users-cog:before{content:"\f509"}.fa-ussunnah:before{content:"\f407"}.fa-utensil-spoon:before{content:"\f2e5"}.fa-utensils:before{content:"\f2e7"}.fa-vaadin:before{content:"\f408"}.fa-vector-square:before{content:"\f5cb"}.fa-venus:before{content:"\f221"}.fa-venus-double:before{content:"\f226"}.fa-venus-mars:before{content:"\f228"}.fa-viacoin:before{content:"\f237"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-vial:before{content:"\f492"}.fa-vials:before{content:"\f493"}.fa-viber:before{content:"\f409"}.fa-video:before{content:"\f03d"}.fa-video-slash:before{content:"\f4e2"}.fa-vihara:before{content:"\f6a7"}.fa-vimeo:before{content:"\f40a"}.fa-vimeo-square:before{content:"\f194"}.fa-vimeo-v:before{content:"\f27d"}.fa-vine:before{content:"\f1ca"}.fa-vk:before{content:"\f189"}.fa-vnv:before{content:"\f40b"}.fa-volleyball-ball:before{content:"\f45f"}.fa-volume-down:before{content:"\f027"}.fa-volume-off:before{content:"\f026"}.fa-volume-up:before{content:"\f028"}.fa-vuejs:before{content:"\f41f"}.fa-walking:before{content:"\f554"}.fa-wallet:before{content:"\f555"}.fa-warehouse:before{content:"\f494"}.fa-weebly:before{content:"\f5cc"}.fa-weibo:before{content:"\f18a"}.fa-weight:before{content:"\f496"}.fa-weight-hanging:before{content:"\f5cd"}.fa-weixin:before{content:"\f1d7"}.fa-whatsapp:before{content:"\f232"}.fa-whatsapp-square:before{content:"\f40c"}.fa-wheelchair:before{content:"\f193"}.fa-whmcs:before{content:"\f40d"}.fa-wifi:before{content:"\f1eb"}.fa-wikipedia-w:before{content:"\f266"}.fa-window-close:before{content:"\f410"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-windows:before{content:"\f17a"}.fa-wine-glass:before{content:"\f4e3"}.fa-wine-glass-alt:before{content:"\f5ce"}.fa-wix:before{content:"\f5cf"}.fa-wolf-pack-battalion:before{content:"\f514"}.fa-won-sign:before{content:"\f159"}.fa-wordpress:before{content:"\f19a"}.fa-wordpress-simple:before{content:"\f411"}.fa-wpbeginner:before{content:"\f297"}.fa-wpexplorer:before{content:"\f2de"}.fa-wpforms:before{content:"\f298"}.fa-wrench:before{content:"\f0ad"}.fa-x-ray:before{content:"\f497"}.fa-xbox:before{content:"\f412"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-y-combinator:before{content:"\f23b"}.fa-yahoo:before{content:"\f19e"}.fa-yandex:before{content:"\f413"}.fa-yandex-international:before{content:"\f414"}.fa-yelp:before{content:"\f1e9"}.fa-yen-sign:before{content:"\f157"}.fa-yin-yang:before{content:"\f6ad"}.fa-yoast:before{content:"\f2b1"}.fa-youtube:before{content:"\f167"}.fa-youtube-square:before{content:"\f431"}.fa-zhihu:before{content:"\f63f"}.sr-only{border:0;clip:rect(0,0,0,0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.sr-only-focusable:active,.sr-only-focusable:focus{clip:auto;height:auto;margin:0;overflow:visible;position:static;width:auto} \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/css/regular.min.css b/public/assets/lib/fontawesome-free/css/regular.min.css new file mode 100755 index 0000000..a08c557 --- /dev/null +++ b/public/assets/lib/fontawesome-free/css/regular.min.css @@ -0,0 +1,5 @@ +/*! + * Font Awesome Free 5.3.1 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + */ +@font-face{font-family:"Font Awesome 5 Free";font-style:normal;font-weight:400;src:url(../webfonts/fa-regular-400.eot);src:url(../webfonts/fa-regular-400.eot?#iefix) format("embedded-opentype"),url(../webfonts/fa-regular-400.woff2) format("woff2"),url(../webfonts/fa-regular-400.woff) format("woff"),url(../webfonts/fa-regular-400.ttf) format("truetype"),url(../webfonts/fa-regular-400.svg#fontawesome) format("svg")}.far{font-family:"Font Awesome 5 Free";font-weight:400} \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/css/solid.min.css b/public/assets/lib/fontawesome-free/css/solid.min.css new file mode 100755 index 0000000..a389da7 --- /dev/null +++ b/public/assets/lib/fontawesome-free/css/solid.min.css @@ -0,0 +1,5 @@ +/*! + * Font Awesome Free 5.3.1 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + */ +@font-face{font-family:"Font Awesome 5 Free";font-style:normal;font-weight:900;src:url(../webfonts/fa-solid-900.eot);src:url(../webfonts/fa-solid-900.eot?#iefix) format("embedded-opentype"),url(../webfonts/fa-solid-900.woff2) format("woff2"),url(../webfonts/fa-solid-900.woff) format("woff"),url(../webfonts/fa-solid-900.ttf) format("truetype"),url(../webfonts/fa-solid-900.svg#fontawesome) format("svg")}.fa,.fas{font-family:"Font Awesome 5 Free";font-weight:900} \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/css/svg-with-js.min.css b/public/assets/lib/fontawesome-free/css/svg-with-js.min.css new file mode 100755 index 0000000..d303435 --- /dev/null +++ b/public/assets/lib/fontawesome-free/css/svg-with-js.min.css @@ -0,0 +1,5 @@ +/*! + * Font Awesome Free 5.3.1 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + */ +.svg-inline--fa,svg:not(:root).svg-inline--fa{overflow:visible}.svg-inline--fa{display:inline-block;font-size:inherit;height:1em;vertical-align:-.125em}.svg-inline--fa.fa-lg{vertical-align:-.225em}.svg-inline--fa.fa-w-1{width:.0625em}.svg-inline--fa.fa-w-2{width:.125em}.svg-inline--fa.fa-w-3{width:.1875em}.svg-inline--fa.fa-w-4{width:.25em}.svg-inline--fa.fa-w-5{width:.3125em}.svg-inline--fa.fa-w-6{width:.375em}.svg-inline--fa.fa-w-7{width:.4375em}.svg-inline--fa.fa-w-8{width:.5em}.svg-inline--fa.fa-w-9{width:.5625em}.svg-inline--fa.fa-w-10{width:.625em}.svg-inline--fa.fa-w-11{width:.6875em}.svg-inline--fa.fa-w-12{width:.75em}.svg-inline--fa.fa-w-13{width:.8125em}.svg-inline--fa.fa-w-14{width:.875em}.svg-inline--fa.fa-w-15{width:.9375em}.svg-inline--fa.fa-w-16{width:1em}.svg-inline--fa.fa-w-17{width:1.0625em}.svg-inline--fa.fa-w-18{width:1.125em}.svg-inline--fa.fa-w-19{width:1.1875em}.svg-inline--fa.fa-w-20{width:1.25em}.svg-inline--fa.fa-pull-left{margin-right:.3em;width:auto}.svg-inline--fa.fa-pull-right{margin-left:.3em;width:auto}.svg-inline--fa.fa-border{height:1.5em}.svg-inline--fa.fa-li{width:2em}.svg-inline--fa.fa-fw{width:1.25em}.fa-layers svg.svg-inline--fa{bottom:0;left:0;margin:auto;position:absolute;right:0;top:0}.fa-layers{display:inline-block;height:1em;position:relative;text-align:center;vertical-align:-.125em;width:1em}.fa-layers svg.svg-inline--fa{transform-origin:center center}.fa-layers-counter,.fa-layers-text{display:inline-block;position:absolute;text-align:center}.fa-layers-text{left:50%;top:50%;transform:translate(-50%,-50%);transform-origin:center center}.fa-layers-counter{background-color:#ff253a;border-radius:1em;box-sizing:border-box;color:#fff;height:1.5em;line-height:1;max-width:5em;min-width:1.5em;overflow:hidden;padding:.25em;right:0;text-overflow:ellipsis;top:0;transform:scale(.25);transform-origin:top right}.fa-layers-bottom-right{bottom:0;right:0;top:auto;transform:scale(.25);transform-origin:bottom right}.fa-layers-bottom-left{bottom:0;left:0;right:auto;top:auto;transform:scale(.25);transform-origin:bottom left}.fa-layers-top-right{right:0;top:0;transform:scale(.25);transform-origin:top right}.fa-layers-top-left{left:0;right:auto;top:0;transform:scale(.25);transform-origin:top left}.fa-lg{font-size:1.33333em;line-height:.75em;vertical-align:-.0667em}.fa-xs{font-size:.75em}.fa-sm{font-size:.875em}.fa-1x{font-size:1em}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-6x{font-size:6em}.fa-7x{font-size:7em}.fa-8x{font-size:8em}.fa-9x{font-size:9em}.fa-10x{font-size:10em}.fa-fw{text-align:center;width:1.25em}.fa-ul{list-style-type:none;margin-left:2.5em;padding-left:0}.fa-ul>li{position:relative}.fa-li{left:-2em;position:absolute;text-align:center;width:2em;line-height:inherit}.fa-border{border:.08em solid #eee;border-radius:.1em;padding:.2em .25em .15em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left,.fab.fa-pull-left,.fal.fa-pull-left,.far.fa-pull-left,.fas.fa-pull-left{margin-right:.3em}.fa.fa-pull-right,.fab.fa-pull-right,.fal.fa-pull-right,.far.fa-pull-right,.fas.fa-pull-right{margin-left:.3em}.fa-spin{animation:fa-spin 2s infinite linear}.fa-pulse{animation:fa-spin 1s infinite steps(8)}@keyframes fa-spin{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";transform:scaleX(-1)}.fa-flip-vertical{transform:scaleY(-1)}.fa-flip-horizontal.fa-flip-vertical,.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)"}.fa-flip-horizontal.fa-flip-vertical{transform:scale(-1)}:root .fa-flip-horizontal,:root .fa-flip-vertical,:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270{-webkit-filter:none;filter:none}.fa-stack{display:inline-block;height:2em;position:relative;width:2em}.fa-stack-1x,.fa-stack-2x{bottom:0;left:0;margin:auto;position:absolute;right:0;top:0}.svg-inline--fa.fa-stack-1x{height:1em;width:1em}.svg-inline--fa.fa-stack-2x{height:2em;width:2em}.fa-inverse{color:#fff}.sr-only{border:0;clip:rect(0,0,0,0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.sr-only-focusable:active,.sr-only-focusable:focus{clip:auto;height:auto;margin:0;overflow:visible;position:static;width:auto} \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/css/v4-shims.min.css b/public/assets/lib/fontawesome-free/css/v4-shims.min.css new file mode 100755 index 0000000..5a2cd78 --- /dev/null +++ b/public/assets/lib/fontawesome-free/css/v4-shims.min.css @@ -0,0 +1,5 @@ +/*! + * Font Awesome Free 5.3.1 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + */ +.fa.fa-glass:before{content:"\f000"}.fa.fa-meetup{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-star-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-star-o:before{content:"\f005"}.fa.fa-close:before,.fa.fa-remove:before{content:"\f00d"}.fa.fa-gear:before{content:"\f013"}.fa.fa-trash-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-trash-o:before{content:"\f2ed"}.fa.fa-file-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-o:before{content:"\f15b"}.fa.fa-clock-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-clock-o:before{content:"\f017"}.fa.fa-arrow-circle-o-down{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-arrow-circle-o-down:before{content:"\f358"}.fa.fa-arrow-circle-o-up{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-arrow-circle-o-up:before{content:"\f35b"}.fa.fa-play-circle-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-play-circle-o:before{content:"\f144"}.fa.fa-repeat:before,.fa.fa-rotate-right:before{content:"\f01e"}.fa.fa-refresh:before{content:"\f021"}.fa.fa-list-alt{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-dedent:before{content:"\f03b"}.fa.fa-video-camera:before{content:"\f03d"}.fa.fa-picture-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-picture-o:before{content:"\f03e"}.fa.fa-photo{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-photo:before{content:"\f03e"}.fa.fa-image{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-image:before{content:"\f03e"}.fa.fa-pencil:before{content:"\f303"}.fa.fa-map-marker:before{content:"\f3c5"}.fa.fa-pencil-square-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-pencil-square-o:before{content:"\f044"}.fa.fa-share-square-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-share-square-o:before{content:"\f14d"}.fa.fa-check-square-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-check-square-o:before{content:"\f14a"}.fa.fa-arrows:before{content:"\f0b2"}.fa.fa-times-circle-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-times-circle-o:before{content:"\f057"}.fa.fa-check-circle-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-check-circle-o:before{content:"\f058"}.fa.fa-mail-forward:before{content:"\f064"}.fa.fa-eye,.fa.fa-eye-slash{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-warning:before{content:"\f071"}.fa.fa-calendar:before{content:"\f073"}.fa.fa-arrows-v:before{content:"\f338"}.fa.fa-arrows-h:before{content:"\f337"}.fa.fa-bar-chart{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-bar-chart:before{content:"\f080"}.fa.fa-bar-chart-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-bar-chart-o:before{content:"\f080"}.fa.fa-facebook-square,.fa.fa-twitter-square{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-gears:before{content:"\f085"}.fa.fa-thumbs-o-up{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-thumbs-o-up:before{content:"\f164"}.fa.fa-thumbs-o-down{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-thumbs-o-down:before{content:"\f165"}.fa.fa-heart-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-heart-o:before{content:"\f004"}.fa.fa-sign-out:before{content:"\f2f5"}.fa.fa-linkedin-square{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-linkedin-square:before{content:"\f08c"}.fa.fa-thumb-tack:before{content:"\f08d"}.fa.fa-external-link:before{content:"\f35d"}.fa.fa-sign-in:before{content:"\f2f6"}.fa.fa-github-square{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-lemon-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-lemon-o:before{content:"\f094"}.fa.fa-square-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-square-o:before{content:"\f0c8"}.fa.fa-bookmark-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-bookmark-o:before{content:"\f02e"}.fa.fa-facebook,.fa.fa-twitter{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-facebook:before{content:"\f39e"}.fa.fa-facebook-f{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-facebook-f:before{content:"\f39e"}.fa.fa-github{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-credit-card{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-feed:before{content:"\f09e"}.fa.fa-hdd-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hdd-o:before{content:"\f0a0"}.fa.fa-hand-o-right{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-o-right:before{content:"\f0a4"}.fa.fa-hand-o-left{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-o-left:before{content:"\f0a5"}.fa.fa-hand-o-up{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-o-up:before{content:"\f0a6"}.fa.fa-hand-o-down{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-o-down:before{content:"\f0a7"}.fa.fa-arrows-alt:before{content:"\f31e"}.fa.fa-group:before{content:"\f0c0"}.fa.fa-chain:before{content:"\f0c1"}.fa.fa-scissors:before{content:"\f0c4"}.fa.fa-files-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-files-o:before{content:"\f0c5"}.fa.fa-floppy-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-floppy-o:before{content:"\f0c7"}.fa.fa-navicon:before,.fa.fa-reorder:before{content:"\f0c9"}.fa.fa-google-plus,.fa.fa-google-plus-square,.fa.fa-pinterest,.fa.fa-pinterest-square{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-google-plus:before{content:"\f0d5"}.fa.fa-money{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-money:before{content:"\f3d1"}.fa.fa-unsorted:before{content:"\f0dc"}.fa.fa-sort-desc:before{content:"\f0dd"}.fa.fa-sort-asc:before{content:"\f0de"}.fa.fa-linkedin{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-linkedin:before{content:"\f0e1"}.fa.fa-rotate-left:before{content:"\f0e2"}.fa.fa-legal:before{content:"\f0e3"}.fa.fa-dashboard:before,.fa.fa-tachometer:before{content:"\f3fd"}.fa.fa-comment-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-comment-o:before{content:"\f075"}.fa.fa-comments-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-comments-o:before{content:"\f086"}.fa.fa-flash:before{content:"\f0e7"}.fa.fa-clipboard,.fa.fa-paste{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-paste:before{content:"\f328"}.fa.fa-lightbulb-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-lightbulb-o:before{content:"\f0eb"}.fa.fa-exchange:before{content:"\f362"}.fa.fa-cloud-download:before{content:"\f381"}.fa.fa-cloud-upload:before{content:"\f382"}.fa.fa-bell-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-bell-o:before{content:"\f0f3"}.fa.fa-cutlery:before{content:"\f2e7"}.fa.fa-file-text-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-text-o:before{content:"\f15c"}.fa.fa-building-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-building-o:before{content:"\f1ad"}.fa.fa-hospital-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hospital-o:before{content:"\f0f8"}.fa.fa-tablet:before{content:"\f3fa"}.fa.fa-mobile-phone:before,.fa.fa-mobile:before{content:"\f3cd"}.fa.fa-circle-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-circle-o:before{content:"\f111"}.fa.fa-mail-reply:before{content:"\f3e5"}.fa.fa-github-alt{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-folder-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-folder-o:before{content:"\f07b"}.fa.fa-folder-open-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-folder-open-o:before{content:"\f07c"}.fa.fa-smile-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-smile-o:before{content:"\f118"}.fa.fa-frown-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-frown-o:before{content:"\f119"}.fa.fa-meh-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-meh-o:before{content:"\f11a"}.fa.fa-keyboard-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-keyboard-o:before{content:"\f11c"}.fa.fa-flag-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-flag-o:before{content:"\f024"}.fa.fa-mail-reply-all:before{content:"\f122"}.fa.fa-star-half-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-star-half-o:before{content:"\f089"}.fa.fa-star-half-empty{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-star-half-empty:before{content:"\f089"}.fa.fa-star-half-full{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-star-half-full:before{content:"\f089"}.fa.fa-code-fork:before{content:"\f126"}.fa.fa-chain-broken:before{content:"\f127"}.fa.fa-shield:before{content:"\f3ed"}.fa.fa-calendar-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-calendar-o:before{content:"\f133"}.fa.fa-css3,.fa.fa-html5,.fa.fa-maxcdn{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-ticket:before{content:"\f3ff"}.fa.fa-minus-square-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-minus-square-o:before{content:"\f146"}.fa.fa-level-up:before{content:"\f3bf"}.fa.fa-level-down:before{content:"\f3be"}.fa.fa-pencil-square:before{content:"\f14b"}.fa.fa-external-link-square:before{content:"\f360"}.fa.fa-compass{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-caret-square-o-down{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-caret-square-o-down:before{content:"\f150"}.fa.fa-toggle-down{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-toggle-down:before{content:"\f150"}.fa.fa-caret-square-o-up{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-caret-square-o-up:before{content:"\f151"}.fa.fa-toggle-up{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-toggle-up:before{content:"\f151"}.fa.fa-caret-square-o-right{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-caret-square-o-right:before{content:"\f152"}.fa.fa-toggle-right{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-toggle-right:before{content:"\f152"}.fa.fa-eur:before,.fa.fa-euro:before{content:"\f153"}.fa.fa-gbp:before{content:"\f154"}.fa.fa-dollar:before,.fa.fa-usd:before{content:"\f155"}.fa.fa-inr:before,.fa.fa-rupee:before{content:"\f156"}.fa.fa-cny:before,.fa.fa-jpy:before,.fa.fa-rmb:before,.fa.fa-yen:before{content:"\f157"}.fa.fa-rouble:before,.fa.fa-rub:before,.fa.fa-ruble:before{content:"\f158"}.fa.fa-krw:before,.fa.fa-won:before{content:"\f159"}.fa.fa-bitcoin,.fa.fa-btc{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-bitcoin:before{content:"\f15a"}.fa.fa-file-text:before{content:"\f15c"}.fa.fa-sort-alpha-asc:before{content:"\f15d"}.fa.fa-sort-alpha-desc:before{content:"\f15e"}.fa.fa-sort-amount-asc:before{content:"\f160"}.fa.fa-sort-amount-desc:before{content:"\f161"}.fa.fa-sort-numeric-asc:before{content:"\f162"}.fa.fa-sort-numeric-desc:before{content:"\f163"}.fa.fa-xing,.fa.fa-xing-square,.fa.fa-youtube,.fa.fa-youtube-play,.fa.fa-youtube-square{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-youtube-play:before{content:"\f167"}.fa.fa-adn,.fa.fa-bitbucket,.fa.fa-bitbucket-square,.fa.fa-dropbox,.fa.fa-flickr,.fa.fa-instagram,.fa.fa-stack-overflow{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-bitbucket-square:before{content:"\f171"}.fa.fa-tumblr,.fa.fa-tumblr-square{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-long-arrow-down:before{content:"\f309"}.fa.fa-long-arrow-up:before{content:"\f30c"}.fa.fa-long-arrow-left:before{content:"\f30a"}.fa.fa-long-arrow-right:before{content:"\f30b"}.fa.fa-android,.fa.fa-apple,.fa.fa-dribbble,.fa.fa-foursquare,.fa.fa-gittip,.fa.fa-gratipay,.fa.fa-linux,.fa.fa-skype,.fa.fa-trello,.fa.fa-windows{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-gittip:before{content:"\f184"}.fa.fa-sun-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-sun-o:before{content:"\f185"}.fa.fa-moon-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-moon-o:before{content:"\f186"}.fa.fa-pagelines,.fa.fa-renren,.fa.fa-stack-exchange,.fa.fa-vk,.fa.fa-weibo{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-arrow-circle-o-right{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-arrow-circle-o-right:before{content:"\f35a"}.fa.fa-arrow-circle-o-left{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-arrow-circle-o-left:before{content:"\f359"}.fa.fa-caret-square-o-left{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-caret-square-o-left:before{content:"\f191"}.fa.fa-toggle-left{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-toggle-left:before{content:"\f191"}.fa.fa-dot-circle-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-dot-circle-o:before{content:"\f192"}.fa.fa-vimeo-square{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-try:before,.fa.fa-turkish-lira:before{content:"\f195"}.fa.fa-plus-square-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-plus-square-o:before{content:"\f0fe"}.fa.fa-openid,.fa.fa-slack,.fa.fa-wordpress{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-bank:before,.fa.fa-institution:before{content:"\f19c"}.fa.fa-mortar-board:before{content:"\f19d"}.fa.fa-delicious,.fa.fa-digg,.fa.fa-drupal,.fa.fa-google,.fa.fa-joomla,.fa.fa-pied-piper-alt,.fa.fa-pied-piper-pp,.fa.fa-reddit,.fa.fa-reddit-square,.fa.fa-stumbleupon,.fa.fa-stumbleupon-circle,.fa.fa-yahoo{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-spoon:before{content:"\f2e5"}.fa.fa-behance,.fa.fa-behance-square,.fa.fa-steam,.fa.fa-steam-square{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-automobile:before{content:"\f1b9"}.fa.fa-cab:before{content:"\f1ba"}.fa.fa-envelope-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-envelope-o:before{content:"\f0e0"}.fa.fa-deviantart,.fa.fa-soundcloud{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-file-pdf-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-pdf-o:before{content:"\f1c1"}.fa.fa-file-word-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-word-o:before{content:"\f1c2"}.fa.fa-file-excel-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-excel-o:before{content:"\f1c3"}.fa.fa-file-powerpoint-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-powerpoint-o:before{content:"\f1c4"}.fa.fa-file-image-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-image-o:before{content:"\f1c5"}.fa.fa-file-photo-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-photo-o:before{content:"\f1c5"}.fa.fa-file-picture-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-picture-o:before{content:"\f1c5"}.fa.fa-file-archive-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-archive-o:before{content:"\f1c6"}.fa.fa-file-zip-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-zip-o:before{content:"\f1c6"}.fa.fa-file-audio-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-audio-o:before{content:"\f1c7"}.fa.fa-file-sound-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-sound-o:before{content:"\f1c7"}.fa.fa-file-video-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-video-o:before{content:"\f1c8"}.fa.fa-file-movie-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-movie-o:before{content:"\f1c8"}.fa.fa-file-code-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-code-o:before{content:"\f1c9"}.fa.fa-codepen,.fa.fa-jsfiddle,.fa.fa-vine{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-life-bouy,.fa.fa-life-ring{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-life-bouy:before{content:"\f1cd"}.fa.fa-life-buoy{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-life-buoy:before{content:"\f1cd"}.fa.fa-life-saver{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-life-saver:before{content:"\f1cd"}.fa.fa-support{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-support:before{content:"\f1cd"}.fa.fa-circle-o-notch:before{content:"\f1ce"}.fa.fa-ra,.fa.fa-rebel{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-ra:before{content:"\f1d0"}.fa.fa-resistance{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-resistance:before{content:"\f1d0"}.fa.fa-empire,.fa.fa-ge{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-ge:before{content:"\f1d1"}.fa.fa-git,.fa.fa-git-square,.fa.fa-hacker-news,.fa.fa-y-combinator-square{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-y-combinator-square:before{content:"\f1d4"}.fa.fa-yc-square{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-yc-square:before{content:"\f1d4"}.fa.fa-qq,.fa.fa-tencent-weibo,.fa.fa-wechat,.fa.fa-weixin{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-wechat:before{content:"\f1d7"}.fa.fa-send:before{content:"\f1d8"}.fa.fa-paper-plane-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-paper-plane-o:before{content:"\f1d8"}.fa.fa-send-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-send-o:before{content:"\f1d8"}.fa.fa-circle-thin{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-circle-thin:before{content:"\f111"}.fa.fa-header:before{content:"\f1dc"}.fa.fa-sliders:before{content:"\f1de"}.fa.fa-futbol-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-futbol-o:before{content:"\f1e3"}.fa.fa-soccer-ball-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-soccer-ball-o:before{content:"\f1e3"}.fa.fa-slideshare,.fa.fa-twitch,.fa.fa-yelp{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-newspaper-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-newspaper-o:before{content:"\f1ea"}.fa.fa-cc-amex,.fa.fa-cc-discover,.fa.fa-cc-mastercard,.fa.fa-cc-paypal,.fa.fa-cc-stripe,.fa.fa-cc-visa,.fa.fa-google-wallet,.fa.fa-paypal{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-bell-slash-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-bell-slash-o:before{content:"\f1f6"}.fa.fa-trash:before{content:"\f2ed"}.fa.fa-copyright{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-eyedropper:before{content:"\f1fb"}.fa.fa-area-chart:before{content:"\f1fe"}.fa.fa-pie-chart:before{content:"\f200"}.fa.fa-line-chart:before{content:"\f201"}.fa.fa-angellist,.fa.fa-ioxhost,.fa.fa-lastfm,.fa.fa-lastfm-square{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-cc{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-cc:before{content:"\f20a"}.fa.fa-ils:before,.fa.fa-shekel:before,.fa.fa-sheqel:before{content:"\f20b"}.fa.fa-meanpath{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-meanpath:before{content:"\f2b4"}.fa.fa-buysellads,.fa.fa-connectdevelop,.fa.fa-dashcube,.fa.fa-forumbee,.fa.fa-leanpub,.fa.fa-sellsy,.fa.fa-shirtsinbulk,.fa.fa-simplybuilt,.fa.fa-skyatlas{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-diamond{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-diamond:before{content:"\f3a5"}.fa.fa-intersex:before{content:"\f224"}.fa.fa-facebook-official{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-facebook-official:before{content:"\f09a"}.fa.fa-pinterest-p,.fa.fa-whatsapp{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-hotel:before{content:"\f236"}.fa.fa-medium,.fa.fa-viacoin,.fa.fa-y-combinator,.fa.fa-yc{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-yc:before{content:"\f23b"}.fa.fa-expeditedssl,.fa.fa-opencart,.fa.fa-optin-monster{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-battery-4:before,.fa.fa-battery:before{content:"\f240"}.fa.fa-battery-3:before{content:"\f241"}.fa.fa-battery-2:before{content:"\f242"}.fa.fa-battery-1:before{content:"\f243"}.fa.fa-battery-0:before{content:"\f244"}.fa.fa-object-group,.fa.fa-object-ungroup,.fa.fa-sticky-note-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-sticky-note-o:before{content:"\f249"}.fa.fa-cc-diners-club,.fa.fa-cc-jcb{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-clone,.fa.fa-hourglass-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hourglass-o:before{content:"\f254"}.fa.fa-hourglass-1:before{content:"\f251"}.fa.fa-hourglass-2:before{content:"\f252"}.fa.fa-hourglass-3:before{content:"\f253"}.fa.fa-hand-rock-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-rock-o:before{content:"\f255"}.fa.fa-hand-grab-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-grab-o:before{content:"\f255"}.fa.fa-hand-paper-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-paper-o:before{content:"\f256"}.fa.fa-hand-stop-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-stop-o:before{content:"\f256"}.fa.fa-hand-scissors-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-scissors-o:before{content:"\f257"}.fa.fa-hand-lizard-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-lizard-o:before{content:"\f258"}.fa.fa-hand-spock-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-spock-o:before{content:"\f259"}.fa.fa-hand-pointer-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-pointer-o:before{content:"\f25a"}.fa.fa-hand-peace-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-peace-o:before{content:"\f25b"}.fa.fa-registered{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-chrome,.fa.fa-creative-commons,.fa.fa-firefox,.fa.fa-get-pocket,.fa.fa-gg,.fa.fa-gg-circle,.fa.fa-internet-explorer,.fa.fa-odnoklassniki,.fa.fa-odnoklassniki-square,.fa.fa-opera,.fa.fa-safari,.fa.fa-tripadvisor,.fa.fa-wikipedia-w{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-television:before{content:"\f26c"}.fa.fa-500px,.fa.fa-amazon,.fa.fa-contao{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-calendar-plus-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-calendar-plus-o:before{content:"\f271"}.fa.fa-calendar-minus-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-calendar-minus-o:before{content:"\f272"}.fa.fa-calendar-times-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-calendar-times-o:before{content:"\f273"}.fa.fa-calendar-check-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-calendar-check-o:before{content:"\f274"}.fa.fa-map-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-map-o:before{content:"\f279"}.fa.fa-commenting{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-commenting:before{content:"\f4ad"}.fa.fa-commenting-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-commenting-o:before{content:"\f4ad"}.fa.fa-houzz,.fa.fa-vimeo{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-vimeo:before{content:"\f27d"}.fa.fa-black-tie,.fa.fa-edge,.fa.fa-fonticons,.fa.fa-reddit-alien{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-credit-card-alt:before{content:"\f09d"}.fa.fa-codiepie,.fa.fa-fort-awesome,.fa.fa-mixcloud,.fa.fa-modx,.fa.fa-product-hunt,.fa.fa-scribd,.fa.fa-usb{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-pause-circle-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-pause-circle-o:before{content:"\f28b"}.fa.fa-stop-circle-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-stop-circle-o:before{content:"\f28d"}.fa.fa-bluetooth,.fa.fa-bluetooth-b,.fa.fa-envira,.fa.fa-gitlab,.fa.fa-wheelchair-alt,.fa.fa-wpbeginner,.fa.fa-wpforms{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-wheelchair-alt:before{content:"\f368"}.fa.fa-question-circle-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-question-circle-o:before{content:"\f059"}.fa.fa-volume-control-phone:before{content:"\f2a0"}.fa.fa-asl-interpreting:before{content:"\f2a3"}.fa.fa-deafness:before,.fa.fa-hard-of-hearing:before{content:"\f2a4"}.fa.fa-glide,.fa.fa-glide-g{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-signing:before{content:"\f2a7"}.fa.fa-first-order,.fa.fa-google-plus-official,.fa.fa-pied-piper,.fa.fa-snapchat,.fa.fa-snapchat-ghost,.fa.fa-snapchat-square,.fa.fa-themeisle,.fa.fa-viadeo,.fa.fa-viadeo-square,.fa.fa-yoast{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-google-plus-official:before{content:"\f2b3"}.fa.fa-google-plus-circle{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-google-plus-circle:before{content:"\f2b3"}.fa.fa-fa,.fa.fa-font-awesome{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-fa:before{content:"\f2b4"}.fa.fa-handshake-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-handshake-o:before{content:"\f2b5"}.fa.fa-envelope-open-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-envelope-open-o:before{content:"\f2b6"}.fa.fa-linode{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-address-book-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-address-book-o:before{content:"\f2b9"}.fa.fa-vcard:before{content:"\f2bb"}.fa.fa-address-card-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-address-card-o:before{content:"\f2bb"}.fa.fa-vcard-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-vcard-o:before{content:"\f2bb"}.fa.fa-user-circle-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-user-circle-o:before{content:"\f2bd"}.fa.fa-user-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-user-o:before{content:"\f007"}.fa.fa-id-badge{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-drivers-license:before{content:"\f2c2"}.fa.fa-id-card-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-id-card-o:before{content:"\f2c2"}.fa.fa-drivers-license-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-drivers-license-o:before{content:"\f2c2"}.fa.fa-free-code-camp,.fa.fa-quora,.fa.fa-telegram{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-thermometer-4:before,.fa.fa-thermometer:before{content:"\f2c7"}.fa.fa-thermometer-3:before{content:"\f2c8"}.fa.fa-thermometer-2:before{content:"\f2c9"}.fa.fa-thermometer-1:before{content:"\f2ca"}.fa.fa-thermometer-0:before{content:"\f2cb"}.fa.fa-bathtub:before,.fa.fa-s15:before{content:"\f2cd"}.fa.fa-window-maximize,.fa.fa-window-restore{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-times-rectangle:before{content:"\f410"}.fa.fa-window-close-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-window-close-o:before{content:"\f410"}.fa.fa-times-rectangle-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-times-rectangle-o:before{content:"\f410"}.fa.fa-bandcamp,.fa.fa-eercast,.fa.fa-etsy,.fa.fa-grav,.fa.fa-imdb,.fa.fa-ravelry{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-eercast:before{content:"\f2da"}.fa.fa-snowflake-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-snowflake-o:before{content:"\f2dc"}.fa.fa-spotify,.fa.fa-superpowers,.fa.fa-wpexplorer{font-family:"Font Awesome 5 Brands";font-weight:400} \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/js/all.min.js b/public/assets/lib/fontawesome-free/js/all.min.js new file mode 100755 index 0000000..b08e9a6 --- /dev/null +++ b/public/assets/lib/fontawesome-free/js/all.min.js @@ -0,0 +1,5 @@ +/*! + * Font Awesome Free 5.3.1 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + */ +!function(){"use strict";var c={};try{"undefined"!=typeof window&&(c=window)}catch(c){}var l=(c.navigator||{}).userAgent,h=void 0===l?"":l,z=c,v=(~h.indexOf("MSIE")||h.indexOf("Trident/"),"___FONT_AWESOME___"),m=function(){try{return!0}catch(c){return!1}}(),s=[1,2,3,4,5,6,7,8,9,10],e=s.concat([11,12,13,14,15,16,17,18,19,20]);["xs","sm","lg","fw","ul","li","border","pull-left","pull-right","spin","pulse","rotate-90","rotate-180","rotate-270","flip-horizontal","flip-vertical","stack","stack-1x","stack-2x","inverse","layers","layers-text","layers-counter"].concat(s.map(function(c){return c+"x"})).concat(e.map(function(c){return"w-"+c}));var a=z||{};a[v]||(a[v]={}),a[v].styles||(a[v].styles={}),a[v].hooks||(a[v].hooks={}),a[v].shims||(a[v].shims=[]);var t=a[v],M=Object.assign||function(c){for(var l=1;l>>0;h--;)l[h]=c[h];return l}function U(c){return c.classList?X(c.classList):(c.getAttribute("class")||"").split(" ").filter(function(c){return c})}function K(c,l){var h,z=l.split("-"),v=z[0],m=z.slice(1).join("-");return v!==c||""===m||(h=m,~w.indexOf(h))?null:m}function G(c){return(""+c).replace(/&/g,"&").replace(/"/g,""").replace(/'/g,"'").replace(//g,">")}function J(h){return Object.keys(h||{}).reduce(function(c,l){return c+(l+": ")+h[l]+";"},"")}function Q(c){return c.size!==W.size||c.x!==W.x||c.y!==W.y||c.rotate!==W.rotate||c.flipX||c.flipY}function Z(c){var l=c.transform,h=c.containerWidth,z=c.iconWidth;return{outer:{transform:"translate("+h/2+" 256)"},inner:{transform:"translate("+32*l.x+", "+32*l.y+") "+" "+("scale("+l.size/16*(l.flipX?-1:1)+", "+l.size/16*(l.flipY?-1:1)+") ")+" "+("rotate("+l.rotate+" 0 0)")},path:{transform:"translate("+z/2*-1+" -256)"}}}var $={x:0,y:0,width:"100%",height:"100%"},cc=function(c){var l=c.children,h=c.attributes,z=c.main,v=c.mask,m=c.transform,s=z.width,e=z.icon,a=v.width,t=v.icon,M=Z({transform:m,containerWidth:a,iconWidth:s}),f={tag:"rect",attributes:A({},$,{fill:"white"})},r={tag:"g",attributes:A({},M.inner),children:[{tag:"path",attributes:A({},e.attributes,M.path,{fill:"black"})}]},H={tag:"g",attributes:A({},M.outer),children:[r]},i="mask-"+D(),n="clip-"+D(),V={tag:"defs",children:[{tag:"clipPath",attributes:{id:n},children:[t]},{tag:"mask",attributes:A({},$,{id:i,maskUnits:"userSpaceOnUse",maskContentUnits:"userSpaceOnUse"}),children:[f,H]}]};return l.push(V,{tag:"rect",attributes:A({fill:"currentColor","clip-path":"url(#"+n+")",mask:"url(#"+i+")"},$)}),{children:l,attributes:h}},lc=function(c){var l=c.children,h=c.attributes,z=c.main,v=c.transform,m=J(c.styles);if(0"+s.map(bc).join("")+""}var gc=function(){};function Sc(c){return"string"==typeof(c.getAttribute?c.getAttribute(g):null)}var yc={replace:function(c){var l=c[0],h=c[1].map(function(c){return bc(c)}).join("\n");if(l.parentNode&&l.outerHTML)l.outerHTML=h+(E.keepOriginalSource&&"svg"!==l.tagName.toLowerCase()?"\x3c!-- "+l.outerHTML+" --\x3e":"");else if(l.parentNode){var z=document.createElement("span");l.parentNode.replaceChild(z,l),z.outerHTML=h}},nest:function(c){var l=c[0],h=c[1];if(~U(l).indexOf(E.replacementClass))return yc.replace(c);var z=new RegExp(E.familyPrefix+"-.*");delete h[0].attributes.style;var v=h[0].attributes.class.split(" ").reduce(function(c,l){return l===E.replacementClass||l.match(z)?c.toSvg.push(l):c.toNode.push(l),c},{toNode:[],toSvg:[]});h[0].attributes.class=v.toSvg.join(" ");var m=h.map(function(c){return bc(c)}).join("\n");l.setAttribute("class",v.toNode.join(" ")),l.setAttribute(g,""),l.innerHTML=m}};function wc(h,c){var z="function"==typeof c?c:gc;0===h.length?z():(r.requestAnimationFrame||function(c){return c()})(function(){var c=!0===E.autoReplaceSvg?yc.replace:yc[E.autoReplaceSvg]||yc.replace,l=Mc.begin("mutate");h.map(c),l(),z()})}var kc=!1;var xc=null;function Ac(c){if(e&&E.observeMutations){var v=c.treeCallback,m=c.nodeCallback,s=c.pseudoElementsCallback,l=c.observeMutationsRoot,h=void 0===l?H.body:l;xc=new e(function(c){kc||X(c).forEach(function(c){if("childList"===c.type&&0li{position:relative}.fa-li{left:-2em;position:absolute;text-align:center;width:2em;line-height:inherit}.fa-border{border:solid .08em #eee;border-radius:.1em;padding:.2em .25em .15em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left,.fab.fa-pull-left,.fal.fa-pull-left,.far.fa-pull-left,.fas.fa-pull-left{margin-right:.3em}.fa.fa-pull-right,.fab.fa-pull-right,.fal.fa-pull-right,.far.fa-pull-right,.fas.fa-pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.fa-rotate-90{-webkit-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-webkit-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-webkit-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-webkit-transform:scale(-1,1);transform:scale(-1,1)}.fa-flip-vertical{-webkit-transform:scale(1,-1);transform:scale(1,-1)}.fa-flip-horizontal.fa-flip-vertical{-webkit-transform:scale(-1,-1);transform:scale(-1,-1)}:root .fa-flip-horizontal,:root .fa-flip-vertical,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-rotate-90{-webkit-filter:none;filter:none}.fa-stack{display:inline-block;height:2em;position:relative;width:2em}.fa-stack-1x,.fa-stack-2x{bottom:0;left:0;margin:auto;position:absolute;right:0;top:0}.svg-inline--fa.fa-stack-1x{height:1em;width:1em}.svg-inline--fa.fa-stack-2x{height:2em;width:2em}.fa-inverse{color:#fff}.sr-only{border:0;clip:rect(0,0,0,0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.sr-only-focusable:active,.sr-only-focusable:focus{clip:auto;height:auto;margin:0;overflow:visible;position:static;width:auto}";if("fa"!==l||h!==c){var v=new RegExp("\\.fa\\-","g"),m=new RegExp("\\."+c,"g");z=z.replace(v,"."+l+"-").replace(m,"."+h)}return z};function zl(c){return{found:!0,width:c[0],height:c[1],icon:{tag:"path",attributes:{fill:"currentColor",d:c.slice(4)[0]}}}}function vl(){E.autoAddCss&&!tl&&(Y(hl()),tl=!0)}function ml(l,c){return Object.defineProperty(l,"abstract",{get:c}),Object.defineProperty(l,"html",{get:function(){return l.abstract.map(function(c){return bc(c)})}}),Object.defineProperty(l,"node",{get:function(){if(M){var c=H.createElement("div");return c.innerHTML=l.html,c.children}}}),l}function sl(c){var l=c.prefix,h=void 0===l?"fa":l,z=c.iconName;if(z)return pc(al.definitions,h,z)||pc(T.styles,h,z)}var el,al=new(function(){function c(){k(this,c),this.definitions={}}return x(c,[{key:"add",value:function(){for(var l=this,c=arguments.length,h=Array(c),z=0;z>>0;r--;)e[r]=t[r];return e}function V(t){return t.classList?U(t.classList):(t.getAttribute("class")||"").split(" ").filter(function(t){return t})}function K(t,e){var r,a=e.split("-"),n=a[0],i=a.slice(1).join("-");return n!==t||""===i||(r=i,~M.indexOf(r))?null:i}function G(t){return(""+t).replace(/&/g,"&").replace(/"/g,""").replace(/'/g,"'").replace(//g,">")}function J(r){return Object.keys(r||{}).reduce(function(t,e){return t+(e+": ")+r[e]+";"},"")}function Q(t){return t.size!==D.size||t.x!==D.x||t.y!==D.y||t.rotate!==D.rotate||t.flipX||t.flipY}function Z(t){var e=t.transform,r=t.containerWidth,a=t.iconWidth;return{outer:{transform:"translate("+r/2+" 256)"},inner:{transform:"translate("+32*e.x+", "+32*e.y+") "+" "+("scale("+e.size/16*(e.flipX?-1:1)+", "+e.size/16*(e.flipY?-1:1)+") ")+" "+("rotate("+e.rotate+" 0 0)")},path:{transform:"translate("+a/2*-1+" -256)"}}}var $={x:0,y:0,width:"100%",height:"100%"},tt=function(t){var e=t.children,r=t.attributes,a=t.main,n=t.mask,i=t.transform,o=a.width,s=a.icon,l=n.width,f=n.icon,c=Z({transform:i,containerWidth:l,iconWidth:o}),u={tag:"rect",attributes:E({},$,{fill:"white"})},m={tag:"g",attributes:E({},c.inner),children:[{tag:"path",attributes:E({},s.attributes,c.path,{fill:"black"})}]},d={tag:"g",attributes:E({},c.outer),children:[m]},g="mask-"+q(),h="clip-"+q(),p={tag:"defs",children:[{tag:"clipPath",attributes:{id:h},children:[f]},{tag:"mask",attributes:E({},$,{id:g,maskUnits:"userSpaceOnUse",maskContentUnits:"userSpaceOnUse"}),children:[u,d]}]};return e.push(p,{tag:"rect",attributes:E({fill:"currentColor","clip-path":"url(#"+h+")",mask:"url(#"+g+")"},$)}),{children:e,attributes:r}},et=function(t){var e=t.children,r=t.attributes,a=t.main,n=t.transform,i=J(t.styles);if(0"+o.map(Ct).join("")+""}var At=function(){};function Nt(t){return"string"==typeof(t.getAttribute?t.getAttribute(A):null)}var zt={replace:function(t){var e=t[0],r=t[1].map(function(t){return Ct(t)}).join("\n");if(e.parentNode&&e.outerHTML)e.outerHTML=r+(T.keepOriginalSource&&"svg"!==e.tagName.toLowerCase()?"\x3c!-- "+e.outerHTML+" --\x3e":"");else if(e.parentNode){var a=document.createElement("span");e.parentNode.replaceChild(a,e),a.outerHTML=r}},nest:function(t){var e=t[0],r=t[1];if(~V(e).indexOf(T.replacementClass))return zt.replace(t);var a=new RegExp(T.familyPrefix+"-.*");delete r[0].attributes.style;var n=r[0].attributes.class.split(" ").reduce(function(t,e){return e===T.replacementClass||e.match(a)?t.toSvg.push(e):t.toNode.push(e),t},{toNode:[],toSvg:[]});r[0].attributes.class=n.toSvg.join(" ");var i=r.map(function(t){return Ct(t)}).join("\n");e.setAttribute("class",n.toNode.join(" ")),e.setAttribute(A,""),e.innerHTML=i}};function Mt(r,t){var a="function"==typeof t?t:At;0===r.length?a():(m.requestAnimationFrame||function(t){return t()})(function(){var t=!0===T.autoReplaceSvg?zt.replace:zt[T.autoReplaceSvg]||zt.replace,e=ct.begin("mutate");r.map(t),e(),a()})}var St=!1;var Lt=null;function Et(t){if(s&&T.observeMutations){var n=t.treeCallback,i=t.nodeCallback,o=t.pseudoElementsCallback,e=t.observeMutationsRoot,r=void 0===e?d.body:e;Lt=new s(function(t){St||U(t).forEach(function(t){if("childList"===t.type&&0li{position:relative}.fa-li{left:-2em;position:absolute;text-align:center;width:2em;line-height:inherit}.fa-border{border:solid .08em #eee;border-radius:.1em;padding:.2em .25em .15em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left,.fab.fa-pull-left,.fal.fa-pull-left,.far.fa-pull-left,.fas.fa-pull-left{margin-right:.3em}.fa.fa-pull-right,.fab.fa-pull-right,.fal.fa-pull-right,.far.fa-pull-right,.fas.fa-pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.fa-rotate-90{-webkit-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-webkit-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-webkit-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-webkit-transform:scale(-1,1);transform:scale(-1,1)}.fa-flip-vertical{-webkit-transform:scale(1,-1);transform:scale(1,-1)}.fa-flip-horizontal.fa-flip-vertical{-webkit-transform:scale(-1,-1);transform:scale(-1,-1)}:root .fa-flip-horizontal,:root .fa-flip-vertical,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-rotate-90{-webkit-filter:none;filter:none}.fa-stack{display:inline-block;height:2em;position:relative;width:2em}.fa-stack-1x,.fa-stack-2x{bottom:0;left:0;margin:auto;position:absolute;right:0;top:0}.svg-inline--fa.fa-stack-1x{height:1em;width:1em}.svg-inline--fa.fa-stack-2x{height:2em;width:2em}.fa-inverse{color:#fff}.sr-only{border:0;clip:rect(0,0,0,0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.sr-only-focusable:active,.sr-only-focusable:focus{clip:auto;height:auto;margin:0;overflow:visible;position:static;width:auto}";if("fa"!==e||r!==t){var n=new RegExp("\\.fa\\-","g"),i=new RegExp("\\."+t,"g");a=a.replace(n,"."+e+"-").replace(i,"."+r)}return a};function ae(t){return{found:!0,width:t[0],height:t[1],icon:{tag:"path",attributes:{fill:"currentColor",d:t.slice(4)[0]}}}}function ne(){T.autoAddCss&&!fe&&(W(re()),fe=!0)}function ie(e,t){return Object.defineProperty(e,"abstract",{get:t}),Object.defineProperty(e,"html",{get:function(){return e.abstract.map(function(t){return Ct(t)})}}),Object.defineProperty(e,"node",{get:function(){if(c){var t=d.createElement("div");return t.innerHTML=e.html,t.children}}}),e}function oe(t){var e=t.prefix,r=void 0===e?"fa":e,a=t.iconName;if(a)return kt(le.definitions,r,a)||kt(I.styles,r,a)}var se,le=new(function(){function t(){S(this,t),this.definitions={}}return L(t,[{key:"add",value:function(){for(var e=this,t=arguments.length,r=Array(t),a=0;a + + + + 500px + + + + Accessible Icon + + + + Accusoft + + + + App.net + + + + Adversal + + + + affiliatetheme + + + + Algolia + + + + Alipay + + + + Amazon + + + + Amazon Pay + + + + Amilia + + + + Android + + + + AngelList + + + + Angry Creative + + + + Angular + + + + App Store + + + + iOS App Store + + + + Apper Systems AB + + + + Apple + + + + Apple Pay + + + + Asymmetrik, Ltd. + + + + Audible + + + + Autoprefixer + + + + avianex + + + + Aviato + + + + Amazon Web Services (AWS) + + + + Bandcamp + + + + Behance + + + + Behance Square + + + + BIMobject + + + + Bitbucket + + + + Bitcoin + + + + Bity + + + + Font Awesome Black Tie + + + + BlackBerry + + + + Blogger + + + + Blogger B + + + + Bluetooth + + + + Bluetooth + + + + BTC + + + + Büromöbel-Experte GmbH & Co. KG. + + + + BuySellAds + + + + Amazon Pay Credit Card + + + + American Express Credit Card + + + + Apple Pay Credit Card + + + + Diner's Club Credit Card + + + + Discover Credit Card + + + + JCB Credit Card + + + + MasterCard Credit Card + + + + Paypal Credit Card + + + + Stripe Credit Card + + + + Visa Credit Card + + + + Centercode + + + + Chrome + + + + cloudscale.ch + + + + Cloudsmith + + + + cloudversify + + + + Codepen + + + + Codie Pie + + + + Connect Develop + + + + Contao + + + + cPanel + + + + Creative Commons + + + + Creative Commons Attribution + + + + Creative Commons Noncommercial + + + + Creative Commons Noncommercial (Euro Sign) + + + + Creative Commons Noncommercial (Yen Sign) + + + + Creative Commons No Derivative Works + + + + Creative Commons Public Domain + + + + Creative Commons Public Domain Alternate + + + + Creative Commons Remix + + + + Creative Commons Share Alike + + + + Creative Commons Sampling + + + + Creative Commons Sampling + + + + + Creative Commons Share + + + + CSS 3 Logo + + + + Alternate CSS3 Logo + + + + Cuttlefish + + + + Dungeons & Dragons + + + + DashCube + + + + Delicious Logo + + + + deploy.dog + + + + Deskpro + + + + deviantART + + + + Digg Logo + + + + Digital Ocean + + + + Discord + + + + Discourse + + + + DocHub + + + + Docker + + + + Draft2digital + + + + Dribbble + + + + Dribbble Square + + + + Dropbox + + + + Drupal Logo + + + + Dyalog + + + + Earlybirds + + + + eBay + + + + Edge Browser + + + + Elementor + + + + Ello + + + + Ember + + + + Galactic Empire + + + + Envira Gallery + + + + Erlang + + + + Ethereum + + + + Etsy + + + + ExpeditedSSL + + + + Facebook + + + + Facebook F + + + + Facebook Messenger + + + + Facebook Square + + + + Firefox + + + + First Order + + + + Alternate First Order + + + + firstdraft + + + + Flickr + + + + Flipboard + + + + Fly + + + + Font Awesome + + + + Alternate Font Awesome + + + + Font Awesome Flag + + + + Font Awesome Full Logo + + + + Fonticons + + + + Fonticons Fi + + + + Fort Awesome + + + + Alternate Fort Awesome + + + + Forumbee + + + + Foursquare + + + + Free Code Camp + + + + FreeBSD + + + + Fulcrum + + + + Galactic Republic + + + + Galactic Senate + + + + Get Pocket + + + + GG Currency + + + + GG Currency Circle + + + + Git + + + + Git Square + + + + GitHub + + + + Alternate GitHub + + + + GitHub Square + + + + GitKraken + + + + GitLab + + + + Gitter + + + + Glide + + + + Glide G + + + + Gofore + + + + Goodreads + + + + Goodreads G + + + + Google Logo + + + + Google Drive + + + + Google Play + + + + Google Plus + + + + Google Plus G + + + + Google Plus Square + + + + Google Wallet + + + + Gratipay (Gittip) + + + + Grav + + + + Gripfire, Inc. + + + + Grunt + + + + Gulp + + + + Hacker News + + + + Hacker News Square + + + + Hackerrank + + + + Hips + + + + HireAHelper + + + + Hooli + + + + Hornbill + + + + Hotjar + + + + Houzz + + + + HTML 5 Logo + + + + HubSpot + + + + IMDB + + + + Instagram + + + + Internet-explorer + + + + ioxhost + + + + iTunes + + + + Itunes Note + + + + Java + + + + Jedi Order + + + + Jenkis + + + + Joget + + + + Joomla Logo + + + + JavaScript (JS) + + + + JavaScript (JS) Square + + + + jsFiddle + + + + Kaggle + + + + Keybase + + + + KeyCDN + + + + Kickstarter + + + + Kickstarter K + + + + KORVUE + + + + Laravel + + + + last.fm + + + + last.fm Square + + + + Leanpub + + + + Less + + + + Line + + + + LinkedIn + + + + LinkedIn In + + + + Linode + + + + Linux + + + + lyft + + + + Magento + + + + Mailchimp + + + + Mandalorian + + + + Markdown + + + + Mastodon + + + + MaxCDN + + + + MedApps + + + + Medium + + + + Medium M + + + + MRT + + + + Meetup + + + + Megaport + + + + Microsoft + + + + Mix + + + + Mixcloud + + + + Mizuni + + + + MODX + + + + Monero + + + + Napster + + + + Neos + + + + Nimblr + + + + Nintendo Switch + + + + Node.js + + + + Node.js JS + + + + npm + + + + NS8 + + + + Nutritionix + + + + Odnoklassniki + + + + Odnoklassniki Square + + + + Old Republic + + + + OpenCart + + + + OpenID + + + + Opera + + + + Optin Monster + + + + Open Source Initiative + + + + page4 Corporation + + + + Pagelines + + + + Palfed + + + + Patreon + + + + Paypal + + + + Periscope + + + + Phabricator + + + + Phoenix Framework + + + + Phoenix Squadron + + + + PHP + + + + Pied Piper Logo + + + + Alternate Pied Piper Logo + + + + Pied Piper-hat + + + + Pied Piper PP Logo (Old) + + + + Pinterest + + + + Pinterest P + + + + Pinterest Square + + + + PlayStation + + + + Product Hunt + + + + Pushed + + + + Python + + + + QQ + + + + QuinScape + + + + Quora + + + + R Project + + + + Ravelry + + + + React + + + + ReadMe + + + + Rebel Alliance + + + + red river + + + + reddit Logo + + + + reddit Alien + + + + reddit Square + + + + Rendact + + + + Renren + + + + replyd + + + + Researchgate + + + + Resolving + + + + Rev.io + + + + Rocket.Chat + + + + Rockrms + + + + Safari + + + + Sass + + + + SCHLIX + + + + Scribd + + + + Searchengin + + + + Sellcast + + + + Sellsy + + + + Servicestack + + + + Shirts in Bulk + + + + Shopware + + + + SimplyBuilt + + + + SISTRIX + + + + Sith + + + + skyatlas + + + + Skype + + + + Slack Logo + + + + Slack Hashtag + + + + Slideshare + + + + Snapchat + + + + Snapchat Ghost + + + + Snapchat Square + + + + SoundCloud + + + + Speakap + + + + Spotify + + + + Squarespace + + + + Stack Exchange + + + + Stack Overflow + + + + StayLinked + + + + Steam + + + + Steam Square + + + + Steam Symbol + + + + Sticker Mule + + + + Strava + + + + Stripe + + + + Stripe S + + + + Studio Vinari + + + + StumbleUpon Logo + + + + StumbleUpon Circle + + + + Superpowers + + + + Supple + + + + TeamSpeak + + + + Telegram + + + + Telegram Plane + + + + Tencent Weibo + + + + The Red Yeti + + + + Themeco + + + + ThemeIsle + + + + Trade Federation + + + + Trello + + + + TripAdvisor + + + + Tumblr + + + + Tumblr Square + + + + Twitch + + + + Twitter + + + + Twitter Square + + + + Typo3 + + + + Uber + + + + UIkit + + + + Uniregistry + + + + Untappd + + + + USB + + + + us-Sunnah Foundation + + + + Vaadin + + + + Viacoin + + + + Viadeo + + + + Viadeo Square + + + + Viber + + + + Vimeo + + + + Vimeo Square + + + + Vimeo + + + + Vine + + + + VK + + + + VNV + + + + Vue.js + + + + Weebly + + + + Weibo + + + + Weixin (WeChat) + + + + What's App + + + + What's App Square + + + + WHMCS + + + + Wikipedia W + + + + Windows + + + + Wix + + + + Wolf Pack-battalion + + + + WordPress Logo + + + + Wordpress Simple + + + + WPBeginner + + + + WPExplorer + + + + WPForms + + + + Xbox + + + + Xing + + + + Xing Square + + + + Y Combinator + + + + Yahoo Logo + + + + Yandex + + + + Yandex International + + + + Yelp + + + + Yoast + + + + YouTube + + + + YouTube Square + + + + Zhihu + + + diff --git a/public/assets/lib/fontawesome-free/sprites/regular.svg b/public/assets/lib/fontawesome-free/sprites/regular.svg new file mode 100755 index 0000000..8fc01b9 --- /dev/null +++ b/public/assets/lib/fontawesome-free/sprites/regular.svg @@ -0,0 +1,615 @@ + + + + + Address Book + + + + Address Card + + + + Angry Face + + + + Alternate Arrow Circle Down + + + + Alternate Arrow Circle Left + + + + Alternate Arrow Circle Right + + + + Alternate Arrow Circle Up + + + + bell + + + + Bell Slash + + + + bookmark + + + + Building + + + + Calendar + + + + Alternate Calendar + + + + Calendar Check + + + + Calendar Minus + + + + Calendar Plus + + + + Calendar Times + + + + Caret Square Down + + + + Caret Square Left + + + + Caret Square Right + + + + Caret Square Up + + + + Bar Chart + + + + Check Circle + + + + Check Square + + + + Circle + + + + Clipboard + + + + Clock + + + + Clone + + + + Closed Captioning + + + + comment + + + + Alternate Comment + + + + Comment Dots + + + + comments + + + + Compass + + + + Copy + + + + Copyright + + + + Credit Card + + + + Dizzy Face + + + + Dot Circle + + + + Edit + + + + Envelope + + + + Envelope Open + + + + Eye + + + + Eye Slash + + + + File + + + + Alternate File + + + + Archive File + + + + Audio File + + + + Code File + + + + Excel File + + + + Image File + + + + PDF File + + + + Powerpoint File + + + + Video File + + + + Word File + + + + flag + + + + Flushed Face + + + + Folder + + + + Folder Open + + + + Font Awesome Full Logo + + + + Frowning Face + + + + Frowning Face With Open Mouth + + + + Futbol + + + + Gem + + + + Grimacing Face + + + + Grinning Face + + + + Alternate Grinning Face + + + + Grinning Face With Smiling Eyes + + + + Grinning Face With Sweat + + + + Smiling Face With Heart-Eyes + + + + Grinning Squinting Face + + + + Rolling on the Floor Laughing + + + + Star-Struck + + + + Face With Tears of Joy + + + + Face With Tongue + + + + Squinting Face With Tongue + + + + Winking Face With Tongue + + + + Grinning Winking Face + + + + Lizard (Hand) + + + + Paper (Hand) + + + + Peace (Hand) + + + + Hand Pointing Down + + + + Hand Pointing Left + + + + Hand Pointing Right + + + + Hand Pointing Up + + + + Pointer (Hand) + + + + Rock (Hand) + + + + Scissors (Hand) + + + + Spock (Hand) + + + + Handshake + + + + HDD + + + + Heart + + + + hospital + + + + Hourglass + + + + Identification Badge + + + + Identification Card + + + + Image + + + + Images + + + + Keyboard + + + + Kissing Face + + + + Kissing Face With Smiling Eyes + + + + Face Blowing a Kiss + + + + Grinning Face With Big Eyes + + + + Laugh Face with Beaming Eyes + + + + Laughing Squinting Face + + + + Laughing Winking Face + + + + Lemon + + + + Life Ring + + + + Lightbulb + + + + Alternate List + + + + Map + + + + Neutral Face + + + + Face Without Mouth + + + + Face With Rolling Eyes + + + + Minus Square + + + + Alternate Money Bill + + + + Moon + + + + Newspaper + + + + Object Group + + + + Object Ungroup + + + + Paper Plane + + + + Pause Circle + + + + Play Circle + + + + Plus Square + + + + Question Circle + + + + Registered Trademark + + + + Crying Face + + + + Loudly Crying Face + + + + Save + + + + Share Square + + + + Smiling Face + + + + Beaming Face With Smiling Eyes + + + + Winking Face + + + + Snowflake + + + + Square + + + + Star + + + + star-half + + + + Sticky Note + + + + Stop Circle + + + + Sun + + + + Hushed Face + + + + thumbs-down + + + + thumbs-up + + + + Times Circle + + + + Tired Face + + + + Alternate Trash + + + + User + + + + User Circle + + + + Window Close + + + + Window Maximize + + + + Window Minimize + + + + Window Restore + + + diff --git a/public/assets/lib/fontawesome-free/sprites/solid.svg b/public/assets/lib/fontawesome-free/sprites/solid.svg new file mode 100755 index 0000000..08bbfe1 --- /dev/null +++ b/public/assets/lib/fontawesome-free/sprites/solid.svg @@ -0,0 +1,3251 @@ + + + + + + Address Book + + + + Address Card + + + + adjust + + + + Air Freshener + + + + align-center + + + + align-justify + + + + align-left + + + + align-right + + + + Allergies + + + + ambulance + + + + American Sign Language Interpreting + + + + Anchor + + + + Angle Double Down + + + + Angle Double Left + + + + Angle Double Right + + + + Angle Double Up + + + + angle-down + + + + angle-left + + + + angle-right + + + + angle-up + + + + Angry Face + + + + Ankh + + + + Fruit Apple + + + + Archive + + + + Archway + + + + Alternate Arrow Circle Down + + + + Alternate Arrow Circle Left + + + + Alternate Arrow Circle Right + + + + Alternate Arrow Circle Up + + + + Arrow Circle Down + + + + Arrow Circle Left + + + + Arrow Circle Right + + + + Arrow Circle Up + + + + arrow-down + + + + arrow-left + + + + arrow-right + + + + arrow-up + + + + Alternate Arrows + + + + Alternate Arrows Horizontal + + + + Alternate Arrows Vertical + + + + Assistive Listening Systems + + + + asterisk + + + + At + + + + Atlas + + + + Atom + + + + Audio Description + + + + Award + + + + Backspace + + + + backward + + + + Balance Scale + + + + ban + + + + Band-Aid + + + + barcode + + + + Bars + + + + Baseball Ball + + + + Basketball Ball + + + + Bath + + + + Battery Empty + + + + Battery Full + + + + Battery 1/2 Full + + + + Battery 1/4 Full + + + + Battery 3/4 Full + + + + Bed + + + + beer + + + + bell + + + + Bell Slash + + + + Bezier Curve + + + + Bible + + + + Bicycle + + + + Binoculars + + + + Birthday Cake + + + + Blender + + + + Blind + + + + bold + + + + Lightning Bolt + + + + Bomb + + + + Bone + + + + Bong + + + + book + + + + Book Open + + + + Book Reader + + + + bookmark + + + + Bowling Ball + + + + Box + + + + Box Open + + + + Boxes + + + + Braille + + + + Brain + + + + Briefcase + + + + Medical Briefcase + + + + Broadcast Tower + + + + Broom + + + + Brush + + + + Bug + + + + Building + + + + bullhorn + + + + Bullseye + + + + Burn + + + + Bus + + + + Bus Alt + + + + Business Time + + + + Calculator + + + + Calendar + + + + Alternate Calendar + + + + Calendar Check + + + + Calendar Minus + + + + Calendar Plus + + + + Calendar Times + + + + camera + + + + Retro Camera + + + + Cannabis + + + + Capsules + + + + Car + + + + Car Alt + + + + Car Battery + + + + Car Crash + + + + Car Side + + + + Caret Down + + + + Caret Left + + + + Caret Right + + + + Caret Square Down + + + + Caret Square Left + + + + Caret Square Right + + + + Caret Square Up + + + + Caret Up + + + + Shopping Cart Arrow Down + + + + Add to Shopping Cart + + + + certificate + + + + Chalkboard + + + + Chalkboard Teacher + + + + Charging Station + + + + Area Chart + + + + Bar Chart + + + + Line Chart + + + + Pie Chart + + + + Check + + + + Check Circle + + + + Check Double + + + + Check Square + + + + Chess + + + + Chess Bishop + + + + Chess Board + + + + Chess King + + + + Chess Knight + + + + Chess Pawn + + + + Chess Queen + + + + Chess Rook + + + + Chevron Circle Down + + + + Chevron Circle Left + + + + Chevron Circle Right + + + + Chevron Circle Up + + + + chevron-down + + + + chevron-left + + + + chevron-right + + + + chevron-up + + + + Child + + + + Church + + + + Circle + + + + Circle Notched + + + + City + + + + Clipboard + + + + Clipboard Check + + + + Clipboard List + + + + Clock + + + + Clone + + + + Closed Captioning + + + + Cloud + + + + Alternate Cloud Download + + + + Alternate Cloud Upload + + + + Cocktail + + + + Code + + + + Code Branch + + + + Coffee + + + + cog + + + + cogs + + + + Coins + + + + Columns + + + + comment + + + + Alternate Comment + + + + Comment Dollar + + + + Comment Dots + + + + Comment Slash + + + + comments + + + + Comments Dollar + + + + Compact Disc + + + + Compass + + + + Compress + + + + Concierge Bell + + + + Cookie + + + + Cookie Bite + + + + Copy + + + + Copyright + + + + Couch + + + + Credit Card + + + + crop + + + + Alternate Crop + + + + Cross + + + + Crosshairs + + + + Crow + + + + Crown + + + + Cube + + + + Cubes + + + + Cut + + + + Database + + + + Deaf + + + + Desktop + + + + Dharmachakra + + + + Diagnoses + + + + Dice + + + + Dice Five + + + + Dice Four + + + + Dice One + + + + Dice Six + + + + Dice Three + + + + Dice Two + + + + Digital Tachograph + + + + Directions + + + + Divide + + + + Dizzy Face + + + + DNA + + + + Dollar Sign + + + + Dolly + + + + Dolly Flatbed + + + + + Door Closed + + + + Door Open + + + + Dot Circle + + + + Dove + + + + Download + + + + Drafting Compass + + + + Draw Polygon + + + + Drum + + + + Drum Steelpan + + + + Dumbbell + + + + Edit + + + + eject + + + + Horizontal Ellipsis + + + + Vertical Ellipsis + + + + Envelope + + + + Envelope Open + + + + Envelope Open-text + + + + Envelope Square + + + + Equals + + + + eraser + + + + Euro Sign + + + + Alternate Exchange + + + + exclamation + + + + Exclamation Circle + + + + Exclamation Triangle + + + + Expand + + + + Alternate Expand Arrows + + + + Alternate External Link + + + + Alternate External Link Square + + + + Eye + + + + Eye Dropper + + + + Eye Slash + + + + fast-backward + + + + fast-forward + + + + Fax + + + + Feather + + + + Feather Alt + + + + Female + + + + fighter-jet + + + + File + + + + Alternate File + + + + Archive File + + + + Audio File + + + + Code File + + + + File Contract + + + + File Download + + + + Excel File + + + + File Export + + + + Image File + + + + File Import + + + + File Invoice + + + + File Invoice with US Dollar + + + + Medical File + + + + Alternate Medical File + + + + PDF File + + + + Powerpoint File + + + + File Prescription + + + + File Signature + + + + File Upload + + + + Video File + + + + Word File + + + + Fill + + + + Fill Drip + + + + Film + + + + Filter + + + + Fingerprint + + + + fire + + + + fire-extinguisher + + + + First Aid + + + + Fish + + + + flag + + + + flag-checkered + + + + Flask + + + + Flushed Face + + + + Folder + + + + Folder Minus + + + + Folder Open + + + + Folder Plus + + + + font + + + + Font Awesome Full Logo + + + + Football Ball + + + + forward + + + + Frog + + + + Frowning Face + + + + Frowning Face With Open Mouth + + + + Funnel Dollar + + + + Futbol + + + + Gamepad + + + + Gas Pump + + + + Gavel + + + + Gem + + + + Genderless + + + + gift + + + + Martini Glass + + + + Glass Martini-alt + + + + Glasses + + + + Globe + + + + Globe with Africa shown + + + + Globe with Americas shown + + + + Globe with Asia shown + + + + Golf Ball + + + + Gopuram + + + + Graduation Cap + + + + Greater Than + + + + Greater Than Equal To + + + + Grimacing Face + + + + Grinning Face + + + + Alternate Grinning Face + + + + Grinning Face With Smiling Eyes + + + + Grinning Face With Sweat + + + + Smiling Face With Heart-Eyes + + + + Grinning Squinting Face + + + + Rolling on the Floor Laughing + + + + Star-Struck + + + + Face With Tears of Joy + + + + Face With Tongue + + + + Squinting Face With Tongue + + + + Winking Face With Tongue + + + + Grinning Winking Face + + + + Grip Horizontal + + + + Grip Vertical + + + + H Square + + + + Hamsa + + + + Hand Holding + + + + Hand Holding Heart + + + + Hand Holding US Dollar + + + + Lizard (Hand) + + + + Paper (Hand) + + + + Peace (Hand) + + + + Hand Pointing Down + + + + Hand Pointing Left + + + + Hand Pointing Right + + + + Hand Pointing Up + + + + Pointer (Hand) + + + + Rock (Hand) + + + + Scissors (Hand) + + + + Spock (Hand) + + + + Hands + + + + Helping Hands + + + + Handshake + + + + Hashtag + + + + Haykal + + + + HDD + + + + heading + + + + headphones + + + + Headphones Alt + + + + Headset + + + + Heart + + + + Heartbeat + + + + Helicopter + + + + Highlighter + + + + History + + + + Hockey Puck + + + + home + + + + hospital + + + + Alternate Hospital + + + + Hospital Symbol + + + + Hot Tub + + + + Hotel + + + + Hourglass + + + + Hourglass End + + + + Hourglass Half + + + + Hourglass Start + + + + I Beam Cursor + + + + Identification Badge + + + + Identification Card + + + + Alternate Identification Card + + + + Image + + + + Images + + + + inbox + + + + Indent + + + + Industry + + + + Infinity + + + + Info + + + + Info Circle + + + + italic + + + + Jedi + + + + Joint + + + + Journal of the Whills + + + + Kaaba + + + + key + + + + Keyboard + + + + Khanda + + + + Kissing Face + + + + Kissing Face With Smiling Eyes + + + + Face Blowing a Kiss + + + + Kiwi Bird + + + + Landmark + + + + Language + + + + Laptop + + + + Laptop Code + + + + Grinning Face With Big Eyes + + + + Laugh Face with Beaming Eyes + + + + Laughing Squinting Face + + + + Laughing Winking Face + + + + Layer Group + + + + leaf + + + + Lemon + + + + Less Than + + + + Less Than Equal To + + + + Alternate Level Down + + + + Alternate Level Up + + + + Life Ring + + + + Lightbulb + + + + Link + + + + Turkish Lira Sign + + + + List + + + + Alternate List + + + + list-ol + + + + list-ul + + + + location-arrow + + + + lock + + + + Lock Open + + + + Alternate Long Arrow Down + + + + Alternate Long Arrow Left + + + + Alternate Long Arrow Right + + + + Alternate Long Arrow Up + + + + Low Vision + + + + Luggage Cart + + + + magic + + + + magnet + + + + Mail Bulk + + + + Male + + + + Map + + + + Map Marked + + + + Map Marked-alt + + + + map-marker + + + + Alternate Map Marker + + + + Map Pin + + + + Map Signs + + + + Marker + + + + Mars + + + + Mars Double + + + + Mars Stroke + + + + Mars Stroke Horizontal + + + + Mars Stroke Vertical + + + + Medal + + + + medkit + + + + Neutral Face + + + + Face Without Mouth + + + + Face With Rolling Eyes + + + + Memory + + + + Menorah + + + + Mercury + + + + Microchip + + + + microphone + + + + Alternate Microphone + + + + Alternate Microphone Slash + + + + Microphone Slash + + + + Microscope + + + + minus + + + + Minus Circle + + + + Minus Square + + + + Mobile Phone + + + + Alternate Mobile + + + + Money Bill + + + + Alternate Money Bill + + + + Wavy Money Bill + + + + Alternate Wavy Money Bill + + + + Money Check + + + + Alternate Money Check + + + + Monument + + + + Moon + + + + Mortar Pestle + + + + Mosque + + + + Motorcycle + + + + Mouse Pointer + + + + Music + + + + Neuter + + + + Newspaper + + + + Not Equal + + + + Medical Notes + + + + Object Group + + + + Object Ungroup + + + + Oil Can + + + + Om + + + + Outdent + + + + Paint Brush + + + + Paint Roller + + + + Palette + + + + Pallet + + + + Paper Plane + + + + Paperclip + + + + Parachute Box + + + + paragraph + + + + Parking + + + + Passport + + + + Pastafarianism + + + + Paste + + + + pause + + + + Pause Circle + + + + Paw + + + + Peace + + + + Pen + + + + Alternate Pen + + + + Pen Fancy + + + + Pen Nib + + + + Pen Square + + + + Alternate Pencil + + + + Pencil Ruler + + + + People Carry + + + + Percent + + + + Percentage + + + + Phone + + + + Phone Slash + + + + Phone Square + + + + Phone Volume + + + + Piggy Bank + + + + Pills + + + + Place Of Worship + + + + plane + + + + Plane Arrival + + + + Plane Departure + + + + play + + + + Play Circle + + + + Plug + + + + plus + + + + Plus Circle + + + + Plus Square + + + + Podcast + + + + Poll + + + + Poll H + + + + Poo + + + + Poop + + + + Portrait + + + + Pound Sign + + + + Power Off + + + + Pray + + + + Praying Hands + + + + Prescription + + + + Prescription Bottle + + + + Alternate Prescription Bottle + + + + print + + + + Procedures + + + + Project Diagram + + + + Puzzle Piece + + + + qrcode + + + + Question + + + + Question Circle + + + + Quidditch + + + + quote-left + + + + quote-right + + + + Quran + + + + random + + + + Receipt + + + + Recycle + + + + Redo + + + + Alternate Redo + + + + Registered Trademark + + + + Reply + + + + reply-all + + + + Retweet + + + + Ribbon + + + + road + + + + Robot + + + + rocket + + + + Route + + + + rss + + + + RSS Square + + + + Ruble Sign + + + + Ruler + + + + Ruler Combined + + + + Ruler Horizontal + + + + Ruler Vertical + + + + Indian Rupee Sign + + + + Crying Face + + + + Loudly Crying Face + + + + Save + + + + School + + + + Screwdriver + + + + Search + + + + Search Dollar + + + + Search Location + + + + Search Minus + + + + Search Plus + + + + Seedling + + + + Server + + + + Shapes + + + + Share + + + + Alternate Share + + + + Alternate Share Square + + + + Share Square + + + + Shekel Sign + + + + Alternate Shield + + + + Ship + + + + Shipping Fast + + + + Shoe Prints + + + + Shopping Bag + + + + Shopping Basket + + + + shopping-cart + + + + Shower + + + + Shuttle Van + + + + Sign + + + + Alternate Sign In + + + + Sign Language + + + + Alternate Sign Out + + + + signal + + + + Signature + + + + Sitemap + + + + Skull + + + + Horizontal Sliders + + + + Smiling Face + + + + Beaming Face With Smiling Eyes + + + + Winking Face + + + + Smoking + + + + Smoking Ban + + + + Snowflake + + + + Socks + + + + Solar Panel + + + + Sort + + + + Sort Alpha Down + + + + Sort Alpha Up + + + + Sort Amount Down + + + + Sort Amount Up + + + + Sort Down (Descending) + + + + Sort Numeric Down + + + + Sort Numeric Up + + + + Sort Up (Ascending) + + + + Spa + + + + Space Shuttle + + + + Spinner + + + + Splotch + + + + Spray Can + + + + Square + + + + Square Full + + + + Square Root Alternate + + + + Stamp + + + + Star + + + + Star and Crescent + + + + star-half + + + + Alternate Star Half + + + + Star of David + + + + Star of Life + + + + step-backward + + + + step-forward + + + + Stethoscope + + + + Sticky Note + + + + stop + + + + Stop Circle + + + + Stopwatch + + + + Store + + + + Alternate Store + + + + Stream + + + + Street View + + + + Strikethrough + + + + Stroopwafel + + + + subscript + + + + Subway + + + + Suitcase + + + + Suitcase Rolling + + + + Sun + + + + superscript + + + + Hushed Face + + + + Swatchbook + + + + Swimmer + + + + Swimming Pool + + + + Synagogue + + + + Sync + + + + Alternate Sync + + + + Syringe + + + + table + + + + Table Tennis + + + + tablet + + + + Alternate Tablet + + + + Tablets + + + + Alternate Tachometer + + + + tag + + + + tags + + + + Tape + + + + Tasks + + + + Taxi + + + + Teeth + + + + Teeth Open + + + + Terminal + + + + text-height + + + + text-width + + + + th + + + + th-large + + + + th-list + + + + Theater Masks + + + + Thermometer + + + + Thermometer Empty + + + + Thermometer Full + + + + Thermometer 1/2 Full + + + + Thermometer 1/4 Full + + + + Thermometer 3/4 Full + + + + thumbs-down + + + + thumbs-up + + + + Thumbtack + + + + Alternate Ticket + + + + Times + + + + Times Circle + + + + tint + + + + Tint Slash + + + + Tired Face + + + + Toggle Off + + + + Toggle On + + + + Toolbox + + + + Tooth + + + + Torah + + + + Torii Gate + + + + Trademark + + + + Traffic Light + + + + Train + + + + Transgender + + + + Alternate Transgender + + + + Trash + + + + Alternate Trash + + + + Tree + + + + trophy + + + + truck + + + + Truck Loading + + + + Truck Monster + + + + Truck Moving + + + + Truck Side + + + + T-Shirt + + + + TTY + + + + Television + + + + Umbrella + + + + Umbrella Beach + + + + Underline + + + + Undo + + + + Alternate Undo + + + + Universal Access + + + + University + + + + unlink + + + + unlock + + + + Alternate Unlock + + + + Upload + + + + User + + + + Alternate User + + + + Alternate User Slash + + + + User Astronaut + + + + User Check + + + + User Circle + + + + User Clock + + + + User Cog + + + + User Edit + + + + User Friends + + + + User Graduate + + + + User Lock + + + + user-md + + + + User Minus + + + + User Ninja + + + + User Plus + + + + User Secret + + + + User Shield + + + + User Slash + + + + User Tag + + + + User Tie + + + + Remove User + + + + Users + + + + Users Cog + + + + Utensil Spoon + + + + Utensils + + + + Vector Square + + + + Venus + + + + Venus Double + + + + Venus Mars + + + + Vial + + + + Vials + + + + Video + + + + Video Slash + + + + Vihara + + + + Volleyball Ball + + + + Volume Down + + + + Volume Off + + + + Volume Up + + + + Walking + + + + Wallet + + + + Warehouse + + + + Weight + + + + Hanging Weight + + + + Wheelchair + + + + WiFi + + + + Window Close + + + + Window Maximize + + + + Window Minimize + + + + Window Restore + + + + Wine Glass + + + + Wine Glass-alt + + + + Won Sign + + + + Wrench + + + + X-Ray + + + + Yen Sign + + + + Yin Yang + + + diff --git a/public/assets/lib/fontawesome-free/svgs/brands/500px.svg b/public/assets/lib/fontawesome-free/svgs/brands/500px.svg new file mode 100755 index 0000000..52d1141 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/500px.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/accessible-icon.svg b/public/assets/lib/fontawesome-free/svgs/brands/accessible-icon.svg new file mode 100755 index 0000000..eea0fe1 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/accessible-icon.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/accusoft.svg b/public/assets/lib/fontawesome-free/svgs/brands/accusoft.svg new file mode 100755 index 0000000..3a32ec9 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/accusoft.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/adn.svg b/public/assets/lib/fontawesome-free/svgs/brands/adn.svg new file mode 100755 index 0000000..2fede6d --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/adn.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/adversal.svg b/public/assets/lib/fontawesome-free/svgs/brands/adversal.svg new file mode 100755 index 0000000..ef2c8c0 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/adversal.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/affiliatetheme.svg b/public/assets/lib/fontawesome-free/svgs/brands/affiliatetheme.svg new file mode 100755 index 0000000..00f2a9c --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/affiliatetheme.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/algolia.svg b/public/assets/lib/fontawesome-free/svgs/brands/algolia.svg new file mode 100755 index 0000000..5d71f7c --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/algolia.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/alipay.svg b/public/assets/lib/fontawesome-free/svgs/brands/alipay.svg new file mode 100755 index 0000000..a110616 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/alipay.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/amazon-pay.svg b/public/assets/lib/fontawesome-free/svgs/brands/amazon-pay.svg new file mode 100755 index 0000000..708ef41 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/amazon-pay.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/amazon.svg b/public/assets/lib/fontawesome-free/svgs/brands/amazon.svg new file mode 100755 index 0000000..e8eccf0 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/amazon.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/amilia.svg b/public/assets/lib/fontawesome-free/svgs/brands/amilia.svg new file mode 100755 index 0000000..a6dcbfe --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/amilia.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/android.svg b/public/assets/lib/fontawesome-free/svgs/brands/android.svg new file mode 100755 index 0000000..e7d3323 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/android.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/angellist.svg b/public/assets/lib/fontawesome-free/svgs/brands/angellist.svg new file mode 100755 index 0000000..cfc5610 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/angellist.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/angrycreative.svg b/public/assets/lib/fontawesome-free/svgs/brands/angrycreative.svg new file mode 100755 index 0000000..7a721d4 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/angrycreative.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/angular.svg b/public/assets/lib/fontawesome-free/svgs/brands/angular.svg new file mode 100755 index 0000000..a5f3a06 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/angular.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/app-store-ios.svg b/public/assets/lib/fontawesome-free/svgs/brands/app-store-ios.svg new file mode 100755 index 0000000..a8e4311 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/app-store-ios.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/app-store.svg b/public/assets/lib/fontawesome-free/svgs/brands/app-store.svg new file mode 100755 index 0000000..101e394 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/app-store.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/apper.svg b/public/assets/lib/fontawesome-free/svgs/brands/apper.svg new file mode 100755 index 0000000..3dcf96a --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/apper.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/apple-pay.svg b/public/assets/lib/fontawesome-free/svgs/brands/apple-pay.svg new file mode 100755 index 0000000..f3f8071 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/apple-pay.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/apple.svg b/public/assets/lib/fontawesome-free/svgs/brands/apple.svg new file mode 100755 index 0000000..05f58f9 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/apple.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/asymmetrik.svg b/public/assets/lib/fontawesome-free/svgs/brands/asymmetrik.svg new file mode 100755 index 0000000..7b45c0b --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/asymmetrik.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/audible.svg b/public/assets/lib/fontawesome-free/svgs/brands/audible.svg new file mode 100755 index 0000000..10545cb --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/audible.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/autoprefixer.svg b/public/assets/lib/fontawesome-free/svgs/brands/autoprefixer.svg new file mode 100755 index 0000000..130ed0b --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/autoprefixer.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/avianex.svg b/public/assets/lib/fontawesome-free/svgs/brands/avianex.svg new file mode 100755 index 0000000..a03c5a4 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/avianex.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/aviato.svg b/public/assets/lib/fontawesome-free/svgs/brands/aviato.svg new file mode 100755 index 0000000..e45ea59 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/aviato.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/aws.svg b/public/assets/lib/fontawesome-free/svgs/brands/aws.svg new file mode 100755 index 0000000..07e152d --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/aws.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/bandcamp.svg b/public/assets/lib/fontawesome-free/svgs/brands/bandcamp.svg new file mode 100755 index 0000000..de965cf --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/bandcamp.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/behance-square.svg b/public/assets/lib/fontawesome-free/svgs/brands/behance-square.svg new file mode 100755 index 0000000..a571546 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/behance-square.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/behance.svg b/public/assets/lib/fontawesome-free/svgs/brands/behance.svg new file mode 100755 index 0000000..145be7d --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/behance.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/bimobject.svg b/public/assets/lib/fontawesome-free/svgs/brands/bimobject.svg new file mode 100755 index 0000000..0136473 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/bimobject.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/bitbucket.svg b/public/assets/lib/fontawesome-free/svgs/brands/bitbucket.svg new file mode 100755 index 0000000..11205be --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/bitbucket.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/bitcoin.svg b/public/assets/lib/fontawesome-free/svgs/brands/bitcoin.svg new file mode 100755 index 0000000..9d367ff --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/bitcoin.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/bity.svg b/public/assets/lib/fontawesome-free/svgs/brands/bity.svg new file mode 100755 index 0000000..bd0a2b1 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/bity.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/black-tie.svg b/public/assets/lib/fontawesome-free/svgs/brands/black-tie.svg new file mode 100755 index 0000000..8b472fa --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/black-tie.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/blackberry.svg b/public/assets/lib/fontawesome-free/svgs/brands/blackberry.svg new file mode 100755 index 0000000..34a4855 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/blackberry.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/blogger-b.svg b/public/assets/lib/fontawesome-free/svgs/brands/blogger-b.svg new file mode 100755 index 0000000..3614e54 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/blogger-b.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/blogger.svg b/public/assets/lib/fontawesome-free/svgs/brands/blogger.svg new file mode 100755 index 0000000..24f09c7 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/blogger.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/bluetooth-b.svg b/public/assets/lib/fontawesome-free/svgs/brands/bluetooth-b.svg new file mode 100755 index 0000000..6ecba13 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/bluetooth-b.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/bluetooth.svg b/public/assets/lib/fontawesome-free/svgs/brands/bluetooth.svg new file mode 100755 index 0000000..14abca9 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/bluetooth.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/btc.svg b/public/assets/lib/fontawesome-free/svgs/brands/btc.svg new file mode 100755 index 0000000..f58cd2b --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/btc.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/buromobelexperte.svg b/public/assets/lib/fontawesome-free/svgs/brands/buromobelexperte.svg new file mode 100755 index 0000000..2550305 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/buromobelexperte.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/buysellads.svg b/public/assets/lib/fontawesome-free/svgs/brands/buysellads.svg new file mode 100755 index 0000000..210986a --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/buysellads.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/cc-amazon-pay.svg b/public/assets/lib/fontawesome-free/svgs/brands/cc-amazon-pay.svg new file mode 100755 index 0000000..549bebc --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/cc-amazon-pay.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/cc-amex.svg b/public/assets/lib/fontawesome-free/svgs/brands/cc-amex.svg new file mode 100755 index 0000000..22ffdeb --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/cc-amex.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/cc-apple-pay.svg b/public/assets/lib/fontawesome-free/svgs/brands/cc-apple-pay.svg new file mode 100755 index 0000000..a37d38c --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/cc-apple-pay.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/cc-diners-club.svg b/public/assets/lib/fontawesome-free/svgs/brands/cc-diners-club.svg new file mode 100755 index 0000000..40f2fdb --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/cc-diners-club.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/cc-discover.svg b/public/assets/lib/fontawesome-free/svgs/brands/cc-discover.svg new file mode 100755 index 0000000..028b3dd --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/cc-discover.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/cc-jcb.svg b/public/assets/lib/fontawesome-free/svgs/brands/cc-jcb.svg new file mode 100755 index 0000000..22628fe --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/cc-jcb.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/cc-mastercard.svg b/public/assets/lib/fontawesome-free/svgs/brands/cc-mastercard.svg new file mode 100755 index 0000000..45891ae --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/cc-mastercard.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/cc-paypal.svg b/public/assets/lib/fontawesome-free/svgs/brands/cc-paypal.svg new file mode 100755 index 0000000..78c4491 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/cc-paypal.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/cc-stripe.svg b/public/assets/lib/fontawesome-free/svgs/brands/cc-stripe.svg new file mode 100755 index 0000000..ea9d14f --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/cc-stripe.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/cc-visa.svg b/public/assets/lib/fontawesome-free/svgs/brands/cc-visa.svg new file mode 100755 index 0000000..ba1957a --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/cc-visa.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/centercode.svg b/public/assets/lib/fontawesome-free/svgs/brands/centercode.svg new file mode 100755 index 0000000..ce347e4 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/centercode.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/chrome.svg b/public/assets/lib/fontawesome-free/svgs/brands/chrome.svg new file mode 100755 index 0000000..328934f --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/chrome.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/cloudscale.svg b/public/assets/lib/fontawesome-free/svgs/brands/cloudscale.svg new file mode 100755 index 0000000..f029314 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/cloudscale.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/cloudsmith.svg b/public/assets/lib/fontawesome-free/svgs/brands/cloudsmith.svg new file mode 100755 index 0000000..8d67ff3 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/cloudsmith.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/cloudversify.svg b/public/assets/lib/fontawesome-free/svgs/brands/cloudversify.svg new file mode 100755 index 0000000..b99ecdf --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/cloudversify.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/codepen.svg b/public/assets/lib/fontawesome-free/svgs/brands/codepen.svg new file mode 100755 index 0000000..4a84af7 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/codepen.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/codiepie.svg b/public/assets/lib/fontawesome-free/svgs/brands/codiepie.svg new file mode 100755 index 0000000..5dd8782 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/codiepie.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/connectdevelop.svg b/public/assets/lib/fontawesome-free/svgs/brands/connectdevelop.svg new file mode 100755 index 0000000..0d00cf9 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/connectdevelop.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/contao.svg b/public/assets/lib/fontawesome-free/svgs/brands/contao.svg new file mode 100755 index 0000000..b66ebdd --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/contao.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/cpanel.svg b/public/assets/lib/fontawesome-free/svgs/brands/cpanel.svg new file mode 100755 index 0000000..017b859 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/cpanel.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/creative-commons-by.svg b/public/assets/lib/fontawesome-free/svgs/brands/creative-commons-by.svg new file mode 100755 index 0000000..214520b --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/creative-commons-by.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/creative-commons-nc-eu.svg b/public/assets/lib/fontawesome-free/svgs/brands/creative-commons-nc-eu.svg new file mode 100755 index 0000000..db8b362 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/creative-commons-nc-eu.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/creative-commons-nc-jp.svg b/public/assets/lib/fontawesome-free/svgs/brands/creative-commons-nc-jp.svg new file mode 100755 index 0000000..de608d8 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/creative-commons-nc-jp.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/creative-commons-nc.svg b/public/assets/lib/fontawesome-free/svgs/brands/creative-commons-nc.svg new file mode 100755 index 0000000..f60d353 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/creative-commons-nc.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/creative-commons-nd.svg b/public/assets/lib/fontawesome-free/svgs/brands/creative-commons-nd.svg new file mode 100755 index 0000000..3c31cd1 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/creative-commons-nd.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/creative-commons-pd-alt.svg b/public/assets/lib/fontawesome-free/svgs/brands/creative-commons-pd-alt.svg new file mode 100755 index 0000000..a667c34 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/creative-commons-pd-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/creative-commons-pd.svg b/public/assets/lib/fontawesome-free/svgs/brands/creative-commons-pd.svg new file mode 100755 index 0000000..a855e6e --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/creative-commons-pd.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/creative-commons-remix.svg b/public/assets/lib/fontawesome-free/svgs/brands/creative-commons-remix.svg new file mode 100755 index 0000000..a85da7d --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/creative-commons-remix.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/creative-commons-sa.svg b/public/assets/lib/fontawesome-free/svgs/brands/creative-commons-sa.svg new file mode 100755 index 0000000..12bee0b --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/creative-commons-sa.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/creative-commons-sampling-plus.svg b/public/assets/lib/fontawesome-free/svgs/brands/creative-commons-sampling-plus.svg new file mode 100755 index 0000000..95f4f48 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/creative-commons-sampling-plus.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/creative-commons-sampling.svg b/public/assets/lib/fontawesome-free/svgs/brands/creative-commons-sampling.svg new file mode 100755 index 0000000..9d527fa --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/creative-commons-sampling.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/creative-commons-share.svg b/public/assets/lib/fontawesome-free/svgs/brands/creative-commons-share.svg new file mode 100755 index 0000000..acc1710 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/creative-commons-share.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/creative-commons.svg b/public/assets/lib/fontawesome-free/svgs/brands/creative-commons.svg new file mode 100755 index 0000000..453f6be --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/creative-commons.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/css3-alt.svg b/public/assets/lib/fontawesome-free/svgs/brands/css3-alt.svg new file mode 100755 index 0000000..ba3cefc --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/css3-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/css3.svg b/public/assets/lib/fontawesome-free/svgs/brands/css3.svg new file mode 100755 index 0000000..6c0189e --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/css3.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/cuttlefish.svg b/public/assets/lib/fontawesome-free/svgs/brands/cuttlefish.svg new file mode 100755 index 0000000..5305f98 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/cuttlefish.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/d-and-d.svg b/public/assets/lib/fontawesome-free/svgs/brands/d-and-d.svg new file mode 100755 index 0000000..28d200c --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/d-and-d.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/dashcube.svg b/public/assets/lib/fontawesome-free/svgs/brands/dashcube.svg new file mode 100755 index 0000000..f6df397 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/dashcube.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/delicious.svg b/public/assets/lib/fontawesome-free/svgs/brands/delicious.svg new file mode 100755 index 0000000..4aeea98 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/delicious.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/deploydog.svg b/public/assets/lib/fontawesome-free/svgs/brands/deploydog.svg new file mode 100755 index 0000000..4a3422b --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/deploydog.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/deskpro.svg b/public/assets/lib/fontawesome-free/svgs/brands/deskpro.svg new file mode 100755 index 0000000..454415f --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/deskpro.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/deviantart.svg b/public/assets/lib/fontawesome-free/svgs/brands/deviantart.svg new file mode 100755 index 0000000..8a153ed --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/deviantart.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/digg.svg b/public/assets/lib/fontawesome-free/svgs/brands/digg.svg new file mode 100755 index 0000000..48c93d1 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/digg.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/digital-ocean.svg b/public/assets/lib/fontawesome-free/svgs/brands/digital-ocean.svg new file mode 100755 index 0000000..13a4dd2 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/digital-ocean.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/discord.svg b/public/assets/lib/fontawesome-free/svgs/brands/discord.svg new file mode 100755 index 0000000..26ff15c --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/discord.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/discourse.svg b/public/assets/lib/fontawesome-free/svgs/brands/discourse.svg new file mode 100755 index 0000000..3960cc1 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/discourse.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/dochub.svg b/public/assets/lib/fontawesome-free/svgs/brands/dochub.svg new file mode 100755 index 0000000..4e93f92 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/dochub.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/docker.svg b/public/assets/lib/fontawesome-free/svgs/brands/docker.svg new file mode 100755 index 0000000..c4e2e84 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/docker.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/draft2digital.svg b/public/assets/lib/fontawesome-free/svgs/brands/draft2digital.svg new file mode 100755 index 0000000..e669460 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/draft2digital.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/dribbble-square.svg b/public/assets/lib/fontawesome-free/svgs/brands/dribbble-square.svg new file mode 100755 index 0000000..e247881 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/dribbble-square.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/dribbble.svg b/public/assets/lib/fontawesome-free/svgs/brands/dribbble.svg new file mode 100755 index 0000000..035b3e2 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/dribbble.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/dropbox.svg b/public/assets/lib/fontawesome-free/svgs/brands/dropbox.svg new file mode 100755 index 0000000..dee1b03 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/dropbox.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/drupal.svg b/public/assets/lib/fontawesome-free/svgs/brands/drupal.svg new file mode 100755 index 0000000..95ca470 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/drupal.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/dyalog.svg b/public/assets/lib/fontawesome-free/svgs/brands/dyalog.svg new file mode 100755 index 0000000..9951469 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/dyalog.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/earlybirds.svg b/public/assets/lib/fontawesome-free/svgs/brands/earlybirds.svg new file mode 100755 index 0000000..e7f7aa7 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/earlybirds.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/ebay.svg b/public/assets/lib/fontawesome-free/svgs/brands/ebay.svg new file mode 100755 index 0000000..3e43866 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/ebay.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/edge.svg b/public/assets/lib/fontawesome-free/svgs/brands/edge.svg new file mode 100755 index 0000000..efc132b --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/edge.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/elementor.svg b/public/assets/lib/fontawesome-free/svgs/brands/elementor.svg new file mode 100755 index 0000000..d6f977e --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/elementor.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/ello.svg b/public/assets/lib/fontawesome-free/svgs/brands/ello.svg new file mode 100755 index 0000000..63e0051 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/ello.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/ember.svg b/public/assets/lib/fontawesome-free/svgs/brands/ember.svg new file mode 100755 index 0000000..fbd2632 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/ember.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/empire.svg b/public/assets/lib/fontawesome-free/svgs/brands/empire.svg new file mode 100755 index 0000000..011acfa --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/empire.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/envira.svg b/public/assets/lib/fontawesome-free/svgs/brands/envira.svg new file mode 100755 index 0000000..a818549 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/envira.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/erlang.svg b/public/assets/lib/fontawesome-free/svgs/brands/erlang.svg new file mode 100755 index 0000000..981c755 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/erlang.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/ethereum.svg b/public/assets/lib/fontawesome-free/svgs/brands/ethereum.svg new file mode 100755 index 0000000..549428c --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/ethereum.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/etsy.svg b/public/assets/lib/fontawesome-free/svgs/brands/etsy.svg new file mode 100755 index 0000000..9818050 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/etsy.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/expeditedssl.svg b/public/assets/lib/fontawesome-free/svgs/brands/expeditedssl.svg new file mode 100755 index 0000000..312f181 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/expeditedssl.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/facebook-f.svg b/public/assets/lib/fontawesome-free/svgs/brands/facebook-f.svg new file mode 100755 index 0000000..56bfbc4 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/facebook-f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/facebook-messenger.svg b/public/assets/lib/fontawesome-free/svgs/brands/facebook-messenger.svg new file mode 100755 index 0000000..1ab9707 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/facebook-messenger.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/facebook-square.svg b/public/assets/lib/fontawesome-free/svgs/brands/facebook-square.svg new file mode 100755 index 0000000..c78d21d --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/facebook-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/facebook.svg b/public/assets/lib/fontawesome-free/svgs/brands/facebook.svg new file mode 100755 index 0000000..f6931b6 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/facebook.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/firefox.svg b/public/assets/lib/fontawesome-free/svgs/brands/firefox.svg new file mode 100755 index 0000000..6781cd7 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/firefox.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/first-order-alt.svg b/public/assets/lib/fontawesome-free/svgs/brands/first-order-alt.svg new file mode 100755 index 0000000..5ebcf48 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/first-order-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/first-order.svg b/public/assets/lib/fontawesome-free/svgs/brands/first-order.svg new file mode 100755 index 0000000..50e8532 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/first-order.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/firstdraft.svg b/public/assets/lib/fontawesome-free/svgs/brands/firstdraft.svg new file mode 100755 index 0000000..cc8f5fc --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/firstdraft.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/flickr.svg b/public/assets/lib/fontawesome-free/svgs/brands/flickr.svg new file mode 100755 index 0000000..0c34a1d --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/flickr.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/flipboard.svg b/public/assets/lib/fontawesome-free/svgs/brands/flipboard.svg new file mode 100755 index 0000000..0ca0561 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/flipboard.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/fly.svg b/public/assets/lib/fontawesome-free/svgs/brands/fly.svg new file mode 100755 index 0000000..20d136c --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/fly.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/font-awesome-alt.svg b/public/assets/lib/fontawesome-free/svgs/brands/font-awesome-alt.svg new file mode 100755 index 0000000..cb73bfb --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/font-awesome-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/font-awesome-flag.svg b/public/assets/lib/fontawesome-free/svgs/brands/font-awesome-flag.svg new file mode 100755 index 0000000..7fb3418 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/font-awesome-flag.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/font-awesome-logo-full.svg b/public/assets/lib/fontawesome-free/svgs/brands/font-awesome-logo-full.svg new file mode 100755 index 0000000..65e05f3 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/font-awesome-logo-full.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/font-awesome.svg b/public/assets/lib/fontawesome-free/svgs/brands/font-awesome.svg new file mode 100755 index 0000000..9f5f27a --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/font-awesome.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/fonticons-fi.svg b/public/assets/lib/fontawesome-free/svgs/brands/fonticons-fi.svg new file mode 100755 index 0000000..c21e7e9 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/fonticons-fi.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/fonticons.svg b/public/assets/lib/fontawesome-free/svgs/brands/fonticons.svg new file mode 100755 index 0000000..646f2d2 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/fonticons.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/fort-awesome-alt.svg b/public/assets/lib/fontawesome-free/svgs/brands/fort-awesome-alt.svg new file mode 100755 index 0000000..cbf3b1a --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/fort-awesome-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/fort-awesome.svg b/public/assets/lib/fontawesome-free/svgs/brands/fort-awesome.svg new file mode 100755 index 0000000..c6a3a26 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/fort-awesome.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/forumbee.svg b/public/assets/lib/fontawesome-free/svgs/brands/forumbee.svg new file mode 100755 index 0000000..288d3ca --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/forumbee.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/foursquare.svg b/public/assets/lib/fontawesome-free/svgs/brands/foursquare.svg new file mode 100755 index 0000000..5b1f1d7 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/foursquare.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/free-code-camp.svg b/public/assets/lib/fontawesome-free/svgs/brands/free-code-camp.svg new file mode 100755 index 0000000..a60ea64 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/free-code-camp.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/freebsd.svg b/public/assets/lib/fontawesome-free/svgs/brands/freebsd.svg new file mode 100755 index 0000000..60aa32e --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/freebsd.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/fulcrum.svg b/public/assets/lib/fontawesome-free/svgs/brands/fulcrum.svg new file mode 100755 index 0000000..8043c5b --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/fulcrum.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/galactic-republic.svg b/public/assets/lib/fontawesome-free/svgs/brands/galactic-republic.svg new file mode 100755 index 0000000..ae88b1e --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/galactic-republic.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/galactic-senate.svg b/public/assets/lib/fontawesome-free/svgs/brands/galactic-senate.svg new file mode 100755 index 0000000..cb2fd86 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/galactic-senate.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/get-pocket.svg b/public/assets/lib/fontawesome-free/svgs/brands/get-pocket.svg new file mode 100755 index 0000000..21ba053 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/get-pocket.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/gg-circle.svg b/public/assets/lib/fontawesome-free/svgs/brands/gg-circle.svg new file mode 100755 index 0000000..c685bb6 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/gg-circle.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/gg.svg b/public/assets/lib/fontawesome-free/svgs/brands/gg.svg new file mode 100755 index 0000000..df9824a --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/gg.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/git-square.svg b/public/assets/lib/fontawesome-free/svgs/brands/git-square.svg new file mode 100755 index 0000000..8cf2edb --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/git-square.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/git.svg b/public/assets/lib/fontawesome-free/svgs/brands/git.svg new file mode 100755 index 0000000..15c5f23 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/git.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/github-alt.svg b/public/assets/lib/fontawesome-free/svgs/brands/github-alt.svg new file mode 100755 index 0000000..b973251 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/github-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/github-square.svg b/public/assets/lib/fontawesome-free/svgs/brands/github-square.svg new file mode 100755 index 0000000..6cb1681 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/github-square.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/github.svg b/public/assets/lib/fontawesome-free/svgs/brands/github.svg new file mode 100755 index 0000000..ff26e65 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/github.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/gitkraken.svg b/public/assets/lib/fontawesome-free/svgs/brands/gitkraken.svg new file mode 100755 index 0000000..d3e2b4c --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/gitkraken.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/gitlab.svg b/public/assets/lib/fontawesome-free/svgs/brands/gitlab.svg new file mode 100755 index 0000000..a482ec5 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/gitlab.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/gitter.svg b/public/assets/lib/fontawesome-free/svgs/brands/gitter.svg new file mode 100755 index 0000000..6074a8c --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/gitter.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/glide-g.svg b/public/assets/lib/fontawesome-free/svgs/brands/glide-g.svg new file mode 100755 index 0000000..688b2b9 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/glide-g.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/glide.svg b/public/assets/lib/fontawesome-free/svgs/brands/glide.svg new file mode 100755 index 0000000..e0bd280 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/glide.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/gofore.svg b/public/assets/lib/fontawesome-free/svgs/brands/gofore.svg new file mode 100755 index 0000000..ec03ba7 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/gofore.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/goodreads-g.svg b/public/assets/lib/fontawesome-free/svgs/brands/goodreads-g.svg new file mode 100755 index 0000000..6cc8b07 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/goodreads-g.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/goodreads.svg b/public/assets/lib/fontawesome-free/svgs/brands/goodreads.svg new file mode 100755 index 0000000..01d493e --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/goodreads.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/google-drive.svg b/public/assets/lib/fontawesome-free/svgs/brands/google-drive.svg new file mode 100755 index 0000000..0a4f0fa --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/google-drive.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/google-play.svg b/public/assets/lib/fontawesome-free/svgs/brands/google-play.svg new file mode 100755 index 0000000..2a6d5d0 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/google-play.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/google-plus-g.svg b/public/assets/lib/fontawesome-free/svgs/brands/google-plus-g.svg new file mode 100755 index 0000000..b710fc4 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/google-plus-g.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/google-plus-square.svg b/public/assets/lib/fontawesome-free/svgs/brands/google-plus-square.svg new file mode 100755 index 0000000..0321a45 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/google-plus-square.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/google-plus.svg b/public/assets/lib/fontawesome-free/svgs/brands/google-plus.svg new file mode 100755 index 0000000..bc601f4 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/google-plus.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/google-wallet.svg b/public/assets/lib/fontawesome-free/svgs/brands/google-wallet.svg new file mode 100755 index 0000000..db3990f --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/google-wallet.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/google.svg b/public/assets/lib/fontawesome-free/svgs/brands/google.svg new file mode 100755 index 0000000..cd2759e --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/google.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/gratipay.svg b/public/assets/lib/fontawesome-free/svgs/brands/gratipay.svg new file mode 100755 index 0000000..c348b11 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/gratipay.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/grav.svg b/public/assets/lib/fontawesome-free/svgs/brands/grav.svg new file mode 100755 index 0000000..0ece50e --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/grav.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/gripfire.svg b/public/assets/lib/fontawesome-free/svgs/brands/gripfire.svg new file mode 100755 index 0000000..9290546 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/gripfire.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/grunt.svg b/public/assets/lib/fontawesome-free/svgs/brands/grunt.svg new file mode 100755 index 0000000..af34c34 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/grunt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/gulp.svg b/public/assets/lib/fontawesome-free/svgs/brands/gulp.svg new file mode 100755 index 0000000..35a6fe2 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/gulp.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/hacker-news-square.svg b/public/assets/lib/fontawesome-free/svgs/brands/hacker-news-square.svg new file mode 100755 index 0000000..6f0c842 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/hacker-news-square.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/hacker-news.svg b/public/assets/lib/fontawesome-free/svgs/brands/hacker-news.svg new file mode 100755 index 0000000..cdfa459 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/hacker-news.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/hackerrank.svg b/public/assets/lib/fontawesome-free/svgs/brands/hackerrank.svg new file mode 100755 index 0000000..b2f6316 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/hackerrank.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/hips.svg b/public/assets/lib/fontawesome-free/svgs/brands/hips.svg new file mode 100755 index 0000000..c8cbb4b --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/hips.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/hire-a-helper.svg b/public/assets/lib/fontawesome-free/svgs/brands/hire-a-helper.svg new file mode 100755 index 0000000..67ee786 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/hire-a-helper.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/hooli.svg b/public/assets/lib/fontawesome-free/svgs/brands/hooli.svg new file mode 100755 index 0000000..d867b03 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/hooli.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/hornbill.svg b/public/assets/lib/fontawesome-free/svgs/brands/hornbill.svg new file mode 100755 index 0000000..18dc585 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/hornbill.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/hotjar.svg b/public/assets/lib/fontawesome-free/svgs/brands/hotjar.svg new file mode 100755 index 0000000..c28250c --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/hotjar.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/houzz.svg b/public/assets/lib/fontawesome-free/svgs/brands/houzz.svg new file mode 100755 index 0000000..7b68ed7 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/houzz.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/html5.svg b/public/assets/lib/fontawesome-free/svgs/brands/html5.svg new file mode 100755 index 0000000..f4a0631 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/html5.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/hubspot.svg b/public/assets/lib/fontawesome-free/svgs/brands/hubspot.svg new file mode 100755 index 0000000..3f90442 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/hubspot.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/imdb.svg b/public/assets/lib/fontawesome-free/svgs/brands/imdb.svg new file mode 100755 index 0000000..1b87053 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/imdb.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/instagram.svg b/public/assets/lib/fontawesome-free/svgs/brands/instagram.svg new file mode 100755 index 0000000..143c234 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/instagram.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/internet-explorer.svg b/public/assets/lib/fontawesome-free/svgs/brands/internet-explorer.svg new file mode 100755 index 0000000..22d7c11 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/internet-explorer.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/ioxhost.svg b/public/assets/lib/fontawesome-free/svgs/brands/ioxhost.svg new file mode 100755 index 0000000..1e2703d --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/ioxhost.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/itunes-note.svg b/public/assets/lib/fontawesome-free/svgs/brands/itunes-note.svg new file mode 100755 index 0000000..d9eaf9c --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/itunes-note.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/itunes.svg b/public/assets/lib/fontawesome-free/svgs/brands/itunes.svg new file mode 100755 index 0000000..1ccc9be --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/itunes.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/java.svg b/public/assets/lib/fontawesome-free/svgs/brands/java.svg new file mode 100755 index 0000000..7cc3739 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/java.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/jedi-order.svg b/public/assets/lib/fontawesome-free/svgs/brands/jedi-order.svg new file mode 100755 index 0000000..ae5a80f --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/jedi-order.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/jenkins.svg b/public/assets/lib/fontawesome-free/svgs/brands/jenkins.svg new file mode 100755 index 0000000..247f70d --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/jenkins.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/joget.svg b/public/assets/lib/fontawesome-free/svgs/brands/joget.svg new file mode 100755 index 0000000..bc37f4a --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/joget.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/joomla.svg b/public/assets/lib/fontawesome-free/svgs/brands/joomla.svg new file mode 100755 index 0000000..cf43070 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/joomla.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/js-square.svg b/public/assets/lib/fontawesome-free/svgs/brands/js-square.svg new file mode 100755 index 0000000..37a098c --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/js-square.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/js.svg b/public/assets/lib/fontawesome-free/svgs/brands/js.svg new file mode 100755 index 0000000..e68efe4 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/js.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/jsfiddle.svg b/public/assets/lib/fontawesome-free/svgs/brands/jsfiddle.svg new file mode 100755 index 0000000..3bdb71c --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/jsfiddle.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/kaggle.svg b/public/assets/lib/fontawesome-free/svgs/brands/kaggle.svg new file mode 100755 index 0000000..ecc1fd0 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/kaggle.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/keybase.svg b/public/assets/lib/fontawesome-free/svgs/brands/keybase.svg new file mode 100755 index 0000000..58cc701 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/keybase.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/keycdn.svg b/public/assets/lib/fontawesome-free/svgs/brands/keycdn.svg new file mode 100755 index 0000000..0f4fddf --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/keycdn.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/kickstarter-k.svg b/public/assets/lib/fontawesome-free/svgs/brands/kickstarter-k.svg new file mode 100755 index 0000000..f657d61 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/kickstarter-k.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/kickstarter.svg b/public/assets/lib/fontawesome-free/svgs/brands/kickstarter.svg new file mode 100755 index 0000000..901325f --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/kickstarter.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/korvue.svg b/public/assets/lib/fontawesome-free/svgs/brands/korvue.svg new file mode 100755 index 0000000..4100373 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/korvue.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/laravel.svg b/public/assets/lib/fontawesome-free/svgs/brands/laravel.svg new file mode 100755 index 0000000..8e351e7 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/laravel.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/lastfm-square.svg b/public/assets/lib/fontawesome-free/svgs/brands/lastfm-square.svg new file mode 100755 index 0000000..e729c57 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/lastfm-square.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/lastfm.svg b/public/assets/lib/fontawesome-free/svgs/brands/lastfm.svg new file mode 100755 index 0000000..6dbab07 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/lastfm.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/leanpub.svg b/public/assets/lib/fontawesome-free/svgs/brands/leanpub.svg new file mode 100755 index 0000000..a25e63d --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/leanpub.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/less.svg b/public/assets/lib/fontawesome-free/svgs/brands/less.svg new file mode 100755 index 0000000..5655d67 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/less.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/line.svg b/public/assets/lib/fontawesome-free/svgs/brands/line.svg new file mode 100755 index 0000000..b8e3d2d --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/line.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/linkedin-in.svg b/public/assets/lib/fontawesome-free/svgs/brands/linkedin-in.svg new file mode 100755 index 0000000..c3239fe --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/linkedin-in.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/linkedin.svg b/public/assets/lib/fontawesome-free/svgs/brands/linkedin.svg new file mode 100755 index 0000000..cd795d1 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/linkedin.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/linode.svg b/public/assets/lib/fontawesome-free/svgs/brands/linode.svg new file mode 100755 index 0000000..7f4e98a --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/linode.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/linux.svg b/public/assets/lib/fontawesome-free/svgs/brands/linux.svg new file mode 100755 index 0000000..c54f074 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/linux.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/lyft.svg b/public/assets/lib/fontawesome-free/svgs/brands/lyft.svg new file mode 100755 index 0000000..cf2f683 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/lyft.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/magento.svg b/public/assets/lib/fontawesome-free/svgs/brands/magento.svg new file mode 100755 index 0000000..b44e2e6 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/magento.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/mailchimp.svg b/public/assets/lib/fontawesome-free/svgs/brands/mailchimp.svg new file mode 100755 index 0000000..591e48b --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/mailchimp.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/mandalorian.svg b/public/assets/lib/fontawesome-free/svgs/brands/mandalorian.svg new file mode 100755 index 0000000..f1c4c16 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/mandalorian.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/markdown.svg b/public/assets/lib/fontawesome-free/svgs/brands/markdown.svg new file mode 100755 index 0000000..6e310da --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/markdown.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/mastodon.svg b/public/assets/lib/fontawesome-free/svgs/brands/mastodon.svg new file mode 100755 index 0000000..923a459 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/mastodon.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/maxcdn.svg b/public/assets/lib/fontawesome-free/svgs/brands/maxcdn.svg new file mode 100755 index 0000000..7de9dfc --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/maxcdn.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/medapps.svg b/public/assets/lib/fontawesome-free/svgs/brands/medapps.svg new file mode 100755 index 0000000..6e6b0de --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/medapps.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/medium-m.svg b/public/assets/lib/fontawesome-free/svgs/brands/medium-m.svg new file mode 100755 index 0000000..67f4d9f --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/medium-m.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/medium.svg b/public/assets/lib/fontawesome-free/svgs/brands/medium.svg new file mode 100755 index 0000000..a995f8c --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/medium.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/medrt.svg b/public/assets/lib/fontawesome-free/svgs/brands/medrt.svg new file mode 100755 index 0000000..bb73fb2 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/medrt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/meetup.svg b/public/assets/lib/fontawesome-free/svgs/brands/meetup.svg new file mode 100755 index 0000000..c135d68 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/meetup.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/megaport.svg b/public/assets/lib/fontawesome-free/svgs/brands/megaport.svg new file mode 100755 index 0000000..12e5951 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/megaport.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/microsoft.svg b/public/assets/lib/fontawesome-free/svgs/brands/microsoft.svg new file mode 100755 index 0000000..e366586 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/microsoft.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/mix.svg b/public/assets/lib/fontawesome-free/svgs/brands/mix.svg new file mode 100755 index 0000000..e8f7499 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/mix.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/mixcloud.svg b/public/assets/lib/fontawesome-free/svgs/brands/mixcloud.svg new file mode 100755 index 0000000..e4ad5e6 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/mixcloud.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/mizuni.svg b/public/assets/lib/fontawesome-free/svgs/brands/mizuni.svg new file mode 100755 index 0000000..0624ead --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/mizuni.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/modx.svg b/public/assets/lib/fontawesome-free/svgs/brands/modx.svg new file mode 100755 index 0000000..47771c6 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/modx.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/monero.svg b/public/assets/lib/fontawesome-free/svgs/brands/monero.svg new file mode 100755 index 0000000..8b56414 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/monero.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/napster.svg b/public/assets/lib/fontawesome-free/svgs/brands/napster.svg new file mode 100755 index 0000000..ddbb05b --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/napster.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/neos.svg b/public/assets/lib/fontawesome-free/svgs/brands/neos.svg new file mode 100755 index 0000000..cafa02c --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/neos.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/nimblr.svg b/public/assets/lib/fontawesome-free/svgs/brands/nimblr.svg new file mode 100755 index 0000000..a7a46fb --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/nimblr.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/nintendo-switch.svg b/public/assets/lib/fontawesome-free/svgs/brands/nintendo-switch.svg new file mode 100755 index 0000000..48badf4 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/nintendo-switch.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/node-js.svg b/public/assets/lib/fontawesome-free/svgs/brands/node-js.svg new file mode 100755 index 0000000..e1a5697 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/node-js.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/node.svg b/public/assets/lib/fontawesome-free/svgs/brands/node.svg new file mode 100755 index 0000000..2d7805c --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/node.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/npm.svg b/public/assets/lib/fontawesome-free/svgs/brands/npm.svg new file mode 100755 index 0000000..1882ba3 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/npm.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/ns8.svg b/public/assets/lib/fontawesome-free/svgs/brands/ns8.svg new file mode 100755 index 0000000..cd55a60 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/ns8.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/nutritionix.svg b/public/assets/lib/fontawesome-free/svgs/brands/nutritionix.svg new file mode 100755 index 0000000..8a8479e --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/nutritionix.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/odnoklassniki-square.svg b/public/assets/lib/fontawesome-free/svgs/brands/odnoklassniki-square.svg new file mode 100755 index 0000000..5d92468 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/odnoklassniki-square.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/odnoklassniki.svg b/public/assets/lib/fontawesome-free/svgs/brands/odnoklassniki.svg new file mode 100755 index 0000000..096cf0d --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/odnoklassniki.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/old-republic.svg b/public/assets/lib/fontawesome-free/svgs/brands/old-republic.svg new file mode 100755 index 0000000..33f3b3c --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/old-republic.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/opencart.svg b/public/assets/lib/fontawesome-free/svgs/brands/opencart.svg new file mode 100755 index 0000000..1583a4e --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/opencart.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/openid.svg b/public/assets/lib/fontawesome-free/svgs/brands/openid.svg new file mode 100755 index 0000000..783704d --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/openid.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/opera.svg b/public/assets/lib/fontawesome-free/svgs/brands/opera.svg new file mode 100755 index 0000000..1706ac3 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/opera.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/optin-monster.svg b/public/assets/lib/fontawesome-free/svgs/brands/optin-monster.svg new file mode 100755 index 0000000..5553091 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/optin-monster.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/osi.svg b/public/assets/lib/fontawesome-free/svgs/brands/osi.svg new file mode 100755 index 0000000..91f5e01 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/osi.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/page4.svg b/public/assets/lib/fontawesome-free/svgs/brands/page4.svg new file mode 100755 index 0000000..0ec6895 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/page4.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/pagelines.svg b/public/assets/lib/fontawesome-free/svgs/brands/pagelines.svg new file mode 100755 index 0000000..1e9120c --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/pagelines.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/palfed.svg b/public/assets/lib/fontawesome-free/svgs/brands/palfed.svg new file mode 100755 index 0000000..41d3a5c --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/palfed.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/patreon.svg b/public/assets/lib/fontawesome-free/svgs/brands/patreon.svg new file mode 100755 index 0000000..34de28e --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/patreon.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/paypal.svg b/public/assets/lib/fontawesome-free/svgs/brands/paypal.svg new file mode 100755 index 0000000..3b9dce0 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/paypal.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/periscope.svg b/public/assets/lib/fontawesome-free/svgs/brands/periscope.svg new file mode 100755 index 0000000..a84f874 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/periscope.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/phabricator.svg b/public/assets/lib/fontawesome-free/svgs/brands/phabricator.svg new file mode 100755 index 0000000..4adb5cd --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/phabricator.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/phoenix-framework.svg b/public/assets/lib/fontawesome-free/svgs/brands/phoenix-framework.svg new file mode 100755 index 0000000..a1188f6 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/phoenix-framework.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/phoenix-squadron.svg b/public/assets/lib/fontawesome-free/svgs/brands/phoenix-squadron.svg new file mode 100755 index 0000000..31d8c0f --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/phoenix-squadron.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/php.svg b/public/assets/lib/fontawesome-free/svgs/brands/php.svg new file mode 100755 index 0000000..4eb8c91 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/php.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/pied-piper-alt.svg b/public/assets/lib/fontawesome-free/svgs/brands/pied-piper-alt.svg new file mode 100755 index 0000000..cfdbb86 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/pied-piper-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/pied-piper-hat.svg b/public/assets/lib/fontawesome-free/svgs/brands/pied-piper-hat.svg new file mode 100755 index 0000000..9c88c38 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/pied-piper-hat.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/pied-piper-pp.svg b/public/assets/lib/fontawesome-free/svgs/brands/pied-piper-pp.svg new file mode 100755 index 0000000..691e3d3 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/pied-piper-pp.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/pied-piper.svg b/public/assets/lib/fontawesome-free/svgs/brands/pied-piper.svg new file mode 100755 index 0000000..d4de7de --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/pied-piper.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/pinterest-p.svg b/public/assets/lib/fontawesome-free/svgs/brands/pinterest-p.svg new file mode 100755 index 0000000..108182b --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/pinterest-p.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/pinterest-square.svg b/public/assets/lib/fontawesome-free/svgs/brands/pinterest-square.svg new file mode 100755 index 0000000..6f585b4 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/pinterest-square.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/pinterest.svg b/public/assets/lib/fontawesome-free/svgs/brands/pinterest.svg new file mode 100755 index 0000000..670427d --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/pinterest.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/playstation.svg b/public/assets/lib/fontawesome-free/svgs/brands/playstation.svg new file mode 100755 index 0000000..de1f734 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/playstation.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/product-hunt.svg b/public/assets/lib/fontawesome-free/svgs/brands/product-hunt.svg new file mode 100755 index 0000000..5d451ea --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/product-hunt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/pushed.svg b/public/assets/lib/fontawesome-free/svgs/brands/pushed.svg new file mode 100755 index 0000000..2c215c8 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/pushed.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/python.svg b/public/assets/lib/fontawesome-free/svgs/brands/python.svg new file mode 100755 index 0000000..a1806c8 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/python.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/qq.svg b/public/assets/lib/fontawesome-free/svgs/brands/qq.svg new file mode 100755 index 0000000..f8ba7c7 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/qq.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/quinscape.svg b/public/assets/lib/fontawesome-free/svgs/brands/quinscape.svg new file mode 100755 index 0000000..78dc3b1 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/quinscape.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/quora.svg b/public/assets/lib/fontawesome-free/svgs/brands/quora.svg new file mode 100755 index 0000000..80472e1 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/quora.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/r-project.svg b/public/assets/lib/fontawesome-free/svgs/brands/r-project.svg new file mode 100755 index 0000000..c373467 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/r-project.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/ravelry.svg b/public/assets/lib/fontawesome-free/svgs/brands/ravelry.svg new file mode 100755 index 0000000..e6a59b6 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/ravelry.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/react.svg b/public/assets/lib/fontawesome-free/svgs/brands/react.svg new file mode 100755 index 0000000..7062315 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/react.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/readme.svg b/public/assets/lib/fontawesome-free/svgs/brands/readme.svg new file mode 100755 index 0000000..d3a23af --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/readme.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/rebel.svg b/public/assets/lib/fontawesome-free/svgs/brands/rebel.svg new file mode 100755 index 0000000..75d10e1 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/rebel.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/red-river.svg b/public/assets/lib/fontawesome-free/svgs/brands/red-river.svg new file mode 100755 index 0000000..f911d96 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/red-river.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/reddit-alien.svg b/public/assets/lib/fontawesome-free/svgs/brands/reddit-alien.svg new file mode 100755 index 0000000..544b90a --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/reddit-alien.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/reddit-square.svg b/public/assets/lib/fontawesome-free/svgs/brands/reddit-square.svg new file mode 100755 index 0000000..2d93d6f --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/reddit-square.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/reddit.svg b/public/assets/lib/fontawesome-free/svgs/brands/reddit.svg new file mode 100755 index 0000000..2beee35 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/reddit.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/rendact.svg b/public/assets/lib/fontawesome-free/svgs/brands/rendact.svg new file mode 100755 index 0000000..3a78e53 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/rendact.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/renren.svg b/public/assets/lib/fontawesome-free/svgs/brands/renren.svg new file mode 100755 index 0000000..8246758 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/renren.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/replyd.svg b/public/assets/lib/fontawesome-free/svgs/brands/replyd.svg new file mode 100755 index 0000000..9162608 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/replyd.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/researchgate.svg b/public/assets/lib/fontawesome-free/svgs/brands/researchgate.svg new file mode 100755 index 0000000..9827bb9 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/researchgate.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/resolving.svg b/public/assets/lib/fontawesome-free/svgs/brands/resolving.svg new file mode 100755 index 0000000..f4dd0bb --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/resolving.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/rev.svg b/public/assets/lib/fontawesome-free/svgs/brands/rev.svg new file mode 100755 index 0000000..51d713a --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/rev.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/rocketchat.svg b/public/assets/lib/fontawesome-free/svgs/brands/rocketchat.svg new file mode 100755 index 0000000..74dbbb0 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/rocketchat.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/rockrms.svg b/public/assets/lib/fontawesome-free/svgs/brands/rockrms.svg new file mode 100755 index 0000000..79d8c7a --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/rockrms.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/safari.svg b/public/assets/lib/fontawesome-free/svgs/brands/safari.svg new file mode 100755 index 0000000..eb1df1d --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/safari.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/sass.svg b/public/assets/lib/fontawesome-free/svgs/brands/sass.svg new file mode 100755 index 0000000..be3b6a1 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/sass.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/schlix.svg b/public/assets/lib/fontawesome-free/svgs/brands/schlix.svg new file mode 100755 index 0000000..02dc313 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/schlix.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/scribd.svg b/public/assets/lib/fontawesome-free/svgs/brands/scribd.svg new file mode 100755 index 0000000..5774a48 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/scribd.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/searchengin.svg b/public/assets/lib/fontawesome-free/svgs/brands/searchengin.svg new file mode 100755 index 0000000..a264055 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/searchengin.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/sellcast.svg b/public/assets/lib/fontawesome-free/svgs/brands/sellcast.svg new file mode 100755 index 0000000..451fb4a --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/sellcast.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/sellsy.svg b/public/assets/lib/fontawesome-free/svgs/brands/sellsy.svg new file mode 100755 index 0000000..152f5b1 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/sellsy.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/servicestack.svg b/public/assets/lib/fontawesome-free/svgs/brands/servicestack.svg new file mode 100755 index 0000000..f8d6b01 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/servicestack.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/shirtsinbulk.svg b/public/assets/lib/fontawesome-free/svgs/brands/shirtsinbulk.svg new file mode 100755 index 0000000..3ae273a --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/shirtsinbulk.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/shopware.svg b/public/assets/lib/fontawesome-free/svgs/brands/shopware.svg new file mode 100755 index 0000000..9405cbe --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/shopware.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/simplybuilt.svg b/public/assets/lib/fontawesome-free/svgs/brands/simplybuilt.svg new file mode 100755 index 0000000..160e37c --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/simplybuilt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/sistrix.svg b/public/assets/lib/fontawesome-free/svgs/brands/sistrix.svg new file mode 100755 index 0000000..af5a8a9 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/sistrix.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/sith.svg b/public/assets/lib/fontawesome-free/svgs/brands/sith.svg new file mode 100755 index 0000000..9cdc9e3 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/sith.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/skyatlas.svg b/public/assets/lib/fontawesome-free/svgs/brands/skyatlas.svg new file mode 100755 index 0000000..2f8c1c0 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/skyatlas.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/skype.svg b/public/assets/lib/fontawesome-free/svgs/brands/skype.svg new file mode 100755 index 0000000..7c76a06 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/skype.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/slack-hash.svg b/public/assets/lib/fontawesome-free/svgs/brands/slack-hash.svg new file mode 100755 index 0000000..87121c1 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/slack-hash.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/slack.svg b/public/assets/lib/fontawesome-free/svgs/brands/slack.svg new file mode 100755 index 0000000..b8c0f1f --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/slack.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/slideshare.svg b/public/assets/lib/fontawesome-free/svgs/brands/slideshare.svg new file mode 100755 index 0000000..5044676 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/slideshare.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/snapchat-ghost.svg b/public/assets/lib/fontawesome-free/svgs/brands/snapchat-ghost.svg new file mode 100755 index 0000000..2e48db8 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/snapchat-ghost.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/snapchat-square.svg b/public/assets/lib/fontawesome-free/svgs/brands/snapchat-square.svg new file mode 100755 index 0000000..ad99c5e --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/snapchat-square.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/snapchat.svg b/public/assets/lib/fontawesome-free/svgs/brands/snapchat.svg new file mode 100755 index 0000000..5121af6 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/snapchat.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/soundcloud.svg b/public/assets/lib/fontawesome-free/svgs/brands/soundcloud.svg new file mode 100755 index 0000000..28dba43 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/soundcloud.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/speakap.svg b/public/assets/lib/fontawesome-free/svgs/brands/speakap.svg new file mode 100755 index 0000000..134b4e4 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/speakap.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/spotify.svg b/public/assets/lib/fontawesome-free/svgs/brands/spotify.svg new file mode 100755 index 0000000..bc0af64 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/spotify.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/squarespace.svg b/public/assets/lib/fontawesome-free/svgs/brands/squarespace.svg new file mode 100755 index 0000000..d764f2d --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/squarespace.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/stack-exchange.svg b/public/assets/lib/fontawesome-free/svgs/brands/stack-exchange.svg new file mode 100755 index 0000000..feb28be --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/stack-exchange.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/stack-overflow.svg b/public/assets/lib/fontawesome-free/svgs/brands/stack-overflow.svg new file mode 100755 index 0000000..1b52811 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/stack-overflow.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/staylinked.svg b/public/assets/lib/fontawesome-free/svgs/brands/staylinked.svg new file mode 100755 index 0000000..cb5beb2 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/staylinked.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/steam-square.svg b/public/assets/lib/fontawesome-free/svgs/brands/steam-square.svg new file mode 100755 index 0000000..b95fc24 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/steam-square.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/steam-symbol.svg b/public/assets/lib/fontawesome-free/svgs/brands/steam-symbol.svg new file mode 100755 index 0000000..a4dd97b --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/steam-symbol.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/steam.svg b/public/assets/lib/fontawesome-free/svgs/brands/steam.svg new file mode 100755 index 0000000..af3e00d --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/steam.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/sticker-mule.svg b/public/assets/lib/fontawesome-free/svgs/brands/sticker-mule.svg new file mode 100755 index 0000000..6b0c0d6 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/sticker-mule.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/strava.svg b/public/assets/lib/fontawesome-free/svgs/brands/strava.svg new file mode 100755 index 0000000..a070f8d --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/strava.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/stripe-s.svg b/public/assets/lib/fontawesome-free/svgs/brands/stripe-s.svg new file mode 100755 index 0000000..ff54e39 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/stripe-s.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/stripe.svg b/public/assets/lib/fontawesome-free/svgs/brands/stripe.svg new file mode 100755 index 0000000..7a593cf --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/stripe.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/studiovinari.svg b/public/assets/lib/fontawesome-free/svgs/brands/studiovinari.svg new file mode 100755 index 0000000..dfab800 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/studiovinari.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/stumbleupon-circle.svg b/public/assets/lib/fontawesome-free/svgs/brands/stumbleupon-circle.svg new file mode 100755 index 0000000..70e57cb --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/stumbleupon-circle.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/stumbleupon.svg b/public/assets/lib/fontawesome-free/svgs/brands/stumbleupon.svg new file mode 100755 index 0000000..aec696b --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/stumbleupon.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/superpowers.svg b/public/assets/lib/fontawesome-free/svgs/brands/superpowers.svg new file mode 100755 index 0000000..33976bb --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/superpowers.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/supple.svg b/public/assets/lib/fontawesome-free/svgs/brands/supple.svg new file mode 100755 index 0000000..3fa2d1d --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/supple.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/teamspeak.svg b/public/assets/lib/fontawesome-free/svgs/brands/teamspeak.svg new file mode 100755 index 0000000..2838c0c --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/teamspeak.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/telegram-plane.svg b/public/assets/lib/fontawesome-free/svgs/brands/telegram-plane.svg new file mode 100755 index 0000000..209d587 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/telegram-plane.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/telegram.svg b/public/assets/lib/fontawesome-free/svgs/brands/telegram.svg new file mode 100755 index 0000000..15b8f36 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/telegram.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/tencent-weibo.svg b/public/assets/lib/fontawesome-free/svgs/brands/tencent-weibo.svg new file mode 100755 index 0000000..0c4c398 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/tencent-weibo.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/the-red-yeti.svg b/public/assets/lib/fontawesome-free/svgs/brands/the-red-yeti.svg new file mode 100755 index 0000000..af40b0e --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/the-red-yeti.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/themeco.svg b/public/assets/lib/fontawesome-free/svgs/brands/themeco.svg new file mode 100755 index 0000000..4704b6d --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/themeco.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/themeisle.svg b/public/assets/lib/fontawesome-free/svgs/brands/themeisle.svg new file mode 100755 index 0000000..05c4420 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/themeisle.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/trade-federation.svg b/public/assets/lib/fontawesome-free/svgs/brands/trade-federation.svg new file mode 100755 index 0000000..83dae8a --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/trade-federation.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/trello.svg b/public/assets/lib/fontawesome-free/svgs/brands/trello.svg new file mode 100755 index 0000000..62508ed --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/trello.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/tripadvisor.svg b/public/assets/lib/fontawesome-free/svgs/brands/tripadvisor.svg new file mode 100755 index 0000000..d8b0f22 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/tripadvisor.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/tumblr-square.svg b/public/assets/lib/fontawesome-free/svgs/brands/tumblr-square.svg new file mode 100755 index 0000000..4cbe826 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/tumblr-square.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/tumblr.svg b/public/assets/lib/fontawesome-free/svgs/brands/tumblr.svg new file mode 100755 index 0000000..b3ef418 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/tumblr.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/twitch.svg b/public/assets/lib/fontawesome-free/svgs/brands/twitch.svg new file mode 100755 index 0000000..8986145 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/twitch.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/twitter-square.svg b/public/assets/lib/fontawesome-free/svgs/brands/twitter-square.svg new file mode 100755 index 0000000..6347856 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/twitter-square.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/twitter.svg b/public/assets/lib/fontawesome-free/svgs/brands/twitter.svg new file mode 100755 index 0000000..0663c48 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/twitter.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/typo3.svg b/public/assets/lib/fontawesome-free/svgs/brands/typo3.svg new file mode 100755 index 0000000..7c3477f --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/typo3.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/uber.svg b/public/assets/lib/fontawesome-free/svgs/brands/uber.svg new file mode 100755 index 0000000..89fb0a9 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/uber.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/uikit.svg b/public/assets/lib/fontawesome-free/svgs/brands/uikit.svg new file mode 100755 index 0000000..db70193 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/uikit.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/uniregistry.svg b/public/assets/lib/fontawesome-free/svgs/brands/uniregistry.svg new file mode 100755 index 0000000..6f6cd1d --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/uniregistry.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/untappd.svg b/public/assets/lib/fontawesome-free/svgs/brands/untappd.svg new file mode 100755 index 0000000..fbb136b --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/untappd.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/usb.svg b/public/assets/lib/fontawesome-free/svgs/brands/usb.svg new file mode 100755 index 0000000..b37c458 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/usb.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/ussunnah.svg b/public/assets/lib/fontawesome-free/svgs/brands/ussunnah.svg new file mode 100755 index 0000000..da9a952 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/ussunnah.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/vaadin.svg b/public/assets/lib/fontawesome-free/svgs/brands/vaadin.svg new file mode 100755 index 0000000..73fb90d --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/vaadin.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/viacoin.svg b/public/assets/lib/fontawesome-free/svgs/brands/viacoin.svg new file mode 100755 index 0000000..9a33928 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/viacoin.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/viadeo-square.svg b/public/assets/lib/fontawesome-free/svgs/brands/viadeo-square.svg new file mode 100755 index 0000000..cea8312 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/viadeo-square.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/viadeo.svg b/public/assets/lib/fontawesome-free/svgs/brands/viadeo.svg new file mode 100755 index 0000000..2d5f8ef --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/viadeo.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/viber.svg b/public/assets/lib/fontawesome-free/svgs/brands/viber.svg new file mode 100755 index 0000000..6ee24a4 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/viber.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/vimeo-square.svg b/public/assets/lib/fontawesome-free/svgs/brands/vimeo-square.svg new file mode 100755 index 0000000..85034f8 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/vimeo-square.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/vimeo-v.svg b/public/assets/lib/fontawesome-free/svgs/brands/vimeo-v.svg new file mode 100755 index 0000000..e43a7ad --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/vimeo-v.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/vimeo.svg b/public/assets/lib/fontawesome-free/svgs/brands/vimeo.svg new file mode 100755 index 0000000..28977cd --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/vimeo.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/vine.svg b/public/assets/lib/fontawesome-free/svgs/brands/vine.svg new file mode 100755 index 0000000..3244710 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/vine.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/vk.svg b/public/assets/lib/fontawesome-free/svgs/brands/vk.svg new file mode 100755 index 0000000..e2a54df --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/vk.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/vnv.svg b/public/assets/lib/fontawesome-free/svgs/brands/vnv.svg new file mode 100755 index 0000000..0c6cfab --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/vnv.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/vuejs.svg b/public/assets/lib/fontawesome-free/svgs/brands/vuejs.svg new file mode 100755 index 0000000..f63cf1a --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/vuejs.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/weebly.svg b/public/assets/lib/fontawesome-free/svgs/brands/weebly.svg new file mode 100755 index 0000000..008b653 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/weebly.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/weibo.svg b/public/assets/lib/fontawesome-free/svgs/brands/weibo.svg new file mode 100755 index 0000000..363c7b3 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/weibo.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/weixin.svg b/public/assets/lib/fontawesome-free/svgs/brands/weixin.svg new file mode 100755 index 0000000..1e5c3f7 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/weixin.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/whatsapp-square.svg b/public/assets/lib/fontawesome-free/svgs/brands/whatsapp-square.svg new file mode 100755 index 0000000..6bb5662 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/whatsapp-square.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/whatsapp.svg b/public/assets/lib/fontawesome-free/svgs/brands/whatsapp.svg new file mode 100755 index 0000000..a685b05 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/whatsapp.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/whmcs.svg b/public/assets/lib/fontawesome-free/svgs/brands/whmcs.svg new file mode 100755 index 0000000..39d1aee --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/whmcs.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/wikipedia-w.svg b/public/assets/lib/fontawesome-free/svgs/brands/wikipedia-w.svg new file mode 100755 index 0000000..97ca708 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/wikipedia-w.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/windows.svg b/public/assets/lib/fontawesome-free/svgs/brands/windows.svg new file mode 100755 index 0000000..c4961e0 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/windows.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/wix.svg b/public/assets/lib/fontawesome-free/svgs/brands/wix.svg new file mode 100755 index 0000000..55b212a --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/wix.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/wolf-pack-battalion.svg b/public/assets/lib/fontawesome-free/svgs/brands/wolf-pack-battalion.svg new file mode 100755 index 0000000..dca29ca --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/wolf-pack-battalion.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/wordpress-simple.svg b/public/assets/lib/fontawesome-free/svgs/brands/wordpress-simple.svg new file mode 100755 index 0000000..47499d5 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/wordpress-simple.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/wordpress.svg b/public/assets/lib/fontawesome-free/svgs/brands/wordpress.svg new file mode 100755 index 0000000..3e99843 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/wordpress.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/wpbeginner.svg b/public/assets/lib/fontawesome-free/svgs/brands/wpbeginner.svg new file mode 100755 index 0000000..59d822b --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/wpbeginner.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/wpexplorer.svg b/public/assets/lib/fontawesome-free/svgs/brands/wpexplorer.svg new file mode 100755 index 0000000..9e0ff65 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/wpexplorer.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/wpforms.svg b/public/assets/lib/fontawesome-free/svgs/brands/wpforms.svg new file mode 100755 index 0000000..f2fb5b4 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/wpforms.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/xbox.svg b/public/assets/lib/fontawesome-free/svgs/brands/xbox.svg new file mode 100755 index 0000000..ada1fbf --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/xbox.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/xing-square.svg b/public/assets/lib/fontawesome-free/svgs/brands/xing-square.svg new file mode 100755 index 0000000..d3d4b94 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/xing-square.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/xing.svg b/public/assets/lib/fontawesome-free/svgs/brands/xing.svg new file mode 100755 index 0000000..39c166f --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/xing.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/y-combinator.svg b/public/assets/lib/fontawesome-free/svgs/brands/y-combinator.svg new file mode 100755 index 0000000..b9e3d74 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/y-combinator.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/yahoo.svg b/public/assets/lib/fontawesome-free/svgs/brands/yahoo.svg new file mode 100755 index 0000000..4d4aad7 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/yahoo.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/yandex-international.svg b/public/assets/lib/fontawesome-free/svgs/brands/yandex-international.svg new file mode 100755 index 0000000..58bc4f8 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/yandex-international.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/yandex.svg b/public/assets/lib/fontawesome-free/svgs/brands/yandex.svg new file mode 100755 index 0000000..f702297 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/yandex.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/yelp.svg b/public/assets/lib/fontawesome-free/svgs/brands/yelp.svg new file mode 100755 index 0000000..416c600 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/yelp.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/yoast.svg b/public/assets/lib/fontawesome-free/svgs/brands/yoast.svg new file mode 100755 index 0000000..d3b7103 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/yoast.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/youtube-square.svg b/public/assets/lib/fontawesome-free/svgs/brands/youtube-square.svg new file mode 100755 index 0000000..9168e3c --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/youtube-square.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/youtube.svg b/public/assets/lib/fontawesome-free/svgs/brands/youtube.svg new file mode 100755 index 0000000..33ee3f6 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/youtube.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/brands/zhihu.svg b/public/assets/lib/fontawesome-free/svgs/brands/zhihu.svg new file mode 100755 index 0000000..b198c2e --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/brands/zhihu.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/regular/address-book.svg b/public/assets/lib/fontawesome-free/svgs/regular/address-book.svg new file mode 100755 index 0000000..3d6d434 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/regular/address-book.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/regular/address-card.svg b/public/assets/lib/fontawesome-free/svgs/regular/address-card.svg new file mode 100755 index 0000000..96e9963 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/regular/address-card.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/regular/angry.svg b/public/assets/lib/fontawesome-free/svgs/regular/angry.svg new file mode 100755 index 0000000..df75cd7 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/regular/angry.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/regular/arrow-alt-circle-down.svg b/public/assets/lib/fontawesome-free/svgs/regular/arrow-alt-circle-down.svg new file mode 100755 index 0000000..12d9db1 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/regular/arrow-alt-circle-down.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/regular/arrow-alt-circle-left.svg b/public/assets/lib/fontawesome-free/svgs/regular/arrow-alt-circle-left.svg new file mode 100755 index 0000000..3fecacb --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/regular/arrow-alt-circle-left.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/regular/arrow-alt-circle-right.svg b/public/assets/lib/fontawesome-free/svgs/regular/arrow-alt-circle-right.svg new file mode 100755 index 0000000..70baf30 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/regular/arrow-alt-circle-right.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/regular/arrow-alt-circle-up.svg b/public/assets/lib/fontawesome-free/svgs/regular/arrow-alt-circle-up.svg new file mode 100755 index 0000000..91d2c4e --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/regular/arrow-alt-circle-up.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/regular/bell-slash.svg b/public/assets/lib/fontawesome-free/svgs/regular/bell-slash.svg new file mode 100755 index 0000000..9288c13 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/regular/bell-slash.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/regular/bell.svg b/public/assets/lib/fontawesome-free/svgs/regular/bell.svg new file mode 100755 index 0000000..3aec82a --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/regular/bell.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/regular/bookmark.svg b/public/assets/lib/fontawesome-free/svgs/regular/bookmark.svg new file mode 100755 index 0000000..8380971 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/regular/bookmark.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/regular/building.svg b/public/assets/lib/fontawesome-free/svgs/regular/building.svg new file mode 100755 index 0000000..53eab8a --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/regular/building.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/regular/calendar-alt.svg b/public/assets/lib/fontawesome-free/svgs/regular/calendar-alt.svg new file mode 100755 index 0000000..ea5c6ce --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/regular/calendar-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/regular/calendar-check.svg b/public/assets/lib/fontawesome-free/svgs/regular/calendar-check.svg new file mode 100755 index 0000000..09cda9c --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/regular/calendar-check.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/regular/calendar-minus.svg b/public/assets/lib/fontawesome-free/svgs/regular/calendar-minus.svg new file mode 100755 index 0000000..29814f9 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/regular/calendar-minus.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/regular/calendar-plus.svg b/public/assets/lib/fontawesome-free/svgs/regular/calendar-plus.svg new file mode 100755 index 0000000..0756baa --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/regular/calendar-plus.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/regular/calendar-times.svg b/public/assets/lib/fontawesome-free/svgs/regular/calendar-times.svg new file mode 100755 index 0000000..e59827b --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/regular/calendar-times.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/regular/calendar.svg b/public/assets/lib/fontawesome-free/svgs/regular/calendar.svg new file mode 100755 index 0000000..d32d8fa --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/regular/calendar.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/regular/caret-square-down.svg b/public/assets/lib/fontawesome-free/svgs/regular/caret-square-down.svg new file mode 100755 index 0000000..e11f131 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/regular/caret-square-down.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/regular/caret-square-left.svg b/public/assets/lib/fontawesome-free/svgs/regular/caret-square-left.svg new file mode 100755 index 0000000..398666e --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/regular/caret-square-left.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/regular/caret-square-right.svg b/public/assets/lib/fontawesome-free/svgs/regular/caret-square-right.svg new file mode 100755 index 0000000..c0e6ba4 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/regular/caret-square-right.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/regular/caret-square-up.svg b/public/assets/lib/fontawesome-free/svgs/regular/caret-square-up.svg new file mode 100755 index 0000000..1524162 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/regular/caret-square-up.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/regular/chart-bar.svg b/public/assets/lib/fontawesome-free/svgs/regular/chart-bar.svg new file mode 100755 index 0000000..d177cca --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/regular/chart-bar.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/regular/check-circle.svg b/public/assets/lib/fontawesome-free/svgs/regular/check-circle.svg new file mode 100755 index 0000000..960574c --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/regular/check-circle.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/regular/check-square.svg b/public/assets/lib/fontawesome-free/svgs/regular/check-square.svg new file mode 100755 index 0000000..7af5e29 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/regular/check-square.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/regular/circle.svg b/public/assets/lib/fontawesome-free/svgs/regular/circle.svg new file mode 100755 index 0000000..8c678bb --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/regular/circle.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/regular/clipboard.svg b/public/assets/lib/fontawesome-free/svgs/regular/clipboard.svg new file mode 100755 index 0000000..6ef2375 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/regular/clipboard.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/regular/clock.svg b/public/assets/lib/fontawesome-free/svgs/regular/clock.svg new file mode 100755 index 0000000..d708ac4 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/regular/clock.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/regular/clone.svg b/public/assets/lib/fontawesome-free/svgs/regular/clone.svg new file mode 100755 index 0000000..2b11eb8 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/regular/clone.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/regular/closed-captioning.svg b/public/assets/lib/fontawesome-free/svgs/regular/closed-captioning.svg new file mode 100755 index 0000000..7d32e95 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/regular/closed-captioning.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/regular/comment-alt.svg b/public/assets/lib/fontawesome-free/svgs/regular/comment-alt.svg new file mode 100755 index 0000000..1ef5d54 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/regular/comment-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/regular/comment-dots.svg b/public/assets/lib/fontawesome-free/svgs/regular/comment-dots.svg new file mode 100755 index 0000000..a6acf15 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/regular/comment-dots.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/regular/comment.svg b/public/assets/lib/fontawesome-free/svgs/regular/comment.svg new file mode 100755 index 0000000..8157a91 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/regular/comment.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/regular/comments.svg b/public/assets/lib/fontawesome-free/svgs/regular/comments.svg new file mode 100755 index 0000000..2b3a292 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/regular/comments.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/regular/compass.svg b/public/assets/lib/fontawesome-free/svgs/regular/compass.svg new file mode 100755 index 0000000..54f408a --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/regular/compass.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/regular/copy.svg b/public/assets/lib/fontawesome-free/svgs/regular/copy.svg new file mode 100755 index 0000000..f5f8352 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/regular/copy.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/regular/copyright.svg b/public/assets/lib/fontawesome-free/svgs/regular/copyright.svg new file mode 100755 index 0000000..c00cbfe --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/regular/copyright.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/regular/credit-card.svg b/public/assets/lib/fontawesome-free/svgs/regular/credit-card.svg new file mode 100755 index 0000000..e14d5fd --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/regular/credit-card.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/regular/dizzy.svg b/public/assets/lib/fontawesome-free/svgs/regular/dizzy.svg new file mode 100755 index 0000000..c95a8d7 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/regular/dizzy.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/regular/dot-circle.svg b/public/assets/lib/fontawesome-free/svgs/regular/dot-circle.svg new file mode 100755 index 0000000..1790840 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/regular/dot-circle.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/regular/edit.svg b/public/assets/lib/fontawesome-free/svgs/regular/edit.svg new file mode 100755 index 0000000..4045261 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/regular/edit.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/regular/envelope-open.svg b/public/assets/lib/fontawesome-free/svgs/regular/envelope-open.svg new file mode 100755 index 0000000..21dbce2 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/regular/envelope-open.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/regular/envelope.svg b/public/assets/lib/fontawesome-free/svgs/regular/envelope.svg new file mode 100755 index 0000000..d88ede5 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/regular/envelope.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/regular/eye-slash.svg b/public/assets/lib/fontawesome-free/svgs/regular/eye-slash.svg new file mode 100755 index 0000000..7ec7f5d --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/regular/eye-slash.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/regular/eye.svg b/public/assets/lib/fontawesome-free/svgs/regular/eye.svg new file mode 100755 index 0000000..6771024 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/regular/eye.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/regular/file-alt.svg b/public/assets/lib/fontawesome-free/svgs/regular/file-alt.svg new file mode 100755 index 0000000..699f00e --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/regular/file-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/regular/file-archive.svg b/public/assets/lib/fontawesome-free/svgs/regular/file-archive.svg new file mode 100755 index 0000000..b31d9c4 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/regular/file-archive.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/regular/file-audio.svg b/public/assets/lib/fontawesome-free/svgs/regular/file-audio.svg new file mode 100755 index 0000000..05919ba --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/regular/file-audio.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/regular/file-code.svg b/public/assets/lib/fontawesome-free/svgs/regular/file-code.svg new file mode 100755 index 0000000..b46a2b8 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/regular/file-code.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/regular/file-excel.svg b/public/assets/lib/fontawesome-free/svgs/regular/file-excel.svg new file mode 100755 index 0000000..960dfd9 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/regular/file-excel.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/regular/file-image.svg b/public/assets/lib/fontawesome-free/svgs/regular/file-image.svg new file mode 100755 index 0000000..26d35b2 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/regular/file-image.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/regular/file-pdf.svg b/public/assets/lib/fontawesome-free/svgs/regular/file-pdf.svg new file mode 100755 index 0000000..b86e68e --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/regular/file-pdf.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/regular/file-powerpoint.svg b/public/assets/lib/fontawesome-free/svgs/regular/file-powerpoint.svg new file mode 100755 index 0000000..feaae23 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/regular/file-powerpoint.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/regular/file-video.svg b/public/assets/lib/fontawesome-free/svgs/regular/file-video.svg new file mode 100755 index 0000000..d63677e --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/regular/file-video.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/regular/file-word.svg b/public/assets/lib/fontawesome-free/svgs/regular/file-word.svg new file mode 100755 index 0000000..bc933f1 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/regular/file-word.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/regular/file.svg b/public/assets/lib/fontawesome-free/svgs/regular/file.svg new file mode 100755 index 0000000..da5735a --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/regular/file.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/regular/flag.svg b/public/assets/lib/fontawesome-free/svgs/regular/flag.svg new file mode 100755 index 0000000..a8b1ede --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/regular/flag.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/regular/flushed.svg b/public/assets/lib/fontawesome-free/svgs/regular/flushed.svg new file mode 100755 index 0000000..41127d6 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/regular/flushed.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/regular/folder-open.svg b/public/assets/lib/fontawesome-free/svgs/regular/folder-open.svg new file mode 100755 index 0000000..f55a8ee --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/regular/folder-open.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/regular/folder.svg b/public/assets/lib/fontawesome-free/svgs/regular/folder.svg new file mode 100755 index 0000000..b87a49c --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/regular/folder.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/regular/font-awesome-logo-full.svg b/public/assets/lib/fontawesome-free/svgs/regular/font-awesome-logo-full.svg new file mode 100755 index 0000000..65e05f3 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/regular/font-awesome-logo-full.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/regular/frown-open.svg b/public/assets/lib/fontawesome-free/svgs/regular/frown-open.svg new file mode 100755 index 0000000..b0a705f --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/regular/frown-open.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/regular/frown.svg b/public/assets/lib/fontawesome-free/svgs/regular/frown.svg new file mode 100755 index 0000000..f22e206 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/regular/frown.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/regular/futbol.svg b/public/assets/lib/fontawesome-free/svgs/regular/futbol.svg new file mode 100755 index 0000000..0a7a56f --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/regular/futbol.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/regular/gem.svg b/public/assets/lib/fontawesome-free/svgs/regular/gem.svg new file mode 100755 index 0000000..9c742af --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/regular/gem.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/regular/grimace.svg b/public/assets/lib/fontawesome-free/svgs/regular/grimace.svg new file mode 100755 index 0000000..7c61de8 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/regular/grimace.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/regular/grin-alt.svg b/public/assets/lib/fontawesome-free/svgs/regular/grin-alt.svg new file mode 100755 index 0000000..ef73218 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/regular/grin-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/regular/grin-beam-sweat.svg b/public/assets/lib/fontawesome-free/svgs/regular/grin-beam-sweat.svg new file mode 100755 index 0000000..bdf681e --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/regular/grin-beam-sweat.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/regular/grin-beam.svg b/public/assets/lib/fontawesome-free/svgs/regular/grin-beam.svg new file mode 100755 index 0000000..be3f59b --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/regular/grin-beam.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/regular/grin-hearts.svg b/public/assets/lib/fontawesome-free/svgs/regular/grin-hearts.svg new file mode 100755 index 0000000..46272f8 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/regular/grin-hearts.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/regular/grin-squint-tears.svg b/public/assets/lib/fontawesome-free/svgs/regular/grin-squint-tears.svg new file mode 100755 index 0000000..5793d7e --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/regular/grin-squint-tears.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/regular/grin-squint.svg b/public/assets/lib/fontawesome-free/svgs/regular/grin-squint.svg new file mode 100755 index 0000000..2f7c3f6 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/regular/grin-squint.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/regular/grin-stars.svg b/public/assets/lib/fontawesome-free/svgs/regular/grin-stars.svg new file mode 100755 index 0000000..f23685a --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/regular/grin-stars.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/regular/grin-tears.svg b/public/assets/lib/fontawesome-free/svgs/regular/grin-tears.svg new file mode 100755 index 0000000..da4fc55 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/regular/grin-tears.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/regular/grin-tongue-squint.svg b/public/assets/lib/fontawesome-free/svgs/regular/grin-tongue-squint.svg new file mode 100755 index 0000000..9335297 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/regular/grin-tongue-squint.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/regular/grin-tongue-wink.svg b/public/assets/lib/fontawesome-free/svgs/regular/grin-tongue-wink.svg new file mode 100755 index 0000000..779a2c8 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/regular/grin-tongue-wink.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/regular/grin-tongue.svg b/public/assets/lib/fontawesome-free/svgs/regular/grin-tongue.svg new file mode 100755 index 0000000..fd6121c --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/regular/grin-tongue.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/regular/grin-wink.svg b/public/assets/lib/fontawesome-free/svgs/regular/grin-wink.svg new file mode 100755 index 0000000..4ae3090 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/regular/grin-wink.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/regular/grin.svg b/public/assets/lib/fontawesome-free/svgs/regular/grin.svg new file mode 100755 index 0000000..4c90550 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/regular/grin.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/regular/hand-lizard.svg b/public/assets/lib/fontawesome-free/svgs/regular/hand-lizard.svg new file mode 100755 index 0000000..9e419d0 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/regular/hand-lizard.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/regular/hand-paper.svg b/public/assets/lib/fontawesome-free/svgs/regular/hand-paper.svg new file mode 100755 index 0000000..2480623 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/regular/hand-paper.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/regular/hand-peace.svg b/public/assets/lib/fontawesome-free/svgs/regular/hand-peace.svg new file mode 100755 index 0000000..701fe3c --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/regular/hand-peace.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/regular/hand-point-down.svg b/public/assets/lib/fontawesome-free/svgs/regular/hand-point-down.svg new file mode 100755 index 0000000..c49750a --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/regular/hand-point-down.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/regular/hand-point-left.svg b/public/assets/lib/fontawesome-free/svgs/regular/hand-point-left.svg new file mode 100755 index 0000000..d0ace05 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/regular/hand-point-left.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/regular/hand-point-right.svg b/public/assets/lib/fontawesome-free/svgs/regular/hand-point-right.svg new file mode 100755 index 0000000..ad414b3 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/regular/hand-point-right.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/regular/hand-point-up.svg b/public/assets/lib/fontawesome-free/svgs/regular/hand-point-up.svg new file mode 100755 index 0000000..bfda7e6 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/regular/hand-point-up.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/regular/hand-pointer.svg b/public/assets/lib/fontawesome-free/svgs/regular/hand-pointer.svg new file mode 100755 index 0000000..7698950 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/regular/hand-pointer.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/regular/hand-rock.svg b/public/assets/lib/fontawesome-free/svgs/regular/hand-rock.svg new file mode 100755 index 0000000..dbc5b9b --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/regular/hand-rock.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/regular/hand-scissors.svg b/public/assets/lib/fontawesome-free/svgs/regular/hand-scissors.svg new file mode 100755 index 0000000..52a9f0a --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/regular/hand-scissors.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/regular/hand-spock.svg b/public/assets/lib/fontawesome-free/svgs/regular/hand-spock.svg new file mode 100755 index 0000000..b9899fc --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/regular/hand-spock.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/regular/handshake.svg b/public/assets/lib/fontawesome-free/svgs/regular/handshake.svg new file mode 100755 index 0000000..093b177 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/regular/handshake.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/regular/hdd.svg b/public/assets/lib/fontawesome-free/svgs/regular/hdd.svg new file mode 100755 index 0000000..d6b8ce7 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/regular/hdd.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/regular/heart.svg b/public/assets/lib/fontawesome-free/svgs/regular/heart.svg new file mode 100755 index 0000000..a3c1831 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/regular/heart.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/regular/hospital.svg b/public/assets/lib/fontawesome-free/svgs/regular/hospital.svg new file mode 100755 index 0000000..ce3cf50 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/regular/hospital.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/regular/hourglass.svg b/public/assets/lib/fontawesome-free/svgs/regular/hourglass.svg new file mode 100755 index 0000000..8fa997e --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/regular/hourglass.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/regular/id-badge.svg b/public/assets/lib/fontawesome-free/svgs/regular/id-badge.svg new file mode 100755 index 0000000..8c76cab --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/regular/id-badge.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/regular/id-card.svg b/public/assets/lib/fontawesome-free/svgs/regular/id-card.svg new file mode 100755 index 0000000..bec9c20 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/regular/id-card.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/regular/image.svg b/public/assets/lib/fontawesome-free/svgs/regular/image.svg new file mode 100755 index 0000000..091778e --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/regular/image.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/regular/images.svg b/public/assets/lib/fontawesome-free/svgs/regular/images.svg new file mode 100755 index 0000000..8d5117f --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/regular/images.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/regular/keyboard.svg b/public/assets/lib/fontawesome-free/svgs/regular/keyboard.svg new file mode 100755 index 0000000..eac627c --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/regular/keyboard.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/regular/kiss-beam.svg b/public/assets/lib/fontawesome-free/svgs/regular/kiss-beam.svg new file mode 100755 index 0000000..ddef57c --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/regular/kiss-beam.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/regular/kiss-wink-heart.svg b/public/assets/lib/fontawesome-free/svgs/regular/kiss-wink-heart.svg new file mode 100755 index 0000000..d83001e --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/regular/kiss-wink-heart.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/regular/kiss.svg b/public/assets/lib/fontawesome-free/svgs/regular/kiss.svg new file mode 100755 index 0000000..0369715 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/regular/kiss.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/regular/laugh-beam.svg b/public/assets/lib/fontawesome-free/svgs/regular/laugh-beam.svg new file mode 100755 index 0000000..bf78105 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/regular/laugh-beam.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/regular/laugh-squint.svg b/public/assets/lib/fontawesome-free/svgs/regular/laugh-squint.svg new file mode 100755 index 0000000..2d1a6c2 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/regular/laugh-squint.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/regular/laugh-wink.svg b/public/assets/lib/fontawesome-free/svgs/regular/laugh-wink.svg new file mode 100755 index 0000000..ba88f35 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/regular/laugh-wink.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/regular/laugh.svg b/public/assets/lib/fontawesome-free/svgs/regular/laugh.svg new file mode 100755 index 0000000..53b68db --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/regular/laugh.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/regular/lemon.svg b/public/assets/lib/fontawesome-free/svgs/regular/lemon.svg new file mode 100755 index 0000000..3f540b0 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/regular/lemon.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/regular/life-ring.svg b/public/assets/lib/fontawesome-free/svgs/regular/life-ring.svg new file mode 100755 index 0000000..6bfd6e0 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/regular/life-ring.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/regular/lightbulb.svg b/public/assets/lib/fontawesome-free/svgs/regular/lightbulb.svg new file mode 100755 index 0000000..20d36b5 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/regular/lightbulb.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/regular/list-alt.svg b/public/assets/lib/fontawesome-free/svgs/regular/list-alt.svg new file mode 100755 index 0000000..b3cb180 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/regular/list-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/regular/map.svg b/public/assets/lib/fontawesome-free/svgs/regular/map.svg new file mode 100755 index 0000000..a667b1a --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/regular/map.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/regular/meh-blank.svg b/public/assets/lib/fontawesome-free/svgs/regular/meh-blank.svg new file mode 100755 index 0000000..e87f809 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/regular/meh-blank.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/regular/meh-rolling-eyes.svg b/public/assets/lib/fontawesome-free/svgs/regular/meh-rolling-eyes.svg new file mode 100755 index 0000000..83f4530 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/regular/meh-rolling-eyes.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/regular/meh.svg b/public/assets/lib/fontawesome-free/svgs/regular/meh.svg new file mode 100755 index 0000000..cf3ee2b --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/regular/meh.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/regular/minus-square.svg b/public/assets/lib/fontawesome-free/svgs/regular/minus-square.svg new file mode 100755 index 0000000..396a22a --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/regular/minus-square.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/regular/money-bill-alt.svg b/public/assets/lib/fontawesome-free/svgs/regular/money-bill-alt.svg new file mode 100755 index 0000000..3413b72 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/regular/money-bill-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/regular/moon.svg b/public/assets/lib/fontawesome-free/svgs/regular/moon.svg new file mode 100755 index 0000000..a49ecf2 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/regular/moon.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/regular/newspaper.svg b/public/assets/lib/fontawesome-free/svgs/regular/newspaper.svg new file mode 100755 index 0000000..a11c6d4 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/regular/newspaper.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/regular/object-group.svg b/public/assets/lib/fontawesome-free/svgs/regular/object-group.svg new file mode 100755 index 0000000..fa6a8ec --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/regular/object-group.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/regular/object-ungroup.svg b/public/assets/lib/fontawesome-free/svgs/regular/object-ungroup.svg new file mode 100755 index 0000000..0a848b3 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/regular/object-ungroup.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/regular/paper-plane.svg b/public/assets/lib/fontawesome-free/svgs/regular/paper-plane.svg new file mode 100755 index 0000000..841820e --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/regular/paper-plane.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/regular/pause-circle.svg b/public/assets/lib/fontawesome-free/svgs/regular/pause-circle.svg new file mode 100755 index 0000000..814350e --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/regular/pause-circle.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/regular/play-circle.svg b/public/assets/lib/fontawesome-free/svgs/regular/play-circle.svg new file mode 100755 index 0000000..ba67239 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/regular/play-circle.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/regular/plus-square.svg b/public/assets/lib/fontawesome-free/svgs/regular/plus-square.svg new file mode 100755 index 0000000..a6a49ac --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/regular/plus-square.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/regular/question-circle.svg b/public/assets/lib/fontawesome-free/svgs/regular/question-circle.svg new file mode 100755 index 0000000..aa086e9 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/regular/question-circle.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/regular/registered.svg b/public/assets/lib/fontawesome-free/svgs/regular/registered.svg new file mode 100755 index 0000000..45ffc69 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/regular/registered.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/regular/sad-cry.svg b/public/assets/lib/fontawesome-free/svgs/regular/sad-cry.svg new file mode 100755 index 0000000..a51f9d6 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/regular/sad-cry.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/regular/sad-tear.svg b/public/assets/lib/fontawesome-free/svgs/regular/sad-tear.svg new file mode 100755 index 0000000..ce6d7eb --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/regular/sad-tear.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/regular/save.svg b/public/assets/lib/fontawesome-free/svgs/regular/save.svg new file mode 100755 index 0000000..f742ffb --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/regular/save.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/regular/share-square.svg b/public/assets/lib/fontawesome-free/svgs/regular/share-square.svg new file mode 100755 index 0000000..52c2faa --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/regular/share-square.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/regular/smile-beam.svg b/public/assets/lib/fontawesome-free/svgs/regular/smile-beam.svg new file mode 100755 index 0000000..8cce861 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/regular/smile-beam.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/regular/smile-wink.svg b/public/assets/lib/fontawesome-free/svgs/regular/smile-wink.svg new file mode 100755 index 0000000..8841482 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/regular/smile-wink.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/regular/smile.svg b/public/assets/lib/fontawesome-free/svgs/regular/smile.svg new file mode 100755 index 0000000..9eb5e3a --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/regular/smile.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/regular/snowflake.svg b/public/assets/lib/fontawesome-free/svgs/regular/snowflake.svg new file mode 100755 index 0000000..28eea66 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/regular/snowflake.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/regular/square.svg b/public/assets/lib/fontawesome-free/svgs/regular/square.svg new file mode 100755 index 0000000..0458912 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/regular/square.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/regular/star-half.svg b/public/assets/lib/fontawesome-free/svgs/regular/star-half.svg new file mode 100755 index 0000000..d219e8d --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/regular/star-half.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/regular/star.svg b/public/assets/lib/fontawesome-free/svgs/regular/star.svg new file mode 100755 index 0000000..c4fc279 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/regular/star.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/regular/sticky-note.svg b/public/assets/lib/fontawesome-free/svgs/regular/sticky-note.svg new file mode 100755 index 0000000..0d666eb --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/regular/sticky-note.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/regular/stop-circle.svg b/public/assets/lib/fontawesome-free/svgs/regular/stop-circle.svg new file mode 100755 index 0000000..14c07d5 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/regular/stop-circle.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/regular/sun.svg b/public/assets/lib/fontawesome-free/svgs/regular/sun.svg new file mode 100755 index 0000000..9923b1c --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/regular/sun.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/regular/surprise.svg b/public/assets/lib/fontawesome-free/svgs/regular/surprise.svg new file mode 100755 index 0000000..00f09b5 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/regular/surprise.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/regular/thumbs-down.svg b/public/assets/lib/fontawesome-free/svgs/regular/thumbs-down.svg new file mode 100755 index 0000000..5483895 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/regular/thumbs-down.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/regular/thumbs-up.svg b/public/assets/lib/fontawesome-free/svgs/regular/thumbs-up.svg new file mode 100755 index 0000000..cce0ed6 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/regular/thumbs-up.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/regular/times-circle.svg b/public/assets/lib/fontawesome-free/svgs/regular/times-circle.svg new file mode 100755 index 0000000..627164b --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/regular/times-circle.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/regular/tired.svg b/public/assets/lib/fontawesome-free/svgs/regular/tired.svg new file mode 100755 index 0000000..fda9121 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/regular/tired.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/regular/trash-alt.svg b/public/assets/lib/fontawesome-free/svgs/regular/trash-alt.svg new file mode 100755 index 0000000..c5e4405 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/regular/trash-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/regular/user-circle.svg b/public/assets/lib/fontawesome-free/svgs/regular/user-circle.svg new file mode 100755 index 0000000..4db0c7e --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/regular/user-circle.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/regular/user.svg b/public/assets/lib/fontawesome-free/svgs/regular/user.svg new file mode 100755 index 0000000..750577d --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/regular/user.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/regular/window-close.svg b/public/assets/lib/fontawesome-free/svgs/regular/window-close.svg new file mode 100755 index 0000000..42bfeb5 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/regular/window-close.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/regular/window-maximize.svg b/public/assets/lib/fontawesome-free/svgs/regular/window-maximize.svg new file mode 100755 index 0000000..6556858 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/regular/window-maximize.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/regular/window-minimize.svg b/public/assets/lib/fontawesome-free/svgs/regular/window-minimize.svg new file mode 100755 index 0000000..9bd0d54 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/regular/window-minimize.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/regular/window-restore.svg b/public/assets/lib/fontawesome-free/svgs/regular/window-restore.svg new file mode 100755 index 0000000..c2975d2 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/regular/window-restore.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/ad.svg b/public/assets/lib/fontawesome-free/svgs/solid/ad.svg new file mode 100755 index 0000000..11fd3bc --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/ad.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/address-book.svg b/public/assets/lib/fontawesome-free/svgs/solid/address-book.svg new file mode 100755 index 0000000..b35adaf --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/address-book.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/address-card.svg b/public/assets/lib/fontawesome-free/svgs/solid/address-card.svg new file mode 100755 index 0000000..50a5410 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/address-card.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/adjust.svg b/public/assets/lib/fontawesome-free/svgs/solid/adjust.svg new file mode 100755 index 0000000..9f0582a --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/adjust.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/air-freshener.svg b/public/assets/lib/fontawesome-free/svgs/solid/air-freshener.svg new file mode 100755 index 0000000..0779049 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/air-freshener.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/align-center.svg b/public/assets/lib/fontawesome-free/svgs/solid/align-center.svg new file mode 100755 index 0000000..01e6a0a --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/align-center.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/align-justify.svg b/public/assets/lib/fontawesome-free/svgs/solid/align-justify.svg new file mode 100755 index 0000000..2f62a9d --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/align-justify.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/align-left.svg b/public/assets/lib/fontawesome-free/svgs/solid/align-left.svg new file mode 100755 index 0000000..2a68027 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/align-left.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/align-right.svg b/public/assets/lib/fontawesome-free/svgs/solid/align-right.svg new file mode 100755 index 0000000..6703a5a --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/align-right.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/allergies.svg b/public/assets/lib/fontawesome-free/svgs/solid/allergies.svg new file mode 100755 index 0000000..ed2ce93 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/allergies.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/ambulance.svg b/public/assets/lib/fontawesome-free/svgs/solid/ambulance.svg new file mode 100755 index 0000000..658c588 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/ambulance.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/american-sign-language-interpreting.svg b/public/assets/lib/fontawesome-free/svgs/solid/american-sign-language-interpreting.svg new file mode 100755 index 0000000..d95b779 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/american-sign-language-interpreting.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/anchor.svg b/public/assets/lib/fontawesome-free/svgs/solid/anchor.svg new file mode 100755 index 0000000..a11596e --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/anchor.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/angle-double-down.svg b/public/assets/lib/fontawesome-free/svgs/solid/angle-double-down.svg new file mode 100755 index 0000000..87287ed --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/angle-double-down.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/angle-double-left.svg b/public/assets/lib/fontawesome-free/svgs/solid/angle-double-left.svg new file mode 100755 index 0000000..6cff3f9 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/angle-double-left.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/angle-double-right.svg b/public/assets/lib/fontawesome-free/svgs/solid/angle-double-right.svg new file mode 100755 index 0000000..5d4a760 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/angle-double-right.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/angle-double-up.svg b/public/assets/lib/fontawesome-free/svgs/solid/angle-double-up.svg new file mode 100755 index 0000000..ca3488b --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/angle-double-up.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/angle-down.svg b/public/assets/lib/fontawesome-free/svgs/solid/angle-down.svg new file mode 100755 index 0000000..8348e03 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/angle-down.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/angle-left.svg b/public/assets/lib/fontawesome-free/svgs/solid/angle-left.svg new file mode 100755 index 0000000..a3c1cc7 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/angle-left.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/angle-right.svg b/public/assets/lib/fontawesome-free/svgs/solid/angle-right.svg new file mode 100755 index 0000000..4cff0c9 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/angle-right.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/angle-up.svg b/public/assets/lib/fontawesome-free/svgs/solid/angle-up.svg new file mode 100755 index 0000000..50b67d8 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/angle-up.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/angry.svg b/public/assets/lib/fontawesome-free/svgs/solid/angry.svg new file mode 100755 index 0000000..c486913 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/angry.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/ankh.svg b/public/assets/lib/fontawesome-free/svgs/solid/ankh.svg new file mode 100755 index 0000000..f89cdcd --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/ankh.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/apple-alt.svg b/public/assets/lib/fontawesome-free/svgs/solid/apple-alt.svg new file mode 100755 index 0000000..8375aad --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/apple-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/archive.svg b/public/assets/lib/fontawesome-free/svgs/solid/archive.svg new file mode 100755 index 0000000..cfe1e62 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/archive.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/archway.svg b/public/assets/lib/fontawesome-free/svgs/solid/archway.svg new file mode 100755 index 0000000..e9b1c03 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/archway.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/arrow-alt-circle-down.svg b/public/assets/lib/fontawesome-free/svgs/solid/arrow-alt-circle-down.svg new file mode 100755 index 0000000..3e20f1e --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/arrow-alt-circle-down.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/arrow-alt-circle-left.svg b/public/assets/lib/fontawesome-free/svgs/solid/arrow-alt-circle-left.svg new file mode 100755 index 0000000..a98dba6 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/arrow-alt-circle-left.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/arrow-alt-circle-right.svg b/public/assets/lib/fontawesome-free/svgs/solid/arrow-alt-circle-right.svg new file mode 100755 index 0000000..d1afe82 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/arrow-alt-circle-right.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/arrow-alt-circle-up.svg b/public/assets/lib/fontawesome-free/svgs/solid/arrow-alt-circle-up.svg new file mode 100755 index 0000000..e752281 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/arrow-alt-circle-up.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/arrow-circle-down.svg b/public/assets/lib/fontawesome-free/svgs/solid/arrow-circle-down.svg new file mode 100755 index 0000000..35455ad --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/arrow-circle-down.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/arrow-circle-left.svg b/public/assets/lib/fontawesome-free/svgs/solid/arrow-circle-left.svg new file mode 100755 index 0000000..0e0ad0f --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/arrow-circle-left.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/arrow-circle-right.svg b/public/assets/lib/fontawesome-free/svgs/solid/arrow-circle-right.svg new file mode 100755 index 0000000..88297f6 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/arrow-circle-right.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/arrow-circle-up.svg b/public/assets/lib/fontawesome-free/svgs/solid/arrow-circle-up.svg new file mode 100755 index 0000000..dd25f8e --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/arrow-circle-up.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/arrow-down.svg b/public/assets/lib/fontawesome-free/svgs/solid/arrow-down.svg new file mode 100755 index 0000000..fcda248 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/arrow-down.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/arrow-left.svg b/public/assets/lib/fontawesome-free/svgs/solid/arrow-left.svg new file mode 100755 index 0000000..57a171c --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/arrow-left.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/arrow-right.svg b/public/assets/lib/fontawesome-free/svgs/solid/arrow-right.svg new file mode 100755 index 0000000..a9d00a5 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/arrow-right.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/arrow-up.svg b/public/assets/lib/fontawesome-free/svgs/solid/arrow-up.svg new file mode 100755 index 0000000..ec258b4 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/arrow-up.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/arrows-alt-h.svg b/public/assets/lib/fontawesome-free/svgs/solid/arrows-alt-h.svg new file mode 100755 index 0000000..aff6546 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/arrows-alt-h.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/arrows-alt-v.svg b/public/assets/lib/fontawesome-free/svgs/solid/arrows-alt-v.svg new file mode 100755 index 0000000..a04daa8 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/arrows-alt-v.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/arrows-alt.svg b/public/assets/lib/fontawesome-free/svgs/solid/arrows-alt.svg new file mode 100755 index 0000000..736da6d --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/arrows-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/assistive-listening-systems.svg b/public/assets/lib/fontawesome-free/svgs/solid/assistive-listening-systems.svg new file mode 100755 index 0000000..3aee457 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/assistive-listening-systems.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/asterisk.svg b/public/assets/lib/fontawesome-free/svgs/solid/asterisk.svg new file mode 100755 index 0000000..444bd45 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/asterisk.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/at.svg b/public/assets/lib/fontawesome-free/svgs/solid/at.svg new file mode 100755 index 0000000..c95a4b8 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/at.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/atlas.svg b/public/assets/lib/fontawesome-free/svgs/solid/atlas.svg new file mode 100755 index 0000000..27113c5 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/atlas.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/atom.svg b/public/assets/lib/fontawesome-free/svgs/solid/atom.svg new file mode 100755 index 0000000..b7d643c --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/atom.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/audio-description.svg b/public/assets/lib/fontawesome-free/svgs/solid/audio-description.svg new file mode 100755 index 0000000..eb66cb6 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/audio-description.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/award.svg b/public/assets/lib/fontawesome-free/svgs/solid/award.svg new file mode 100755 index 0000000..6cf9017 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/award.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/backspace.svg b/public/assets/lib/fontawesome-free/svgs/solid/backspace.svg new file mode 100755 index 0000000..da7b587 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/backspace.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/backward.svg b/public/assets/lib/fontawesome-free/svgs/solid/backward.svg new file mode 100755 index 0000000..c838872 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/backward.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/balance-scale.svg b/public/assets/lib/fontawesome-free/svgs/solid/balance-scale.svg new file mode 100755 index 0000000..d05d5bb --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/balance-scale.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/ban.svg b/public/assets/lib/fontawesome-free/svgs/solid/ban.svg new file mode 100755 index 0000000..888257c --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/ban.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/band-aid.svg b/public/assets/lib/fontawesome-free/svgs/solid/band-aid.svg new file mode 100755 index 0000000..99b617c --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/band-aid.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/barcode.svg b/public/assets/lib/fontawesome-free/svgs/solid/barcode.svg new file mode 100755 index 0000000..69a2623 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/barcode.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/bars.svg b/public/assets/lib/fontawesome-free/svgs/solid/bars.svg new file mode 100755 index 0000000..e27577b --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/bars.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/baseball-ball.svg b/public/assets/lib/fontawesome-free/svgs/solid/baseball-ball.svg new file mode 100755 index 0000000..161979b --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/baseball-ball.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/basketball-ball.svg b/public/assets/lib/fontawesome-free/svgs/solid/basketball-ball.svg new file mode 100755 index 0000000..4c1f4f7 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/basketball-ball.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/bath.svg b/public/assets/lib/fontawesome-free/svgs/solid/bath.svg new file mode 100755 index 0000000..3a315b9 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/bath.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/battery-empty.svg b/public/assets/lib/fontawesome-free/svgs/solid/battery-empty.svg new file mode 100755 index 0000000..74f722b --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/battery-empty.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/battery-full.svg b/public/assets/lib/fontawesome-free/svgs/solid/battery-full.svg new file mode 100755 index 0000000..53f3c8d --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/battery-full.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/battery-half.svg b/public/assets/lib/fontawesome-free/svgs/solid/battery-half.svg new file mode 100755 index 0000000..5175178 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/battery-half.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/battery-quarter.svg b/public/assets/lib/fontawesome-free/svgs/solid/battery-quarter.svg new file mode 100755 index 0000000..f7d01a6 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/battery-quarter.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/battery-three-quarters.svg b/public/assets/lib/fontawesome-free/svgs/solid/battery-three-quarters.svg new file mode 100755 index 0000000..21c61a4 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/battery-three-quarters.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/bed.svg b/public/assets/lib/fontawesome-free/svgs/solid/bed.svg new file mode 100755 index 0000000..9279dd4 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/bed.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/beer.svg b/public/assets/lib/fontawesome-free/svgs/solid/beer.svg new file mode 100755 index 0000000..f883d8a --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/beer.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/bell-slash.svg b/public/assets/lib/fontawesome-free/svgs/solid/bell-slash.svg new file mode 100755 index 0000000..3bba130 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/bell-slash.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/bell.svg b/public/assets/lib/fontawesome-free/svgs/solid/bell.svg new file mode 100755 index 0000000..c51ab33 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/bell.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/bezier-curve.svg b/public/assets/lib/fontawesome-free/svgs/solid/bezier-curve.svg new file mode 100755 index 0000000..f4b27c8 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/bezier-curve.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/bible.svg b/public/assets/lib/fontawesome-free/svgs/solid/bible.svg new file mode 100755 index 0000000..363500c --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/bible.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/bicycle.svg b/public/assets/lib/fontawesome-free/svgs/solid/bicycle.svg new file mode 100755 index 0000000..d85aebd --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/bicycle.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/binoculars.svg b/public/assets/lib/fontawesome-free/svgs/solid/binoculars.svg new file mode 100755 index 0000000..fd0b753 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/binoculars.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/birthday-cake.svg b/public/assets/lib/fontawesome-free/svgs/solid/birthday-cake.svg new file mode 100755 index 0000000..922bd2d --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/birthday-cake.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/blender.svg b/public/assets/lib/fontawesome-free/svgs/solid/blender.svg new file mode 100755 index 0000000..1a0f8f1 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/blender.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/blind.svg b/public/assets/lib/fontawesome-free/svgs/solid/blind.svg new file mode 100755 index 0000000..ac576e4 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/blind.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/bold.svg b/public/assets/lib/fontawesome-free/svgs/solid/bold.svg new file mode 100755 index 0000000..e0205a7 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/bold.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/bolt.svg b/public/assets/lib/fontawesome-free/svgs/solid/bolt.svg new file mode 100755 index 0000000..804487f --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/bolt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/bomb.svg b/public/assets/lib/fontawesome-free/svgs/solid/bomb.svg new file mode 100755 index 0000000..21ad5a1 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/bomb.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/bone.svg b/public/assets/lib/fontawesome-free/svgs/solid/bone.svg new file mode 100755 index 0000000..7a4255e --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/bone.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/bong.svg b/public/assets/lib/fontawesome-free/svgs/solid/bong.svg new file mode 100755 index 0000000..d4eb181 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/bong.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/book-open.svg b/public/assets/lib/fontawesome-free/svgs/solid/book-open.svg new file mode 100755 index 0000000..6251c0c --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/book-open.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/book-reader.svg b/public/assets/lib/fontawesome-free/svgs/solid/book-reader.svg new file mode 100755 index 0000000..9689f77 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/book-reader.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/book.svg b/public/assets/lib/fontawesome-free/svgs/solid/book.svg new file mode 100755 index 0000000..4c06213 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/book.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/bookmark.svg b/public/assets/lib/fontawesome-free/svgs/solid/bookmark.svg new file mode 100755 index 0000000..96149bd --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/bookmark.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/bowling-ball.svg b/public/assets/lib/fontawesome-free/svgs/solid/bowling-ball.svg new file mode 100755 index 0000000..238f467 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/bowling-ball.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/box-open.svg b/public/assets/lib/fontawesome-free/svgs/solid/box-open.svg new file mode 100755 index 0000000..7dc7589 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/box-open.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/box.svg b/public/assets/lib/fontawesome-free/svgs/solid/box.svg new file mode 100755 index 0000000..1efa5ed --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/box.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/boxes.svg b/public/assets/lib/fontawesome-free/svgs/solid/boxes.svg new file mode 100755 index 0000000..e5d2367 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/boxes.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/braille.svg b/public/assets/lib/fontawesome-free/svgs/solid/braille.svg new file mode 100755 index 0000000..ea8e021 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/braille.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/brain.svg b/public/assets/lib/fontawesome-free/svgs/solid/brain.svg new file mode 100755 index 0000000..7912dd9 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/brain.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/briefcase-medical.svg b/public/assets/lib/fontawesome-free/svgs/solid/briefcase-medical.svg new file mode 100755 index 0000000..abc47fc --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/briefcase-medical.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/briefcase.svg b/public/assets/lib/fontawesome-free/svgs/solid/briefcase.svg new file mode 100755 index 0000000..9174908 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/briefcase.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/broadcast-tower.svg b/public/assets/lib/fontawesome-free/svgs/solid/broadcast-tower.svg new file mode 100755 index 0000000..2accd99 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/broadcast-tower.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/broom.svg b/public/assets/lib/fontawesome-free/svgs/solid/broom.svg new file mode 100755 index 0000000..d547d4a --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/broom.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/brush.svg b/public/assets/lib/fontawesome-free/svgs/solid/brush.svg new file mode 100755 index 0000000..4f07971 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/brush.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/bug.svg b/public/assets/lib/fontawesome-free/svgs/solid/bug.svg new file mode 100755 index 0000000..fb9c16d --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/bug.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/building.svg b/public/assets/lib/fontawesome-free/svgs/solid/building.svg new file mode 100755 index 0000000..380e936 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/building.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/bullhorn.svg b/public/assets/lib/fontawesome-free/svgs/solid/bullhorn.svg new file mode 100755 index 0000000..74365bc --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/bullhorn.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/bullseye.svg b/public/assets/lib/fontawesome-free/svgs/solid/bullseye.svg new file mode 100755 index 0000000..4c8f64f --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/bullseye.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/burn.svg b/public/assets/lib/fontawesome-free/svgs/solid/burn.svg new file mode 100755 index 0000000..6541fc5 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/burn.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/bus-alt.svg b/public/assets/lib/fontawesome-free/svgs/solid/bus-alt.svg new file mode 100755 index 0000000..0367654 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/bus-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/bus.svg b/public/assets/lib/fontawesome-free/svgs/solid/bus.svg new file mode 100755 index 0000000..be30a6e --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/bus.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/business-time.svg b/public/assets/lib/fontawesome-free/svgs/solid/business-time.svg new file mode 100755 index 0000000..7db511c --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/business-time.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/calculator.svg b/public/assets/lib/fontawesome-free/svgs/solid/calculator.svg new file mode 100755 index 0000000..b337b60 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/calculator.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/calendar-alt.svg b/public/assets/lib/fontawesome-free/svgs/solid/calendar-alt.svg new file mode 100755 index 0000000..18a0b51 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/calendar-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/calendar-check.svg b/public/assets/lib/fontawesome-free/svgs/solid/calendar-check.svg new file mode 100755 index 0000000..50f3e40 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/calendar-check.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/calendar-minus.svg b/public/assets/lib/fontawesome-free/svgs/solid/calendar-minus.svg new file mode 100755 index 0000000..71de2b8 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/calendar-minus.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/calendar-plus.svg b/public/assets/lib/fontawesome-free/svgs/solid/calendar-plus.svg new file mode 100755 index 0000000..609e055 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/calendar-plus.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/calendar-times.svg b/public/assets/lib/fontawesome-free/svgs/solid/calendar-times.svg new file mode 100755 index 0000000..c304148 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/calendar-times.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/calendar.svg b/public/assets/lib/fontawesome-free/svgs/solid/calendar.svg new file mode 100755 index 0000000..9c38a11 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/calendar.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/camera-retro.svg b/public/assets/lib/fontawesome-free/svgs/solid/camera-retro.svg new file mode 100755 index 0000000..c804445 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/camera-retro.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/camera.svg b/public/assets/lib/fontawesome-free/svgs/solid/camera.svg new file mode 100755 index 0000000..2837a87 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/camera.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/cannabis.svg b/public/assets/lib/fontawesome-free/svgs/solid/cannabis.svg new file mode 100755 index 0000000..fbc8f67 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/cannabis.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/capsules.svg b/public/assets/lib/fontawesome-free/svgs/solid/capsules.svg new file mode 100755 index 0000000..e34bed8 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/capsules.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/car-alt.svg b/public/assets/lib/fontawesome-free/svgs/solid/car-alt.svg new file mode 100755 index 0000000..09d3c3b --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/car-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/car-battery.svg b/public/assets/lib/fontawesome-free/svgs/solid/car-battery.svg new file mode 100755 index 0000000..41dd5d0 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/car-battery.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/car-crash.svg b/public/assets/lib/fontawesome-free/svgs/solid/car-crash.svg new file mode 100755 index 0000000..96b0c3e --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/car-crash.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/car-side.svg b/public/assets/lib/fontawesome-free/svgs/solid/car-side.svg new file mode 100755 index 0000000..56d98ab --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/car-side.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/car.svg b/public/assets/lib/fontawesome-free/svgs/solid/car.svg new file mode 100755 index 0000000..c607241 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/car.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/caret-down.svg b/public/assets/lib/fontawesome-free/svgs/solid/caret-down.svg new file mode 100755 index 0000000..b571f1a --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/caret-down.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/caret-left.svg b/public/assets/lib/fontawesome-free/svgs/solid/caret-left.svg new file mode 100755 index 0000000..d914366 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/caret-left.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/caret-right.svg b/public/assets/lib/fontawesome-free/svgs/solid/caret-right.svg new file mode 100755 index 0000000..a36afd9 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/caret-right.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/caret-square-down.svg b/public/assets/lib/fontawesome-free/svgs/solid/caret-square-down.svg new file mode 100755 index 0000000..e069ef2 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/caret-square-down.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/caret-square-left.svg b/public/assets/lib/fontawesome-free/svgs/solid/caret-square-left.svg new file mode 100755 index 0000000..5206e46 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/caret-square-left.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/caret-square-right.svg b/public/assets/lib/fontawesome-free/svgs/solid/caret-square-right.svg new file mode 100755 index 0000000..3e3d81c --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/caret-square-right.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/caret-square-up.svg b/public/assets/lib/fontawesome-free/svgs/solid/caret-square-up.svg new file mode 100755 index 0000000..633f0bf --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/caret-square-up.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/caret-up.svg b/public/assets/lib/fontawesome-free/svgs/solid/caret-up.svg new file mode 100755 index 0000000..dd70ab6 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/caret-up.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/cart-arrow-down.svg b/public/assets/lib/fontawesome-free/svgs/solid/cart-arrow-down.svg new file mode 100755 index 0000000..bf31c0a --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/cart-arrow-down.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/cart-plus.svg b/public/assets/lib/fontawesome-free/svgs/solid/cart-plus.svg new file mode 100755 index 0000000..98f1100 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/cart-plus.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/certificate.svg b/public/assets/lib/fontawesome-free/svgs/solid/certificate.svg new file mode 100755 index 0000000..e3a8339 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/certificate.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/chalkboard-teacher.svg b/public/assets/lib/fontawesome-free/svgs/solid/chalkboard-teacher.svg new file mode 100755 index 0000000..3e30833 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/chalkboard-teacher.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/chalkboard.svg b/public/assets/lib/fontawesome-free/svgs/solid/chalkboard.svg new file mode 100755 index 0000000..0bcb73a --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/chalkboard.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/charging-station.svg b/public/assets/lib/fontawesome-free/svgs/solid/charging-station.svg new file mode 100755 index 0000000..e186b30 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/charging-station.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/chart-area.svg b/public/assets/lib/fontawesome-free/svgs/solid/chart-area.svg new file mode 100755 index 0000000..33384aa --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/chart-area.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/chart-bar.svg b/public/assets/lib/fontawesome-free/svgs/solid/chart-bar.svg new file mode 100755 index 0000000..b70715a --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/chart-bar.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/chart-line.svg b/public/assets/lib/fontawesome-free/svgs/solid/chart-line.svg new file mode 100755 index 0000000..7f951de --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/chart-line.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/chart-pie.svg b/public/assets/lib/fontawesome-free/svgs/solid/chart-pie.svg new file mode 100755 index 0000000..276c9aa --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/chart-pie.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/check-circle.svg b/public/assets/lib/fontawesome-free/svgs/solid/check-circle.svg new file mode 100755 index 0000000..1ad2922 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/check-circle.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/check-double.svg b/public/assets/lib/fontawesome-free/svgs/solid/check-double.svg new file mode 100755 index 0000000..1d99122 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/check-double.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/check-square.svg b/public/assets/lib/fontawesome-free/svgs/solid/check-square.svg new file mode 100755 index 0000000..4b7aa55 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/check-square.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/check.svg b/public/assets/lib/fontawesome-free/svgs/solid/check.svg new file mode 100755 index 0000000..6f93b7b --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/check.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/chess-bishop.svg b/public/assets/lib/fontawesome-free/svgs/solid/chess-bishop.svg new file mode 100755 index 0000000..8e60c23 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/chess-bishop.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/chess-board.svg b/public/assets/lib/fontawesome-free/svgs/solid/chess-board.svg new file mode 100755 index 0000000..b708687 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/chess-board.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/chess-king.svg b/public/assets/lib/fontawesome-free/svgs/solid/chess-king.svg new file mode 100755 index 0000000..3b33c30 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/chess-king.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/chess-knight.svg b/public/assets/lib/fontawesome-free/svgs/solid/chess-knight.svg new file mode 100755 index 0000000..5159817 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/chess-knight.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/chess-pawn.svg b/public/assets/lib/fontawesome-free/svgs/solid/chess-pawn.svg new file mode 100755 index 0000000..8555be5 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/chess-pawn.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/chess-queen.svg b/public/assets/lib/fontawesome-free/svgs/solid/chess-queen.svg new file mode 100755 index 0000000..943bc11 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/chess-queen.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/chess-rook.svg b/public/assets/lib/fontawesome-free/svgs/solid/chess-rook.svg new file mode 100755 index 0000000..8c3df7a --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/chess-rook.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/chess.svg b/public/assets/lib/fontawesome-free/svgs/solid/chess.svg new file mode 100755 index 0000000..96ff364 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/chess.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/chevron-circle-down.svg b/public/assets/lib/fontawesome-free/svgs/solid/chevron-circle-down.svg new file mode 100755 index 0000000..fc49f88 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/chevron-circle-down.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/chevron-circle-left.svg b/public/assets/lib/fontawesome-free/svgs/solid/chevron-circle-left.svg new file mode 100755 index 0000000..d1e012f --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/chevron-circle-left.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/chevron-circle-right.svg b/public/assets/lib/fontawesome-free/svgs/solid/chevron-circle-right.svg new file mode 100755 index 0000000..097623e --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/chevron-circle-right.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/chevron-circle-up.svg b/public/assets/lib/fontawesome-free/svgs/solid/chevron-circle-up.svg new file mode 100755 index 0000000..9d1b157 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/chevron-circle-up.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/chevron-down.svg b/public/assets/lib/fontawesome-free/svgs/solid/chevron-down.svg new file mode 100755 index 0000000..989f2c0 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/chevron-down.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/chevron-left.svg b/public/assets/lib/fontawesome-free/svgs/solid/chevron-left.svg new file mode 100755 index 0000000..7c5f3c1 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/chevron-left.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/chevron-right.svg b/public/assets/lib/fontawesome-free/svgs/solid/chevron-right.svg new file mode 100755 index 0000000..9a1e0c5 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/chevron-right.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/chevron-up.svg b/public/assets/lib/fontawesome-free/svgs/solid/chevron-up.svg new file mode 100755 index 0000000..01c9155 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/chevron-up.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/child.svg b/public/assets/lib/fontawesome-free/svgs/solid/child.svg new file mode 100755 index 0000000..f9da762 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/child.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/church.svg b/public/assets/lib/fontawesome-free/svgs/solid/church.svg new file mode 100755 index 0000000..e14ec35 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/church.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/circle-notch.svg b/public/assets/lib/fontawesome-free/svgs/solid/circle-notch.svg new file mode 100755 index 0000000..fc8cffe --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/circle-notch.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/circle.svg b/public/assets/lib/fontawesome-free/svgs/solid/circle.svg new file mode 100755 index 0000000..9157fe8 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/circle.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/city.svg b/public/assets/lib/fontawesome-free/svgs/solid/city.svg new file mode 100755 index 0000000..2014396 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/city.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/clipboard-check.svg b/public/assets/lib/fontawesome-free/svgs/solid/clipboard-check.svg new file mode 100755 index 0000000..7c892d4 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/clipboard-check.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/clipboard-list.svg b/public/assets/lib/fontawesome-free/svgs/solid/clipboard-list.svg new file mode 100755 index 0000000..830355f --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/clipboard-list.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/clipboard.svg b/public/assets/lib/fontawesome-free/svgs/solid/clipboard.svg new file mode 100755 index 0000000..a5f1a93 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/clipboard.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/clock.svg b/public/assets/lib/fontawesome-free/svgs/solid/clock.svg new file mode 100755 index 0000000..c0571de --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/clock.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/clone.svg b/public/assets/lib/fontawesome-free/svgs/solid/clone.svg new file mode 100755 index 0000000..6c94fce --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/clone.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/closed-captioning.svg b/public/assets/lib/fontawesome-free/svgs/solid/closed-captioning.svg new file mode 100755 index 0000000..f1da7a6 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/closed-captioning.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/cloud-download-alt.svg b/public/assets/lib/fontawesome-free/svgs/solid/cloud-download-alt.svg new file mode 100755 index 0000000..54a872c --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/cloud-download-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/cloud-upload-alt.svg b/public/assets/lib/fontawesome-free/svgs/solid/cloud-upload-alt.svg new file mode 100755 index 0000000..ed0803b --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/cloud-upload-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/cloud.svg b/public/assets/lib/fontawesome-free/svgs/solid/cloud.svg new file mode 100755 index 0000000..fc48ad4 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/cloud.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/cocktail.svg b/public/assets/lib/fontawesome-free/svgs/solid/cocktail.svg new file mode 100755 index 0000000..2defd35 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/cocktail.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/code-branch.svg b/public/assets/lib/fontawesome-free/svgs/solid/code-branch.svg new file mode 100755 index 0000000..da22bf1 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/code-branch.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/code.svg b/public/assets/lib/fontawesome-free/svgs/solid/code.svg new file mode 100755 index 0000000..908afd8 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/code.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/coffee.svg b/public/assets/lib/fontawesome-free/svgs/solid/coffee.svg new file mode 100755 index 0000000..5908d7b --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/coffee.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/cog.svg b/public/assets/lib/fontawesome-free/svgs/solid/cog.svg new file mode 100755 index 0000000..c800d8a --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/cog.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/cogs.svg b/public/assets/lib/fontawesome-free/svgs/solid/cogs.svg new file mode 100755 index 0000000..3d3bc5d --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/cogs.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/coins.svg b/public/assets/lib/fontawesome-free/svgs/solid/coins.svg new file mode 100755 index 0000000..0cb4fc0 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/coins.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/columns.svg b/public/assets/lib/fontawesome-free/svgs/solid/columns.svg new file mode 100755 index 0000000..ae6f6d8 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/columns.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/comment-alt.svg b/public/assets/lib/fontawesome-free/svgs/solid/comment-alt.svg new file mode 100755 index 0000000..ffbf759 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/comment-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/comment-dollar.svg b/public/assets/lib/fontawesome-free/svgs/solid/comment-dollar.svg new file mode 100755 index 0000000..0a3eb29 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/comment-dollar.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/comment-dots.svg b/public/assets/lib/fontawesome-free/svgs/solid/comment-dots.svg new file mode 100755 index 0000000..bbd5ed7 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/comment-dots.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/comment-slash.svg b/public/assets/lib/fontawesome-free/svgs/solid/comment-slash.svg new file mode 100755 index 0000000..1767390 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/comment-slash.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/comment.svg b/public/assets/lib/fontawesome-free/svgs/solid/comment.svg new file mode 100755 index 0000000..ca7aafa --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/comment.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/comments-dollar.svg b/public/assets/lib/fontawesome-free/svgs/solid/comments-dollar.svg new file mode 100755 index 0000000..268cab1 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/comments-dollar.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/comments.svg b/public/assets/lib/fontawesome-free/svgs/solid/comments.svg new file mode 100755 index 0000000..b444e09 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/comments.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/compact-disc.svg b/public/assets/lib/fontawesome-free/svgs/solid/compact-disc.svg new file mode 100755 index 0000000..d8bf25a --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/compact-disc.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/compass.svg b/public/assets/lib/fontawesome-free/svgs/solid/compass.svg new file mode 100755 index 0000000..5a2c5af --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/compass.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/compress.svg b/public/assets/lib/fontawesome-free/svgs/solid/compress.svg new file mode 100755 index 0000000..251aa23 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/compress.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/concierge-bell.svg b/public/assets/lib/fontawesome-free/svgs/solid/concierge-bell.svg new file mode 100755 index 0000000..586c92e --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/concierge-bell.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/cookie-bite.svg b/public/assets/lib/fontawesome-free/svgs/solid/cookie-bite.svg new file mode 100755 index 0000000..b46e719 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/cookie-bite.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/cookie.svg b/public/assets/lib/fontawesome-free/svgs/solid/cookie.svg new file mode 100755 index 0000000..c49305d --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/cookie.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/copy.svg b/public/assets/lib/fontawesome-free/svgs/solid/copy.svg new file mode 100755 index 0000000..0c38103 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/copy.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/copyright.svg b/public/assets/lib/fontawesome-free/svgs/solid/copyright.svg new file mode 100755 index 0000000..d5ea053 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/copyright.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/couch.svg b/public/assets/lib/fontawesome-free/svgs/solid/couch.svg new file mode 100755 index 0000000..9b224ca --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/couch.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/credit-card.svg b/public/assets/lib/fontawesome-free/svgs/solid/credit-card.svg new file mode 100755 index 0000000..d3483a6 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/credit-card.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/crop-alt.svg b/public/assets/lib/fontawesome-free/svgs/solid/crop-alt.svg new file mode 100755 index 0000000..a52f32f --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/crop-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/crop.svg b/public/assets/lib/fontawesome-free/svgs/solid/crop.svg new file mode 100755 index 0000000..2d69ba5 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/crop.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/cross.svg b/public/assets/lib/fontawesome-free/svgs/solid/cross.svg new file mode 100755 index 0000000..f4691e7 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/cross.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/crosshairs.svg b/public/assets/lib/fontawesome-free/svgs/solid/crosshairs.svg new file mode 100755 index 0000000..c13dc51 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/crosshairs.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/crow.svg b/public/assets/lib/fontawesome-free/svgs/solid/crow.svg new file mode 100755 index 0000000..479663b --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/crow.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/crown.svg b/public/assets/lib/fontawesome-free/svgs/solid/crown.svg new file mode 100755 index 0000000..b6f54a8 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/crown.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/cube.svg b/public/assets/lib/fontawesome-free/svgs/solid/cube.svg new file mode 100755 index 0000000..0695abe --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/cube.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/cubes.svg b/public/assets/lib/fontawesome-free/svgs/solid/cubes.svg new file mode 100755 index 0000000..5f54330 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/cubes.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/cut.svg b/public/assets/lib/fontawesome-free/svgs/solid/cut.svg new file mode 100755 index 0000000..631819e --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/cut.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/database.svg b/public/assets/lib/fontawesome-free/svgs/solid/database.svg new file mode 100755 index 0000000..d0af600 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/database.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/deaf.svg b/public/assets/lib/fontawesome-free/svgs/solid/deaf.svg new file mode 100755 index 0000000..d6f7f8a --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/deaf.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/desktop.svg b/public/assets/lib/fontawesome-free/svgs/solid/desktop.svg new file mode 100755 index 0000000..de176c7 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/desktop.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/dharmachakra.svg b/public/assets/lib/fontawesome-free/svgs/solid/dharmachakra.svg new file mode 100755 index 0000000..f5c667d --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/dharmachakra.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/diagnoses.svg b/public/assets/lib/fontawesome-free/svgs/solid/diagnoses.svg new file mode 100755 index 0000000..7df06eb --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/diagnoses.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/dice-five.svg b/public/assets/lib/fontawesome-free/svgs/solid/dice-five.svg new file mode 100755 index 0000000..2053206 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/dice-five.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/dice-four.svg b/public/assets/lib/fontawesome-free/svgs/solid/dice-four.svg new file mode 100755 index 0000000..808fceb --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/dice-four.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/dice-one.svg b/public/assets/lib/fontawesome-free/svgs/solid/dice-one.svg new file mode 100755 index 0000000..836d957 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/dice-one.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/dice-six.svg b/public/assets/lib/fontawesome-free/svgs/solid/dice-six.svg new file mode 100755 index 0000000..320dd4a --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/dice-six.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/dice-three.svg b/public/assets/lib/fontawesome-free/svgs/solid/dice-three.svg new file mode 100755 index 0000000..c15ca3d --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/dice-three.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/dice-two.svg b/public/assets/lib/fontawesome-free/svgs/solid/dice-two.svg new file mode 100755 index 0000000..bc02676 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/dice-two.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/dice.svg b/public/assets/lib/fontawesome-free/svgs/solid/dice.svg new file mode 100755 index 0000000..7f115bd --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/dice.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/digital-tachograph.svg b/public/assets/lib/fontawesome-free/svgs/solid/digital-tachograph.svg new file mode 100755 index 0000000..3150243 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/digital-tachograph.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/directions.svg b/public/assets/lib/fontawesome-free/svgs/solid/directions.svg new file mode 100755 index 0000000..b284deb --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/directions.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/divide.svg b/public/assets/lib/fontawesome-free/svgs/solid/divide.svg new file mode 100755 index 0000000..412c1ad --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/divide.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/dizzy.svg b/public/assets/lib/fontawesome-free/svgs/solid/dizzy.svg new file mode 100755 index 0000000..e830c05 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/dizzy.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/dna.svg b/public/assets/lib/fontawesome-free/svgs/solid/dna.svg new file mode 100755 index 0000000..3e9f8cf --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/dna.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/dollar-sign.svg b/public/assets/lib/fontawesome-free/svgs/solid/dollar-sign.svg new file mode 100755 index 0000000..cd68494 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/dollar-sign.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/dolly-flatbed.svg b/public/assets/lib/fontawesome-free/svgs/solid/dolly-flatbed.svg new file mode 100755 index 0000000..30f06c3 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/dolly-flatbed.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/dolly.svg b/public/assets/lib/fontawesome-free/svgs/solid/dolly.svg new file mode 100755 index 0000000..66c52e7 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/dolly.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/donate.svg b/public/assets/lib/fontawesome-free/svgs/solid/donate.svg new file mode 100755 index 0000000..403f939 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/donate.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/door-closed.svg b/public/assets/lib/fontawesome-free/svgs/solid/door-closed.svg new file mode 100755 index 0000000..df313ed --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/door-closed.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/door-open.svg b/public/assets/lib/fontawesome-free/svgs/solid/door-open.svg new file mode 100755 index 0000000..e7b8890 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/door-open.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/dot-circle.svg b/public/assets/lib/fontawesome-free/svgs/solid/dot-circle.svg new file mode 100755 index 0000000..6af4c79 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/dot-circle.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/dove.svg b/public/assets/lib/fontawesome-free/svgs/solid/dove.svg new file mode 100755 index 0000000..49468a4 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/dove.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/download.svg b/public/assets/lib/fontawesome-free/svgs/solid/download.svg new file mode 100755 index 0000000..fafbf38 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/download.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/drafting-compass.svg b/public/assets/lib/fontawesome-free/svgs/solid/drafting-compass.svg new file mode 100755 index 0000000..113846f --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/drafting-compass.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/draw-polygon.svg b/public/assets/lib/fontawesome-free/svgs/solid/draw-polygon.svg new file mode 100755 index 0000000..c962c25 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/draw-polygon.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/drum-steelpan.svg b/public/assets/lib/fontawesome-free/svgs/solid/drum-steelpan.svg new file mode 100755 index 0000000..285f424 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/drum-steelpan.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/drum.svg b/public/assets/lib/fontawesome-free/svgs/solid/drum.svg new file mode 100755 index 0000000..6ba7b5f --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/drum.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/dumbbell.svg b/public/assets/lib/fontawesome-free/svgs/solid/dumbbell.svg new file mode 100755 index 0000000..5f82aeb --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/dumbbell.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/edit.svg b/public/assets/lib/fontawesome-free/svgs/solid/edit.svg new file mode 100755 index 0000000..a7e535d --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/edit.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/eject.svg b/public/assets/lib/fontawesome-free/svgs/solid/eject.svg new file mode 100755 index 0000000..15a9a15 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/eject.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/ellipsis-h.svg b/public/assets/lib/fontawesome-free/svgs/solid/ellipsis-h.svg new file mode 100755 index 0000000..c666658 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/ellipsis-h.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/ellipsis-v.svg b/public/assets/lib/fontawesome-free/svgs/solid/ellipsis-v.svg new file mode 100755 index 0000000..2dafe84 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/ellipsis-v.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/envelope-open-text.svg b/public/assets/lib/fontawesome-free/svgs/solid/envelope-open-text.svg new file mode 100755 index 0000000..0830b06 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/envelope-open-text.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/envelope-open.svg b/public/assets/lib/fontawesome-free/svgs/solid/envelope-open.svg new file mode 100755 index 0000000..a187422 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/envelope-open.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/envelope-square.svg b/public/assets/lib/fontawesome-free/svgs/solid/envelope-square.svg new file mode 100755 index 0000000..bddebea --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/envelope-square.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/envelope.svg b/public/assets/lib/fontawesome-free/svgs/solid/envelope.svg new file mode 100755 index 0000000..a78481a --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/envelope.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/equals.svg b/public/assets/lib/fontawesome-free/svgs/solid/equals.svg new file mode 100755 index 0000000..175bf34 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/equals.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/eraser.svg b/public/assets/lib/fontawesome-free/svgs/solid/eraser.svg new file mode 100755 index 0000000..6f7ef3f --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/eraser.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/euro-sign.svg b/public/assets/lib/fontawesome-free/svgs/solid/euro-sign.svg new file mode 100755 index 0000000..21b9478 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/euro-sign.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/exchange-alt.svg b/public/assets/lib/fontawesome-free/svgs/solid/exchange-alt.svg new file mode 100755 index 0000000..492c3d8 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/exchange-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/exclamation-circle.svg b/public/assets/lib/fontawesome-free/svgs/solid/exclamation-circle.svg new file mode 100755 index 0000000..637f780 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/exclamation-circle.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/exclamation-triangle.svg b/public/assets/lib/fontawesome-free/svgs/solid/exclamation-triangle.svg new file mode 100755 index 0000000..be6ddbf --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/exclamation-triangle.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/exclamation.svg b/public/assets/lib/fontawesome-free/svgs/solid/exclamation.svg new file mode 100755 index 0000000..7652c8a --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/exclamation.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/expand-arrows-alt.svg b/public/assets/lib/fontawesome-free/svgs/solid/expand-arrows-alt.svg new file mode 100755 index 0000000..25120ef --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/expand-arrows-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/expand.svg b/public/assets/lib/fontawesome-free/svgs/solid/expand.svg new file mode 100755 index 0000000..070a7aa --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/expand.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/external-link-alt.svg b/public/assets/lib/fontawesome-free/svgs/solid/external-link-alt.svg new file mode 100755 index 0000000..f821f4d --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/external-link-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/external-link-square-alt.svg b/public/assets/lib/fontawesome-free/svgs/solid/external-link-square-alt.svg new file mode 100755 index 0000000..536989a --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/external-link-square-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/eye-dropper.svg b/public/assets/lib/fontawesome-free/svgs/solid/eye-dropper.svg new file mode 100755 index 0000000..f266828 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/eye-dropper.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/eye-slash.svg b/public/assets/lib/fontawesome-free/svgs/solid/eye-slash.svg new file mode 100755 index 0000000..a80f536 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/eye-slash.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/eye.svg b/public/assets/lib/fontawesome-free/svgs/solid/eye.svg new file mode 100755 index 0000000..1bfc398 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/eye.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/fast-backward.svg b/public/assets/lib/fontawesome-free/svgs/solid/fast-backward.svg new file mode 100755 index 0000000..dfe10e5 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/fast-backward.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/fast-forward.svg b/public/assets/lib/fontawesome-free/svgs/solid/fast-forward.svg new file mode 100755 index 0000000..57c072a --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/fast-forward.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/fax.svg b/public/assets/lib/fontawesome-free/svgs/solid/fax.svg new file mode 100755 index 0000000..12386de --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/fax.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/feather-alt.svg b/public/assets/lib/fontawesome-free/svgs/solid/feather-alt.svg new file mode 100755 index 0000000..934033b --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/feather-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/feather.svg b/public/assets/lib/fontawesome-free/svgs/solid/feather.svg new file mode 100755 index 0000000..583425b --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/feather.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/female.svg b/public/assets/lib/fontawesome-free/svgs/solid/female.svg new file mode 100755 index 0000000..3e3fbda --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/female.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/fighter-jet.svg b/public/assets/lib/fontawesome-free/svgs/solid/fighter-jet.svg new file mode 100755 index 0000000..61e4c4f --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/fighter-jet.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/file-alt.svg b/public/assets/lib/fontawesome-free/svgs/solid/file-alt.svg new file mode 100755 index 0000000..3952aaa --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/file-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/file-archive.svg b/public/assets/lib/fontawesome-free/svgs/solid/file-archive.svg new file mode 100755 index 0000000..f739651 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/file-archive.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/file-audio.svg b/public/assets/lib/fontawesome-free/svgs/solid/file-audio.svg new file mode 100755 index 0000000..e2933bd --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/file-audio.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/file-code.svg b/public/assets/lib/fontawesome-free/svgs/solid/file-code.svg new file mode 100755 index 0000000..e7600e2 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/file-code.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/file-contract.svg b/public/assets/lib/fontawesome-free/svgs/solid/file-contract.svg new file mode 100755 index 0000000..475e90d --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/file-contract.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/file-download.svg b/public/assets/lib/fontawesome-free/svgs/solid/file-download.svg new file mode 100755 index 0000000..9e84c3b --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/file-download.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/file-excel.svg b/public/assets/lib/fontawesome-free/svgs/solid/file-excel.svg new file mode 100755 index 0000000..1a5cc28 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/file-excel.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/file-export.svg b/public/assets/lib/fontawesome-free/svgs/solid/file-export.svg new file mode 100755 index 0000000..be19d97 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/file-export.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/file-image.svg b/public/assets/lib/fontawesome-free/svgs/solid/file-image.svg new file mode 100755 index 0000000..1951a01 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/file-image.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/file-import.svg b/public/assets/lib/fontawesome-free/svgs/solid/file-import.svg new file mode 100755 index 0000000..a2484f6 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/file-import.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/file-invoice-dollar.svg b/public/assets/lib/fontawesome-free/svgs/solid/file-invoice-dollar.svg new file mode 100755 index 0000000..96c8a69 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/file-invoice-dollar.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/file-invoice.svg b/public/assets/lib/fontawesome-free/svgs/solid/file-invoice.svg new file mode 100755 index 0000000..51963b9 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/file-invoice.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/file-medical-alt.svg b/public/assets/lib/fontawesome-free/svgs/solid/file-medical-alt.svg new file mode 100755 index 0000000..9da3886 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/file-medical-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/file-medical.svg b/public/assets/lib/fontawesome-free/svgs/solid/file-medical.svg new file mode 100755 index 0000000..bd71cb9 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/file-medical.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/file-pdf.svg b/public/assets/lib/fontawesome-free/svgs/solid/file-pdf.svg new file mode 100755 index 0000000..a3bc43c --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/file-pdf.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/file-powerpoint.svg b/public/assets/lib/fontawesome-free/svgs/solid/file-powerpoint.svg new file mode 100755 index 0000000..6d41800 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/file-powerpoint.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/file-prescription.svg b/public/assets/lib/fontawesome-free/svgs/solid/file-prescription.svg new file mode 100755 index 0000000..bfc7904 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/file-prescription.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/file-signature.svg b/public/assets/lib/fontawesome-free/svgs/solid/file-signature.svg new file mode 100755 index 0000000..1950124 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/file-signature.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/file-upload.svg b/public/assets/lib/fontawesome-free/svgs/solid/file-upload.svg new file mode 100755 index 0000000..5aad888 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/file-upload.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/file-video.svg b/public/assets/lib/fontawesome-free/svgs/solid/file-video.svg new file mode 100755 index 0000000..46ecd9c --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/file-video.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/file-word.svg b/public/assets/lib/fontawesome-free/svgs/solid/file-word.svg new file mode 100755 index 0000000..ffed9b0 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/file-word.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/file.svg b/public/assets/lib/fontawesome-free/svgs/solid/file.svg new file mode 100755 index 0000000..b8f22ac --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/file.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/fill-drip.svg b/public/assets/lib/fontawesome-free/svgs/solid/fill-drip.svg new file mode 100755 index 0000000..bc48477 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/fill-drip.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/fill.svg b/public/assets/lib/fontawesome-free/svgs/solid/fill.svg new file mode 100755 index 0000000..0653676 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/fill.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/film.svg b/public/assets/lib/fontawesome-free/svgs/solid/film.svg new file mode 100755 index 0000000..42cd0c2 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/film.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/filter.svg b/public/assets/lib/fontawesome-free/svgs/solid/filter.svg new file mode 100755 index 0000000..7ccd09f --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/filter.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/fingerprint.svg b/public/assets/lib/fontawesome-free/svgs/solid/fingerprint.svg new file mode 100755 index 0000000..6f11738 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/fingerprint.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/fire-extinguisher.svg b/public/assets/lib/fontawesome-free/svgs/solid/fire-extinguisher.svg new file mode 100755 index 0000000..4815e24 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/fire-extinguisher.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/fire.svg b/public/assets/lib/fontawesome-free/svgs/solid/fire.svg new file mode 100755 index 0000000..59dfef3 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/fire.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/first-aid.svg b/public/assets/lib/fontawesome-free/svgs/solid/first-aid.svg new file mode 100755 index 0000000..c6814e5 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/first-aid.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/fish.svg b/public/assets/lib/fontawesome-free/svgs/solid/fish.svg new file mode 100755 index 0000000..3553091 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/fish.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/flag-checkered.svg b/public/assets/lib/fontawesome-free/svgs/solid/flag-checkered.svg new file mode 100755 index 0000000..40a0328 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/flag-checkered.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/flag.svg b/public/assets/lib/fontawesome-free/svgs/solid/flag.svg new file mode 100755 index 0000000..7d928c1 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/flag.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/flask.svg b/public/assets/lib/fontawesome-free/svgs/solid/flask.svg new file mode 100755 index 0000000..b1f40c4 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/flask.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/flushed.svg b/public/assets/lib/fontawesome-free/svgs/solid/flushed.svg new file mode 100755 index 0000000..76111ed --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/flushed.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/folder-minus.svg b/public/assets/lib/fontawesome-free/svgs/solid/folder-minus.svg new file mode 100755 index 0000000..f6c50b7 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/folder-minus.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/folder-open.svg b/public/assets/lib/fontawesome-free/svgs/solid/folder-open.svg new file mode 100755 index 0000000..5689733 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/folder-open.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/folder-plus.svg b/public/assets/lib/fontawesome-free/svgs/solid/folder-plus.svg new file mode 100755 index 0000000..83dabdb --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/folder-plus.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/folder.svg b/public/assets/lib/fontawesome-free/svgs/solid/folder.svg new file mode 100755 index 0000000..4256b30 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/folder.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/font-awesome-logo-full.svg b/public/assets/lib/fontawesome-free/svgs/solid/font-awesome-logo-full.svg new file mode 100755 index 0000000..65e05f3 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/font-awesome-logo-full.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/font.svg b/public/assets/lib/fontawesome-free/svgs/solid/font.svg new file mode 100755 index 0000000..cd0b723 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/font.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/football-ball.svg b/public/assets/lib/fontawesome-free/svgs/solid/football-ball.svg new file mode 100755 index 0000000..6787e71 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/football-ball.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/forward.svg b/public/assets/lib/fontawesome-free/svgs/solid/forward.svg new file mode 100755 index 0000000..feddaa5 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/forward.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/frog.svg b/public/assets/lib/fontawesome-free/svgs/solid/frog.svg new file mode 100755 index 0000000..2095d48 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/frog.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/frown-open.svg b/public/assets/lib/fontawesome-free/svgs/solid/frown-open.svg new file mode 100755 index 0000000..7b6dc2d --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/frown-open.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/frown.svg b/public/assets/lib/fontawesome-free/svgs/solid/frown.svg new file mode 100755 index 0000000..0559e0e --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/frown.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/funnel-dollar.svg b/public/assets/lib/fontawesome-free/svgs/solid/funnel-dollar.svg new file mode 100755 index 0000000..abafe3b --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/funnel-dollar.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/futbol.svg b/public/assets/lib/fontawesome-free/svgs/solid/futbol.svg new file mode 100755 index 0000000..8213041 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/futbol.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/gamepad.svg b/public/assets/lib/fontawesome-free/svgs/solid/gamepad.svg new file mode 100755 index 0000000..fe36250 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/gamepad.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/gas-pump.svg b/public/assets/lib/fontawesome-free/svgs/solid/gas-pump.svg new file mode 100755 index 0000000..0a155b8 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/gas-pump.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/gavel.svg b/public/assets/lib/fontawesome-free/svgs/solid/gavel.svg new file mode 100755 index 0000000..a697238 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/gavel.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/gem.svg b/public/assets/lib/fontawesome-free/svgs/solid/gem.svg new file mode 100755 index 0000000..330fbd9 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/gem.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/genderless.svg b/public/assets/lib/fontawesome-free/svgs/solid/genderless.svg new file mode 100755 index 0000000..3d78748 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/genderless.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/gift.svg b/public/assets/lib/fontawesome-free/svgs/solid/gift.svg new file mode 100755 index 0000000..8c3d9b2 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/gift.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/glass-martini-alt.svg b/public/assets/lib/fontawesome-free/svgs/solid/glass-martini-alt.svg new file mode 100755 index 0000000..72c4e38 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/glass-martini-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/glass-martini.svg b/public/assets/lib/fontawesome-free/svgs/solid/glass-martini.svg new file mode 100755 index 0000000..5c67c12 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/glass-martini.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/glasses.svg b/public/assets/lib/fontawesome-free/svgs/solid/glasses.svg new file mode 100755 index 0000000..907abac --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/glasses.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/globe-africa.svg b/public/assets/lib/fontawesome-free/svgs/solid/globe-africa.svg new file mode 100755 index 0000000..ce2928c --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/globe-africa.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/globe-americas.svg b/public/assets/lib/fontawesome-free/svgs/solid/globe-americas.svg new file mode 100755 index 0000000..448171c --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/globe-americas.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/globe-asia.svg b/public/assets/lib/fontawesome-free/svgs/solid/globe-asia.svg new file mode 100755 index 0000000..3595f97 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/globe-asia.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/globe.svg b/public/assets/lib/fontawesome-free/svgs/solid/globe.svg new file mode 100755 index 0000000..9a5e6a5 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/globe.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/golf-ball.svg b/public/assets/lib/fontawesome-free/svgs/solid/golf-ball.svg new file mode 100755 index 0000000..3f2a8d1 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/golf-ball.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/gopuram.svg b/public/assets/lib/fontawesome-free/svgs/solid/gopuram.svg new file mode 100755 index 0000000..a3084ca --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/gopuram.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/graduation-cap.svg b/public/assets/lib/fontawesome-free/svgs/solid/graduation-cap.svg new file mode 100755 index 0000000..480b3d1 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/graduation-cap.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/greater-than-equal.svg b/public/assets/lib/fontawesome-free/svgs/solid/greater-than-equal.svg new file mode 100755 index 0000000..2e0bfb6 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/greater-than-equal.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/greater-than.svg b/public/assets/lib/fontawesome-free/svgs/solid/greater-than.svg new file mode 100755 index 0000000..8be984d --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/greater-than.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/grimace.svg b/public/assets/lib/fontawesome-free/svgs/solid/grimace.svg new file mode 100755 index 0000000..d54aa70 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/grimace.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/grin-alt.svg b/public/assets/lib/fontawesome-free/svgs/solid/grin-alt.svg new file mode 100755 index 0000000..28eab85 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/grin-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/grin-beam-sweat.svg b/public/assets/lib/fontawesome-free/svgs/solid/grin-beam-sweat.svg new file mode 100755 index 0000000..2121909 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/grin-beam-sweat.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/grin-beam.svg b/public/assets/lib/fontawesome-free/svgs/solid/grin-beam.svg new file mode 100755 index 0000000..e1bec3a --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/grin-beam.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/grin-hearts.svg b/public/assets/lib/fontawesome-free/svgs/solid/grin-hearts.svg new file mode 100755 index 0000000..26d5311 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/grin-hearts.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/grin-squint-tears.svg b/public/assets/lib/fontawesome-free/svgs/solid/grin-squint-tears.svg new file mode 100755 index 0000000..eec62b0 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/grin-squint-tears.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/grin-squint.svg b/public/assets/lib/fontawesome-free/svgs/solid/grin-squint.svg new file mode 100755 index 0000000..c142f0d --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/grin-squint.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/grin-stars.svg b/public/assets/lib/fontawesome-free/svgs/solid/grin-stars.svg new file mode 100755 index 0000000..1e58c9a --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/grin-stars.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/grin-tears.svg b/public/assets/lib/fontawesome-free/svgs/solid/grin-tears.svg new file mode 100755 index 0000000..582a630 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/grin-tears.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/grin-tongue-squint.svg b/public/assets/lib/fontawesome-free/svgs/solid/grin-tongue-squint.svg new file mode 100755 index 0000000..261267f --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/grin-tongue-squint.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/grin-tongue-wink.svg b/public/assets/lib/fontawesome-free/svgs/solid/grin-tongue-wink.svg new file mode 100755 index 0000000..4014d38 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/grin-tongue-wink.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/grin-tongue.svg b/public/assets/lib/fontawesome-free/svgs/solid/grin-tongue.svg new file mode 100755 index 0000000..b0d0c61 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/grin-tongue.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/grin-wink.svg b/public/assets/lib/fontawesome-free/svgs/solid/grin-wink.svg new file mode 100755 index 0000000..9f91819 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/grin-wink.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/grin.svg b/public/assets/lib/fontawesome-free/svgs/solid/grin.svg new file mode 100755 index 0000000..777ead8 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/grin.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/grip-horizontal.svg b/public/assets/lib/fontawesome-free/svgs/solid/grip-horizontal.svg new file mode 100755 index 0000000..50993fa --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/grip-horizontal.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/grip-vertical.svg b/public/assets/lib/fontawesome-free/svgs/solid/grip-vertical.svg new file mode 100755 index 0000000..fffc27e --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/grip-vertical.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/h-square.svg b/public/assets/lib/fontawesome-free/svgs/solid/h-square.svg new file mode 100755 index 0000000..bbf5369 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/h-square.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/hamsa.svg b/public/assets/lib/fontawesome-free/svgs/solid/hamsa.svg new file mode 100755 index 0000000..67a1d0e --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/hamsa.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/hand-holding-heart.svg b/public/assets/lib/fontawesome-free/svgs/solid/hand-holding-heart.svg new file mode 100755 index 0000000..79ae5f4 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/hand-holding-heart.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/hand-holding-usd.svg b/public/assets/lib/fontawesome-free/svgs/solid/hand-holding-usd.svg new file mode 100755 index 0000000..3641822 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/hand-holding-usd.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/hand-holding.svg b/public/assets/lib/fontawesome-free/svgs/solid/hand-holding.svg new file mode 100755 index 0000000..3ad890e --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/hand-holding.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/hand-lizard.svg b/public/assets/lib/fontawesome-free/svgs/solid/hand-lizard.svg new file mode 100755 index 0000000..e79e46c --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/hand-lizard.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/hand-paper.svg b/public/assets/lib/fontawesome-free/svgs/solid/hand-paper.svg new file mode 100755 index 0000000..e034ad0 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/hand-paper.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/hand-peace.svg b/public/assets/lib/fontawesome-free/svgs/solid/hand-peace.svg new file mode 100755 index 0000000..048f45a --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/hand-peace.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/hand-point-down.svg b/public/assets/lib/fontawesome-free/svgs/solid/hand-point-down.svg new file mode 100755 index 0000000..206d309 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/hand-point-down.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/hand-point-left.svg b/public/assets/lib/fontawesome-free/svgs/solid/hand-point-left.svg new file mode 100755 index 0000000..b9f34d9 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/hand-point-left.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/hand-point-right.svg b/public/assets/lib/fontawesome-free/svgs/solid/hand-point-right.svg new file mode 100755 index 0000000..13d3f42 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/hand-point-right.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/hand-point-up.svg b/public/assets/lib/fontawesome-free/svgs/solid/hand-point-up.svg new file mode 100755 index 0000000..dec69f3 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/hand-point-up.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/hand-pointer.svg b/public/assets/lib/fontawesome-free/svgs/solid/hand-pointer.svg new file mode 100755 index 0000000..dd81bf7 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/hand-pointer.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/hand-rock.svg b/public/assets/lib/fontawesome-free/svgs/solid/hand-rock.svg new file mode 100755 index 0000000..0990f57 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/hand-rock.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/hand-scissors.svg b/public/assets/lib/fontawesome-free/svgs/solid/hand-scissors.svg new file mode 100755 index 0000000..cc5813f --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/hand-scissors.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/hand-spock.svg b/public/assets/lib/fontawesome-free/svgs/solid/hand-spock.svg new file mode 100755 index 0000000..9e474e2 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/hand-spock.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/hands-helping.svg b/public/assets/lib/fontawesome-free/svgs/solid/hands-helping.svg new file mode 100755 index 0000000..09e2a8f --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/hands-helping.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/hands.svg b/public/assets/lib/fontawesome-free/svgs/solid/hands.svg new file mode 100755 index 0000000..4b0b416 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/hands.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/handshake.svg b/public/assets/lib/fontawesome-free/svgs/solid/handshake.svg new file mode 100755 index 0000000..727b750 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/handshake.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/hashtag.svg b/public/assets/lib/fontawesome-free/svgs/solid/hashtag.svg new file mode 100755 index 0000000..9840176 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/hashtag.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/haykal.svg b/public/assets/lib/fontawesome-free/svgs/solid/haykal.svg new file mode 100755 index 0000000..0000f4a --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/haykal.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/hdd.svg b/public/assets/lib/fontawesome-free/svgs/solid/hdd.svg new file mode 100755 index 0000000..176cdcb --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/hdd.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/heading.svg b/public/assets/lib/fontawesome-free/svgs/solid/heading.svg new file mode 100755 index 0000000..41a9c14 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/heading.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/headphones-alt.svg b/public/assets/lib/fontawesome-free/svgs/solid/headphones-alt.svg new file mode 100755 index 0000000..648d467 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/headphones-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/headphones.svg b/public/assets/lib/fontawesome-free/svgs/solid/headphones.svg new file mode 100755 index 0000000..f7b6b7e --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/headphones.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/headset.svg b/public/assets/lib/fontawesome-free/svgs/solid/headset.svg new file mode 100755 index 0000000..cb3bf7f --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/headset.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/heart.svg b/public/assets/lib/fontawesome-free/svgs/solid/heart.svg new file mode 100755 index 0000000..9f8fed2 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/heart.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/heartbeat.svg b/public/assets/lib/fontawesome-free/svgs/solid/heartbeat.svg new file mode 100755 index 0000000..9c8219f --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/heartbeat.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/helicopter.svg b/public/assets/lib/fontawesome-free/svgs/solid/helicopter.svg new file mode 100755 index 0000000..1775b84 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/helicopter.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/highlighter.svg b/public/assets/lib/fontawesome-free/svgs/solid/highlighter.svg new file mode 100755 index 0000000..309f385 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/highlighter.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/history.svg b/public/assets/lib/fontawesome-free/svgs/solid/history.svg new file mode 100755 index 0000000..4cd7d00 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/history.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/hockey-puck.svg b/public/assets/lib/fontawesome-free/svgs/solid/hockey-puck.svg new file mode 100755 index 0000000..d437dec --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/hockey-puck.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/home.svg b/public/assets/lib/fontawesome-free/svgs/solid/home.svg new file mode 100755 index 0000000..e776e9c --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/home.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/hospital-alt.svg b/public/assets/lib/fontawesome-free/svgs/solid/hospital-alt.svg new file mode 100755 index 0000000..4f2fa40 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/hospital-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/hospital-symbol.svg b/public/assets/lib/fontawesome-free/svgs/solid/hospital-symbol.svg new file mode 100755 index 0000000..ab3587f --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/hospital-symbol.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/hospital.svg b/public/assets/lib/fontawesome-free/svgs/solid/hospital.svg new file mode 100755 index 0000000..d13b9fb --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/hospital.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/hot-tub.svg b/public/assets/lib/fontawesome-free/svgs/solid/hot-tub.svg new file mode 100755 index 0000000..d9b81dd --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/hot-tub.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/hotel.svg b/public/assets/lib/fontawesome-free/svgs/solid/hotel.svg new file mode 100755 index 0000000..e52308a --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/hotel.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/hourglass-end.svg b/public/assets/lib/fontawesome-free/svgs/solid/hourglass-end.svg new file mode 100755 index 0000000..dfa6d4f --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/hourglass-end.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/hourglass-half.svg b/public/assets/lib/fontawesome-free/svgs/solid/hourglass-half.svg new file mode 100755 index 0000000..c6acfed --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/hourglass-half.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/hourglass-start.svg b/public/assets/lib/fontawesome-free/svgs/solid/hourglass-start.svg new file mode 100755 index 0000000..3a585ba --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/hourglass-start.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/hourglass.svg b/public/assets/lib/fontawesome-free/svgs/solid/hourglass.svg new file mode 100755 index 0000000..afac008 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/hourglass.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/i-cursor.svg b/public/assets/lib/fontawesome-free/svgs/solid/i-cursor.svg new file mode 100755 index 0000000..5c94b89 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/i-cursor.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/id-badge.svg b/public/assets/lib/fontawesome-free/svgs/solid/id-badge.svg new file mode 100755 index 0000000..5081043 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/id-badge.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/id-card-alt.svg b/public/assets/lib/fontawesome-free/svgs/solid/id-card-alt.svg new file mode 100755 index 0000000..63dd220 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/id-card-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/id-card.svg b/public/assets/lib/fontawesome-free/svgs/solid/id-card.svg new file mode 100755 index 0000000..0b4680c --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/id-card.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/image.svg b/public/assets/lib/fontawesome-free/svgs/solid/image.svg new file mode 100755 index 0000000..745ee73 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/image.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/images.svg b/public/assets/lib/fontawesome-free/svgs/solid/images.svg new file mode 100755 index 0000000..1e18dba --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/images.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/inbox.svg b/public/assets/lib/fontawesome-free/svgs/solid/inbox.svg new file mode 100755 index 0000000..c28adcf --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/inbox.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/indent.svg b/public/assets/lib/fontawesome-free/svgs/solid/indent.svg new file mode 100755 index 0000000..b55698d --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/indent.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/industry.svg b/public/assets/lib/fontawesome-free/svgs/solid/industry.svg new file mode 100755 index 0000000..3fff008 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/industry.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/infinity.svg b/public/assets/lib/fontawesome-free/svgs/solid/infinity.svg new file mode 100755 index 0000000..2276f35 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/infinity.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/info-circle.svg b/public/assets/lib/fontawesome-free/svgs/solid/info-circle.svg new file mode 100755 index 0000000..4469156 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/info-circle.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/info.svg b/public/assets/lib/fontawesome-free/svgs/solid/info.svg new file mode 100755 index 0000000..27e8ad6 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/info.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/italic.svg b/public/assets/lib/fontawesome-free/svgs/solid/italic.svg new file mode 100755 index 0000000..cc8b992 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/italic.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/jedi.svg b/public/assets/lib/fontawesome-free/svgs/solid/jedi.svg new file mode 100755 index 0000000..feca2b6 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/jedi.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/joint.svg b/public/assets/lib/fontawesome-free/svgs/solid/joint.svg new file mode 100755 index 0000000..6bf3aef --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/joint.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/journal-whills.svg b/public/assets/lib/fontawesome-free/svgs/solid/journal-whills.svg new file mode 100755 index 0000000..92f922b --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/journal-whills.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/kaaba.svg b/public/assets/lib/fontawesome-free/svgs/solid/kaaba.svg new file mode 100755 index 0000000..884b2ee --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/kaaba.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/key.svg b/public/assets/lib/fontawesome-free/svgs/solid/key.svg new file mode 100755 index 0000000..7848ac2 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/key.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/keyboard.svg b/public/assets/lib/fontawesome-free/svgs/solid/keyboard.svg new file mode 100755 index 0000000..dc00d6c --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/keyboard.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/khanda.svg b/public/assets/lib/fontawesome-free/svgs/solid/khanda.svg new file mode 100755 index 0000000..e1b77dc --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/khanda.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/kiss-beam.svg b/public/assets/lib/fontawesome-free/svgs/solid/kiss-beam.svg new file mode 100755 index 0000000..16ff2b8 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/kiss-beam.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/kiss-wink-heart.svg b/public/assets/lib/fontawesome-free/svgs/solid/kiss-wink-heart.svg new file mode 100755 index 0000000..8d9c5d7 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/kiss-wink-heart.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/kiss.svg b/public/assets/lib/fontawesome-free/svgs/solid/kiss.svg new file mode 100755 index 0000000..be52976 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/kiss.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/kiwi-bird.svg b/public/assets/lib/fontawesome-free/svgs/solid/kiwi-bird.svg new file mode 100755 index 0000000..59c933b --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/kiwi-bird.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/landmark.svg b/public/assets/lib/fontawesome-free/svgs/solid/landmark.svg new file mode 100755 index 0000000..3c6d8d8 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/landmark.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/language.svg b/public/assets/lib/fontawesome-free/svgs/solid/language.svg new file mode 100755 index 0000000..5f7bbd9 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/language.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/laptop-code.svg b/public/assets/lib/fontawesome-free/svgs/solid/laptop-code.svg new file mode 100755 index 0000000..828a11a --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/laptop-code.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/laptop.svg b/public/assets/lib/fontawesome-free/svgs/solid/laptop.svg new file mode 100755 index 0000000..627c23f --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/laptop.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/laugh-beam.svg b/public/assets/lib/fontawesome-free/svgs/solid/laugh-beam.svg new file mode 100755 index 0000000..74679b8 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/laugh-beam.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/laugh-squint.svg b/public/assets/lib/fontawesome-free/svgs/solid/laugh-squint.svg new file mode 100755 index 0000000..678ba90 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/laugh-squint.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/laugh-wink.svg b/public/assets/lib/fontawesome-free/svgs/solid/laugh-wink.svg new file mode 100755 index 0000000..2f3f774 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/laugh-wink.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/laugh.svg b/public/assets/lib/fontawesome-free/svgs/solid/laugh.svg new file mode 100755 index 0000000..68c2fd4 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/laugh.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/layer-group.svg b/public/assets/lib/fontawesome-free/svgs/solid/layer-group.svg new file mode 100755 index 0000000..4d7022e --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/layer-group.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/leaf.svg b/public/assets/lib/fontawesome-free/svgs/solid/leaf.svg new file mode 100755 index 0000000..8ddae69 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/leaf.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/lemon.svg b/public/assets/lib/fontawesome-free/svgs/solid/lemon.svg new file mode 100755 index 0000000..f83a561 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/lemon.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/less-than-equal.svg b/public/assets/lib/fontawesome-free/svgs/solid/less-than-equal.svg new file mode 100755 index 0000000..5517bdc --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/less-than-equal.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/less-than.svg b/public/assets/lib/fontawesome-free/svgs/solid/less-than.svg new file mode 100755 index 0000000..4b6b083 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/less-than.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/level-down-alt.svg b/public/assets/lib/fontawesome-free/svgs/solid/level-down-alt.svg new file mode 100755 index 0000000..b047155 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/level-down-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/level-up-alt.svg b/public/assets/lib/fontawesome-free/svgs/solid/level-up-alt.svg new file mode 100755 index 0000000..81dfe73 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/level-up-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/life-ring.svg b/public/assets/lib/fontawesome-free/svgs/solid/life-ring.svg new file mode 100755 index 0000000..ff5895e --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/life-ring.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/lightbulb.svg b/public/assets/lib/fontawesome-free/svgs/solid/lightbulb.svg new file mode 100755 index 0000000..982d15f --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/lightbulb.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/link.svg b/public/assets/lib/fontawesome-free/svgs/solid/link.svg new file mode 100755 index 0000000..07d6a8b --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/link.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/lira-sign.svg b/public/assets/lib/fontawesome-free/svgs/solid/lira-sign.svg new file mode 100755 index 0000000..25aa89b --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/lira-sign.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/list-alt.svg b/public/assets/lib/fontawesome-free/svgs/solid/list-alt.svg new file mode 100755 index 0000000..db950f3 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/list-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/list-ol.svg b/public/assets/lib/fontawesome-free/svgs/solid/list-ol.svg new file mode 100755 index 0000000..29e4379 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/list-ol.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/list-ul.svg b/public/assets/lib/fontawesome-free/svgs/solid/list-ul.svg new file mode 100755 index 0000000..9222857 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/list-ul.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/list.svg b/public/assets/lib/fontawesome-free/svgs/solid/list.svg new file mode 100755 index 0000000..978f5b8 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/list.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/location-arrow.svg b/public/assets/lib/fontawesome-free/svgs/solid/location-arrow.svg new file mode 100755 index 0000000..7805c7e --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/location-arrow.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/lock-open.svg b/public/assets/lib/fontawesome-free/svgs/solid/lock-open.svg new file mode 100755 index 0000000..1adab57 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/lock-open.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/lock.svg b/public/assets/lib/fontawesome-free/svgs/solid/lock.svg new file mode 100755 index 0000000..c16a18e --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/lock.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/long-arrow-alt-down.svg b/public/assets/lib/fontawesome-free/svgs/solid/long-arrow-alt-down.svg new file mode 100755 index 0000000..9af5a0a --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/long-arrow-alt-down.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/long-arrow-alt-left.svg b/public/assets/lib/fontawesome-free/svgs/solid/long-arrow-alt-left.svg new file mode 100755 index 0000000..c88240d --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/long-arrow-alt-left.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/long-arrow-alt-right.svg b/public/assets/lib/fontawesome-free/svgs/solid/long-arrow-alt-right.svg new file mode 100755 index 0000000..1612d8e --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/long-arrow-alt-right.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/long-arrow-alt-up.svg b/public/assets/lib/fontawesome-free/svgs/solid/long-arrow-alt-up.svg new file mode 100755 index 0000000..6a746ca --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/long-arrow-alt-up.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/low-vision.svg b/public/assets/lib/fontawesome-free/svgs/solid/low-vision.svg new file mode 100755 index 0000000..0b667d7 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/low-vision.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/luggage-cart.svg b/public/assets/lib/fontawesome-free/svgs/solid/luggage-cart.svg new file mode 100755 index 0000000..b1aacd7 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/luggage-cart.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/magic.svg b/public/assets/lib/fontawesome-free/svgs/solid/magic.svg new file mode 100755 index 0000000..7eae9d4 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/magic.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/magnet.svg b/public/assets/lib/fontawesome-free/svgs/solid/magnet.svg new file mode 100755 index 0000000..f80e9b4 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/magnet.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/mail-bulk.svg b/public/assets/lib/fontawesome-free/svgs/solid/mail-bulk.svg new file mode 100755 index 0000000..9517005 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/mail-bulk.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/male.svg b/public/assets/lib/fontawesome-free/svgs/solid/male.svg new file mode 100755 index 0000000..67b2fa0 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/male.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/map-marked-alt.svg b/public/assets/lib/fontawesome-free/svgs/solid/map-marked-alt.svg new file mode 100755 index 0000000..00f47fe --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/map-marked-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/map-marked.svg b/public/assets/lib/fontawesome-free/svgs/solid/map-marked.svg new file mode 100755 index 0000000..3462e9e --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/map-marked.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/map-marker-alt.svg b/public/assets/lib/fontawesome-free/svgs/solid/map-marker-alt.svg new file mode 100755 index 0000000..a97f6a9 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/map-marker-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/map-marker.svg b/public/assets/lib/fontawesome-free/svgs/solid/map-marker.svg new file mode 100755 index 0000000..3cabfa5 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/map-marker.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/map-pin.svg b/public/assets/lib/fontawesome-free/svgs/solid/map-pin.svg new file mode 100755 index 0000000..10e8505 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/map-pin.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/map-signs.svg b/public/assets/lib/fontawesome-free/svgs/solid/map-signs.svg new file mode 100755 index 0000000..40cec83 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/map-signs.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/map.svg b/public/assets/lib/fontawesome-free/svgs/solid/map.svg new file mode 100755 index 0000000..2af1486 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/map.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/marker.svg b/public/assets/lib/fontawesome-free/svgs/solid/marker.svg new file mode 100755 index 0000000..35c181d --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/marker.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/mars-double.svg b/public/assets/lib/fontawesome-free/svgs/solid/mars-double.svg new file mode 100755 index 0000000..e3a5a82 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/mars-double.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/mars-stroke-h.svg b/public/assets/lib/fontawesome-free/svgs/solid/mars-stroke-h.svg new file mode 100755 index 0000000..ca4b96a --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/mars-stroke-h.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/mars-stroke-v.svg b/public/assets/lib/fontawesome-free/svgs/solid/mars-stroke-v.svg new file mode 100755 index 0000000..5457af6 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/mars-stroke-v.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/mars-stroke.svg b/public/assets/lib/fontawesome-free/svgs/solid/mars-stroke.svg new file mode 100755 index 0000000..8b8d34a --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/mars-stroke.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/mars.svg b/public/assets/lib/fontawesome-free/svgs/solid/mars.svg new file mode 100755 index 0000000..030ed04 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/mars.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/medal.svg b/public/assets/lib/fontawesome-free/svgs/solid/medal.svg new file mode 100755 index 0000000..3045035 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/medal.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/medkit.svg b/public/assets/lib/fontawesome-free/svgs/solid/medkit.svg new file mode 100755 index 0000000..09dff8a --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/medkit.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/meh-blank.svg b/public/assets/lib/fontawesome-free/svgs/solid/meh-blank.svg new file mode 100755 index 0000000..4040548 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/meh-blank.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/meh-rolling-eyes.svg b/public/assets/lib/fontawesome-free/svgs/solid/meh-rolling-eyes.svg new file mode 100755 index 0000000..6d94187 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/meh-rolling-eyes.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/meh.svg b/public/assets/lib/fontawesome-free/svgs/solid/meh.svg new file mode 100755 index 0000000..fcd7538 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/meh.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/memory.svg b/public/assets/lib/fontawesome-free/svgs/solid/memory.svg new file mode 100755 index 0000000..fc3d87d --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/memory.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/menorah.svg b/public/assets/lib/fontawesome-free/svgs/solid/menorah.svg new file mode 100755 index 0000000..7294e70 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/menorah.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/mercury.svg b/public/assets/lib/fontawesome-free/svgs/solid/mercury.svg new file mode 100755 index 0000000..36a00a5 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/mercury.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/microchip.svg b/public/assets/lib/fontawesome-free/svgs/solid/microchip.svg new file mode 100755 index 0000000..c620b7a --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/microchip.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/microphone-alt-slash.svg b/public/assets/lib/fontawesome-free/svgs/solid/microphone-alt-slash.svg new file mode 100755 index 0000000..2b1d8a5 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/microphone-alt-slash.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/microphone-alt.svg b/public/assets/lib/fontawesome-free/svgs/solid/microphone-alt.svg new file mode 100755 index 0000000..24197fe --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/microphone-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/microphone-slash.svg b/public/assets/lib/fontawesome-free/svgs/solid/microphone-slash.svg new file mode 100755 index 0000000..42b52e3 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/microphone-slash.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/microphone.svg b/public/assets/lib/fontawesome-free/svgs/solid/microphone.svg new file mode 100755 index 0000000..aae37a6 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/microphone.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/microscope.svg b/public/assets/lib/fontawesome-free/svgs/solid/microscope.svg new file mode 100755 index 0000000..2c2237b --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/microscope.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/minus-circle.svg b/public/assets/lib/fontawesome-free/svgs/solid/minus-circle.svg new file mode 100755 index 0000000..b30757f --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/minus-circle.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/minus-square.svg b/public/assets/lib/fontawesome-free/svgs/solid/minus-square.svg new file mode 100755 index 0000000..93344da --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/minus-square.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/minus.svg b/public/assets/lib/fontawesome-free/svgs/solid/minus.svg new file mode 100755 index 0000000..e4555a4 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/minus.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/mobile-alt.svg b/public/assets/lib/fontawesome-free/svgs/solid/mobile-alt.svg new file mode 100755 index 0000000..71368b3 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/mobile-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/mobile.svg b/public/assets/lib/fontawesome-free/svgs/solid/mobile.svg new file mode 100755 index 0000000..c33932b --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/mobile.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/money-bill-alt.svg b/public/assets/lib/fontawesome-free/svgs/solid/money-bill-alt.svg new file mode 100755 index 0000000..9c1dd4c --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/money-bill-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/money-bill-wave-alt.svg b/public/assets/lib/fontawesome-free/svgs/solid/money-bill-wave-alt.svg new file mode 100755 index 0000000..e088dc3 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/money-bill-wave-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/money-bill-wave.svg b/public/assets/lib/fontawesome-free/svgs/solid/money-bill-wave.svg new file mode 100755 index 0000000..fbfdd23 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/money-bill-wave.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/money-bill.svg b/public/assets/lib/fontawesome-free/svgs/solid/money-bill.svg new file mode 100755 index 0000000..0e91fcd --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/money-bill.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/money-check-alt.svg b/public/assets/lib/fontawesome-free/svgs/solid/money-check-alt.svg new file mode 100755 index 0000000..c777f97 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/money-check-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/money-check.svg b/public/assets/lib/fontawesome-free/svgs/solid/money-check.svg new file mode 100755 index 0000000..533981b --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/money-check.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/monument.svg b/public/assets/lib/fontawesome-free/svgs/solid/monument.svg new file mode 100755 index 0000000..1a690ab --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/monument.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/moon.svg b/public/assets/lib/fontawesome-free/svgs/solid/moon.svg new file mode 100755 index 0000000..4c4f483 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/moon.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/mortar-pestle.svg b/public/assets/lib/fontawesome-free/svgs/solid/mortar-pestle.svg new file mode 100755 index 0000000..d3769bf --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/mortar-pestle.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/mosque.svg b/public/assets/lib/fontawesome-free/svgs/solid/mosque.svg new file mode 100755 index 0000000..5934c3b --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/mosque.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/motorcycle.svg b/public/assets/lib/fontawesome-free/svgs/solid/motorcycle.svg new file mode 100755 index 0000000..93dd16b --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/motorcycle.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/mouse-pointer.svg b/public/assets/lib/fontawesome-free/svgs/solid/mouse-pointer.svg new file mode 100755 index 0000000..e9215b6 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/mouse-pointer.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/music.svg b/public/assets/lib/fontawesome-free/svgs/solid/music.svg new file mode 100755 index 0000000..11f303b --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/music.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/neuter.svg b/public/assets/lib/fontawesome-free/svgs/solid/neuter.svg new file mode 100755 index 0000000..7a44e32 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/neuter.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/newspaper.svg b/public/assets/lib/fontawesome-free/svgs/solid/newspaper.svg new file mode 100755 index 0000000..2c9b97b --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/newspaper.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/not-equal.svg b/public/assets/lib/fontawesome-free/svgs/solid/not-equal.svg new file mode 100755 index 0000000..945efd8 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/not-equal.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/notes-medical.svg b/public/assets/lib/fontawesome-free/svgs/solid/notes-medical.svg new file mode 100755 index 0000000..dbcb87c --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/notes-medical.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/object-group.svg b/public/assets/lib/fontawesome-free/svgs/solid/object-group.svg new file mode 100755 index 0000000..afc5ae7 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/object-group.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/object-ungroup.svg b/public/assets/lib/fontawesome-free/svgs/solid/object-ungroup.svg new file mode 100755 index 0000000..5aedd2b --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/object-ungroup.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/oil-can.svg b/public/assets/lib/fontawesome-free/svgs/solid/oil-can.svg new file mode 100755 index 0000000..c759e02 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/oil-can.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/om.svg b/public/assets/lib/fontawesome-free/svgs/solid/om.svg new file mode 100755 index 0000000..0f089b2 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/om.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/outdent.svg b/public/assets/lib/fontawesome-free/svgs/solid/outdent.svg new file mode 100755 index 0000000..42c459e --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/outdent.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/paint-brush.svg b/public/assets/lib/fontawesome-free/svgs/solid/paint-brush.svg new file mode 100755 index 0000000..2cd7826 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/paint-brush.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/paint-roller.svg b/public/assets/lib/fontawesome-free/svgs/solid/paint-roller.svg new file mode 100755 index 0000000..a6011b9 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/paint-roller.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/palette.svg b/public/assets/lib/fontawesome-free/svgs/solid/palette.svg new file mode 100755 index 0000000..b7982ab --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/palette.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/pallet.svg b/public/assets/lib/fontawesome-free/svgs/solid/pallet.svg new file mode 100755 index 0000000..4a3f8ff --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/pallet.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/paper-plane.svg b/public/assets/lib/fontawesome-free/svgs/solid/paper-plane.svg new file mode 100755 index 0000000..6613e07 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/paper-plane.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/paperclip.svg b/public/assets/lib/fontawesome-free/svgs/solid/paperclip.svg new file mode 100755 index 0000000..f94ca07 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/paperclip.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/parachute-box.svg b/public/assets/lib/fontawesome-free/svgs/solid/parachute-box.svg new file mode 100755 index 0000000..f4c2a03 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/parachute-box.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/paragraph.svg b/public/assets/lib/fontawesome-free/svgs/solid/paragraph.svg new file mode 100755 index 0000000..c17bd01 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/paragraph.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/parking.svg b/public/assets/lib/fontawesome-free/svgs/solid/parking.svg new file mode 100755 index 0000000..46bf7f9 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/parking.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/passport.svg b/public/assets/lib/fontawesome-free/svgs/solid/passport.svg new file mode 100755 index 0000000..665f440 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/passport.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/pastafarianism.svg b/public/assets/lib/fontawesome-free/svgs/solid/pastafarianism.svg new file mode 100755 index 0000000..6a3b4ce --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/pastafarianism.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/paste.svg b/public/assets/lib/fontawesome-free/svgs/solid/paste.svg new file mode 100755 index 0000000..16e8fae --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/paste.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/pause-circle.svg b/public/assets/lib/fontawesome-free/svgs/solid/pause-circle.svg new file mode 100755 index 0000000..8278902 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/pause-circle.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/pause.svg b/public/assets/lib/fontawesome-free/svgs/solid/pause.svg new file mode 100755 index 0000000..324a99e --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/pause.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/paw.svg b/public/assets/lib/fontawesome-free/svgs/solid/paw.svg new file mode 100755 index 0000000..00eace8 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/paw.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/peace.svg b/public/assets/lib/fontawesome-free/svgs/solid/peace.svg new file mode 100755 index 0000000..8d0cb41 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/peace.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/pen-alt.svg b/public/assets/lib/fontawesome-free/svgs/solid/pen-alt.svg new file mode 100755 index 0000000..88c9358 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/pen-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/pen-fancy.svg b/public/assets/lib/fontawesome-free/svgs/solid/pen-fancy.svg new file mode 100755 index 0000000..af9d7b7 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/pen-fancy.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/pen-nib.svg b/public/assets/lib/fontawesome-free/svgs/solid/pen-nib.svg new file mode 100755 index 0000000..0c4406e --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/pen-nib.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/pen-square.svg b/public/assets/lib/fontawesome-free/svgs/solid/pen-square.svg new file mode 100755 index 0000000..16055a7 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/pen-square.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/pen.svg b/public/assets/lib/fontawesome-free/svgs/solid/pen.svg new file mode 100755 index 0000000..2ec3e99 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/pen.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/pencil-alt.svg b/public/assets/lib/fontawesome-free/svgs/solid/pencil-alt.svg new file mode 100755 index 0000000..58abe03 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/pencil-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/pencil-ruler.svg b/public/assets/lib/fontawesome-free/svgs/solid/pencil-ruler.svg new file mode 100755 index 0000000..3239800 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/pencil-ruler.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/people-carry.svg b/public/assets/lib/fontawesome-free/svgs/solid/people-carry.svg new file mode 100755 index 0000000..8637513 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/people-carry.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/percent.svg b/public/assets/lib/fontawesome-free/svgs/solid/percent.svg new file mode 100755 index 0000000..f624de9 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/percent.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/percentage.svg b/public/assets/lib/fontawesome-free/svgs/solid/percentage.svg new file mode 100755 index 0000000..a70816f --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/percentage.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/phone-slash.svg b/public/assets/lib/fontawesome-free/svgs/solid/phone-slash.svg new file mode 100755 index 0000000..b13c132 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/phone-slash.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/phone-square.svg b/public/assets/lib/fontawesome-free/svgs/solid/phone-square.svg new file mode 100755 index 0000000..762f51b --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/phone-square.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/phone-volume.svg b/public/assets/lib/fontawesome-free/svgs/solid/phone-volume.svg new file mode 100755 index 0000000..2a846c2 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/phone-volume.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/phone.svg b/public/assets/lib/fontawesome-free/svgs/solid/phone.svg new file mode 100755 index 0000000..d59ff68 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/phone.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/piggy-bank.svg b/public/assets/lib/fontawesome-free/svgs/solid/piggy-bank.svg new file mode 100755 index 0000000..4a1f230 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/piggy-bank.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/pills.svg b/public/assets/lib/fontawesome-free/svgs/solid/pills.svg new file mode 100755 index 0000000..92234b2 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/pills.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/place-of-worship.svg b/public/assets/lib/fontawesome-free/svgs/solid/place-of-worship.svg new file mode 100755 index 0000000..9a00b55 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/place-of-worship.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/plane-arrival.svg b/public/assets/lib/fontawesome-free/svgs/solid/plane-arrival.svg new file mode 100755 index 0000000..6f209f9 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/plane-arrival.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/plane-departure.svg b/public/assets/lib/fontawesome-free/svgs/solid/plane-departure.svg new file mode 100755 index 0000000..4fc53d1 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/plane-departure.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/plane.svg b/public/assets/lib/fontawesome-free/svgs/solid/plane.svg new file mode 100755 index 0000000..01c117d --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/plane.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/play-circle.svg b/public/assets/lib/fontawesome-free/svgs/solid/play-circle.svg new file mode 100755 index 0000000..2f53f23 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/play-circle.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/play.svg b/public/assets/lib/fontawesome-free/svgs/solid/play.svg new file mode 100755 index 0000000..2ad868b --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/play.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/plug.svg b/public/assets/lib/fontawesome-free/svgs/solid/plug.svg new file mode 100755 index 0000000..fb8141c --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/plug.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/plus-circle.svg b/public/assets/lib/fontawesome-free/svgs/solid/plus-circle.svg new file mode 100755 index 0000000..eb8d6da --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/plus-circle.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/plus-square.svg b/public/assets/lib/fontawesome-free/svgs/solid/plus-square.svg new file mode 100755 index 0000000..8f67cfd --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/plus-square.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/plus.svg b/public/assets/lib/fontawesome-free/svgs/solid/plus.svg new file mode 100755 index 0000000..afe5d63 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/plus.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/podcast.svg b/public/assets/lib/fontawesome-free/svgs/solid/podcast.svg new file mode 100755 index 0000000..524f890 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/podcast.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/poll-h.svg b/public/assets/lib/fontawesome-free/svgs/solid/poll-h.svg new file mode 100755 index 0000000..4c0d548 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/poll-h.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/poll.svg b/public/assets/lib/fontawesome-free/svgs/solid/poll.svg new file mode 100755 index 0000000..5d824b4 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/poll.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/poo.svg b/public/assets/lib/fontawesome-free/svgs/solid/poo.svg new file mode 100755 index 0000000..7c8084e --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/poo.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/poop.svg b/public/assets/lib/fontawesome-free/svgs/solid/poop.svg new file mode 100755 index 0000000..10203fe --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/poop.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/portrait.svg b/public/assets/lib/fontawesome-free/svgs/solid/portrait.svg new file mode 100755 index 0000000..91e4f62 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/portrait.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/pound-sign.svg b/public/assets/lib/fontawesome-free/svgs/solid/pound-sign.svg new file mode 100755 index 0000000..acdab05 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/pound-sign.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/power-off.svg b/public/assets/lib/fontawesome-free/svgs/solid/power-off.svg new file mode 100755 index 0000000..8d7863a --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/power-off.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/pray.svg b/public/assets/lib/fontawesome-free/svgs/solid/pray.svg new file mode 100755 index 0000000..f00b5f8 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/pray.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/praying-hands.svg b/public/assets/lib/fontawesome-free/svgs/solid/praying-hands.svg new file mode 100755 index 0000000..b434b98 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/praying-hands.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/prescription-bottle-alt.svg b/public/assets/lib/fontawesome-free/svgs/solid/prescription-bottle-alt.svg new file mode 100755 index 0000000..a9a2e34 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/prescription-bottle-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/prescription-bottle.svg b/public/assets/lib/fontawesome-free/svgs/solid/prescription-bottle.svg new file mode 100755 index 0000000..69ba225 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/prescription-bottle.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/prescription.svg b/public/assets/lib/fontawesome-free/svgs/solid/prescription.svg new file mode 100755 index 0000000..d880c37 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/prescription.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/print.svg b/public/assets/lib/fontawesome-free/svgs/solid/print.svg new file mode 100755 index 0000000..882a110 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/print.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/procedures.svg b/public/assets/lib/fontawesome-free/svgs/solid/procedures.svg new file mode 100755 index 0000000..a2da404 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/procedures.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/project-diagram.svg b/public/assets/lib/fontawesome-free/svgs/solid/project-diagram.svg new file mode 100755 index 0000000..aca0e42 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/project-diagram.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/puzzle-piece.svg b/public/assets/lib/fontawesome-free/svgs/solid/puzzle-piece.svg new file mode 100755 index 0000000..d0e1d72 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/puzzle-piece.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/qrcode.svg b/public/assets/lib/fontawesome-free/svgs/solid/qrcode.svg new file mode 100755 index 0000000..da2b188 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/qrcode.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/question-circle.svg b/public/assets/lib/fontawesome-free/svgs/solid/question-circle.svg new file mode 100755 index 0000000..f9d22b2 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/question-circle.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/question.svg b/public/assets/lib/fontawesome-free/svgs/solid/question.svg new file mode 100755 index 0000000..79aa261 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/question.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/quidditch.svg b/public/assets/lib/fontawesome-free/svgs/solid/quidditch.svg new file mode 100755 index 0000000..c9c73c5 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/quidditch.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/quote-left.svg b/public/assets/lib/fontawesome-free/svgs/solid/quote-left.svg new file mode 100755 index 0000000..20a63f3 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/quote-left.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/quote-right.svg b/public/assets/lib/fontawesome-free/svgs/solid/quote-right.svg new file mode 100755 index 0000000..c62ecc3 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/quote-right.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/quran.svg b/public/assets/lib/fontawesome-free/svgs/solid/quran.svg new file mode 100755 index 0000000..e118592 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/quran.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/random.svg b/public/assets/lib/fontawesome-free/svgs/solid/random.svg new file mode 100755 index 0000000..1a7aa91 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/random.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/receipt.svg b/public/assets/lib/fontawesome-free/svgs/solid/receipt.svg new file mode 100755 index 0000000..cc3458f --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/receipt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/recycle.svg b/public/assets/lib/fontawesome-free/svgs/solid/recycle.svg new file mode 100755 index 0000000..13f8f80 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/recycle.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/redo-alt.svg b/public/assets/lib/fontawesome-free/svgs/solid/redo-alt.svg new file mode 100755 index 0000000..a4fc8fd --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/redo-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/redo.svg b/public/assets/lib/fontawesome-free/svgs/solid/redo.svg new file mode 100755 index 0000000..a1fa47f --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/redo.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/registered.svg b/public/assets/lib/fontawesome-free/svgs/solid/registered.svg new file mode 100755 index 0000000..5b7edcb --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/registered.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/reply-all.svg b/public/assets/lib/fontawesome-free/svgs/solid/reply-all.svg new file mode 100755 index 0000000..eec675f --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/reply-all.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/reply.svg b/public/assets/lib/fontawesome-free/svgs/solid/reply.svg new file mode 100755 index 0000000..3d452dc --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/reply.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/retweet.svg b/public/assets/lib/fontawesome-free/svgs/solid/retweet.svg new file mode 100755 index 0000000..8e26eb5 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/retweet.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/ribbon.svg b/public/assets/lib/fontawesome-free/svgs/solid/ribbon.svg new file mode 100755 index 0000000..34496fd --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/ribbon.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/road.svg b/public/assets/lib/fontawesome-free/svgs/solid/road.svg new file mode 100755 index 0000000..c9a67d6 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/road.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/robot.svg b/public/assets/lib/fontawesome-free/svgs/solid/robot.svg new file mode 100755 index 0000000..e4016d4 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/robot.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/rocket.svg b/public/assets/lib/fontawesome-free/svgs/solid/rocket.svg new file mode 100755 index 0000000..01b598f --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/rocket.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/route.svg b/public/assets/lib/fontawesome-free/svgs/solid/route.svg new file mode 100755 index 0000000..825281a --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/route.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/rss-square.svg b/public/assets/lib/fontawesome-free/svgs/solid/rss-square.svg new file mode 100755 index 0000000..4ea6017 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/rss-square.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/rss.svg b/public/assets/lib/fontawesome-free/svgs/solid/rss.svg new file mode 100755 index 0000000..aef8825 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/rss.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/ruble-sign.svg b/public/assets/lib/fontawesome-free/svgs/solid/ruble-sign.svg new file mode 100755 index 0000000..d25a191 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/ruble-sign.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/ruler-combined.svg b/public/assets/lib/fontawesome-free/svgs/solid/ruler-combined.svg new file mode 100755 index 0000000..ac99f00 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/ruler-combined.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/ruler-horizontal.svg b/public/assets/lib/fontawesome-free/svgs/solid/ruler-horizontal.svg new file mode 100755 index 0000000..d6d9e20 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/ruler-horizontal.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/ruler-vertical.svg b/public/assets/lib/fontawesome-free/svgs/solid/ruler-vertical.svg new file mode 100755 index 0000000..37eabb1 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/ruler-vertical.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/ruler.svg b/public/assets/lib/fontawesome-free/svgs/solid/ruler.svg new file mode 100755 index 0000000..6e43136 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/ruler.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/rupee-sign.svg b/public/assets/lib/fontawesome-free/svgs/solid/rupee-sign.svg new file mode 100755 index 0000000..7b4d1e5 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/rupee-sign.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/sad-cry.svg b/public/assets/lib/fontawesome-free/svgs/solid/sad-cry.svg new file mode 100755 index 0000000..4281e9d --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/sad-cry.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/sad-tear.svg b/public/assets/lib/fontawesome-free/svgs/solid/sad-tear.svg new file mode 100755 index 0000000..96e4eb4 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/sad-tear.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/save.svg b/public/assets/lib/fontawesome-free/svgs/solid/save.svg new file mode 100755 index 0000000..fba5c0d --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/save.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/school.svg b/public/assets/lib/fontawesome-free/svgs/solid/school.svg new file mode 100755 index 0000000..6089ddb --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/school.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/screwdriver.svg b/public/assets/lib/fontawesome-free/svgs/solid/screwdriver.svg new file mode 100755 index 0000000..91dc746 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/screwdriver.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/search-dollar.svg b/public/assets/lib/fontawesome-free/svgs/solid/search-dollar.svg new file mode 100755 index 0000000..fc8f5ca --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/search-dollar.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/search-location.svg b/public/assets/lib/fontawesome-free/svgs/solid/search-location.svg new file mode 100755 index 0000000..0f0e418 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/search-location.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/search-minus.svg b/public/assets/lib/fontawesome-free/svgs/solid/search-minus.svg new file mode 100755 index 0000000..bfcb87c --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/search-minus.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/search-plus.svg b/public/assets/lib/fontawesome-free/svgs/solid/search-plus.svg new file mode 100755 index 0000000..bc8d129 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/search-plus.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/search.svg b/public/assets/lib/fontawesome-free/svgs/solid/search.svg new file mode 100755 index 0000000..e6d1c27 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/search.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/seedling.svg b/public/assets/lib/fontawesome-free/svgs/solid/seedling.svg new file mode 100755 index 0000000..0bc19ce --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/seedling.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/server.svg b/public/assets/lib/fontawesome-free/svgs/solid/server.svg new file mode 100755 index 0000000..b07aa77 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/server.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/shapes.svg b/public/assets/lib/fontawesome-free/svgs/solid/shapes.svg new file mode 100755 index 0000000..b9cdc87 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/shapes.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/share-alt-square.svg b/public/assets/lib/fontawesome-free/svgs/solid/share-alt-square.svg new file mode 100755 index 0000000..3cd7039 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/share-alt-square.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/share-alt.svg b/public/assets/lib/fontawesome-free/svgs/solid/share-alt.svg new file mode 100755 index 0000000..edbb48b --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/share-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/share-square.svg b/public/assets/lib/fontawesome-free/svgs/solid/share-square.svg new file mode 100755 index 0000000..f31bb4c --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/share-square.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/share.svg b/public/assets/lib/fontawesome-free/svgs/solid/share.svg new file mode 100755 index 0000000..163e993 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/share.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/shekel-sign.svg b/public/assets/lib/fontawesome-free/svgs/solid/shekel-sign.svg new file mode 100755 index 0000000..5e8386f --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/shekel-sign.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/shield-alt.svg b/public/assets/lib/fontawesome-free/svgs/solid/shield-alt.svg new file mode 100755 index 0000000..129b689 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/shield-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/ship.svg b/public/assets/lib/fontawesome-free/svgs/solid/ship.svg new file mode 100755 index 0000000..4f68501 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/ship.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/shipping-fast.svg b/public/assets/lib/fontawesome-free/svgs/solid/shipping-fast.svg new file mode 100755 index 0000000..b59b4c8 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/shipping-fast.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/shoe-prints.svg b/public/assets/lib/fontawesome-free/svgs/solid/shoe-prints.svg new file mode 100755 index 0000000..e053edb --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/shoe-prints.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/shopping-bag.svg b/public/assets/lib/fontawesome-free/svgs/solid/shopping-bag.svg new file mode 100755 index 0000000..c62ae8b --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/shopping-bag.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/shopping-basket.svg b/public/assets/lib/fontawesome-free/svgs/solid/shopping-basket.svg new file mode 100755 index 0000000..92e6124 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/shopping-basket.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/shopping-cart.svg b/public/assets/lib/fontawesome-free/svgs/solid/shopping-cart.svg new file mode 100755 index 0000000..fbdd5db --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/shopping-cart.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/shower.svg b/public/assets/lib/fontawesome-free/svgs/solid/shower.svg new file mode 100755 index 0000000..e14d813 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/shower.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/shuttle-van.svg b/public/assets/lib/fontawesome-free/svgs/solid/shuttle-van.svg new file mode 100755 index 0000000..15724bf --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/shuttle-van.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/sign-in-alt.svg b/public/assets/lib/fontawesome-free/svgs/solid/sign-in-alt.svg new file mode 100755 index 0000000..0565f6b --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/sign-in-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/sign-language.svg b/public/assets/lib/fontawesome-free/svgs/solid/sign-language.svg new file mode 100755 index 0000000..7955fc2 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/sign-language.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/sign-out-alt.svg b/public/assets/lib/fontawesome-free/svgs/solid/sign-out-alt.svg new file mode 100755 index 0000000..b281e8f --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/sign-out-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/sign.svg b/public/assets/lib/fontawesome-free/svgs/solid/sign.svg new file mode 100755 index 0000000..f2977ba --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/sign.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/signal.svg b/public/assets/lib/fontawesome-free/svgs/solid/signal.svg new file mode 100755 index 0000000..8b4a09e --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/signal.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/signature.svg b/public/assets/lib/fontawesome-free/svgs/solid/signature.svg new file mode 100755 index 0000000..a736fb4 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/signature.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/sitemap.svg b/public/assets/lib/fontawesome-free/svgs/solid/sitemap.svg new file mode 100755 index 0000000..56363e8 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/sitemap.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/skull.svg b/public/assets/lib/fontawesome-free/svgs/solid/skull.svg new file mode 100755 index 0000000..9268f70 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/skull.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/sliders-h.svg b/public/assets/lib/fontawesome-free/svgs/solid/sliders-h.svg new file mode 100755 index 0000000..7e42e73 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/sliders-h.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/smile-beam.svg b/public/assets/lib/fontawesome-free/svgs/solid/smile-beam.svg new file mode 100755 index 0000000..e8d019c --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/smile-beam.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/smile-wink.svg b/public/assets/lib/fontawesome-free/svgs/solid/smile-wink.svg new file mode 100755 index 0000000..60796e0 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/smile-wink.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/smile.svg b/public/assets/lib/fontawesome-free/svgs/solid/smile.svg new file mode 100755 index 0000000..bd47c28 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/smile.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/smoking-ban.svg b/public/assets/lib/fontawesome-free/svgs/solid/smoking-ban.svg new file mode 100755 index 0000000..ae7bc45 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/smoking-ban.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/smoking.svg b/public/assets/lib/fontawesome-free/svgs/solid/smoking.svg new file mode 100755 index 0000000..7cbd48f --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/smoking.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/snowflake.svg b/public/assets/lib/fontawesome-free/svgs/solid/snowflake.svg new file mode 100755 index 0000000..2201803 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/snowflake.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/socks.svg b/public/assets/lib/fontawesome-free/svgs/solid/socks.svg new file mode 100755 index 0000000..7634c69 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/socks.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/solar-panel.svg b/public/assets/lib/fontawesome-free/svgs/solid/solar-panel.svg new file mode 100755 index 0000000..4064d3b --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/solar-panel.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/sort-alpha-down.svg b/public/assets/lib/fontawesome-free/svgs/solid/sort-alpha-down.svg new file mode 100755 index 0000000..f86e485 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/sort-alpha-down.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/sort-alpha-up.svg b/public/assets/lib/fontawesome-free/svgs/solid/sort-alpha-up.svg new file mode 100755 index 0000000..58626df --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/sort-alpha-up.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/sort-amount-down.svg b/public/assets/lib/fontawesome-free/svgs/solid/sort-amount-down.svg new file mode 100755 index 0000000..0b16e0e --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/sort-amount-down.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/sort-amount-up.svg b/public/assets/lib/fontawesome-free/svgs/solid/sort-amount-up.svg new file mode 100755 index 0000000..4905c7c --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/sort-amount-up.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/sort-down.svg b/public/assets/lib/fontawesome-free/svgs/solid/sort-down.svg new file mode 100755 index 0000000..eab2d91 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/sort-down.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/sort-numeric-down.svg b/public/assets/lib/fontawesome-free/svgs/solid/sort-numeric-down.svg new file mode 100755 index 0000000..8a7c4e8 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/sort-numeric-down.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/sort-numeric-up.svg b/public/assets/lib/fontawesome-free/svgs/solid/sort-numeric-up.svg new file mode 100755 index 0000000..f678110 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/sort-numeric-up.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/sort-up.svg b/public/assets/lib/fontawesome-free/svgs/solid/sort-up.svg new file mode 100755 index 0000000..6bc566e --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/sort-up.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/sort.svg b/public/assets/lib/fontawesome-free/svgs/solid/sort.svg new file mode 100755 index 0000000..54345f9 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/sort.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/spa.svg b/public/assets/lib/fontawesome-free/svgs/solid/spa.svg new file mode 100755 index 0000000..779291b --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/spa.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/space-shuttle.svg b/public/assets/lib/fontawesome-free/svgs/solid/space-shuttle.svg new file mode 100755 index 0000000..0babc57 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/space-shuttle.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/spinner.svg b/public/assets/lib/fontawesome-free/svgs/solid/spinner.svg new file mode 100755 index 0000000..4bd8d39 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/spinner.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/splotch.svg b/public/assets/lib/fontawesome-free/svgs/solid/splotch.svg new file mode 100755 index 0000000..a8227bb --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/splotch.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/spray-can.svg b/public/assets/lib/fontawesome-free/svgs/solid/spray-can.svg new file mode 100755 index 0000000..05c9840 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/spray-can.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/square-full.svg b/public/assets/lib/fontawesome-free/svgs/solid/square-full.svg new file mode 100755 index 0000000..d61d0df --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/square-full.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/square-root-alt.svg b/public/assets/lib/fontawesome-free/svgs/solid/square-root-alt.svg new file mode 100755 index 0000000..dd43adc --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/square-root-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/square.svg b/public/assets/lib/fontawesome-free/svgs/solid/square.svg new file mode 100755 index 0000000..d2f4e3b --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/square.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/stamp.svg b/public/assets/lib/fontawesome-free/svgs/solid/stamp.svg new file mode 100755 index 0000000..f133dff --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/stamp.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/star-and-crescent.svg b/public/assets/lib/fontawesome-free/svgs/solid/star-and-crescent.svg new file mode 100755 index 0000000..88061a1 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/star-and-crescent.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/star-half-alt.svg b/public/assets/lib/fontawesome-free/svgs/solid/star-half-alt.svg new file mode 100755 index 0000000..ca68119 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/star-half-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/star-half.svg b/public/assets/lib/fontawesome-free/svgs/solid/star-half.svg new file mode 100755 index 0000000..f68c8c7 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/star-half.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/star-of-david.svg b/public/assets/lib/fontawesome-free/svgs/solid/star-of-david.svg new file mode 100755 index 0000000..1830f50 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/star-of-david.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/star-of-life.svg b/public/assets/lib/fontawesome-free/svgs/solid/star-of-life.svg new file mode 100755 index 0000000..0bcddae --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/star-of-life.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/star.svg b/public/assets/lib/fontawesome-free/svgs/solid/star.svg new file mode 100755 index 0000000..400f76e --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/star.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/step-backward.svg b/public/assets/lib/fontawesome-free/svgs/solid/step-backward.svg new file mode 100755 index 0000000..c8a5394 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/step-backward.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/step-forward.svg b/public/assets/lib/fontawesome-free/svgs/solid/step-forward.svg new file mode 100755 index 0000000..8a25b3a --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/step-forward.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/stethoscope.svg b/public/assets/lib/fontawesome-free/svgs/solid/stethoscope.svg new file mode 100755 index 0000000..b8da1d1 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/stethoscope.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/sticky-note.svg b/public/assets/lib/fontawesome-free/svgs/solid/sticky-note.svg new file mode 100755 index 0000000..4441aec --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/sticky-note.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/stop-circle.svg b/public/assets/lib/fontawesome-free/svgs/solid/stop-circle.svg new file mode 100755 index 0000000..55b28e3 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/stop-circle.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/stop.svg b/public/assets/lib/fontawesome-free/svgs/solid/stop.svg new file mode 100755 index 0000000..d2f4e3b --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/stop.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/stopwatch.svg b/public/assets/lib/fontawesome-free/svgs/solid/stopwatch.svg new file mode 100755 index 0000000..5abf08a --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/stopwatch.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/store-alt.svg b/public/assets/lib/fontawesome-free/svgs/solid/store-alt.svg new file mode 100755 index 0000000..0f0344a --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/store-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/store.svg b/public/assets/lib/fontawesome-free/svgs/solid/store.svg new file mode 100755 index 0000000..298b4b0 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/store.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/stream.svg b/public/assets/lib/fontawesome-free/svgs/solid/stream.svg new file mode 100755 index 0000000..b3cfb7e --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/stream.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/street-view.svg b/public/assets/lib/fontawesome-free/svgs/solid/street-view.svg new file mode 100755 index 0000000..eb9f3ed --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/street-view.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/strikethrough.svg b/public/assets/lib/fontawesome-free/svgs/solid/strikethrough.svg new file mode 100755 index 0000000..2d36b30 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/strikethrough.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/stroopwafel.svg b/public/assets/lib/fontawesome-free/svgs/solid/stroopwafel.svg new file mode 100755 index 0000000..7ab30b0 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/stroopwafel.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/subscript.svg b/public/assets/lib/fontawesome-free/svgs/solid/subscript.svg new file mode 100755 index 0000000..4686b27 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/subscript.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/subway.svg b/public/assets/lib/fontawesome-free/svgs/solid/subway.svg new file mode 100755 index 0000000..2d16c50 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/subway.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/suitcase-rolling.svg b/public/assets/lib/fontawesome-free/svgs/solid/suitcase-rolling.svg new file mode 100755 index 0000000..1d5fa0c --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/suitcase-rolling.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/suitcase.svg b/public/assets/lib/fontawesome-free/svgs/solid/suitcase.svg new file mode 100755 index 0000000..0c4089a --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/suitcase.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/sun.svg b/public/assets/lib/fontawesome-free/svgs/solid/sun.svg new file mode 100755 index 0000000..50ab337 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/sun.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/superscript.svg b/public/assets/lib/fontawesome-free/svgs/solid/superscript.svg new file mode 100755 index 0000000..d150d12 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/superscript.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/surprise.svg b/public/assets/lib/fontawesome-free/svgs/solid/surprise.svg new file mode 100755 index 0000000..a280dde --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/surprise.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/swatchbook.svg b/public/assets/lib/fontawesome-free/svgs/solid/swatchbook.svg new file mode 100755 index 0000000..58c7a89 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/swatchbook.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/swimmer.svg b/public/assets/lib/fontawesome-free/svgs/solid/swimmer.svg new file mode 100755 index 0000000..11673e5 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/swimmer.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/swimming-pool.svg b/public/assets/lib/fontawesome-free/svgs/solid/swimming-pool.svg new file mode 100755 index 0000000..8f930db --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/swimming-pool.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/synagogue.svg b/public/assets/lib/fontawesome-free/svgs/solid/synagogue.svg new file mode 100755 index 0000000..8513dd3 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/synagogue.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/sync-alt.svg b/public/assets/lib/fontawesome-free/svgs/solid/sync-alt.svg new file mode 100755 index 0000000..fa82f10 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/sync-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/sync.svg b/public/assets/lib/fontawesome-free/svgs/solid/sync.svg new file mode 100755 index 0000000..7e1b7ff --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/sync.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/syringe.svg b/public/assets/lib/fontawesome-free/svgs/solid/syringe.svg new file mode 100755 index 0000000..c2145aa --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/syringe.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/table-tennis.svg b/public/assets/lib/fontawesome-free/svgs/solid/table-tennis.svg new file mode 100755 index 0000000..fc16a9d --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/table-tennis.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/table.svg b/public/assets/lib/fontawesome-free/svgs/solid/table.svg new file mode 100755 index 0000000..17de4d1 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/table.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/tablet-alt.svg b/public/assets/lib/fontawesome-free/svgs/solid/tablet-alt.svg new file mode 100755 index 0000000..9637a84 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/tablet-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/tablet.svg b/public/assets/lib/fontawesome-free/svgs/solid/tablet.svg new file mode 100755 index 0000000..b1d1b0c --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/tablet.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/tablets.svg b/public/assets/lib/fontawesome-free/svgs/solid/tablets.svg new file mode 100755 index 0000000..3673804 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/tablets.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/tachometer-alt.svg b/public/assets/lib/fontawesome-free/svgs/solid/tachometer-alt.svg new file mode 100755 index 0000000..81df888 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/tachometer-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/tag.svg b/public/assets/lib/fontawesome-free/svgs/solid/tag.svg new file mode 100755 index 0000000..1689911 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/tag.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/tags.svg b/public/assets/lib/fontawesome-free/svgs/solid/tags.svg new file mode 100755 index 0000000..70015b2 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/tags.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/tape.svg b/public/assets/lib/fontawesome-free/svgs/solid/tape.svg new file mode 100755 index 0000000..aeabdad --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/tape.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/tasks.svg b/public/assets/lib/fontawesome-free/svgs/solid/tasks.svg new file mode 100755 index 0000000..67a0203 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/tasks.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/taxi.svg b/public/assets/lib/fontawesome-free/svgs/solid/taxi.svg new file mode 100755 index 0000000..6fa95c7 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/taxi.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/teeth-open.svg b/public/assets/lib/fontawesome-free/svgs/solid/teeth-open.svg new file mode 100755 index 0000000..8f5826c --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/teeth-open.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/teeth.svg b/public/assets/lib/fontawesome-free/svgs/solid/teeth.svg new file mode 100755 index 0000000..cd2f9d7 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/teeth.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/terminal.svg b/public/assets/lib/fontawesome-free/svgs/solid/terminal.svg new file mode 100755 index 0000000..04d13ff --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/terminal.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/text-height.svg b/public/assets/lib/fontawesome-free/svgs/solid/text-height.svg new file mode 100755 index 0000000..f2cdd49 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/text-height.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/text-width.svg b/public/assets/lib/fontawesome-free/svgs/solid/text-width.svg new file mode 100755 index 0000000..ca33e75 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/text-width.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/th-large.svg b/public/assets/lib/fontawesome-free/svgs/solid/th-large.svg new file mode 100755 index 0000000..c9d51d2 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/th-large.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/th-list.svg b/public/assets/lib/fontawesome-free/svgs/solid/th-list.svg new file mode 100755 index 0000000..6fd3038 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/th-list.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/th.svg b/public/assets/lib/fontawesome-free/svgs/solid/th.svg new file mode 100755 index 0000000..e223b83 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/th.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/theater-masks.svg b/public/assets/lib/fontawesome-free/svgs/solid/theater-masks.svg new file mode 100755 index 0000000..e8c6770 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/theater-masks.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/thermometer-empty.svg b/public/assets/lib/fontawesome-free/svgs/solid/thermometer-empty.svg new file mode 100755 index 0000000..930c9d1 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/thermometer-empty.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/thermometer-full.svg b/public/assets/lib/fontawesome-free/svgs/solid/thermometer-full.svg new file mode 100755 index 0000000..1d54d1e --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/thermometer-full.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/thermometer-half.svg b/public/assets/lib/fontawesome-free/svgs/solid/thermometer-half.svg new file mode 100755 index 0000000..6451735 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/thermometer-half.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/thermometer-quarter.svg b/public/assets/lib/fontawesome-free/svgs/solid/thermometer-quarter.svg new file mode 100755 index 0000000..9bcf2e3 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/thermometer-quarter.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/thermometer-three-quarters.svg b/public/assets/lib/fontawesome-free/svgs/solid/thermometer-three-quarters.svg new file mode 100755 index 0000000..27aa4ff --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/thermometer-three-quarters.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/thermometer.svg b/public/assets/lib/fontawesome-free/svgs/solid/thermometer.svg new file mode 100755 index 0000000..4927aa9 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/thermometer.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/thumbs-down.svg b/public/assets/lib/fontawesome-free/svgs/solid/thumbs-down.svg new file mode 100755 index 0000000..3ec85e3 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/thumbs-down.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/thumbs-up.svg b/public/assets/lib/fontawesome-free/svgs/solid/thumbs-up.svg new file mode 100755 index 0000000..276c968 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/thumbs-up.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/thumbtack.svg b/public/assets/lib/fontawesome-free/svgs/solid/thumbtack.svg new file mode 100755 index 0000000..e07e12f --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/thumbtack.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/ticket-alt.svg b/public/assets/lib/fontawesome-free/svgs/solid/ticket-alt.svg new file mode 100755 index 0000000..36ee2be --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/ticket-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/times-circle.svg b/public/assets/lib/fontawesome-free/svgs/solid/times-circle.svg new file mode 100755 index 0000000..17e21f5 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/times-circle.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/times.svg b/public/assets/lib/fontawesome-free/svgs/solid/times.svg new file mode 100755 index 0000000..79af4cf --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/times.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/tint-slash.svg b/public/assets/lib/fontawesome-free/svgs/solid/tint-slash.svg new file mode 100755 index 0000000..9ef9faa --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/tint-slash.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/tint.svg b/public/assets/lib/fontawesome-free/svgs/solid/tint.svg new file mode 100755 index 0000000..680a73e --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/tint.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/tired.svg b/public/assets/lib/fontawesome-free/svgs/solid/tired.svg new file mode 100755 index 0000000..0adfc2b --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/tired.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/toggle-off.svg b/public/assets/lib/fontawesome-free/svgs/solid/toggle-off.svg new file mode 100755 index 0000000..7dfa880 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/toggle-off.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/toggle-on.svg b/public/assets/lib/fontawesome-free/svgs/solid/toggle-on.svg new file mode 100755 index 0000000..d44f809 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/toggle-on.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/toolbox.svg b/public/assets/lib/fontawesome-free/svgs/solid/toolbox.svg new file mode 100755 index 0000000..15c5e63 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/toolbox.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/tooth.svg b/public/assets/lib/fontawesome-free/svgs/solid/tooth.svg new file mode 100755 index 0000000..c56ef40 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/tooth.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/torah.svg b/public/assets/lib/fontawesome-free/svgs/solid/torah.svg new file mode 100755 index 0000000..ae2c29f --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/torah.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/torii-gate.svg b/public/assets/lib/fontawesome-free/svgs/solid/torii-gate.svg new file mode 100755 index 0000000..71b567a --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/torii-gate.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/trademark.svg b/public/assets/lib/fontawesome-free/svgs/solid/trademark.svg new file mode 100755 index 0000000..4a556f9 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/trademark.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/traffic-light.svg b/public/assets/lib/fontawesome-free/svgs/solid/traffic-light.svg new file mode 100755 index 0000000..1359709 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/traffic-light.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/train.svg b/public/assets/lib/fontawesome-free/svgs/solid/train.svg new file mode 100755 index 0000000..f5cb410 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/train.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/transgender-alt.svg b/public/assets/lib/fontawesome-free/svgs/solid/transgender-alt.svg new file mode 100755 index 0000000..365de7f --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/transgender-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/transgender.svg b/public/assets/lib/fontawesome-free/svgs/solid/transgender.svg new file mode 100755 index 0000000..79d3dda --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/transgender.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/trash-alt.svg b/public/assets/lib/fontawesome-free/svgs/solid/trash-alt.svg new file mode 100755 index 0000000..e097c5d --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/trash-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/trash.svg b/public/assets/lib/fontawesome-free/svgs/solid/trash.svg new file mode 100755 index 0000000..8efd879 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/trash.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/tree.svg b/public/assets/lib/fontawesome-free/svgs/solid/tree.svg new file mode 100755 index 0000000..8509812 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/tree.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/trophy.svg b/public/assets/lib/fontawesome-free/svgs/solid/trophy.svg new file mode 100755 index 0000000..b52fa15 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/trophy.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/truck-loading.svg b/public/assets/lib/fontawesome-free/svgs/solid/truck-loading.svg new file mode 100755 index 0000000..c5ed4cd --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/truck-loading.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/truck-monster.svg b/public/assets/lib/fontawesome-free/svgs/solid/truck-monster.svg new file mode 100755 index 0000000..72e0365 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/truck-monster.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/truck-moving.svg b/public/assets/lib/fontawesome-free/svgs/solid/truck-moving.svg new file mode 100755 index 0000000..a0ba387 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/truck-moving.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/truck-pickup.svg b/public/assets/lib/fontawesome-free/svgs/solid/truck-pickup.svg new file mode 100755 index 0000000..593a136 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/truck-pickup.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/truck.svg b/public/assets/lib/fontawesome-free/svgs/solid/truck.svg new file mode 100755 index 0000000..6daeae9 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/truck.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/tshirt.svg b/public/assets/lib/fontawesome-free/svgs/solid/tshirt.svg new file mode 100755 index 0000000..3f53fa6 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/tshirt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/tty.svg b/public/assets/lib/fontawesome-free/svgs/solid/tty.svg new file mode 100755 index 0000000..876e61b --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/tty.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/tv.svg b/public/assets/lib/fontawesome-free/svgs/solid/tv.svg new file mode 100755 index 0000000..993b2ba --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/tv.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/umbrella-beach.svg b/public/assets/lib/fontawesome-free/svgs/solid/umbrella-beach.svg new file mode 100755 index 0000000..f1eb336 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/umbrella-beach.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/umbrella.svg b/public/assets/lib/fontawesome-free/svgs/solid/umbrella.svg new file mode 100755 index 0000000..1500f78 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/umbrella.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/underline.svg b/public/assets/lib/fontawesome-free/svgs/solid/underline.svg new file mode 100755 index 0000000..55c453b --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/underline.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/undo-alt.svg b/public/assets/lib/fontawesome-free/svgs/solid/undo-alt.svg new file mode 100755 index 0000000..5d29a8c --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/undo-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/undo.svg b/public/assets/lib/fontawesome-free/svgs/solid/undo.svg new file mode 100755 index 0000000..4d47b73 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/undo.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/universal-access.svg b/public/assets/lib/fontawesome-free/svgs/solid/universal-access.svg new file mode 100755 index 0000000..cfcd712 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/universal-access.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/university.svg b/public/assets/lib/fontawesome-free/svgs/solid/university.svg new file mode 100755 index 0000000..8dd4c23 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/university.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/unlink.svg b/public/assets/lib/fontawesome-free/svgs/solid/unlink.svg new file mode 100755 index 0000000..548330b --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/unlink.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/unlock-alt.svg b/public/assets/lib/fontawesome-free/svgs/solid/unlock-alt.svg new file mode 100755 index 0000000..860240f --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/unlock-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/unlock.svg b/public/assets/lib/fontawesome-free/svgs/solid/unlock.svg new file mode 100755 index 0000000..b39c92b --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/unlock.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/upload.svg b/public/assets/lib/fontawesome-free/svgs/solid/upload.svg new file mode 100755 index 0000000..05cad1c --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/upload.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/user-alt-slash.svg b/public/assets/lib/fontawesome-free/svgs/solid/user-alt-slash.svg new file mode 100755 index 0000000..e227b41 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/user-alt-slash.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/user-alt.svg b/public/assets/lib/fontawesome-free/svgs/solid/user-alt.svg new file mode 100755 index 0000000..e5043d2 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/user-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/user-astronaut.svg b/public/assets/lib/fontawesome-free/svgs/solid/user-astronaut.svg new file mode 100755 index 0000000..6844484 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/user-astronaut.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/user-check.svg b/public/assets/lib/fontawesome-free/svgs/solid/user-check.svg new file mode 100755 index 0000000..1c98f06 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/user-check.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/user-circle.svg b/public/assets/lib/fontawesome-free/svgs/solid/user-circle.svg new file mode 100755 index 0000000..9efdccb --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/user-circle.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/user-clock.svg b/public/assets/lib/fontawesome-free/svgs/solid/user-clock.svg new file mode 100755 index 0000000..5b9ecd4 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/user-clock.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/user-cog.svg b/public/assets/lib/fontawesome-free/svgs/solid/user-cog.svg new file mode 100755 index 0000000..0b9d5eb --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/user-cog.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/user-edit.svg b/public/assets/lib/fontawesome-free/svgs/solid/user-edit.svg new file mode 100755 index 0000000..8494c70 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/user-edit.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/user-friends.svg b/public/assets/lib/fontawesome-free/svgs/solid/user-friends.svg new file mode 100755 index 0000000..e3fba7d --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/user-friends.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/user-graduate.svg b/public/assets/lib/fontawesome-free/svgs/solid/user-graduate.svg new file mode 100755 index 0000000..c7c6a04 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/user-graduate.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/user-lock.svg b/public/assets/lib/fontawesome-free/svgs/solid/user-lock.svg new file mode 100755 index 0000000..2c90c32 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/user-lock.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/user-md.svg b/public/assets/lib/fontawesome-free/svgs/solid/user-md.svg new file mode 100755 index 0000000..1734343 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/user-md.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/user-minus.svg b/public/assets/lib/fontawesome-free/svgs/solid/user-minus.svg new file mode 100755 index 0000000..3d7dd9e --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/user-minus.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/user-ninja.svg b/public/assets/lib/fontawesome-free/svgs/solid/user-ninja.svg new file mode 100755 index 0000000..4154d95 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/user-ninja.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/user-plus.svg b/public/assets/lib/fontawesome-free/svgs/solid/user-plus.svg new file mode 100755 index 0000000..1f9cc0a --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/user-plus.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/user-secret.svg b/public/assets/lib/fontawesome-free/svgs/solid/user-secret.svg new file mode 100755 index 0000000..f00804e --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/user-secret.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/user-shield.svg b/public/assets/lib/fontawesome-free/svgs/solid/user-shield.svg new file mode 100755 index 0000000..3fb6197 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/user-shield.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/user-slash.svg b/public/assets/lib/fontawesome-free/svgs/solid/user-slash.svg new file mode 100755 index 0000000..6c4cd56 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/user-slash.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/user-tag.svg b/public/assets/lib/fontawesome-free/svgs/solid/user-tag.svg new file mode 100755 index 0000000..bb5b02c --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/user-tag.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/user-tie.svg b/public/assets/lib/fontawesome-free/svgs/solid/user-tie.svg new file mode 100755 index 0000000..c35a2c8 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/user-tie.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/user-times.svg b/public/assets/lib/fontawesome-free/svgs/solid/user-times.svg new file mode 100755 index 0000000..59cdec3 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/user-times.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/user.svg b/public/assets/lib/fontawesome-free/svgs/solid/user.svg new file mode 100755 index 0000000..ad379d4 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/user.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/users-cog.svg b/public/assets/lib/fontawesome-free/svgs/solid/users-cog.svg new file mode 100755 index 0000000..3cac803 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/users-cog.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/users.svg b/public/assets/lib/fontawesome-free/svgs/solid/users.svg new file mode 100755 index 0000000..1c3235b --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/users.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/utensil-spoon.svg b/public/assets/lib/fontawesome-free/svgs/solid/utensil-spoon.svg new file mode 100755 index 0000000..dc4af7c --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/utensil-spoon.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/utensils.svg b/public/assets/lib/fontawesome-free/svgs/solid/utensils.svg new file mode 100755 index 0000000..4140b2e --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/utensils.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/vector-square.svg b/public/assets/lib/fontawesome-free/svgs/solid/vector-square.svg new file mode 100755 index 0000000..9b12d56 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/vector-square.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/venus-double.svg b/public/assets/lib/fontawesome-free/svgs/solid/venus-double.svg new file mode 100755 index 0000000..70f31f5 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/venus-double.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/venus-mars.svg b/public/assets/lib/fontawesome-free/svgs/solid/venus-mars.svg new file mode 100755 index 0000000..098bbf5 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/venus-mars.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/venus.svg b/public/assets/lib/fontawesome-free/svgs/solid/venus.svg new file mode 100755 index 0000000..80545b6 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/venus.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/vial.svg b/public/assets/lib/fontawesome-free/svgs/solid/vial.svg new file mode 100755 index 0000000..86d371f --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/vial.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/vials.svg b/public/assets/lib/fontawesome-free/svgs/solid/vials.svg new file mode 100755 index 0000000..d7baf3e --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/vials.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/video-slash.svg b/public/assets/lib/fontawesome-free/svgs/solid/video-slash.svg new file mode 100755 index 0000000..8af6e9e --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/video-slash.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/video.svg b/public/assets/lib/fontawesome-free/svgs/solid/video.svg new file mode 100755 index 0000000..e404138 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/video.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/vihara.svg b/public/assets/lib/fontawesome-free/svgs/solid/vihara.svg new file mode 100755 index 0000000..adc86b5 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/vihara.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/volleyball-ball.svg b/public/assets/lib/fontawesome-free/svgs/solid/volleyball-ball.svg new file mode 100755 index 0000000..84e0dcd --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/volleyball-ball.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/volume-down.svg b/public/assets/lib/fontawesome-free/svgs/solid/volume-down.svg new file mode 100755 index 0000000..9878989 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/volume-down.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/volume-off.svg b/public/assets/lib/fontawesome-free/svgs/solid/volume-off.svg new file mode 100755 index 0000000..69ed07e --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/volume-off.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/volume-up.svg b/public/assets/lib/fontawesome-free/svgs/solid/volume-up.svg new file mode 100755 index 0000000..1a7dd64 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/volume-up.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/walking.svg b/public/assets/lib/fontawesome-free/svgs/solid/walking.svg new file mode 100755 index 0000000..956bf93 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/walking.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/wallet.svg b/public/assets/lib/fontawesome-free/svgs/solid/wallet.svg new file mode 100755 index 0000000..89619d1 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/wallet.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/warehouse.svg b/public/assets/lib/fontawesome-free/svgs/solid/warehouse.svg new file mode 100755 index 0000000..2dbe203 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/warehouse.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/weight-hanging.svg b/public/assets/lib/fontawesome-free/svgs/solid/weight-hanging.svg new file mode 100755 index 0000000..ade120c --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/weight-hanging.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/weight.svg b/public/assets/lib/fontawesome-free/svgs/solid/weight.svg new file mode 100755 index 0000000..ddcb7f9 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/weight.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/wheelchair.svg b/public/assets/lib/fontawesome-free/svgs/solid/wheelchair.svg new file mode 100755 index 0000000..d774e21 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/wheelchair.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/wifi.svg b/public/assets/lib/fontawesome-free/svgs/solid/wifi.svg new file mode 100755 index 0000000..34a3bf8 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/wifi.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/window-close.svg b/public/assets/lib/fontawesome-free/svgs/solid/window-close.svg new file mode 100755 index 0000000..5269124 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/window-close.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/window-maximize.svg b/public/assets/lib/fontawesome-free/svgs/solid/window-maximize.svg new file mode 100755 index 0000000..c67a356 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/window-maximize.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/window-minimize.svg b/public/assets/lib/fontawesome-free/svgs/solid/window-minimize.svg new file mode 100755 index 0000000..c3e4ad0 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/window-minimize.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/window-restore.svg b/public/assets/lib/fontawesome-free/svgs/solid/window-restore.svg new file mode 100755 index 0000000..064dd9f --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/window-restore.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/wine-glass-alt.svg b/public/assets/lib/fontawesome-free/svgs/solid/wine-glass-alt.svg new file mode 100755 index 0000000..08a8651 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/wine-glass-alt.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/wine-glass.svg b/public/assets/lib/fontawesome-free/svgs/solid/wine-glass.svg new file mode 100755 index 0000000..838ac22 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/wine-glass.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/won-sign.svg b/public/assets/lib/fontawesome-free/svgs/solid/won-sign.svg new file mode 100755 index 0000000..82e2e32 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/won-sign.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/wrench.svg b/public/assets/lib/fontawesome-free/svgs/solid/wrench.svg new file mode 100755 index 0000000..53b1d17 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/wrench.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/x-ray.svg b/public/assets/lib/fontawesome-free/svgs/solid/x-ray.svg new file mode 100755 index 0000000..088d449 --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/x-ray.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/yen-sign.svg b/public/assets/lib/fontawesome-free/svgs/solid/yen-sign.svg new file mode 100755 index 0000000..c25d94d --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/yen-sign.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/svgs/solid/yin-yang.svg b/public/assets/lib/fontawesome-free/svgs/solid/yin-yang.svg new file mode 100755 index 0000000..cafe50d --- /dev/null +++ b/public/assets/lib/fontawesome-free/svgs/solid/yin-yang.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/public/assets/lib/fontawesome-free/webfonts/fa-brands-400.eot b/public/assets/lib/fontawesome-free/webfonts/fa-brands-400.eot new file mode 100755 index 0000000..086c4a7 Binary files /dev/null and b/public/assets/lib/fontawesome-free/webfonts/fa-brands-400.eot differ diff --git a/public/assets/lib/fontawesome-free/webfonts/fa-brands-400.svg b/public/assets/lib/fontawesome-free/webfonts/fa-brands-400.svg new file mode 100755 index 0000000..10f7cdc --- /dev/null +++ b/public/assets/lib/fontawesome-free/webfonts/fa-brands-400.svg @@ -0,0 +1,1154 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/fontawesome-free/webfonts/fa-brands-400.ttf b/public/assets/lib/fontawesome-free/webfonts/fa-brands-400.ttf new file mode 100755 index 0000000..ecbc761 Binary files /dev/null and b/public/assets/lib/fontawesome-free/webfonts/fa-brands-400.ttf differ diff --git a/public/assets/lib/fontawesome-free/webfonts/fa-brands-400.woff b/public/assets/lib/fontawesome-free/webfonts/fa-brands-400.woff new file mode 100755 index 0000000..21c2dd3 Binary files /dev/null and b/public/assets/lib/fontawesome-free/webfonts/fa-brands-400.woff differ diff --git a/public/assets/lib/fontawesome-free/webfonts/fa-brands-400.woff2 b/public/assets/lib/fontawesome-free/webfonts/fa-brands-400.woff2 new file mode 100755 index 0000000..8d8c89e Binary files /dev/null and b/public/assets/lib/fontawesome-free/webfonts/fa-brands-400.woff2 differ diff --git a/public/assets/lib/fontawesome-free/webfonts/fa-regular-400.eot b/public/assets/lib/fontawesome-free/webfonts/fa-regular-400.eot new file mode 100755 index 0000000..656e9a0 Binary files /dev/null and b/public/assets/lib/fontawesome-free/webfonts/fa-regular-400.eot differ diff --git a/public/assets/lib/fontawesome-free/webfonts/fa-regular-400.svg b/public/assets/lib/fontawesome-free/webfonts/fa-regular-400.svg new file mode 100755 index 0000000..0085843 --- /dev/null +++ b/public/assets/lib/fontawesome-free/webfonts/fa-regular-400.svg @@ -0,0 +1,467 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/fontawesome-free/webfonts/fa-regular-400.ttf b/public/assets/lib/fontawesome-free/webfonts/fa-regular-400.ttf new file mode 100755 index 0000000..36a7de3 Binary files /dev/null and b/public/assets/lib/fontawesome-free/webfonts/fa-regular-400.ttf differ diff --git a/public/assets/lib/fontawesome-free/webfonts/fa-regular-400.woff b/public/assets/lib/fontawesome-free/webfonts/fa-regular-400.woff new file mode 100755 index 0000000..f7fab85 Binary files /dev/null and b/public/assets/lib/fontawesome-free/webfonts/fa-regular-400.woff differ diff --git a/public/assets/lib/fontawesome-free/webfonts/fa-regular-400.woff2 b/public/assets/lib/fontawesome-free/webfonts/fa-regular-400.woff2 new file mode 100755 index 0000000..719a712 Binary files /dev/null and b/public/assets/lib/fontawesome-free/webfonts/fa-regular-400.woff2 differ diff --git a/public/assets/lib/fontawesome-free/webfonts/fa-solid-900.eot b/public/assets/lib/fontawesome-free/webfonts/fa-solid-900.eot new file mode 100755 index 0000000..4e4cbb2 Binary files /dev/null and b/public/assets/lib/fontawesome-free/webfonts/fa-solid-900.eot differ diff --git a/public/assets/lib/fontawesome-free/webfonts/fa-solid-900.svg b/public/assets/lib/fontawesome-free/webfonts/fa-solid-900.svg new file mode 100755 index 0000000..4f5aa88 --- /dev/null +++ b/public/assets/lib/fontawesome-free/webfonts/fa-solid-900.svg @@ -0,0 +1,2444 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/fontawesome-free/webfonts/fa-solid-900.ttf b/public/assets/lib/fontawesome-free/webfonts/fa-solid-900.ttf new file mode 100755 index 0000000..2a05512 Binary files /dev/null and b/public/assets/lib/fontawesome-free/webfonts/fa-solid-900.ttf differ diff --git a/public/assets/lib/fontawesome-free/webfonts/fa-solid-900.woff b/public/assets/lib/fontawesome-free/webfonts/fa-solid-900.woff new file mode 100755 index 0000000..839528c Binary files /dev/null and b/public/assets/lib/fontawesome-free/webfonts/fa-solid-900.woff differ diff --git a/public/assets/lib/fontawesome-free/webfonts/fa-solid-900.woff2 b/public/assets/lib/fontawesome-free/webfonts/fa-solid-900.woff2 new file mode 100755 index 0000000..3aae386 Binary files /dev/null and b/public/assets/lib/fontawesome-free/webfonts/fa-solid-900.woff2 differ diff --git a/public/assets/lib/fullcalendar/fullcalendar.min.css b/public/assets/lib/fullcalendar/fullcalendar.min.css new file mode 100755 index 0000000..cf86d29 --- /dev/null +++ b/public/assets/lib/fullcalendar/fullcalendar.min.css @@ -0,0 +1,5 @@ +/*! + * FullCalendar v3.9.0 + * Docs & License: https://fullcalendar.io/ + * (c) 2018 Adam Shaw + */.fc button,.fc table,body .fc{font-size:1em}.fc-bg,.fc-row .fc-bgevent-skeleton,.fc-row .fc-highlight-skeleton{bottom:0}.fc-icon,.fc-unselectable{-webkit-touch-callout:none;-khtml-user-select:none}.fc{direction:ltr;text-align:left}.fc-rtl{text-align:right}.fc th,.fc-basic-view td.fc-week-number,.fc-icon,.fc-toolbar{text-align:center}.fc-highlight{background:#bce8f1;opacity:.3}.fc-bgevent{background:#8fdf82;opacity:.3}.fc-nonbusiness{background:#d7d7d7}.fc button{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;margin:0;height:2.1em;padding:0 .6em;white-space:nowrap;cursor:pointer}.fc button::-moz-focus-inner{margin:0;padding:0}.fc-state-default{border:1px solid;background-color:#f5f5f5;background-image:-moz-linear-gradient(top,#fff,#e6e6e6);background-image:-webkit-gradient(linear,0 0,0 100%,from(#fff),to(#e6e6e6));background-image:-webkit-linear-gradient(top,#fff,#e6e6e6);background-image:-o-linear-gradient(top,#fff,#e6e6e6);background-image:linear-gradient(to bottom,#fff,#e6e6e6);background-repeat:repeat-x;border-color:#e6e6e6 #e6e6e6 #bfbfbf;border-color:rgba(0,0,0,.1) rgba(0,0,0,.1) rgba(0,0,0,.25);color:#333;text-shadow:0 1px 1px rgba(255,255,255,.75);box-shadow:inset 0 1px 0 rgba(255,255,255,.2),0 1px 2px rgba(0,0,0,.05)}.fc-state-default.fc-corner-left{border-top-left-radius:4px;border-bottom-left-radius:4px}.fc-state-default.fc-corner-right{border-top-right-radius:4px;border-bottom-right-radius:4px}.fc button .fc-icon{position:relative;top:-.05em;margin:0 .2em;vertical-align:middle}.fc-state-active,.fc-state-disabled,.fc-state-down,.fc-state-hover{color:#333;background-color:#e6e6e6}.fc-state-hover{color:#333;text-decoration:none;background-position:0 -15px;-webkit-transition:background-position .1s linear;-moz-transition:background-position .1s linear;-o-transition:background-position .1s linear;transition:background-position .1s linear}.fc-state-active,.fc-state-down{background-color:#ccc;background-image:none;box-shadow:inset 0 2px 4px rgba(0,0,0,.15),0 1px 2px rgba(0,0,0,.05)}.fc-state-disabled{cursor:default;background-image:none;opacity:.65;box-shadow:none}.fc-event.fc-draggable,.fc-event[href],.fc-popover .fc-header .fc-close,a[data-goto]{cursor:pointer}.fc-button-group{display:inline-block}.fc .fc-button-group>*{float:left;margin:0 0 0 -1px}.fc .fc-button-group>:first-child{margin-left:0}.fc-popover{position:absolute;box-shadow:0 2px 6px rgba(0,0,0,.15)}.fc-popover .fc-header{padding:2px 4px}.fc-popover .fc-header .fc-title{margin:0 2px}.fc-ltr .fc-popover .fc-header .fc-title,.fc-rtl .fc-popover .fc-header .fc-close{float:left}.fc-ltr .fc-popover .fc-header .fc-close,.fc-rtl .fc-popover .fc-header .fc-title{float:right}.fc-divider{border-style:solid;border-width:1px}hr.fc-divider{height:0;margin:0;padding:0 0 2px;border-width:1px 0}.fc-bg table,.fc-row .fc-bgevent-skeleton table,.fc-row .fc-highlight-skeleton table{height:100%}.fc-clear{clear:both}.fc-bg,.fc-bgevent-skeleton,.fc-helper-skeleton,.fc-highlight-skeleton{position:absolute;top:0;left:0;right:0}.fc table{width:100%;box-sizing:border-box;table-layout:fixed;border-collapse:collapse;border-spacing:0}.fc td,.fc th{border-style:solid;border-width:1px;padding:0;vertical-align:top}.fc td.fc-today{border-style:double}a[data-goto]:hover{text-decoration:underline}.fc .fc-row{border-style:solid;border-width:0}.fc-row table{border-left:0 hidden transparent;border-right:0 hidden transparent;border-bottom:0 hidden transparent}.fc-row:first-child table{border-top:0 hidden transparent}.fc-row{position:relative}.fc-row .fc-bg{z-index:1}.fc-row .fc-bgevent-skeleton td,.fc-row .fc-highlight-skeleton td{border-color:transparent}.fc-row .fc-bgevent-skeleton{z-index:2}.fc-row .fc-highlight-skeleton{z-index:3}.fc-row .fc-content-skeleton{position:relative;z-index:4;padding-bottom:2px}.fc-row .fc-helper-skeleton{z-index:5}.fc .fc-row .fc-content-skeleton table,.fc .fc-row .fc-content-skeleton td,.fc .fc-row .fc-helper-skeleton td{background:0 0;border-color:transparent}.fc-row .fc-content-skeleton td,.fc-row .fc-helper-skeleton td{border-bottom:0}.fc-row .fc-content-skeleton tbody td,.fc-row .fc-helper-skeleton tbody td{border-top:0}.fc-scroller{-webkit-overflow-scrolling:touch}.fc-icon,.fc-row.fc-rigid,.fc-time-grid-event{overflow:hidden}.fc-scroller>.fc-day-grid,.fc-scroller>.fc-time-grid{position:relative;width:100%}.fc-event{position:relative;display:block;font-size:.85em;line-height:1.3;border-radius:3px;border:1px solid #3a87ad}.fc-event,.fc-event-dot{background-color:#3a87ad}.fc-event,.fc-event:hover{color:#fff;text-decoration:none}.fc-not-allowed,.fc-not-allowed .fc-event{cursor:not-allowed}.fc-event .fc-bg{z-index:1;background:#fff;opacity:.25}.fc-event .fc-content{position:relative;z-index:2}.fc-event .fc-resizer{position:absolute;z-index:4;display:none}.fc-event.fc-allow-mouse-resize .fc-resizer,.fc-event.fc-selected .fc-resizer{display:block}.fc-event.fc-selected .fc-resizer:before{content:"";position:absolute;z-index:9999;top:50%;left:50%;width:40px;height:40px;margin-left:-20px;margin-top:-20px}.fc-event.fc-selected{z-index:9999!important;box-shadow:0 2px 5px rgba(0,0,0,.2)}.fc-event.fc-selected.fc-dragging{box-shadow:0 2px 7px rgba(0,0,0,.3)}.fc-h-event.fc-selected:before{content:"";position:absolute;z-index:3;top:-10px;bottom:-10px;left:0;right:0}.fc-ltr .fc-h-event.fc-not-start,.fc-rtl .fc-h-event.fc-not-end{margin-left:0;border-left-width:0;padding-left:1px;border-top-left-radius:0;border-bottom-left-radius:0}.fc-ltr .fc-h-event.fc-not-end,.fc-rtl .fc-h-event.fc-not-start{margin-right:0;border-right-width:0;padding-right:1px;border-top-right-radius:0;border-bottom-right-radius:0}.fc-ltr .fc-h-event .fc-start-resizer,.fc-rtl .fc-h-event .fc-end-resizer{cursor:w-resize;left:-1px}.fc-ltr .fc-h-event .fc-end-resizer,.fc-rtl .fc-h-event .fc-start-resizer{cursor:e-resize;right:-1px}.fc-h-event.fc-allow-mouse-resize .fc-resizer{width:7px;top:-1px;bottom:-1px}.fc-h-event.fc-selected .fc-resizer{border-radius:4px;border-width:1px;width:6px;height:6px;border-style:solid;border-color:inherit;background:#fff;top:50%;margin-top:-4px}.fc-ltr .fc-h-event.fc-selected .fc-start-resizer,.fc-rtl .fc-h-event.fc-selected .fc-end-resizer{margin-left:-4px}.fc-ltr .fc-h-event.fc-selected .fc-end-resizer,.fc-rtl .fc-h-event.fc-selected .fc-start-resizer{margin-right:-4px}.fc-day-grid-event{margin:1px 2px 0;padding:0 1px}tr:first-child>td>.fc-day-grid-event{margin-top:2px}.fc-day-grid-event.fc-selected:after{content:"";position:absolute;z-index:1;top:-1px;right:-1px;bottom:-1px;left:-1px;background:#000;opacity:.25}.fc-day-grid-event .fc-content{white-space:nowrap;overflow:hidden}.fc-day-grid-event .fc-time{font-weight:700}.fc-ltr .fc-day-grid-event.fc-allow-mouse-resize .fc-start-resizer,.fc-rtl .fc-day-grid-event.fc-allow-mouse-resize .fc-end-resizer{margin-left:-2px}.fc-ltr .fc-day-grid-event.fc-allow-mouse-resize .fc-end-resizer,.fc-rtl .fc-day-grid-event.fc-allow-mouse-resize .fc-start-resizer{margin-right:-2px}a.fc-more{margin:1px 3px;font-size:.85em;cursor:pointer;text-decoration:none}a.fc-more:hover{text-decoration:underline}.fc.fc-bootstrap3 a,.ui-widget .fc-event{text-decoration:none}.fc-limited{display:none}.fc-icon,.fc-toolbar .fc-center{display:inline-block}.fc-day-grid .fc-row{z-index:1}.fc-more-popover{z-index:2;width:220px}.fc-more-popover .fc-event-container{padding:10px}.fc-bootstrap3 .fc-popover .panel-body,.fc-bootstrap4 .fc-popover .card-body{padding:0}.fc-now-indicator{position:absolute;border:0 solid red}.fc-bootstrap3 .fc-today.alert,.fc-bootstrap4 .fc-today.alert{border-radius:0}.fc-unselectable{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-tap-highlight-color:transparent}.fc-unthemed .fc-content,.fc-unthemed .fc-divider,.fc-unthemed .fc-list-heading td,.fc-unthemed .fc-list-view,.fc-unthemed .fc-popover,.fc-unthemed .fc-row,.fc-unthemed tbody,.fc-unthemed td,.fc-unthemed th,.fc-unthemed thead{border-color:#ddd}.fc-unthemed .fc-popover{background-color:#fff;border-width:1px;border-style:solid}.fc-unthemed .fc-divider,.fc-unthemed .fc-list-heading td,.fc-unthemed .fc-popover .fc-header{background:#eee}.fc-unthemed td.fc-today{background:#fcf8e3}.fc-unthemed .fc-disabled-day{background:#d7d7d7;opacity:.3}.fc-icon{height:1em;line-height:1em;font-size:1em;font-family:"Courier New",Courier,monospace;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.fc-icon:after{position:relative}.fc-icon-left-single-arrow:after{content:"\2039";font-weight:700;font-size:200%;top:-7%}.fc-icon-right-single-arrow:after{content:"\203A";font-weight:700;font-size:200%;top:-7%}.fc-icon-left-double-arrow:after{content:"\AB";font-size:160%;top:-7%}.fc-icon-right-double-arrow:after{content:"\BB";font-size:160%;top:-7%}.fc-icon-left-triangle:after{content:"\25C4";font-size:125%;top:3%}.fc-icon-right-triangle:after{content:"\25BA";font-size:125%;top:3%}.fc-icon-down-triangle:after{content:"\25BC";font-size:125%;top:2%}.fc-icon-x:after{content:"\D7";font-size:200%;top:6%}.fc-unthemed .fc-popover .fc-header .fc-close{color:#666;font-size:.9em;margin-top:2px}.fc-unthemed .fc-list-item:hover td{background-color:#f5f5f5}.ui-widget .fc-disabled-day{background-image:none}.fc-bootstrap3 .fc-time-grid .fc-slats table,.fc-bootstrap4 .fc-time-grid .fc-slats table,.fc-time-grid .fc-slats .ui-widget-content{background:0 0}.fc-popover>.ui-widget-header+.ui-widget-content{border-top:0}.fc-bootstrap3 hr.fc-divider,.fc-bootstrap4 hr.fc-divider{border-color:inherit}.ui-widget .fc-event{color:#fff;font-weight:400}.ui-widget td.fc-axis{font-weight:400}.fc.fc-bootstrap3 a[data-goto]:hover{text-decoration:underline}.fc.fc-bootstrap4 a{text-decoration:none}.fc.fc-bootstrap4 a[data-goto]:hover{text-decoration:underline}.fc-bootstrap4 a.fc-event:not([href]):not([tabindex]){color:#fff}.fc-bootstrap4 .fc-popover.card{position:absolute}.fc-toolbar.fc-header-toolbar{margin-bottom:1em}.fc-toolbar.fc-footer-toolbar{margin-top:1em}.fc-toolbar .fc-left{float:left}.fc-toolbar .fc-right{float:right}.fc .fc-toolbar>*>*{float:left;margin-left:.75em}.fc .fc-toolbar>*>:first-child{margin-left:0}.fc-toolbar h2{margin:0}.fc-toolbar button{position:relative}.fc-toolbar .fc-state-hover,.fc-toolbar .ui-state-hover{z-index:2}.fc-toolbar .fc-state-down{z-index:3}.fc-toolbar .fc-state-active,.fc-toolbar .ui-state-active{z-index:4}.fc-toolbar button:focus{z-index:5}.fc-view-container *,.fc-view-container :after,.fc-view-container :before{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}.fc-view,.fc-view>table{position:relative;z-index:1}.fc-basicDay-view .fc-content-skeleton,.fc-basicWeek-view .fc-content-skeleton{padding-bottom:1em}.fc-basic-view .fc-body .fc-row{min-height:4em}.fc-row.fc-rigid .fc-content-skeleton{position:absolute;top:0;left:0;right:0}.fc-day-top.fc-other-month{opacity:.3}.fc-basic-view .fc-day-number,.fc-basic-view .fc-week-number{padding:2px}.fc-basic-view th.fc-day-number,.fc-basic-view th.fc-week-number{padding:0 2px}.fc-ltr .fc-basic-view .fc-day-top .fc-day-number{float:right}.fc-rtl .fc-basic-view .fc-day-top .fc-day-number{float:left}.fc-ltr .fc-basic-view .fc-day-top .fc-week-number{float:left;border-radius:0 0 3px}.fc-rtl .fc-basic-view .fc-day-top .fc-week-number{float:right;border-radius:0 0 0 3px}.fc-basic-view .fc-day-top .fc-week-number{min-width:1.5em;text-align:center;background-color:#f2f2f2;color:grey}.fc-basic-view td.fc-week-number>*{display:inline-block;min-width:1.25em}.fc-agenda-view .fc-day-grid{position:relative;z-index:2}.fc-agenda-view .fc-day-grid .fc-row{min-height:3em}.fc-agenda-view .fc-day-grid .fc-row .fc-content-skeleton{padding-bottom:1em}.fc .fc-axis{vertical-align:middle;padding:0 4px;white-space:nowrap}.fc-ltr .fc-axis{text-align:right}.fc-rtl .fc-axis{text-align:left}.fc-time-grid,.fc-time-grid-container{position:relative;z-index:1}.fc-time-grid{min-height:100%}.fc-time-grid table{border:0 hidden transparent}.fc-time-grid>.fc-bg{z-index:1}.fc-time-grid .fc-slats,.fc-time-grid>hr{position:relative;z-index:2}.fc-time-grid .fc-content-col{position:relative}.fc-time-grid .fc-content-skeleton{position:absolute;z-index:3;top:0;left:0;right:0}.fc-time-grid .fc-business-container{position:relative;z-index:1}.fc-time-grid .fc-bgevent-container{position:relative;z-index:2}.fc-time-grid .fc-highlight-container{z-index:3;position:relative}.fc-time-grid .fc-event-container{position:relative;z-index:4}.fc-time-grid .fc-now-indicator-line{z-index:5}.fc-time-grid .fc-helper-container{position:relative;z-index:6}.fc-time-grid .fc-slats td{height:1.5em;border-bottom:0}.fc-time-grid .fc-slats .fc-minor td{border-top-style:dotted}.fc-time-grid .fc-highlight{position:absolute;left:0;right:0}.fc-ltr .fc-time-grid .fc-event-container{margin:0 2.5% 0 2px}.fc-rtl .fc-time-grid .fc-event-container{margin:0 2px 0 2.5%}.fc-time-grid .fc-bgevent,.fc-time-grid .fc-event{position:absolute;z-index:1}.fc-time-grid .fc-bgevent{left:0;right:0}.fc-v-event.fc-not-start{border-top-width:0;padding-top:1px;border-top-left-radius:0;border-top-right-radius:0}.fc-v-event.fc-not-end{border-bottom-width:0;padding-bottom:1px;border-bottom-left-radius:0;border-bottom-right-radius:0}.fc-time-grid-event.fc-selected{overflow:visible}.fc-time-grid-event.fc-selected .fc-bg{display:none}.fc-time-grid-event .fc-content{overflow:hidden}.fc-time-grid-event .fc-time,.fc-time-grid-event .fc-title{padding:0 1px}.fc-time-grid-event .fc-time{font-size:.85em;white-space:nowrap}.fc-time-grid-event.fc-short .fc-content{white-space:nowrap}.fc-time-grid-event.fc-short .fc-time,.fc-time-grid-event.fc-short .fc-title{display:inline-block;vertical-align:top}.fc-time-grid-event.fc-short .fc-time span{display:none}.fc-time-grid-event.fc-short .fc-time:before{content:attr(data-start)}.fc-time-grid-event.fc-short .fc-time:after{content:"\A0-\A0"}.fc-time-grid-event.fc-short .fc-title{font-size:.85em;padding:0}.fc-time-grid-event.fc-allow-mouse-resize .fc-resizer{left:0;right:0;bottom:0;height:8px;overflow:hidden;line-height:8px;font-size:11px;font-family:monospace;text-align:center;cursor:s-resize}.fc-time-grid-event.fc-allow-mouse-resize .fc-resizer:after{content:"="}.fc-time-grid-event.fc-selected .fc-resizer{border-radius:5px;border-width:1px;width:8px;height:8px;border-style:solid;border-color:inherit;background:#fff;left:50%;margin-left:-5px;bottom:-5px}.fc-time-grid .fc-now-indicator-line{border-top-width:1px;left:0;right:0}.fc-time-grid .fc-now-indicator-arrow{margin-top:-5px}.fc-ltr .fc-time-grid .fc-now-indicator-arrow{left:0;border-width:5px 0 5px 6px;border-top-color:transparent;border-bottom-color:transparent}.fc-rtl .fc-time-grid .fc-now-indicator-arrow{right:0;border-width:5px 6px 5px 0;border-top-color:transparent;border-bottom-color:transparent}.fc-event-dot{display:inline-block;width:10px;height:10px;border-radius:5px}.fc-rtl .fc-list-view{direction:rtl}.fc-list-view{border-width:1px;border-style:solid}.fc .fc-list-table{table-layout:auto}.fc-list-table td{border-width:1px 0 0;padding:8px 14px}.fc-list-table tr:first-child td{border-top-width:0}.fc-list-heading{border-bottom-width:1px}.fc-list-heading td{font-weight:700}.fc-ltr .fc-list-heading-main{float:left}.fc-ltr .fc-list-heading-alt,.fc-rtl .fc-list-heading-main{float:right}.fc-rtl .fc-list-heading-alt{float:left}.fc-list-item.fc-has-url{cursor:pointer}.fc-list-item-marker,.fc-list-item-time{white-space:nowrap;width:1px}.fc-ltr .fc-list-item-marker{padding-right:0}.fc-rtl .fc-list-item-marker{padding-left:0}.fc-list-item-title a{text-decoration:none;color:inherit}.fc-list-item-title a[href]:hover{text-decoration:underline}.fc-list-empty-wrap2{position:absolute;top:0;left:0;right:0;bottom:0}.fc-list-empty-wrap1{width:100%;height:100%;display:table}.fc-list-empty{display:table-cell;vertical-align:middle;text-align:center}.fc-unthemed .fc-list-empty{background-color:#eee} \ No newline at end of file diff --git a/public/assets/lib/fullcalendar/fullcalendar.min.js b/public/assets/lib/fullcalendar/fullcalendar.min.js new file mode 100755 index 0000000..8804545 --- /dev/null +++ b/public/assets/lib/fullcalendar/fullcalendar.min.js @@ -0,0 +1,12 @@ +/*! + * FullCalendar v3.9.0 + * Docs & License: https://fullcalendar.io/ + * (c) 2018 Adam Shaw + */ +!function(t,e){"object"==typeof exports&&"object"==typeof module?module.exports=e(require("moment"),require("jquery")):"function"==typeof define&&define.amd?define(["moment","jquery"],e):"object"==typeof exports?exports.FullCalendar=e(require("moment"),require("jquery")):t.FullCalendar=e(t.moment,t.jQuery)}("undefined"!=typeof self?self:this,function(t,e){return function(t){function e(i){if(n[i])return n[i].exports;var r=n[i]={i:i,l:!1,exports:{}};return t[i].call(r.exports,r,r.exports,e),r.l=!0,r.exports}var n={};return e.m=t,e.c=n,e.d=function(t,n,i){e.o(t,n)||Object.defineProperty(t,n,{configurable:!1,enumerable:!0,get:i})},e.n=function(t){var n=t&&t.__esModule?function(){return t.default}:function(){return t};return e.d(n,"a",n),n},e.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},e.p="",e(e.s=236)}([function(e,n){e.exports=t},,function(t,e){var n=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)e.hasOwnProperty(n)&&(t[n]=e[n])};e.__extends=function(t,e){function i(){this.constructor=t}n(t,e),t.prototype=null===e?Object.create(e):(i.prototype=e.prototype,new i)}},function(t,n){t.exports=e},function(t,e,n){function i(t,e){e.left&&t.css({"border-left-width":1,"margin-left":e.left-1}),e.right&&t.css({"border-right-width":1,"margin-right":e.right-1})}function r(t){t.css({"margin-left":"","margin-right":"","border-left-width":"","border-right-width":""})}function o(){ht("body").addClass("fc-not-allowed")}function s(){ht("body").removeClass("fc-not-allowed")}function a(t,e,n){var i=Math.floor(e/t.length),r=Math.floor(e-i*(t.length-1)),o=[],s=[],a=[],u=0;l(t),t.each(function(e,n){var l=e===t.length-1?r:i,d=ht(n).outerHeight(!0);d *").each(function(t,n){var i=ht(n).outerWidth();i>e&&(e=i)}),e++,t.width(e),e}function d(t,e){var n,i=t.add(e);return i.css({position:"relative",left:-1}),n=t.outerHeight()-e.outerHeight(),i.css({position:"",left:""}),n}function c(t){var e=t.css("position"),n=t.parents().filter(function(){var t=ht(this);return/(auto|scroll)/.test(t.css("overflow")+t.css("overflow-y")+t.css("overflow-x"))}).eq(0);return"fixed"!==e&&n.length?n:ht(t[0].ownerDocument||document)}function p(t,e){var n=t.offset(),i=n.left-(e?e.left:0),r=n.top-(e?e.top:0);return{left:i,right:i+t.outerWidth(),top:r,bottom:r+t.outerHeight()}}function h(t,e){var n=t.offset(),i=g(t),r=n.left+b(t,"border-left-width")+i.left-(e?e.left:0),o=n.top+b(t,"border-top-width")+i.top-(e?e.top:0);return{left:r,right:r+t[0].clientWidth,top:o,bottom:o+t[0].clientHeight}}function f(t,e){var n=t.offset(),i=n.left+b(t,"border-left-width")+b(t,"padding-left")-(e?e.left:0),r=n.top+b(t,"border-top-width")+b(t,"padding-top")-(e?e.top:0);return{left:i,right:i+t.width(),top:r,bottom:r+t.height()}}function g(t){var e,n=t[0].offsetWidth-t[0].clientWidth,i=t[0].offsetHeight-t[0].clientHeight;return n=v(n),i=v(i),e={left:0,right:0,top:0,bottom:i},y()&&"rtl"===t.css("direction")?e.left=n:e.right=n,e}function v(t){return t=Math.max(0,t),t=Math.round(t)}function y(){return null===ft&&(ft=m()),ft}function m(){var t=ht("
      ").css({position:"absolute",top:-1e3,left:0,border:0,padding:0,overflow:"scroll",direction:"rtl"}).appendTo("body"),e=t.children(),n=e.offset().left>t.offset().left;return t.remove(),n}function b(t,e){return parseFloat(t.css(e))||0}function w(t){return 1===t.which&&!t.ctrlKey}function D(t){var e=t.originalEvent.touches;return e&&e.length?e[0].pageX:t.pageX}function E(t){var e=t.originalEvent.touches;return e&&e.length?e[0].pageY:t.pageY}function S(t){return/^touch/.test(t.type)}function C(t){t.addClass("fc-unselectable").on("selectstart",T)}function R(t){t.removeClass("fc-unselectable").off("selectstart",T)}function T(t){t.preventDefault()}function M(t,e){var n={left:Math.max(t.left,e.left),right:Math.min(t.right,e.right),top:Math.max(t.top,e.top),bottom:Math.min(t.bottom,e.bottom)};return n.left=1&&ut(o)));i++);return r}function L(t,e){var n=k(t);return"week"===n&&"object"==typeof e&&e.days&&(n="day"),n}function V(t,e,n){return null!=n?n.diff(e,t,!0):pt.isDuration(e)?e.as(t):e.end.diff(e.start,t,!0)}function G(t,e,n){var i;return U(n)?(e-t)/n:(i=n.asMonths(),Math.abs(i)>=1&&ut(i)?e.diff(t,"months",!0)/i:e.diff(t,"days",!0)/n.asDays())}function N(t,e){var n,i;return U(t)||U(e)?t/e:(n=t.asMonths(),i=e.asMonths(),Math.abs(n)>=1&&ut(n)&&Math.abs(i)>=1&&ut(i)?n/i:t.asDays()/e.asDays())}function j(t,e){var n;return U(t)?pt.duration(t*e):(n=t.asMonths(),Math.abs(n)>=1&&ut(n)?pt.duration({months:n*e}):pt.duration({days:t.asDays()*e}))}function U(t){return Boolean(t.hours()||t.minutes()||t.seconds()||t.milliseconds())}function W(t){return"[object Date]"===Object.prototype.toString.call(t)||t instanceof Date}function q(t){return"string"==typeof t&&/^\d+\:\d+(?:\:\d+\.?(?:\d{3})?)?$/.test(t)}function Y(){for(var t=[],e=0;e=0;o--)if("object"==typeof(s=t[o][i]))r.unshift(s);else if(void 0!==s){l[i]=s;break}r.length&&(l[i]=Q(r))}for(n=t.length-1;n>=0;n--){a=t[n];for(i in a)i in l||(l[i]=a[i])}return l}function X(t,e){for(var n in t)$(t,n)&&(e[n]=t[n])}function $(t,e){return gt.call(t,e)}function K(t,e,n){if(ht.isFunction(t)&&(t=[t]),t){var i=void 0,r=void 0;for(i=0;i/g,">").replace(/'/g,"'").replace(/"/g,""").replace(/\n/g,"
      ")}function rt(t){return t.replace(/&.*?;/g,"")}function ot(t){var e=[];return ht.each(t,function(t,n){null!=n&&e.push(t+":"+n)}),e.join(";")}function st(t){var e=[];return ht.each(t,function(t,n){null!=n&&e.push(t+'="'+it(n)+'"')}),e.join(" ")}function at(t){return t.charAt(0).toUpperCase()+t.slice(1)}function lt(t,e){return t-e}function ut(t){return t%1==0}function dt(t,e){var n=t[e];return function(){return n.apply(t,arguments)}}function ct(t,e,n){void 0===n&&(n=!1);var i,r,o,s,a,l=function(){var u=+new Date-s;ua&&s.push(new t(a,o.startMs)),o.endMs>a&&(a=o.endMs);return at.startMs)&&(null==this.startMs||null==t.endMs||this.startMs=this.startMs)&&(null==this.endMs||null!=t.endMs&&t.endMs<=this.endMs)},t.prototype.containsDate=function(t){var e=t.valueOf();return(null==this.startMs||e>=this.startMs)&&(null==this.endMs||e=this.endMs&&(e=this.endMs-1),e},t.prototype.equals=function(t){return this.startMs===t.startMs&&this.endMs===t.endMs},t.prototype.clone=function(){var e=new t(this.startMs,this.endMs);return e.isStart=this.isStart,e.isEnd=this.isEnd,e},t.prototype.getStart=function(){return null!=this.startMs?o.default.utc(this.startMs).stripZone():null},t.prototype.getEnd=function(){return null!=this.endMs?o.default.utc(this.endMs).stripZone():null},t.prototype.as=function(t){return r.utc(this.endMs).diff(r.utc(this.startMs),t,!0)},t}();e.default=s},function(t,e,n){Object.defineProperty(e,"__esModule",{value:!0});var i=n(2),r=n(3),o=n(208),s=n(33),a=n(49),l=function(t){function e(n){var i=t.call(this)||this;return i.calendar=n,i.className=[],i.uid=String(e.uuid++),i}return i.__extends(e,t),e.parse=function(t,e){var n=new this(e);return!("object"!=typeof t||!n.applyProps(t))&&n},e.normalizeId=function(t){return t?String(t):null},e.prototype.fetch=function(t,e,n){},e.prototype.removeEventDefsById=function(t){},e.prototype.removeAllEventDefs=function(){},e.prototype.getPrimitive=function(t){},e.prototype.parseEventDefs=function(t){var e,n,i=[];for(e=0;e0},e}(o.default);e.default=s},function(t,e){Object.defineProperty(e,"__esModule",{value:!0});var n=function(){function t(t,e){this.isAllDay=!1,this.unzonedRange=t,this.isAllDay=e}return t.prototype.toLegacy=function(t){return{start:t.msToMoment(this.unzonedRange.startMs,this.isAllDay),end:t.msToMoment(this.unzonedRange.endMs,this.isAllDay)}},t}();e.default=n},function(t,e,n){Object.defineProperty(e,"__esModule",{value:!0});var i=n(2),r=n(34),o=n(209),s=n(17),a=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return i.__extends(e,t),e.prototype.buildInstances=function(){return[this.buildInstance()]},e.prototype.buildInstance=function(){return new o.default(this,this.dateProfile)},e.prototype.isAllDay=function(){return this.dateProfile.isAllDay()},e.prototype.clone=function(){var e=t.prototype.clone.call(this);return e.dateProfile=this.dateProfile,e},e.prototype.rezone=function(){var t=this.source.calendar,e=this.dateProfile;this.dateProfile=new s.default(t.moment(e.start),e.end?t.moment(e.end):null,t)},e.prototype.applyManualStandardProps=function(e){var n=t.prototype.applyManualStandardProps.call(this,e),i=s.default.parse(e,this.source);return!!i&&(this.dateProfile=i,null!=e.date&&(this.miscProps.date=e.date),n)},e}(r.default);e.default=a,a.defineStandardProps({start:!1,date:!1,end:!1,allDay:!1})},function(t,e){Object.defineProperty(e,"__esModule",{value:!0});var n=function(){function t(){}return t.mixInto=function(t){var e=this;Object.getOwnPropertyNames(this.prototype).forEach(function(n){t.prototype[n]||(t.prototype[n]=e.prototype[n])})},t.mixOver=function(t){var e=this;Object.getOwnPropertyNames(this.prototype).forEach(function(n){t.prototype[n]=e.prototype[n]})},t}();e.default=n},function(t,e){Object.defineProperty(e,"__esModule",{value:!0});var n=function(){function t(t){this.view=t._getView(),this.component=t}return t.prototype.opt=function(t){return this.view.opt(t)},t.prototype.end=function(){},t}();e.default=n},function(t,e,n){Object.defineProperty(e,"__esModule",{value:!0}),e.version="3.9.0",e.internalApiVersion=12;var i=n(4);e.applyAll=i.applyAll,e.debounce=i.debounce,e.isInt=i.isInt,e.htmlEscape=i.htmlEscape,e.cssToStr=i.cssToStr,e.proxy=i.proxy,e.capitaliseFirstLetter=i.capitaliseFirstLetter,e.getOuterRect=i.getOuterRect,e.getClientRect=i.getClientRect,e.getContentRect=i.getContentRect,e.getScrollbarWidths=i.getScrollbarWidths,e.preventDefault=i.preventDefault,e.parseFieldSpecs=i.parseFieldSpecs,e.compareByFieldSpecs=i.compareByFieldSpecs,e.compareByFieldSpec=i.compareByFieldSpec,e.flexibleCompare=i.flexibleCompare,e.computeGreatestUnit=i.computeGreatestUnit,e.divideRangeByDuration=i.divideRangeByDuration,e.divideDurationByDuration=i.divideDurationByDuration,e.multiplyDuration=i.multiplyDuration,e.durationHasTime=i.durationHasTime,e.log=i.log,e.warn=i.warn,e.removeExact=i.removeExact,e.intersectRects=i.intersectRects;var r=n(47);e.formatDate=r.formatDate,e.formatRange=r.formatRange,e.queryMostGranularFormatUnit=r.queryMostGranularFormatUnit;var o=n(31);e.datepickerLocale=o.datepickerLocale,e.locale=o.locale;var s=n(10);e.moment=s.default;var a=n(11);e.EmitterMixin=a.default;var l=n(7);e.ListenerMixin=l.default;var u=n(48);e.Model=u.default;var d=n(207);e.Constraints=d.default;var c=n(5);e.UnzonedRange=c.default;var p=n(12);e.ComponentFootprint=p.default;var h=n(212);e.BusinessHourGenerator=h.default;var f=n(34);e.EventDef=f.default;var g=n(37);e.EventDefMutation=g.default;var v=n(38);e.EventSourceParser=v.default;var y=n(6);e.EventSource=y.default;var m=n(51);e.defineThemeSystem=m.defineThemeSystem;var b=n(18);e.EventInstanceGroup=b.default;var w=n(52);e.ArrayEventSource=w.default;var D=n(215);e.FuncEventSource=D.default;var E=n(216);e.JsonFeedEventSource=E.default;var S=n(36);e.EventFootprint=S.default;var C=n(33);e.Class=C.default;var R=n(14);e.Mixin=R.default;var T=n(53);e.CoordCache=T.default;var M=n(54);e.DragListener=M.default;var I=n(20);e.Promise=I.default;var H=n(217);e.TaskQueue=H.default;var P=n(218);e.RenderQueue=P.default;var _=n(39);e.Scroller=_.default;var x=n(19);e.Theme=x.default;var O=n(219);e.DateComponent=O.default;var F=n(40);e.InteractiveDateComponent=F.default;var z=n(220);e.Calendar=z.default;var B=n(41);e.View=B.default;var A=n(22);e.defineView=A.defineView,e.getViewConfig=A.getViewConfig;var k=n(55);e.DayTableMixin=k.default;var L=n(56);e.BusinessHourRenderer=L.default;var V=n(42);e.EventRenderer=V.default;var G=n(57);e.FillRenderer=G.default;var N=n(58);e.HelperRenderer=N.default;var j=n(222);e.ExternalDropping=j.default;var U=n(223);e.EventResizing=U.default;var W=n(59);e.EventPointing=W.default;var q=n(224);e.EventDragging=q.default;var Y=n(225);e.DateSelecting=Y.default;var Z=n(60);e.StandardInteractionsMixin=Z.default;var Q=n(226);e.AgendaView=Q.default;var X=n(227);e.TimeGrid=X.default;var $=n(61);e.DayGrid=$.default;var K=n(62);e.BasicView=K.default;var J=n(229);e.MonthView=J.default;var tt=n(230);e.ListView=tt.default},function(t,e,n){Object.defineProperty(e,"__esModule",{value:!0});var i=n(5),r=function(){function t(t,e,n){this.start=t,this.end=e||null,this.unzonedRange=this.buildUnzonedRange(n)}return t.parse=function(e,n){var i=e.start||e.date,r=e.end;if(!i)return!1;var o=n.calendar,s=o.moment(i),a=r?o.moment(r):null,l=e.allDay,u=o.opt("forceEventDuration");return!!s.isValid()&&(!a||a.isValid()&&a.isAfter(s)||(a=null),null==l&&null==(l=n.allDayDefault)&&(l=o.opt("allDayDefault")),!0===l?(s.stripTime(),a&&a.stripTime()):!1===l&&(s.hasTime()||s.time(0),a&&!a.hasTime()&&a.time(0)),!a&&u&&(a=o.getDefaultEventEnd(!s.hasTime(),s)),new t(s,a,o))},t.isStandardProp=function(t){return"start"===t||"date"===t||"end"===t||"allDay"===t},t.prototype.isAllDay=function(){return!(this.start.hasTime()||this.end&&this.end.hasTime())},t.prototype.buildUnzonedRange=function(t){var e=this.start.clone().stripZone().valueOf(),n=this.getEnd(t).stripZone().valueOf();return new i.default(e,n)},t.prototype.getEnd=function(t){return this.end?this.end.clone():t.getDefaultEventEnd(this.isAllDay(),this.start)},t}();e.default=r},function(t,e,n){Object.defineProperty(e,"__esModule",{value:!0});var i=n(5),r=n(35),o=n(211),s=function(){function t(t){this.eventInstances=t||[]}return t.prototype.getAllEventRanges=function(t){return t?this.sliceNormalRenderRanges(t):this.eventInstances.map(r.eventInstanceToEventRange)},t.prototype.sliceRenderRanges=function(t){return this.isInverse()?this.sliceInverseRenderRanges(t):this.sliceNormalRenderRanges(t)},t.prototype.sliceNormalRenderRanges=function(t){var e,n,i,r=this.eventInstances,s=[];for(e=0;e
      ')},e.prototype.clear=function(){this.setHeight("auto"),this.applyOverflow()},e.prototype.destroy=function(){this.el.remove()},e.prototype.applyOverflow=function(){this.scrollEl.css({"overflow-x":this.overflowX,"overflow-y":this.overflowY})},e.prototype.lockOverflow=function(t){var e=this.overflowX,n=this.overflowY;t=t||this.getScrollbarWidths(),"auto"===e&&(e=t.top||t.bottom||this.scrollEl[0].scrollWidth-1>this.scrollEl[0].clientWidth?"scroll":"hidden"),"auto"===n&&(n=t.left||t.right||this.scrollEl[0].scrollHeight-1>this.scrollEl[0].clientHeight?"scroll":"hidden"),this.scrollEl.css({"overflow-x":e,"overflow-y":n})},e.prototype.setHeight=function(t){this.scrollEl.height(t)},e.prototype.getScrollTop=function(){return this.scrollEl.scrollTop()},e.prototype.setScrollTop=function(t){this.scrollEl.scrollTop(t)},e.prototype.getClientWidth=function(){return this.scrollEl[0].clientWidth},e.prototype.getClientHeight=function(){return this.scrollEl[0].clientHeight},e.prototype.getScrollbarWidths=function(){return o.getScrollbarWidths(this.scrollEl)},e}(s.default);e.default=a},function(t,e,n){Object.defineProperty(e,"__esModule",{value:!0});var i=n(2),r=n(3),o=n(4),s=n(219),a=n(21),l=function(t){function e(e,n){var i=t.call(this,e,n)||this;return i.segSelector=".fc-event-container > *",i.dateSelectingClass&&(i.dateClicking=new i.dateClickingClass(i)),i.dateSelectingClass&&(i.dateSelecting=new i.dateSelectingClass(i)),i.eventPointingClass&&(i.eventPointing=new i.eventPointingClass(i)),i.eventDraggingClass&&i.eventPointing&&(i.eventDragging=new i.eventDraggingClass(i,i.eventPointing)),i.eventResizingClass&&i.eventPointing&&(i.eventResizing=new i.eventResizingClass(i,i.eventPointing)),i.externalDroppingClass&&(i.externalDropping=new i.externalDroppingClass(i)),i}return i.__extends(e,t),e.prototype.setElement=function(e){t.prototype.setElement.call(this,e),this.dateClicking&&this.dateClicking.bindToEl(e),this.dateSelecting&&this.dateSelecting.bindToEl(e),this.bindAllSegHandlersToEl(e)},e.prototype.removeElement=function(){this.endInteractions(),t.prototype.removeElement.call(this)},e.prototype.executeEventUnrender=function(){this.endInteractions(),t.prototype.executeEventUnrender.call(this)},e.prototype.bindGlobalHandlers=function(){t.prototype.bindGlobalHandlers.call(this),this.externalDropping&&this.externalDropping.bindToDocument()},e.prototype.unbindGlobalHandlers=function(){t.prototype.unbindGlobalHandlers.call(this),this.externalDropping&&this.externalDropping.unbindFromDocument()},e.prototype.bindDateHandlerToEl=function(t,e,n){var i=this;this.el.on(e,function(t){if(!r(t.target).is(i.segSelector+":not(.fc-helper),"+i.segSelector+":not(.fc-helper) *,.fc-more,a[data-goto]"))return n.call(i,t)})},e.prototype.bindAllSegHandlersToEl=function(t){[this.eventPointing,this.eventDragging,this.eventResizing].forEach(function(e){e&&e.bindToEl(t)})},e.prototype.bindSegHandlerToEl=function(t,e,n){var i=this;t.on(e,this.segSelector,function(t){var e=r(t.currentTarget);if(!e.is(".fc-helper")){var o=e.data("fc-seg");if(o&&!i.shouldIgnoreEventPointing())return n.call(i,o,t)}})},e.prototype.shouldIgnoreMouse=function(){return a.default.get().shouldIgnoreMouse()},e.prototype.shouldIgnoreTouch=function(){var t=this._getView();return t.isSelected||t.selectedEvent},e.prototype.shouldIgnoreEventPointing=function(){return this.eventDragging&&this.eventDragging.isDragging||this.eventResizing&&this.eventResizing.isResizing},e.prototype.canStartSelection=function(t,e){return o.getEvIsTouch(e)&&!this.canStartResize(t,e)&&(this.isEventDefDraggable(t.footprint.eventDef)||this.isEventDefResizable(t.footprint.eventDef))},e.prototype.canStartDrag=function(t,e){return!this.canStartResize(t,e)&&this.isEventDefDraggable(t.footprint.eventDef)},e.prototype.canStartResize=function(t,e){var n=this._getView(),i=t.footprint.eventDef;return(!o.getEvIsTouch(e)||n.isEventDefSelected(i))&&this.isEventDefResizable(i)&&r(e.target).is(".fc-resizer")},e.prototype.endInteractions=function(){[this.dateClicking,this.dateSelecting,this.eventPointing,this.eventDragging,this.eventResizing].forEach(function(t){t&&t.end()})},e.prototype.isEventDefDraggable=function(t){return this.isEventDefStartEditable(t)},e.prototype.isEventDefStartEditable=function(t){var e=t.isStartExplicitlyEditable();return null==e&&null==(e=this.opt("eventStartEditable"))&&(e=this.isEventDefGenerallyEditable(t)),e},e.prototype.isEventDefGenerallyEditable=function(t){var e=t.isExplicitlyEditable();return null==e&&(e=this.opt("editable")),e},e.prototype.isEventDefResizableFromStart=function(t){return this.opt("eventResizableFromStart")&&this.isEventDefResizable(t)},e.prototype.isEventDefResizableFromEnd=function(t){return this.isEventDefResizable(t)},e.prototype.isEventDefResizable=function(t){var e=t.isDurationExplicitlyEditable();return null==e&&null==(e=this.opt("eventDurationEditable"))&&(e=this.isEventDefGenerallyEditable(t)),e},e.prototype.diffDates=function(t,e){return this.largeUnit?o.diffByUnit(t,e,this.largeUnit):o.diffDayTime(t,e)},e.prototype.isEventInstanceGroupAllowed=function(t){var e,n=this._getView(),i=this.dateProfile,r=this.eventRangesToEventFootprints(t.getAllEventRanges());for(e=0;e1?"ll":"LL"},e.prototype.setDate=function(t){var e=this.get("dateProfile"),n=this.dateProfileGenerator.build(t,void 0,!0);e&&e.activeUnzonedRange.equals(n.activeUnzonedRange)||this.set("dateProfile",n)},e.prototype.unsetDate=function(){this.unset("dateProfile")},e.prototype.fetchInitialEvents=function(t){var e=this.calendar,n=t.isRangeAllDay&&!this.usesMinMaxTime;return e.requestEvents(e.msToMoment(t.activeUnzonedRange.startMs,n),e.msToMoment(t.activeUnzonedRange.endMs,n))},e.prototype.bindEventChanges=function(){this.listenTo(this.calendar,"eventsReset",this.resetEvents)},e.prototype.unbindEventChanges=function(){this.stopListeningTo(this.calendar,"eventsReset")},e.prototype.setEvents=function(t){this.set("currentEvents",t),this.set("hasEvents",!0)},e.prototype.unsetEvents=function(){this.unset("currentEvents"),this.unset("hasEvents")},e.prototype.resetEvents=function(t){this.startBatchRender(),this.unsetEvents(),this.setEvents(t),this.stopBatchRender()},e.prototype.requestDateRender=function(t){var e=this;this.requestRender(function(){e.executeDateRender(t)},"date","init")},e.prototype.requestDateUnrender=function(){var t=this;this.requestRender(function(){t.executeDateUnrender()},"date","destroy")},e.prototype.executeDateRender=function(e){t.prototype.executeDateRender.call(this,e),this.render&&this.render(),this.trigger("datesRendered"),this.addScroll({isDateInit:!0}),this.startNowIndicator()},e.prototype.executeDateUnrender=function(){this.unselect(),this.stopNowIndicator(),this.trigger("before:datesUnrendered"),this.destroy&&this.destroy(),t.prototype.executeDateUnrender.call(this)},e.prototype.bindBaseRenderHandlers=function(){var t=this;this.on("datesRendered",function(){t.whenSizeUpdated(t.triggerViewRender)}),this.on("before:datesUnrendered",function(){t.triggerViewDestroy()})},e.prototype.triggerViewRender=function(){this.publiclyTrigger("viewRender",{context:this,args:[this,this.el]})},e.prototype.triggerViewDestroy=function(){this.publiclyTrigger("viewDestroy",{context:this,args:[this,this.el]})},e.prototype.requestEventsRender=function(t){var e=this;this.requestRender(function(){e.executeEventRender(t),e.whenSizeUpdated(e.triggerAfterEventsRendered)},"event","init")},e.prototype.requestEventsUnrender=function(){var t=this;this.requestRender(function(){t.triggerBeforeEventsDestroyed(),t.executeEventUnrender()},"event","destroy")},e.prototype.requestBusinessHoursRender=function(t){var e=this;this.requestRender(function(){e.renderBusinessHours(t)},"businessHours","init")},e.prototype.requestBusinessHoursUnrender=function(){var t=this;this.requestRender(function(){t.unrenderBusinessHours()},"businessHours","destroy")},e.prototype.bindGlobalHandlers=function(){t.prototype.bindGlobalHandlers.call(this),this.listenTo(d.default.get(),{touchstart:this.processUnselect,mousedown:this.handleDocumentMousedown})},e.prototype.unbindGlobalHandlers=function(){t.prototype.unbindGlobalHandlers.call(this),this.stopListeningTo(d.default.get())},e.prototype.startNowIndicator=function(){var t,e,n,i=this;this.opt("nowIndicator")&&(t=this.getNowIndicatorUnit())&&(e=s.proxy(this,"updateNowIndicator"),this.initialNowDate=this.calendar.getNow(),this.initialNowQueriedMs=(new Date).valueOf(),n=this.initialNowDate.clone().startOf(t).add(1,t).valueOf()-this.initialNowDate.valueOf(),this.nowIndicatorTimeoutID=setTimeout(function(){i.nowIndicatorTimeoutID=null,e(),n=+o.duration(1,t),n=Math.max(100,n),i.nowIndicatorIntervalID=setInterval(e,n)},n))},e.prototype.updateNowIndicator=function(){this.isDatesRendered&&this.initialNowDate&&(this.unrenderNowIndicator(),this.renderNowIndicator(this.initialNowDate.clone().add((new Date).valueOf()-this.initialNowQueriedMs)),this.isNowIndicatorRendered=!0)},e.prototype.stopNowIndicator=function(){this.isNowIndicatorRendered&&(this.nowIndicatorTimeoutID&&(clearTimeout(this.nowIndicatorTimeoutID),this.nowIndicatorTimeoutID=null),this.nowIndicatorIntervalID&&(clearInterval(this.nowIndicatorIntervalID),this.nowIndicatorIntervalID=null),this.unrenderNowIndicator(),this.isNowIndicatorRendered=!1)},e.prototype.updateSize=function(e,n,i){this.setHeight?this.setHeight(e,n):t.prototype.updateSize.call(this,e,n,i),this.updateNowIndicator()},e.prototype.addScroll=function(t){var e=this.queuedScroll||(this.queuedScroll={});r.extend(e,t)},e.prototype.popScroll=function(){this.applyQueuedScroll(),this.queuedScroll=null},e.prototype.applyQueuedScroll=function(){this.queuedScroll&&this.applyScroll(this.queuedScroll)},e.prototype.queryScroll=function(){var t={};return this.isDatesRendered&&r.extend(t,this.queryDateScroll()),t},e.prototype.applyScroll=function(t){t.isDateInit&&this.isDatesRendered&&r.extend(t,this.computeInitialDateScroll()),this.isDatesRendered&&this.applyDateScroll(t)},e.prototype.computeInitialDateScroll=function(){return{}},e.prototype.queryDateScroll=function(){return{}},e.prototype.applyDateScroll=function(t){},e.prototype.reportEventDrop=function(t,e,n,i){var r=this.calendar.eventManager,s=r.mutateEventsWithId(t.def.id,e),a=e.dateMutation;a&&(t.dateProfile=a.buildNewDateProfile(t.dateProfile,this.calendar)),this.triggerEventDrop(t,a&&a.dateDelta||o.duration(),s,n,i)},e.prototype.triggerEventDrop=function(t,e,n,i,r){this.publiclyTrigger("eventDrop",{context:i[0],args:[t.toLegacy(),e,n,r,{},this]})},e.prototype.reportExternalDrop=function(t,e,n,i,r,o){e&&this.calendar.eventManager.addEventDef(t,n),this.triggerExternalDrop(t,e,i,r,o)},e.prototype.triggerExternalDrop=function(t,e,n,i,r){this.publiclyTrigger("drop",{context:n[0],args:[t.dateProfile.start.clone(),i,r,this]}),e&&this.publiclyTrigger("eventReceive",{context:this,args:[t.buildInstance().toLegacy(),this]})},e.prototype.reportEventResize=function(t,e,n,i){var r=this.calendar.eventManager,o=r.mutateEventsWithId(t.def.id,e);t.dateProfile=e.dateMutation.buildNewDateProfile(t.dateProfile,this.calendar),this.triggerEventResize(t,e.dateMutation.endDelta,o,n,i)},e.prototype.triggerEventResize=function(t,e,n,i,r){this.publiclyTrigger("eventResize",{context:i[0],args:[t.toLegacy(),e,n,r,{},this]})},e.prototype.select=function(t,e){this.unselect(e),this.renderSelectionFootprint(t),this.reportSelection(t,e)},e.prototype.renderSelectionFootprint=function(e){this.renderSelection?this.renderSelection(e.toLegacy(this.calendar)):t.prototype.renderSelectionFootprint.call(this,e)},e.prototype.reportSelection=function(t,e){this.isSelected=!0,this.triggerSelect(t,e)},e.prototype.triggerSelect=function(t,e){var n=this.calendar.footprintToDateProfile(t);this.publiclyTrigger("select",{context:this,args:[n.start,n.end,e,this]})},e.prototype.unselect=function(t){this.isSelected&&(this.isSelected=!1,this.destroySelection&&this.destroySelection(),this.unrenderSelection(),this.publiclyTrigger("unselect",{context:this,args:[t,this]}))},e.prototype.selectEventInstance=function(t){this.selectedEventInstance&&this.selectedEventInstance===t||(this.unselectEventInstance(),this.getEventSegs().forEach(function(e){e.footprint.eventInstance===t&&e.el&&e.el.addClass("fc-selected")}),this.selectedEventInstance=t)},e.prototype.unselectEventInstance=function(){this.selectedEventInstance&&(this.getEventSegs().forEach(function(t){t.el&&t.el.removeClass("fc-selected")}),this.selectedEventInstance=null)},e.prototype.isEventDefSelected=function(t){return this.selectedEventInstance&&this.selectedEventInstance.def.id===t.id},e.prototype.handleDocumentMousedown=function(t){s.isPrimaryMouseButton(t)&&this.processUnselect(t)},e.prototype.processUnselect=function(t){this.processRangeUnselect(t),this.processEventUnselect(t)},e.prototype.processRangeUnselect=function(t){var e;this.isSelected&&this.opt("unselectAuto")&&((e=this.opt("unselectCancel"))&&r(t.target).closest(e).length||this.unselect(t))},e.prototype.processEventUnselect=function(t){this.selectedEventInstance&&(r(t.target).closest(".fc-selected").length||this.unselectEventInstance())},e.prototype.triggerBaseRendered=function(){this.publiclyTrigger("viewRender",{context:this,args:[this,this.el]})},e.prototype.triggerBaseUnrendered=function(){this.publiclyTrigger("viewDestroy",{context:this,args:[this,this.el]})},e.prototype.triggerDayClick=function(t,e,n){var i=this.calendar.footprintToDateProfile(t);this.publiclyTrigger("dayClick",{context:e,args:[i.start,n,this]})},e.prototype.isDateInOtherMonth=function(t,e){return!1},e.prototype.getUnzonedRangeOption=function(t){var e=this.opt(t);if("function"==typeof e&&(e=e.apply(null,Array.prototype.slice.call(arguments,1))),e)return this.calendar.parseUnzonedRange(e)},e.prototype.initHiddenDays=function(){var t,e=this.opt("hiddenDays")||[],n=[],i=0;for(!1===this.opt("weekends")&&e.push(0,6),t=0;t<7;t++)(n[t]=-1!==r.inArray(t,e))||i++;if(!i)throw new Error("invalid hiddenDays");this.isHiddenDayHash=n},e.prototype.trimHiddenDays=function(t){var e=t.getStart(),n=t.getEnd();return e&&(e=this.skipHiddenDays(e)),n&&(n=this.skipHiddenDays(n,-1,!0)),null===e||null===n||eo&&(!l[s]||u.isSame(d,l[s]))&&(s-1!==o||"."!==c[s]);s--)v=c[s]+v;for(a=o;a<=s;a++)y+=c[a],m+=p[a];return(y||m)&&(b=r?m+i+y:y+i+m),g(h+b+v)}function a(t){return C[t]||(C[t]=l(t))}function l(t){var e=u(t);return{fakeFormatString:c(e),sameUnits:p(e)}}function u(t){for(var e,n=[],i=/\[([^\]]*)\]|\(([^\)]*)\)|(LTS|LT|(\w)\4*o?)|([^\w\[\(]+)/g;e=i.exec(t);)e[1]?n.push.apply(n,d(e[1])):e[2]?n.push({maybe:u(e[2])}):e[3]?n.push({token:e[3]}):e[5]&&n.push.apply(n,d(e[5]));return n}function d(t){return". "===t?["."," "]:[t]}function c(t){var e,n,i=[];for(e=0;er.value)&&(r=i);return r?r.unit:null}Object.defineProperty(e,"__esModule",{value:!0});var y=n(10);y.newMomentProto.format=function(){return this._fullCalendar&&arguments[0]?r(this,arguments[0]):this._ambigTime?y.oldMomentFormat(i(this),"YYYY-MM-DD"):this._ambigZone?y.oldMomentFormat(i(this),"YYYY-MM-DD[T]HH:mm:ss"):this._fullCalendar?y.oldMomentFormat(i(this)):y.oldMomentProto.format.apply(this,arguments)},y.newMomentProto.toISOString=function(){return this._ambigTime?y.oldMomentFormat(i(this),"YYYY-MM-DD"):this._ambigZone?y.oldMomentFormat(i(this),"YYYY-MM-DD[T]HH:mm:ss"):this._fullCalendar?y.oldMomentProto.toISOString.apply(i(this),arguments):y.oldMomentProto.toISOString.apply(this,arguments)};var m="\v",b="",w="",D=new RegExp(w+"([^"+w+"]*)"+w,"g"),E={t:function(t){return y.oldMomentFormat(t,"a").charAt(0)},T:function(t){return y.oldMomentFormat(t,"A").charAt(0)}},S={Y:{value:1,unit:"year"},M:{value:2,unit:"month"},W:{value:3,unit:"week"},w:{value:3,unit:"week"},D:{value:4,unit:"day"},d:{value:4,unit:"day"}};e.formatDate=r,e.formatRange=o;var C={};e.queryMostGranularFormatUnit=v},function(t,e,n){Object.defineProperty(e,"__esModule",{value:!0});var i=n(2),r=n(33),o=n(11),s=n(7),a=function(t){function e(){var e=t.call(this)||this;return e._watchers={},e._props={},e.applyGlobalWatchers(),e.constructed(),e}return i.__extends(e,t),e.watch=function(t){for(var e=[],n=1;n0&&(t=this.els.eq(0).offsetParent()),this.origin=t?t.offset():null,this.boundingRect=this.queryBoundingRect(),this.isHorizontal&&this.buildElHorizontals(),this.isVertical&&this.buildElVerticals()},t.prototype.clear=function(){this.origin=null,this.boundingRect=null,this.lefts=null,this.rights=null,this.tops=null,this.bottoms=null},t.prototype.ensureBuilt=function(){this.origin||this.build()},t.prototype.buildElHorizontals=function(){var t=[],e=[];this.els.each(function(n,r){var o=i(r),s=o.offset().left,a=o.outerWidth();t.push(s),e.push(s+a)}),this.lefts=t,this.rights=e},t.prototype.buildElVerticals=function(){var t=[],e=[];this.els.each(function(n,r){var o=i(r),s=o.offset().top,a=o.outerHeight();t.push(s),e.push(s+a)}),this.tops=t,this.bottoms=e},t.prototype.getHorizontalIndex=function(t){this.ensureBuilt();var e,n=this.lefts,i=this.rights,r=n.length;for(e=0;e=n[e]&&t=n[e]&&t0&&(t=r.getScrollParent(this.els.eq(0)),!t.is(document))?r.getClientRect(t):null},t.prototype.isPointInBounds=function(t,e){return this.isLeftInBounds(t)&&this.isTopInBounds(e)},t.prototype.isLeftInBounds=function(t){return!this.boundingRect||t>=this.boundingRect.left&&t=this.boundingRect.top&&t=i*i&&this.handleDistanceSurpassed(t),this.isDragging&&this.handleDrag(e,n,t)},t.prototype.handleDrag=function(t,e,n){this.trigger("drag",t,e,n),this.updateAutoScroll(n)},t.prototype.endDrag=function(t){this.isDragging&&(this.isDragging=!1,this.handleDragEnd(t))},t.prototype.handleDragEnd=function(t){this.trigger("dragEnd",t)},t.prototype.startDelay=function(t){var e=this;this.delay?this.delayTimeoutId=setTimeout(function(){e.handleDelayEnd(t)},this.delay):this.handleDelayEnd(t)},t.prototype.handleDelayEnd=function(t){this.isDelayEnded=!0,this.isDistanceSurpassed&&this.startDrag(t)},t.prototype.handleDistanceSurpassed=function(t){this.isDistanceSurpassed=!0,this.isDelayEnded&&this.startDrag(t)},t.prototype.handleTouchMove=function(t){this.isDragging&&this.shouldCancelTouchScroll&&t.preventDefault(),this.handleMove(t)},t.prototype.handleMouseMove=function(t){this.handleMove(t)},t.prototype.handleTouchScroll=function(t){this.isDragging&&!this.scrollAlwaysKills||this.endInteraction(t,!0)},t.prototype.trigger=function(t){for(var e=[],n=1;n=0&&e<=1?l=e*this.scrollSpeed*-1:n>=0&&n<=1&&(l=n*this.scrollSpeed),i>=0&&i<=1?u=i*this.scrollSpeed*-1:o>=0&&o<=1&&(u=o*this.scrollSpeed)),this.setScrollVel(l,u)},t.prototype.setScrollVel=function(t,e){this.scrollTopVel=t,this.scrollLeftVel=e,this.constrainScrollVel(),!this.scrollTopVel&&!this.scrollLeftVel||this.scrollIntervalId||(this.scrollIntervalId=setInterval(r.proxy(this,"scrollIntervalFunc"),this.scrollIntervalMs))},t.prototype.constrainScrollVel=function(){var t=this.scrollEl;this.scrollTopVel<0?t.scrollTop()<=0&&(this.scrollTopVel=0):this.scrollTopVel>0&&t.scrollTop()+t[0].clientHeight>=t[0].scrollHeight&&(this.scrollTopVel=0),this.scrollLeftVel<0?t.scrollLeft()<=0&&(this.scrollLeftVel=0):this.scrollLeftVel>0&&t.scrollLeft()+t[0].clientWidth>=t[0].scrollWidth&&(this.scrollLeftVel=0)},t.prototype.scrollIntervalFunc=function(){var t=this.scrollEl,e=this.scrollIntervalMs/1e3;this.scrollTopVel&&t.scrollTop(t.scrollTop()+this.scrollTopVel*e),this.scrollLeftVel&&t.scrollLeft(t.scrollLeft()+this.scrollLeftVel*e),this.constrainScrollVel(),this.scrollTopVel||this.scrollLeftVel||this.endAutoScroll()},t.prototype.endAutoScroll=function(){this.scrollIntervalId&&(clearInterval(this.scrollIntervalId),this.scrollIntervalId=null,this.handleScrollEnd())},t.prototype.handleDebouncedScroll=function(){this.scrollIntervalId||this.handleScrollEnd()},t.prototype.handleScrollEnd=function(){},t}();e.default=a,o.default.mixInto(a)},function(t,e,n){Object.defineProperty(e,"__esModule",{value:!0});var i=n(2),r=n(4),o=n(14),s=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return i.__extends(e,t),e.prototype.updateDayTable=function(){for(var t,e,n,i=this,r=i.view,o=r.calendar,s=o.msToUtcMoment(i.dateProfile.renderUnzonedRange.startMs,!0),a=o.msToUtcMoment(i.dateProfile.renderUnzonedRange.endMs,!0),l=-1,u=[],d=[];s.isBefore(a);)r.isHiddenDay(s)?u.push(l+.5):(l++,u.push(l),d.push(s.clone())),s.add(1,"days");if(this.breakOnWeeks){for(e=d[0].day(),t=1;t=e.length?e[e.length-1]+1:e[n]},e.prototype.computeColHeadFormat=function(){return this.rowCnt>1||this.colCnt>10?"ddd":this.colCnt>1?this.opt("dayOfMonthFormat"):"dddd"},e.prototype.sliceRangeByRow=function(t){var e,n,i,r,o,s=this.daysPerRow,a=this.view.computeDayRange(t),l=this.getDateDayIndex(a.start),u=this.getDateDayIndex(a.end.clone().subtract(1,"days")),d=[];for(e=0;e
      '+this.renderHeadTrHtml()+"
"},e.prototype.renderHeadIntroHtml=function(){return this.renderIntroHtml()},e.prototype.renderHeadTrHtml=function(){return""+(this.isRTL?"":this.renderHeadIntroHtml())+this.renderHeadDateCellsHtml()+(this.isRTL?this.renderHeadIntroHtml():"")+""},e.prototype.renderHeadDateCellsHtml=function(){var t,e,n=[];for(t=0;t1?' colspan="'+e+'"':"")+(n?" "+n:"")+">"+(a?s.buildGotoAnchorHtml({date:t,forceOff:o.rowCnt>1||1===o.colCnt},i):i)+""},e.prototype.renderBgTrHtml=function(t){return""+(this.isRTL?"":this.renderBgIntroHtml(t))+this.renderBgCellsHtml(t)+(this.isRTL?this.renderBgIntroHtml(t):"")+""},e.prototype.renderBgIntroHtml=function(t){return this.renderIntroHtml()},e.prototype.renderBgCellsHtml=function(t){var e,n,i=[];for(e=0;e"},e.prototype.renderIntroHtml=function(){},e.prototype.bookendCells=function(t){var e=this.renderIntroHtml();e&&(this.isRTL?t.append(e):t.prepend(e))},e}(o.default);e.default=s},function(t,e){Object.defineProperty(e,"__esModule",{value:!0});var n=function(){function t(t,e){this.component=t,this.fillRenderer=e}return t.prototype.render=function(t){var e=this.component,n=e._getDateProfile().activeUnzonedRange,i=t.buildEventInstanceGroup(e.hasAllDayBusinessHours,n),r=i?e.eventRangesToEventFootprints(i.sliceRenderRanges(n)):[];this.renderEventFootprints(r)},t.prototype.renderEventFootprints=function(t){var e=this.component.eventFootprintsToSegs(t);this.renderSegs(e),this.segs=e},t.prototype.renderSegs=function(t){this.fillRenderer&&this.fillRenderer.renderSegs("businessHours",t,{getClasses:function(t){return["fc-nonbusiness","fc-bgevent"]}})},t.prototype.unrender=function(){this.fillRenderer&&this.fillRenderer.unrender("businessHours"),this.segs=null},t.prototype.getSegs=function(){return this.segs||[]},t}();e.default=n},function(t,e,n){Object.defineProperty(e,"__esModule",{value:!0});var i=n(3),r=n(4),o=function(){function t(t){this.fillSegTag="div",this.component=t,this.elsByFill={}}return t.prototype.renderFootprint=function(t,e,n){this.renderSegs(t,this.component.componentFootprintToSegs(e),n)},t.prototype.renderSegs=function(t,e,n){var i;return e=this.buildSegEls(t,e,n),i=this.attachSegEls(t,e),i&&this.reportEls(t,i),e},t.prototype.unrender=function(t){var e=this.elsByFill[t];e&&(e.remove(),delete this.elsByFill[t])},t.prototype.buildSegEls=function(t,e,n){var r,o=this,s="",a=[];if(e.length){for(r=0;r"},t.prototype.attachSegEls=function(t,e){},t.prototype.reportEls=function(t,e){this.elsByFill[t]?this.elsByFill[t]=this.elsByFill[t].add(e):this.elsByFill[t]=i(e)},t}();e.default=o},function(t,e,n){Object.defineProperty(e,"__esModule",{value:!0});var i=n(13),r=n(36),o=n(6),s=function(){function t(t,e){this.view=t._getView(),this.component=t,this.eventRenderer=e}return t.prototype.renderComponentFootprint=function(t){this.renderEventFootprints([this.fabricateEventFootprint(t)])},t.prototype.renderEventDraggingFootprints=function(t,e,n){this.renderEventFootprints(t,e,"fc-dragging",n?null:this.view.opt("dragOpacity"))},t.prototype.renderEventResizingFootprints=function(t,e,n){this.renderEventFootprints(t,e,"fc-resizing")},t.prototype.renderEventFootprints=function(t,e,n,i){var r,o=this.component.eventFootprintsToSegs(t),s="fc-helper "+(n||"");for(o=this.eventRenderer.renderFgSegEls(o),r=0;r
'+this.renderBgTrHtml(t)+'
'+(this.getIsNumbersVisible()?""+this.renderNumberTrHtml(t)+"":"")+"
"},e.prototype.getIsNumbersVisible=function(){return this.getIsDayNumbersVisible()||this.cellWeekNumbersVisible},e.prototype.getIsDayNumbersVisible=function(){return this.rowCnt>1},e.prototype.renderNumberTrHtml=function(t){return""+(this.isRTL?"":this.renderNumberIntroHtml(t))+this.renderNumberCellsHtml(t)+(this.isRTL?this.renderNumberIntroHtml(t):"")+""},e.prototype.renderNumberIntroHtml=function(t){return this.renderIntroHtml()},e.prototype.renderNumberCellsHtml=function(t){var e,n,i=[];for(e=0;e",this.cellWeekNumbersVisible&&t.day()===n&&(r+=i.buildGotoAnchorHtml({date:t,type:"week"},{class:"fc-week-number"},t.format("w"))),s&&(r+=i.buildGotoAnchorHtml(t,{class:"fc-day-number"},t.format("D"))),r+=""):""},e.prototype.prepareHits=function(){this.colCoordCache.build(),this.rowCoordCache.build(),this.rowCoordCache.bottoms[this.rowCnt-1]+=this.bottomCoordPadding},e.prototype.releaseHits=function(){this.colCoordCache.clear(),this.rowCoordCache.clear()},e.prototype.queryHit=function(t,e){if(this.colCoordCache.isLeftInBounds(t)&&this.rowCoordCache.isTopInBounds(e)){var n=this.colCoordCache.getHorizontalIndex(t),i=this.rowCoordCache.getVerticalIndex(e);if(null!=i&&null!=n)return this.getCellHit(i,n)}},e.prototype.getHitFootprint=function(t){var e=this.getCellRange(t.row,t.col);return new u.default(new l.default(e.start,e.end),!0)},e.prototype.getHitEl=function(t){return this.getCellEl(t.row,t.col)},e.prototype.getCellHit=function(t,e){return{row:t,col:e,component:this,left:this.colCoordCache.getLeftOffset(e),right:this.colCoordCache.getRightOffset(e),top:this.rowCoordCache.getTopOffset(t),bottom:this.rowCoordCache.getBottomOffset(t)}},e.prototype.getCellEl=function(t,e){return this.cellEls.eq(t*this.colCnt+e)},e.prototype.executeEventUnrender=function(){this.removeSegPopover(),t.prototype.executeEventUnrender.call(this)},e.prototype.getOwnEventSegs=function(){ +return t.prototype.getOwnEventSegs.call(this).concat(this.popoverSegs||[])},e.prototype.renderDrag=function(t,e,n){var i;for(i=0;i td > :first-child").each(e),i.position().top+o>a)return n;return!1},e.prototype.limitRow=function(t,e){var n,i,o,s,a,l,u,d,c,p,h,f,g,v,y,m=this,b=this.eventRenderer.rowStructs[t],w=[],D=0,E=function(n){for(;D").append(y),c.append(v),w.push(v[0])),D++};if(e&&e').attr("rowspan",p),l=d[f],y=this.renderMoreLink(t,a.leftCol+f,[a].concat(l)),v=r("
").append(y),g.append(v),h.push(g[0]),w.push(g[0]);c.addClass("fc-limited").after(r(h)),o.push(c[0])}}E(this.colCnt),b.moreEls=r(w),b.limitedEls=r(o)}},e.prototype.unlimitRow=function(t){var e=this.eventRenderer.rowStructs[t];e.moreEls&&(e.moreEls.remove(),e.moreEls=null),e.limitedEls&&(e.limitedEls.removeClass("fc-limited"),e.limitedEls=null)},e.prototype.renderMoreLink=function(t,e,n){var i=this,o=this.view;return r('').text(this.getMoreLinkText(n.length)).on("click",function(s){var a=i.opt("eventLimitClick"),l=i.getCellDate(t,e),u=r(s.currentTarget),d=i.getCellEl(t,e),c=i.getCellSegs(t,e),p=i.resliceDaySegs(c,l),h=i.resliceDaySegs(n,l);"function"==typeof a&&(a=i.publiclyTrigger("eventLimitClick",{context:o,args:[{date:l.clone(),dayEl:d,moreEl:u,segs:p,hiddenSegs:h},s,o]})),"popover"===a?i.showSegPopover(t,e,u,p):"string"==typeof a&&o.calendar.zoomTo(l,a)})},e.prototype.showSegPopover=function(t,e,n,i){var r,o,s=this,l=this.view,u=n.parent();r=1===this.rowCnt?l.el:this.rowEls.eq(t),o={className:"fc-more-popover "+l.calendar.theme.getClass("popover"),content:this.renderSegPopoverContent(t,e,i),parentEl:l.el,top:r.offset().top,autoHide:!0,viewportConstrain:this.opt("popoverViewportConstrain"),hide:function(){s.popoverSegs&&s.triggerBeforeEventSegsDestroyed(s.popoverSegs),s.segPopover.removeElement(),s.segPopover=null,s.popoverSegs=null}},this.isRTL?o.right=u.offset().left+u.outerWidth()+1:o.left=u.offset().left-1,this.segPopover=new a.default(o),this.segPopover.show(),this.bindAllSegHandlersToEl(this.segPopover.el),this.triggerAfterEventSegsRendered(i)},e.prototype.renderSegPopoverContent=function(t,e,n){var i,s=this.view,a=s.calendar.theme,l=this.getCellDate(t,e).format(this.opt("dayPopoverFormat")),u=r('
'+o.htmlEscape(l)+'
'),d=u.find(".fc-event-container");for(n=this.eventRenderer.renderFgSegEls(n,!0),this.popoverSegs=n,i=0;i"+s.htmlEscape(this.opt("weekNumberTitle"))+"":""},e.prototype.renderNumberIntroHtml=function(t){var e=this.view,n=this.getCellDate(t,0);return this.colWeekNumbersVisible?'"+e.buildGotoAnchorHtml({date:n,type:"week",forceOff:1===this.colCnt},n.format("w"))+"":""},e.prototype.renderBgIntroHtml=function(){var t=this.view;return this.colWeekNumbersVisible?'":""},e.prototype.renderIntroHtml=function(){var t=this.view;return this.colWeekNumbersVisible?'":""},e.prototype.getIsNumbersVisible=function(){return d.default.prototype.getIsNumbersVisible.apply(this,arguments)||this.colWeekNumbersVisible},e}(t)}Object.defineProperty(e,"__esModule",{value:!0});var r=n(2),o=n(3),s=n(4),a=n(39),l=n(41),u=n(228),d=n(61),c=function(t){function e(e,n){var i=t.call(this,e,n)||this;return i.dayGrid=i.instantiateDayGrid(),i.dayGrid.isRigid=i.hasRigidRows(),i.opt("weekNumbers")&&(i.opt("weekNumbersWithinDays")?(i.dayGrid.cellWeekNumbersVisible=!0,i.dayGrid.colWeekNumbersVisible=!1):(i.dayGrid.cellWeekNumbersVisible=!1,i.dayGrid.colWeekNumbersVisible=!0)),i.addChild(i.dayGrid),i.scroller=new a.default({overflowX:"hidden",overflowY:"auto"}),i}return r.__extends(e,t),e.prototype.instantiateDayGrid=function(){return new(i(this.dayGridClass))(this)},e.prototype.executeDateRender=function(e){this.dayGrid.breakOnWeeks=/year|month|week/.test(e.currentRangeUnit),t.prototype.executeDateRender.call(this,e)},e.prototype.renderSkeleton=function(){var t,e;this.el.addClass("fc-basic-view").html(this.renderSkeletonHtml()),this.scroller.render(),t=this.scroller.el.addClass("fc-day-grid-container"),e=o('
').appendTo(t),this.el.find(".fc-body > tr > td").append(t),this.dayGrid.headContainerEl=this.el.find(".fc-head-container"),this.dayGrid.setElement(e)},e.prototype.unrenderSkeleton=function(){this.dayGrid.removeElement(),this.scroller.destroy()},e.prototype.renderSkeletonHtml=function(){var t=this.calendar.theme;return''+(this.opt("columnHeader")?'':"")+'
 
'},e.prototype.weekNumberStyleAttr=function(){return null!=this.weekNumberWidth?'style="width:'+this.weekNumberWidth+'px"':""},e.prototype.hasRigidRows=function(){var t=this.opt("eventLimit");return t&&"number"!=typeof t},e.prototype.updateSize=function(e,n,i){var r,o,a=this.opt("eventLimit"),l=this.dayGrid.headContainerEl.find(".fc-row");if(!this.dayGrid.rowEls)return void(n||(r=this.computeScrollerHeight(e),this.scroller.setHeight(r)));t.prototype.updateSize.call(this,e,n,i),this.dayGrid.colWeekNumbersVisible&&(this.weekNumberWidth=s.matchCellWidths(this.el.find(".fc-week-number"))),this.scroller.clear(),s.uncompensateScroll(l),this.dayGrid.removeSegPopover(),a&&"number"==typeof a&&this.dayGrid.limitRows(a),r=this.computeScrollerHeight(e),this.setGridHeight(r,n),a&&"number"!=typeof a&&this.dayGrid.limitRows(a),n||(this.scroller.setHeight(r),o=this.scroller.getScrollbarWidths(),(o.left||o.right)&&(s.compensateScroll(l,o),r=this.computeScrollerHeight(e),this.scroller.setHeight(r)),this.scroller.lockOverflow(o))},e.prototype.computeScrollerHeight=function(t){return t-s.subtractInnerElHeight(this.el,this.scroller.el)},e.prototype.setGridHeight=function(t,e){e?s.undistributeHeight(this.dayGrid.rowEls):s.distributeHeight(this.dayGrid.rowEls,t,!0)},e.prototype.computeInitialDateScroll=function(){return{top:0}},e.prototype.queryDateScroll=function(){return{top:this.scroller.getScrollTop()}},e.prototype.applyDateScroll=function(t){void 0!==t.top&&this.scroller.setScrollTop(t.top)},e}(l.default);e.default=c,c.prototype.dateProfileGeneratorClass=u.default,c.prototype.dayGridClass=d.default},,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,function(t,e,n){function i(t,e,n){var i;for(i=0;i=0;e--)switch(n=i[e],n.type){case"init":r=!1;case"add":case"remove":i.splice(e,1)}return r&&i.push(t),r},e}(r.default);e.default=o},function(t,e,n){function i(t){var e,n,i,r=[];for(e in t)for(n=t[e].eventInstances,i=0;i'+n+"
":""+n+""},e.prototype.getAllDayHtml=function(){return this.opt("allDayHtml")||a.htmlEscape(this.opt("allDayText"))},e.prototype.getDayClasses=function(t,e){var n,i=this._getView(),r=[] +;return this.dateProfile.activeUnzonedRange.containsDate(t)?(r.push("fc-"+a.dayIDs[t.day()]),i.isDateInOtherMonth(t,this.dateProfile)&&r.push("fc-other-month"),n=i.calendar.getNow(),t.isSame(n,"day")?(r.push("fc-today"),!0!==e&&r.push(i.calendar.theme.getClass("today"))):t=this.nextDayThreshold&&o.add(1,"days"),o<=n&&(o=n.clone().add(1,"days")),{start:n,end:o}},e.prototype.isMultiDayRange=function(t){var e=this.computeDayRange(t);return e.end.diff(e.start,"days")>1},e.guid=0,e}(d.default);e.default=p},function(t,e,n){function i(t,e){return null==e?t:r.isFunction(e)?t.filter(e):(e+="",t.filter(function(t){return t.id==e||t._id===e}))}Object.defineProperty(e,"__esModule",{value:!0});var r=n(3),o=n(0),s=n(4),a=n(32),l=n(238),u=n(21),d=n(11),c=n(7),p=n(239),h=n(240),f=n(241),g=n(207),v=n(31),y=n(10),m=n(5),b=n(12),w=n(17),D=n(242),E=n(212),S=n(38),C=n(49),R=n(13),T=n(37),M=n(6),I=n(51),H=function(){function t(t,e){this.loadingLevel=0,this.ignoreUpdateViewSize=0,this.freezeContentHeightDepth=0,u.default.needed(),this.el=t,this.viewsByType={},this.optionsManager=new h.default(this,e),this.viewSpecManager=new f.default(this.optionsManager,this),this.initMomentInternals(),this.initCurrentDate(),this.initEventManager(),this.constraints=new g.default(this.eventManager,this),this.constructed()}return t.prototype.constructed=function(){},t.prototype.getView=function(){return this.view},t.prototype.publiclyTrigger=function(t,e){var n,i,o=this.opt(t);if(r.isPlainObject(e)?(n=e.context,i=e.args):r.isArray(e)&&(i=e),null==n&&(n=this.el[0]),i||(i=[]),this.triggerWith(t,n,i),o)return o.apply(n,i)},t.prototype.hasPublicHandlers=function(t){return this.hasHandlers(t)||this.opt(t)},t.prototype.option=function(t,e){var n;if("string"==typeof t){if(void 0===e)return this.optionsManager.get(t);n={},n[t]=e,this.optionsManager.add(n)}else"object"==typeof t&&this.optionsManager.add(t)},t.prototype.opt=function(t){return this.optionsManager.get(t)},t.prototype.instantiateView=function(t){var e=this.viewSpecManager.getViewSpec(t);if(!e)throw new Error('View type "'+t+'" is not valid');return new e.class(this,e)},t.prototype.isValidViewType=function(t){return Boolean(this.viewSpecManager.getViewSpec(t))},t.prototype.changeView=function(t,e){e&&(e.start&&e.end?this.optionsManager.recordOverrides({visibleRange:e}):this.currentDate=this.moment(e).stripZone()),this.renderView(t)},t.prototype.zoomTo=function(t,e){var n;e=e||"day",n=this.viewSpecManager.getViewSpec(e)||this.viewSpecManager.getUnitViewSpec(e),this.currentDate=t.clone(),this.renderView(n?n.type:null)},t.prototype.initCurrentDate=function(){var t=this.opt("defaultDate");this.currentDate=null!=t?this.moment(t).stripZone():this.getNow()},t.prototype.prev=function(){var t=this.view,e=t.dateProfileGenerator.buildPrev(t.get("dateProfile"));e.isValid&&(this.currentDate=e.date,this.renderView())},t.prototype.next=function(){var t=this.view,e=t.dateProfileGenerator.buildNext(t.get("dateProfile"));e.isValid&&(this.currentDate=e.date,this.renderView())},t.prototype.prevYear=function(){this.currentDate.add(-1,"years"),this.renderView()},t.prototype.nextYear=function(){this.currentDate.add(1,"years"),this.renderView()},t.prototype.today=function(){this.currentDate=this.getNow(),this.renderView()},t.prototype.gotoDate=function(t){this.currentDate=this.moment(t).stripZone(),this.renderView()},t.prototype.incrementDate=function(t){this.currentDate.add(o.duration(t)),this.renderView()},t.prototype.getDate=function(){return this.applyTimezone(this.currentDate)},t.prototype.pushLoading=function(){this.loadingLevel++||this.publiclyTrigger("loading",[!0,this.view])},t.prototype.popLoading=function(){--this.loadingLevel||this.publiclyTrigger("loading",[!1,this.view])},t.prototype.render=function(){this.contentEl?this.elementVisible()&&(this.calcSize(),this.updateViewSize()):this.initialRender()},t.prototype.initialRender=function(){var t=this,e=this.el;e.addClass("fc"),e.on("click.fc","a[data-goto]",function(e){var n=r(e.currentTarget),i=n.data("goto"),o=t.moment(i.date),a=i.type,l=t.view.opt("navLink"+s.capitaliseFirstLetter(a)+"Click");"function"==typeof l?l(o,e):("string"==typeof l&&(a=l),t.zoomTo(o,a))}),this.optionsManager.watch("settingTheme",["?theme","?themeSystem"],function(n){var i=I.getThemeSystemClass(n.themeSystem||n.theme),r=new i(t.optionsManager),o=r.getClass("widget");t.theme=r,o&&e.addClass(o)},function(){var n=t.theme.getClass("widget");t.theme=null,n&&e.removeClass(n)}),this.optionsManager.watch("settingBusinessHourGenerator",["?businessHours"],function(e){t.businessHourGenerator=new E.default(e.businessHours,t),t.view&&t.view.set("businessHourGenerator",t.businessHourGenerator)},function(){t.businessHourGenerator=null}),this.optionsManager.watch("applyingDirClasses",["?isRTL","?locale"],function(t){e.toggleClass("fc-ltr",!t.isRTL),e.toggleClass("fc-rtl",t.isRTL)}),this.contentEl=r("
").prependTo(e),this.initToolbars(),this.renderHeader(),this.renderFooter(),this.renderView(this.opt("defaultView")),this.opt("handleWindowResize")&&r(window).resize(this.windowResizeProxy=s.debounce(this.windowResize.bind(this),this.opt("windowResizeDelay")))},t.prototype.destroy=function(){this.view&&this.clearView(),this.toolbarsManager.proxyCall("removeElement"),this.contentEl.remove(),this.el.removeClass("fc fc-ltr fc-rtl"),this.optionsManager.unwatch("settingTheme"),this.optionsManager.unwatch("settingBusinessHourGenerator"),this.el.off(".fc"),this.windowResizeProxy&&(r(window).unbind("resize",this.windowResizeProxy),this.windowResizeProxy=null),u.default.unneeded()},t.prototype.elementVisible=function(){return this.el.is(":visible")},t.prototype.bindViewHandlers=function(t){var e=this;t.watch("titleForCalendar",["title"],function(n){t===e.view&&e.setToolbarsTitle(n.title)}),t.watch("dateProfileForCalendar",["dateProfile"],function(n){t===e.view&&(e.currentDate=n.dateProfile.date,e.updateToolbarButtons(n.dateProfile))})},t.prototype.unbindViewHandlers=function(t){t.unwatch("titleForCalendar"),t.unwatch("dateProfileForCalendar")},t.prototype.renderView=function(t){var e,n=this.view;this.freezeContentHeight(),n&&t&&n.type!==t&&this.clearView(),!this.view&&t&&(e=this.view=this.viewsByType[t]||(this.viewsByType[t]=this.instantiateView(t)),this.bindViewHandlers(e),e.startBatchRender(),e.setElement(r("
").appendTo(this.contentEl)),this.toolbarsManager.proxyCall("activateButton",t)),this.view&&(this.view.get("businessHourGenerator")!==this.businessHourGenerator&&this.view.set("businessHourGenerator",this.businessHourGenerator),this.view.setDate(this.currentDate),e&&e.stopBatchRender()),this.thawContentHeight()},t.prototype.clearView=function(){var t=this.view;this.toolbarsManager.proxyCall("deactivateButton",t.type),this.unbindViewHandlers(t),t.removeElement(),t.unsetDate(),this.view=null},t.prototype.reinitView=function(){var t=this.view,e=t.queryScroll();this.freezeContentHeight(),this.clearView(),this.calcSize(),this.renderView(t.type),this.view.applyScroll(e),this.thawContentHeight()},t.prototype.getSuggestedViewHeight=function(){return null==this.suggestedViewHeight&&this.calcSize(),this.suggestedViewHeight},t.prototype.isHeightAuto=function(){return"auto"===this.opt("contentHeight")||"auto"===this.opt("height")},t.prototype.updateViewSize=function(t){void 0===t&&(t=!1);var e,n=this.view;if(!this.ignoreUpdateViewSize&&n)return t&&(this.calcSize(),e=n.queryScroll()),this.ignoreUpdateViewSize++,n.updateSize(this.getSuggestedViewHeight(),this.isHeightAuto(),t),this.ignoreUpdateViewSize--,t&&n.applyScroll(e),!0},t.prototype.calcSize=function(){this.elementVisible()&&this._calcSize()},t.prototype._calcSize=function(){var t=this.opt("contentHeight"),e=this.opt("height");this.suggestedViewHeight="number"==typeof t?t:"function"==typeof t?t():"number"==typeof e?e-this.queryToolbarsHeight():"function"==typeof e?e()-this.queryToolbarsHeight():"parent"===e?this.el.parent().height()-this.queryToolbarsHeight():Math.round(this.contentEl.width()/Math.max(this.opt("aspectRatio"),.5))},t.prototype.windowResize=function(t){t.target===window&&this.view&&this.view.isDatesRendered&&this.updateViewSize(!0)&&this.publiclyTrigger("windowResize",[this.view])},t.prototype.freezeContentHeight=function(){this.freezeContentHeightDepth++||this.forceFreezeContentHeight()},t.prototype.forceFreezeContentHeight=function(){this.contentEl.css({width:"100%",height:this.contentEl.height(),overflow:"hidden"})},t.prototype.thawContentHeight=function(){this.freezeContentHeightDepth--,this.contentEl.css({width:"",height:"",overflow:""}),this.freezeContentHeightDepth&&this.forceFreezeContentHeight()},t.prototype.initToolbars=function(){this.header=new p.default(this,this.computeHeaderOptions()),this.footer=new p.default(this,this.computeFooterOptions()),this.toolbarsManager=new l.default([this.header,this.footer])},t.prototype.computeHeaderOptions=function(){return{extraClasses:"fc-header-toolbar",layout:this.opt("header")}},t.prototype.computeFooterOptions=function(){return{extraClasses:"fc-footer-toolbar",layout:this.opt("footer")}},t.prototype.renderHeader=function(){var t=this.header;t.setToolbarOptions(this.computeHeaderOptions()),t.render(),t.el&&this.el.prepend(t.el)},t.prototype.renderFooter=function(){var t=this.footer;t.setToolbarOptions(this.computeFooterOptions()),t.render(),t.el&&this.el.append(t.el)},t.prototype.setToolbarsTitle=function(t){this.toolbarsManager.proxyCall("updateTitle",t)},t.prototype.updateToolbarButtons=function(t){var e=this.getNow(),n=this.view,i=n.dateProfileGenerator.build(e),r=n.dateProfileGenerator.buildPrev(n.get("dateProfile")),o=n.dateProfileGenerator.buildNext(n.get("dateProfile"));this.toolbarsManager.proxyCall(i.isValid&&!t.currentUnzonedRange.containsDate(e)?"enableButton":"disableButton","today"),this.toolbarsManager.proxyCall(r.isValid?"enableButton":"disableButton","prev"),this.toolbarsManager.proxyCall(o.isValid?"enableButton":"disableButton","next")},t.prototype.queryToolbarsHeight=function(){return this.toolbarsManager.items.reduce(function(t,e){return t+(e.el?e.el.outerHeight(!0):0)},0)},t.prototype.select=function(t,e){this.view.select(this.buildSelectFootprint.apply(this,arguments))},t.prototype.unselect=function(){this.view&&this.view.unselect()},t.prototype.buildSelectFootprint=function(t,e){var n,i=this.moment(t).stripZone();return n=e?this.moment(e).stripZone():i.hasTime()?i.clone().add(this.defaultTimedEventDuration):i.clone().add(this.defaultAllDayEventDuration),new b.default(new m.default(i,n),!i.hasTime())},t.prototype.initMomentInternals=function(){var t=this;this.defaultAllDayEventDuration=o.duration(this.opt("defaultAllDayEventDuration")),this.defaultTimedEventDuration=o.duration(this.opt("defaultTimedEventDuration")),this.optionsManager.watch("buildingMomentLocale",["?locale","?monthNames","?monthNamesShort","?dayNames","?dayNamesShort","?firstDay","?weekNumberCalculation"],function(e){var n,i=e.weekNumberCalculation,r=e.firstDay;"iso"===i&&(i="ISO");var o=Object.create(v.getMomentLocaleData(e.locale));e.monthNames&&(o._months=e.monthNames),e.monthNamesShort&&(o._monthsShort=e.monthNamesShort),e.dayNames&&(o._weekdays=e.dayNames),e.dayNamesShort&&(o._weekdaysShort=e.dayNamesShort),null==r&&"ISO"===i&&(r=1),null!=r&&(n=Object.create(o._week),n.dow=r,o._week=n),"ISO"!==i&&"local"!==i&&"function"!=typeof i||(o._fullCalendar_weekCalc=i),t.localeData=o,t.currentDate&&t.localizeMoment(t.currentDate)})},t.prototype.moment=function(){for(var t=[],e=0;e864e5&&r.time(n-864e5)),new o.default(i,r)},t.prototype.buildRangeFromDuration=function(t,e,n,s){function a(){d=t.clone().startOf(h),c=d.clone().add(n),p=new o.default(d,c)}var l,u,d,c,p,h=this.opt("dateAlignment");return h||(l=this.opt("dateIncrement"),l?(u=i.duration(l),h=uo.getStart()&&(i=new a.default,i.setEndDelta(l),r=new s.default,r.setDateMutation(i),r)},e}(u.default);e.default=d},function(t,e,n){Object.defineProperty(e,"__esModule",{value:!0});var i=n(2),r=n(4),o=n(37),s=n(50),a=n(54),l=n(23),u=n(244),d=n(15),c=function(t){function e(e,n){var i=t.call(this,e)||this;return i.isDragging=!1,i.eventPointing=n,i}return i.__extends(e,t),e.prototype.end=function(){this.dragListener&&this.dragListener.endInteraction()},e.prototype.getSelectionDelay=function(){var t=this.opt("eventLongPressDelay");return null==t&&(t=this.opt("longPressDelay")),t},e.prototype.bindToEl=function(t){var e=this.component;e.bindSegHandlerToEl(t,"mousedown",this.handleMousedown.bind(this)),e.bindSegHandlerToEl(t,"touchstart",this.handleTouchStart.bind(this))},e.prototype.handleMousedown=function(t,e){!this.component.shouldIgnoreMouse()&&this.component.canStartDrag(t,e)&&this.buildDragListener(t).startInteraction(e,{distance:5})},e.prototype.handleTouchStart=function(t,e){var n=this.component,i={delay:this.view.isEventDefSelected(t.footprint.eventDef)?0:this.getSelectionDelay()};n.canStartDrag(t,e)?this.buildDragListener(t).startInteraction(e,i):n.canStartSelection(t,e)&&this.buildSelectListener(t).startInteraction(e,i)},e.prototype.buildSelectListener=function(t){var e=this,n=this.view,i=t.footprint.eventDef,r=t.footprint.eventInstance;if(this.dragListener)return this.dragListener;var o=this.dragListener=new a.default({dragStart:function(t){o.isTouch&&!n.isEventDefSelected(i)&&r&&n.selectEventInstance(r)},interactionEnd:function(t){e.dragListener=null}});return o},e.prototype.buildDragListener=function(t){var e,n,i,o=this,s=this.component,a=this.view,d=a.calendar,c=d.eventManager,p=t.el,h=t.footprint.eventDef,f=t.footprint.eventInstance;if(this.dragListener)return this.dragListener;var g=this.dragListener=new l.default(a,{scroll:this.opt("dragScroll"),subjectEl:p,subjectCenter:!0,interactionStart:function(i){t.component=s,e=!1,n=new u.default(t.el,{additionalClass:"fc-dragging",parentEl:a.el,opacity:g.isTouch?null:o.opt("dragOpacity"),revertDuration:o.opt("dragRevertDuration"),zIndex:2}),n.hide(),n.start(i)},dragStart:function(n){g.isTouch&&!a.isEventDefSelected(h)&&f&&a.selectEventInstance(f),e=!0,o.eventPointing.handleMouseout(t,n),o.segDragStart(t,n),a.hideEventsWithId(t.footprint.eventDef.id)},hitOver:function(e,l,u){var p,f,v,y=!0;t.hit&&(u=t.hit),p=u.component.getSafeHitFootprint(u),f=e.component.getSafeHitFootprint(e),p&&f?(i=o.computeEventDropMutation(p,f,h),i?(v=c.buildMutatedEventInstanceGroup(h.id,i),y=s.isEventInstanceGroupAllowed(v)):y=!1):y=!1,y||(i=null,r.disableCursor()),i&&a.renderDrag(s.eventRangesToEventFootprints(v.sliceRenderRanges(s.dateProfile.renderUnzonedRange,d)),t,g.isTouch)?n.hide():n.show(),l&&(i=null)},hitOut:function(){a.unrenderDrag(t),n.show(),i=null},hitDone:function(){r.enableCursor()},interactionEnd:function(r){delete t.component,n.stop(!i,function(){e&&(a.unrenderDrag(t),o.segDragStop(t,r)),a.showEventsWithId(t.footprint.eventDef.id),i&&a.reportEventDrop(f,i,p,r)}),o.dragListener=null}});return g},e.prototype.segDragStart=function(t,e){this.isDragging=!0,this.component.publiclyTrigger("eventDragStart",{context:t.el[0],args:[t.footprint.getEventLegacy(),e,{},this.view]})},e.prototype.segDragStop=function(t,e){this.isDragging=!1,this.component.publiclyTrigger("eventDragStop",{context:t.el[0],args:[t.footprint.getEventLegacy(),e,{},this.view]})},e.prototype.computeEventDropMutation=function(t,e,n){var i=new o.default;return i.setDateMutation(this.computeEventDateMutation(t,e)),i},e.prototype.computeEventDateMutation=function(t,e){var n,i,r=t.unzonedRange.getStart(),o=e.unzonedRange.getStart(),a=!1,l=!1,u=!1;return t.isAllDay!==e.isAllDay&&(a=!0,e.isAllDay?(u=!0,r.stripTime()):l=!0),n=this.component.diffDates(o,r),i=new s.default,i.clearEnd=a,i.forceTimed=l,i.forceAllDay=u,i.setDateDelta(n),i},e}(d.default);e.default=c},function(t,e,n){Object.defineProperty(e,"__esModule",{value:!0});var i=n(2),r=n(4),o=n(23),s=n(12),a=n(5),l=n(15),u=function(t){function e(e){var n=t.call(this,e)||this;return n.dragListener=n.buildDragListener(),n}return i.__extends(e,t),e.prototype.end=function(){this.dragListener.endInteraction()},e.prototype.getDelay=function(){var t=this.opt("selectLongPressDelay");return null==t&&(t=this.opt("longPressDelay")),t},e.prototype.bindToEl=function(t){var e=this,n=this.component,i=this.dragListener;n.bindDateHandlerToEl(t,"mousedown",function(t){e.opt("selectable")&&!n.shouldIgnoreMouse()&&i.startInteraction(t,{distance:e.opt("selectMinDistance")})}),n.bindDateHandlerToEl(t,"touchstart",function(t){e.opt("selectable")&&!n.shouldIgnoreTouch()&&i.startInteraction(t,{delay:e.getDelay()})}),r.preventSelection(t)},e.prototype.buildDragListener=function(){var t,e=this,n=this.component;return new o.default(n,{scroll:this.opt("dragScroll"),interactionStart:function(){t=null},dragStart:function(t){e.view.unselect(t)},hitOver:function(i,o,s){var a,l;s&&(a=n.getSafeHitFootprint(s),l=n.getSafeHitFootprint(i),t=a&&l?e.computeSelection(a,l):null,t?n.renderSelectionFootprint(t):!1===t&&r.disableCursor())},hitOut:function(){t=null,n.unrenderSelection()},hitDone:function(){r.enableCursor()},interactionEnd:function(n,i){!i&&t&&e.view.reportSelection(t,n)}})},e.prototype.computeSelection=function(t,e){var n=this.computeSelectionFootprint(t,e);return!(n&&!this.isSelectionFootprintAllowed(n))&&n},e.prototype.computeSelectionFootprint=function(t,e){var n=[t.unzonedRange.startMs,t.unzonedRange.endMs,e.unzonedRange.startMs,e.unzonedRange.endMs];return n.sort(r.compareNumbers),new s.default(new a.default(n[0],n[3]),t.isAllDay)},e.prototype.isSelectionFootprintAllowed=function(t){return this.component.dateProfile.validUnzonedRange.containsRange(t.unzonedRange)&&this.view.calendar.constraints.isSelectionFootprintAllowed(t)},e}(l.default);e.default=u},function(t,e,n){function i(t){var e,n=[],i=[];for(e=0;e').appendTo(t),this.el.find(".fc-body > tr > td").append(t),this.timeGrid.headContainerEl=this.el.find(".fc-head-container"),this.timeGrid.setElement(e),this.dayGrid&&(this.dayGrid.setElement(this.el.find(".fc-day-grid")),this.dayGrid.bottomCoordPadding=this.dayGrid.el.next("hr").outerHeight())},e.prototype.unrenderSkeleton=function(){this.timeGrid.removeElement(),this.dayGrid&&this.dayGrid.removeElement(),this.scroller.destroy()},e.prototype.renderSkeletonHtml=function(){var t=this.calendar.theme;return''+(this.opt("columnHeader")?'':"")+'
 
'+(this.dayGrid?'

':"")+"
"},e.prototype.axisStyleAttr=function(){return null!=this.axisWidth?'style="width:'+this.axisWidth+'px"':""},e.prototype.getNowIndicatorUnit=function(){return this.timeGrid.getNowIndicatorUnit()},e.prototype.updateSize=function(e,n,i){var r,o,s;if(t.prototype.updateSize.call(this,e,n,i),this.axisWidth=u.matchCellWidths(this.el.find(".fc-axis")),!this.timeGrid.colEls)return void(n||(o=this.computeScrollerHeight(e),this.scroller.setHeight(o)));var a=this.el.find(".fc-row:not(.fc-scroller *)");this.timeGrid.bottomRuleEl.hide(),this.scroller.clear(),u.uncompensateScroll(a),this.dayGrid&&(this.dayGrid.removeSegPopover(),r=this.opt("eventLimit"),r&&"number"!=typeof r&&(r=5),r&&this.dayGrid.limitRows(r)),n||(o=this.computeScrollerHeight(e),this.scroller.setHeight(o),s=this.scroller.getScrollbarWidths(),(s.left||s.right)&&(u.compensateScroll(a,s),o=this.computeScrollerHeight(e),this.scroller.setHeight(o)),this.scroller.lockOverflow(s),this.timeGrid.getTotalSlatHeight()"+e.buildGotoAnchorHtml({date:i,type:"week",forceOff:this.colCnt>1},u.htmlEscape(t))+""):'"},renderBgIntroHtml:function(){var t=this.view;return'"},renderIntroHtml:function(){return'"}},o={renderBgIntroHtml:function(){var t=this.view;return'"+t.getAllDayHtml()+""},renderIntroHtml:function(){return'"}}},function(t,e,n){Object.defineProperty(e,"__esModule",{value:!0});var i=n(2),r=n(3),o=n(0),s=n(4),a=n(40),l=n(56),u=n(60),d=n(55),c=n(53),p=n(5),h=n(12),f=n(246),g=n(247),v=n(248),y=[{hours:1},{minutes:30},{minutes:15},{seconds:30},{seconds:15}],m=function(t){function e(e){var n=t.call(this,e)||this;return n.processOptions(),n}return i.__extends(e,t),e.prototype.componentFootprintToSegs=function(t){var e,n=this.sliceRangeByTimes(t.unzonedRange);for(e=0;e=0;e--)if(n=o.duration(y[e]),i=s.divideDurationByDuration(n,t),s.isInt(i)&&i>1)return n;return o.duration(t)},e.prototype.renderDates=function(t){this.dateProfile=t,this.updateDayTable(),this.renderSlats(),this.renderColumns()},e.prototype.unrenderDates=function(){this.unrenderColumns()},e.prototype.renderSkeleton=function(){var t=this.view.calendar.theme;this.el.html('
'),this.bottomRuleEl=this.el.find("hr")},e.prototype.renderSlats=function(){var t=this.view.calendar.theme;this.slatContainerEl=this.el.find("> .fc-slats").html(''+this.renderSlatRowHtml()+"
"),this.slatEls=this.slatContainerEl.find("tr"),this.slatCoordCache=new c.default({els:this.slatEls,isVertical:!0})},e.prototype.renderSlatRowHtml=function(){for(var t,e,n,i=this.view,r=i.calendar,a=r.theme,l=this.isRTL,u=this.dateProfile,d="",c=o.duration(+u.minTime),p=o.duration(0);c"+(e?""+s.htmlEscape(t.format(this.labelFormat))+"":"")+"",d+='"+(l?"":n)+''+(l?n:"")+"",c.add(this.slotDuration),p.add(this.slotDuration);return d},e.prototype.renderColumns=function(){var t=this.dateProfile,e=this.view.calendar.theme;this.dayRanges=this.dayDates.map(function(e){return new p.default(e.clone().add(t.minTime),e.clone().add(t.maxTime))}),this.headContainerEl&&this.headContainerEl.html(this.renderHeadHtml()),this.el.find("> .fc-bg").html(''+this.renderBgTrHtml(0)+"
"),this.colEls=this.el.find(".fc-day, .fc-disabled-day"),this.colCoordCache=new c.default({els:this.colEls,isHorizontal:!0}),this.renderContentSkeleton()},e.prototype.unrenderColumns=function(){this.unrenderContentSkeleton()},e.prototype.renderContentSkeleton=function(){var t,e,n="";for(t=0;t
';e=this.contentSkeletonEl=r('
'+n+"
"),this.colContainerEls=e.find(".fc-content-col"),this.helperContainerEls=e.find(".fc-helper-container"),this.fgContainerEls=e.find(".fc-event-container:not(.fc-helper-container)"),this.bgContainerEls=e.find(".fc-bgevent-container"),this.highlightContainerEls=e.find(".fc-highlight-container"),this.businessContainerEls=e.find(".fc-business-container"),this.bookendCells(e.find("tr")),this.el.append(e)},e.prototype.unrenderContentSkeleton=function(){this.contentSkeletonEl&&(this.contentSkeletonEl.remove(),this.contentSkeletonEl=null,this.colContainerEls=null,this.helperContainerEls=null,this.fgContainerEls=null,this.bgContainerEls=null,this.highlightContainerEls=null,this.businessContainerEls=null)},e.prototype.groupSegsByCol=function(t){var e,n=[];for(e=0;e
').css("top",i).appendTo(this.colContainerEls.eq(n[e].col))[0]);n.length>0&&o.push(r('
').css("top",i).appendTo(this.el.find(".fc-content-skeleton"))[0]),this.nowIndicatorEls=r(o)}},e.prototype.unrenderNowIndicator=function(){this.nowIndicatorEls&&(this.nowIndicatorEls.remove(),this.nowIndicatorEls=null)},e.prototype.updateSize=function(e,n,i){t.prototype.updateSize.call(this,e,n,i),this.slatCoordCache.build(),i&&this.updateSegVerticals([].concat(this.eventRenderer.getSegs(),this.businessSegs||[]))},e.prototype.getTotalSlatHeight=function(){return this.slatContainerEl.outerHeight()},e.prototype.computeDateTop=function(t,e){return this.computeTimeTop(o.duration(t-e.clone().stripTime()))},e.prototype.computeTimeTop=function(t){var e,n,i=this.slatEls.length,r=this.dateProfile,o=(t-r.minTime)/this.slotDuration;return o=Math.max(0,o),o=Math.min(i,o),e=Math.floor(o),e=Math.min(e,i-1),n=o-e,this.slatCoordCache.getTopPosition(e)+this.slatCoordCache.getHeight(e)*n},e.prototype.updateSegVerticals=function(t){this.computeSegVerticals(t),this.assignSegVerticals(t)},e.prototype.computeSegVerticals=function(t){var e,n,i,r=this.opt("agendaEventMinHeight");for(e=0;e
'+o.htmlEscape(this.opt("noEventsMessage"))+"
")},e.prototype.renderSegList=function(t){var e,n,i,o=this.groupSegsByDay(t),s=r('
'),a=s.find("tbody");for(e=0;e'+(e?this.buildGotoAnchorHtml(t,{class:"fc-list-heading-main"},o.htmlEscape(t.format(e))):"")+(n?this.buildGotoAnchorHtml(t,{class:"fc-list-heading-alt"},o.htmlEscape(t.format(n))):"")+""},e}(a.default);e.default=c,c.prototype.eventRendererClass=u.default,c.prototype.eventPointingClass=d.default},,,,,,function(t,e,n){var i=n(3),r=n(16),o=n(4),s=n(220);n(10),n(47),n(256),n(257),n(260),n(261),n(262),n(263),i.fullCalendar=r,i.fn.fullCalendar=function(t){var e=Array.prototype.slice.call(arguments,1),n=this;return this.each(function(r,a){var l,u=i(a),d=u.data("fullCalendar");"string"==typeof t?"getCalendar"===t?r||(n=d):"destroy"===t?d&&(d.destroy(),u.removeData("fullCalendar")):d?i.isFunction(d[t])?(l=d[t].apply(d,e),r||(n=l),"destroy"===t&&u.removeData("fullCalendar")):o.warn("'"+t+"' is an unknown FullCalendar method."):o.warn("Attempting to call a FullCalendar method on an element with no calendar."):d||(d=new s.default(u,t),u.data("fullCalendar",d),d.render())}),n},t.exports=r},function(t,e,n){Object.defineProperty(e,"__esModule",{value:!0});var i=n(2),r=n(48),o=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return i.__extends(e,t),e.prototype.setElement=function(t){this.el=t,this.bindGlobalHandlers(),this.renderSkeleton(),this.set("isInDom",!0)},e.prototype.removeElement=function(){this.unset("isInDom"),this.unrenderSkeleton(),this.unbindGlobalHandlers(),this.el.remove()},e.prototype.bindGlobalHandlers=function(){},e.prototype.unbindGlobalHandlers=function(){},e.prototype.renderSkeleton=function(){},e.prototype.unrenderSkeleton=function(){},e}(r.default);e.default=o},function(t,e){Object.defineProperty(e,"__esModule",{value:!0});var n=function(){function t(t){this.items=t||[]}return t.prototype.proxyCall=function(t){for(var e=[],n=1;n"),e.append(this.renderSection("left")).append(this.renderSection("right")).append(this.renderSection("center")).append('
')):this.removeElement()},t.prototype.removeElement=function(){this.el&&(this.el.remove(),this.el=null)},t.prototype.renderSection=function(t){var e=this,n=this.calendar,o=n.theme,s=n.optionsManager,a=n.viewSpecManager,l=i('
'),u=this.toolbarOptions.layout[t],d=s.get("customButtons")||{},c=s.overrides.buttonText||{},p=s.get("buttonText")||{};return u&&i.each(u.split(" "),function(t,s){var u,h=i(),f=!0;i.each(s.split(","),function(t,s){var l,u,g,v,y,m,b,w,D;"title"===s?(h=h.add(i("

 

")),f=!1):((l=d[s])?(g=function(t){l.click&&l.click.call(w[0],t)},(v=o.getCustomButtonIconClass(l))||(v=o.getIconClass(s))||(y=l.text)):(u=a.getViewSpec(s))?(e.viewsWithButtons.push(s),g=function(){n.changeView(s)},(y=u.buttonTextOverride)||(v=o.getIconClass(s))||(y=u.buttonTextDefault)):n[s]&&(g=function(){n[s]()},(y=c[s])||(v=o.getIconClass(s))||(y=p[s])),g&&(b=["fc-"+s+"-button",o.getClass("button"),o.getClass("stateDefault")],y?(m=r.htmlEscape(y),D=""):v&&(m="",D=' aria-label="'+s+'"'),w=i('").click(function(t){w.hasClass(o.getClass("stateDisabled"))||(g(t),(w.hasClass(o.getClass("stateActive"))||w.hasClass(o.getClass("stateDisabled")))&&w.removeClass(o.getClass("stateHover")))}).mousedown(function(){w.not("."+o.getClass("stateActive")).not("."+o.getClass("stateDisabled")).addClass(o.getClass("stateDown"))}).mouseup(function(){w.removeClass(o.getClass("stateDown"))}).hover(function(){w.not("."+o.getClass("stateActive")).not("."+o.getClass("stateDisabled")).addClass(o.getClass("stateHover"))},function(){w.removeClass(o.getClass("stateHover")).removeClass(o.getClass("stateDown"))}),h=h.add(w)))}),f&&h.first().addClass(o.getClass("cornerLeft")).end().last().addClass(o.getClass("cornerRight")).end(),h.length>1?(u=i("
"),f&&u.addClass(o.getClass("buttonGroup")),u.append(h),l.append(u)):l.append(h)}),l},t.prototype.updateTitle=function(t){this.el&&this.el.find("h2").text(t)},t.prototype.activateButton=function(t){this.el&&this.el.find(".fc-"+t+"-button").addClass(this.calendar.theme.getClass("stateActive"))},t.prototype.deactivateButton=function(t){this.el&&this.el.find(".fc-"+t+"-button").removeClass(this.calendar.theme.getClass("stateActive"))},t.prototype.disableButton=function(t){this.el&&this.el.find(".fc-"+t+"-button").prop("disabled",!0).addClass(this.calendar.theme.getClass("stateDisabled"))},t.prototype.enableButton=function(t){this.el&&this.el.find(".fc-"+t+"-button").prop("disabled",!1).removeClass(this.calendar.theme.getClass("stateDisabled"))},t.prototype.getViewsWithButtons=function(){return this.viewsWithButtons},t}();e.default=o},function(t,e,n){Object.defineProperty(e,"__esModule",{value:!0});var i=n(2),r=n(3),o=n(4),s=n(32),a=n(31),l=n(48),u=function(t){function e(e,n){var i=t.call(this)||this;return i._calendar=e,i.overrides=r.extend({},n),i.dynamicOverrides={},i.compute(),i}return i.__extends(e,t),e.prototype.add=function(t){var e,n=0;this.recordOverrides(t);for(e in t)n++;if(1===n){if("height"===e||"contentHeight"===e||"aspectRatio"===e)return void this._calendar.updateViewSize(!0);if("defaultDate"===e)return;if("businessHours"===e)return;if(/^(event|select)(Overlap|Constraint|Allow)$/.test(e))return;if("timezone"===e)return void this._calendar.view.flash("initialEvents")}this._calendar.renderHeader(),this._calendar.renderFooter(),this._calendar.viewsByType={},this._calendar.reinitView()},e.prototype.compute=function(){var t,e,n,i,r;t=o.firstDefined(this.dynamicOverrides.locale,this.overrides.locale),e=a.localeOptionHash[t],e||(t=s.globalDefaults.locale,e=a.localeOptionHash[t]||{}),n=o.firstDefined(this.dynamicOverrides.isRTL,this.overrides.isRTL,e.isRTL,s.globalDefaults.isRTL),i=n?s.rtlDefaults:{},this.dirDefaults=i,this.localeDefaults=e,r=s.mergeOptions([s.globalDefaults,i,e,this.overrides,this.dynamicOverrides]),a.populateInstanceComputableOptions(r),this.reset(r)},e.prototype.recordOverrides=function(t){var e;for(e in t)this.dynamicOverrides[e]=t[e];this._calendar.viewSpecManager.clearCache(),this.compute()},e}(l.default);e.default=u},function(t,e,n){Object.defineProperty(e,"__esModule",{value:!0});var i=n(0),r=n(3),o=n(22),s=n(4),a=n(32),l=n(31),u=function(){function t(t,e){this.optionsManager=t,this._calendar=e,this.clearCache()}return t.prototype.clearCache=function(){this.viewSpecCache={}},t.prototype.getViewSpec=function(t){var e=this.viewSpecCache;return e[t]||(e[t]=this.buildViewSpec(t))},t.prototype.getUnitViewSpec=function(t){var e,n,i;if(-1!==r.inArray(t,s.unitsDesc))for(e=this._calendar.header.getViewsWithButtons(),r.each(o.viewHash,function(t){e.push(t)}),n=0;ne.top&&t.top
'+(n?'
'+u.htmlEscape(n)+"
":"")+(d.title?'
'+u.htmlEscape(d.title)+"
":"")+'
'+(h?'
':"")+""},e.prototype.updateFgSegCoords=function(t){this.timeGrid.computeSegVerticals(t),this.computeFgSegHorizontals(t),this.timeGrid.assignSegVerticals(t),this.assignFgSegHorizontals(t)},e.prototype.computeFgSegHorizontals=function(t){var e,n,s;if(this.sortEventSegs(t),e=i(t),r(e),n=e[0]){for(s=0;s').addClass(e.className||"").css({top:0,left:0}).append(e.content).appendTo(e.parentEl),this.el.on("click",".fc-close",function(){t.hide()}),e.autoHide&&this.listenTo(i(document),"mousedown",this.documentMousedown)},t.prototype.documentMousedown=function(t){this.el&&!i(t.target).closest(this.el).length&&this.hide()},t.prototype.removeElement=function(){this.hide(),this.el&&(this.el.remove(),this.el=null),this.stopListeningTo(i(document),"mousedown")},t.prototype.position=function(){var t,e,n,o,s,a=this.options,l=this.el.offsetParent().offset(),u=this.el.outerWidth(),d=this.el.outerHeight(),c=i(window),p=r.getScrollParent(this.el);o=a.top||0,s=void 0!==a.left?a.left:void 0!==a.right?a.right-u:0,p.is(window)||p.is(document)?(p=c,t=0,e=0):(n=p.offset(),t=n.top,e=n.left),t+=c.scrollTop(),e+=c.scrollLeft(),!1!==a.viewportConstrain&&(o=Math.min(o,t+p.outerHeight()-d-this.margin),o=Math.max(o,t+this.margin),s=Math.min(s,e+p.outerWidth()-u-this.margin),s=Math.max(s,e+this.margin)),this.el.css({top:o-l.top,left:s-l.left})},t.prototype.trigger=function(t){this.options[t]&&this.options[t].apply(this,Array.prototype.slice.call(arguments,1))},t}();e.default=s,o.default.mixInto(s)},function(t,e,n){function i(t,e){var n,i;for(n=0;n=t.leftCol)return!0;return!1}function r(t,e){return t.leftCol-e.leftCol}Object.defineProperty(e,"__esModule",{value:!0});var o=n(2),s=n(3),a=n(4),l=n(42),u=function(t){function e(e,n){var i=t.call(this,e,n)||this;return i.dayGrid=e,i}return o.__extends(e,t),e.prototype.renderBgRanges=function(e){e=s.grep(e,function(t){return t.eventDef.isAllDay()}),t.prototype.renderBgRanges.call(this,e)},e.prototype.renderFgSegs=function(t){var e=this.rowStructs=this.renderSegRows(t);this.dayGrid.rowEls.each(function(t,n){s(n).find(".fc-content-skeleton > table").append(e[t].tbodyEl)})},e.prototype.unrenderFgSegs=function(){for(var t,e=this.rowStructs||[];t=e.pop();)t.tbodyEl.remove();this.rowStructs=null},e.prototype.renderSegRows=function(t){var e,n,i=[];for(e=this.groupSegRows(t),n=0;n"),a.append(d)),v[i][o]=d,y[i][o]=d,o++}var i,r,o,a,l,u,d,c=this.dayGrid.colCnt,p=this.buildSegLevels(e),h=Math.max(1,p.length),f=s(""),g=[],v=[],y=[];for(i=0;i"),g.push([]),v.push([]),y.push([]),r)for(l=0;l').append(u.el),u.leftCol!==u.rightCol?d.attr("colspan",u.rightCol-u.leftCol+1):y[i][o]=d;o<=u.rightCol;)v[i][o]=d,g[i][o]=u,o++;a.append(d)}n(c),this.dayGrid.bookendCells(a),f.append(a)}return{row:t,tbodyEl:f,cellMatrix:v,segMatrix:g,segLevels:p,segs:e}},e.prototype.buildSegLevels=function(t){var e,n,o,s=[];for(this.sortEventSegs(t),e=0;e'+a.htmlEscape(n)+""),i=''+(a.htmlEscape(o.title||"")||" ")+"",'
'+(this.dayGrid.isRTL?i+" "+h:h+" "+i)+"
"+(u?'
':"")+(d?'
':"")+""},e}(l.default);e.default=u},function(t,e,n){Object.defineProperty(e,"__esModule",{value:!0});var i=n(2),r=n(3),o=n(58),s=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return i.__extends(e,t),e.prototype.renderSegs=function(t,e){var n,i=[];return n=this.eventRenderer.renderSegRows(t),this.component.rowEls.each(function(t,o){var s,a,l=r(o),u=r('
');e&&e.row===t?a=e.el.position().top:(s=l.find(".fc-content-skeleton tbody"),s.length||(s=l.find(".fc-content-skeleton table")),a=s.position().top),u.css("top",a).find("table").append(n[t].tbodyEl),l.append(u),i.push(u[0])}),r(i)},e}(o.default);e.default=s},function(t,e,n){Object.defineProperty(e,"__esModule",{value:!0});var i=n(2),r=n(3),o=n(57),s=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.fillSegTag="td",e}return i.__extends(e,t),e.prototype.attachSegEls=function(t,e){var n,i,r,o=[];for(n=0;n
'),o=i.find("tr"),a>0&&o.append(''),o.append(e.el.attr("colspan",l-a)),l'),this.component.bookendCells(o),i},e}(o.default);e.default=s},function(t,e,n){Object.defineProperty(e,"__esModule",{value:!0});var i=n(2),r=n(228),o=n(5),s=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return i.__extends(e,t),e.prototype.buildRenderRange=function(e,n,i){var r,s=t.prototype.buildRenderRange.call(this,e,n,i),a=this.msToUtcMoment(s.startMs,i),l=this.msToUtcMoment(s.endMs,i);return this.opt("fixedWeekCount")&&(r=Math.ceil(l.diff(a,"weeks",!0)),l.add(6-r,"weeks")),new o.default(a,l)},e}(r.default);e.default=s},function(t,e,n){Object.defineProperty(e,"__esModule",{value:!0});var i=n(2),r=n(4),o=n(42),s=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return i.__extends(e,t),e.prototype.renderFgSegs=function(t){t.length?this.component.renderSegList(t):this.component.renderEmptyMessage()},e.prototype.fgSegHtml=function(t){var e,n=this.view,i=n.calendar,o=i.theme,s=t.footprint,a=s.eventDef,l=s.componentFootprint,u=a.url,d=["fc-list-item"].concat(this.getClasses(a)),c=this.getBgColor(a);return e=l.isAllDay?n.getAllDayHtml():n.isMultiDayRange(l.unzonedRange)?t.isStart||t.isEnd?r.htmlEscape(this._getTimeText(i.msToMoment(t.startMs),i.msToMoment(t.endMs),l.isAllDay)):n.getAllDayHtml():r.htmlEscape(this.getTimeText(s)),u&&d.push("fc-has-url"),''+(this.displayEventTime?''+(e||"")+"":"")+'"+r.htmlEscape(a.title||"")+""},e.prototype.computeEventTimeFormat=function(){return this.opt("mediumTimeFormat")},e}(o.default);e.default=s},function(t,e,n){Object.defineProperty(e,"__esModule",{value:!0});var i=n(2),r=n(3),o=n(59),s=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return i.__extends(e,t),e.prototype.handleClick=function(e,n){var i;t.prototype.handleClick.call(this,e,n),r(n.target).closest("a[href]").length||(i=e.footprint.eventDef.url)&&!n.isDefaultPrevented()&&(window.location.href=i)},e}(o.default);e.default=s},function(t,e,n){Object.defineProperty(e,"__esModule",{value:!0});var i=n(38),r=n(52),o=n(215),s=n(216);i.default.registerClass(r.default),i.default.registerClass(o.default),i.default.registerClass(s.default)},function(t,e,n){Object.defineProperty(e,"__esModule",{value:!0});var i=n(51),r=n(213),o=n(214),s=n(258),a=n(259);i.defineThemeSystem("standard",r.default),i.defineThemeSystem("jquery-ui",o.default),i.defineThemeSystem("bootstrap3",s.default),i.defineThemeSystem("bootstrap4",a.default)},function(t,e,n){Object.defineProperty(e,"__esModule",{value:!0});var i=n(2),r=n(19),o=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return i.__extends(e,t),e}(r.default);e.default=o,o.prototype.classes={widget:"fc-bootstrap3",tableGrid:"table-bordered",tableList:"table",tableListHeading:"active",buttonGroup:"btn-group",button:"btn btn-default",stateActive:"active",stateDisabled:"disabled",today:"alert alert-info",popover:"panel panel-default",popoverHeader:"panel-heading",popoverContent:"panel-body",headerRow:"panel-default",dayRow:"panel-default",listView:"panel panel-default"},o.prototype.baseIconClass="glyphicon",o.prototype.iconClasses={close:"glyphicon-remove",prev:"glyphicon-chevron-left",next:"glyphicon-chevron-right",prevYear:"glyphicon-backward",nextYear:"glyphicon-forward"},o.prototype.iconOverrideOption="bootstrapGlyphicons",o.prototype.iconOverrideCustomButtonOption="bootstrapGlyphicon",o.prototype.iconOverridePrefix="glyphicon-"},function(t,e,n){Object.defineProperty(e,"__esModule",{value:!0});var i=n(2),r=n(19),o=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return i.__extends(e,t),e}(r.default);e.default=o,o.prototype.classes={widget:"fc-bootstrap4",tableGrid:"table-bordered",tableList:"table",tableListHeading:"table-active",buttonGroup:"btn-group",button:"btn btn-primary",stateActive:"active",stateDisabled:"disabled",today:"alert alert-info",popover:"card card-primary",popoverHeader:"card-header",popoverContent:"card-body",headerRow:"table-bordered",dayRow:"table-bordered",listView:"card card-primary"},o.prototype.baseIconClass="fa",o.prototype.iconClasses={close:"fa-times",prev:"fa-chevron-left",next:"fa-chevron-right",prevYear:"fa-angle-double-left",nextYear:"fa-angle-double-right"},o.prototype.iconOverrideOption="bootstrapFontAwesome",o.prototype.iconOverrideCustomButtonOption="bootstrapFontAwesome",o.prototype.iconOverridePrefix="fa-"},function(t,e,n){Object.defineProperty(e,"__esModule",{value:!0});var i=n(22),r=n(62),o=n(229);i.defineView("basic",{class:r.default}),i.defineView("basicDay",{type:"basic",duration:{days:1}}),i.defineView("basicWeek",{type:"basic",duration:{weeks:1}}),i.defineView("month",{class:o.default,duration:{months:1},defaults:{fixedWeekCount:!0}})},function(t,e,n){Object.defineProperty(e,"__esModule",{value:!0});var i=n(22),r=n(226);i.defineView("agenda",{class:r.default,defaults:{allDaySlot:!0,slotDuration:"00:30:00",slotEventOverlap:!0}}),i.defineView("agendaDay",{type:"agenda",duration:{days:1}}),i.defineView("agendaWeek",{type:"agenda",duration:{weeks:1}})},function(t,e,n){Object.defineProperty(e,"__esModule",{value:!0});var i=n(22),r=n(230);i.defineView("list",{class:r.default,buttonTextKey:"list",defaults:{buttonText:"list",listDayFormat:"LL",noEventsMessage:"No events to display"}}),i.defineView("listDay",{type:"list",duration:{days:1},defaults:{listDayFormat:"dddd"}}),i.defineView("listWeek",{type:"list",duration:{weeks:1},defaults:{listDayFormat:"dddd",listDayAltFormat:"LL"}}),i.defineView("listMonth",{type:"list",duration:{month:1},defaults:{listDayAltFormat:"dddd"}}),i.defineView("listYear",{type:"list",duration:{year:1},defaults:{listDayAltFormat:"dddd"}})},function(t,e){Object.defineProperty(e,"__esModule",{value:!0})}])}); \ No newline at end of file diff --git a/public/assets/lib/fullcalendar/fullcalendar.print.min.css b/public/assets/lib/fullcalendar/fullcalendar.print.min.css new file mode 100755 index 0000000..59a405c --- /dev/null +++ b/public/assets/lib/fullcalendar/fullcalendar.print.min.css @@ -0,0 +1,9 @@ +/*! + * FullCalendar v3.9.0 + * Docs & License: https://fullcalendar.io/ + * (c) 2018 Adam Shaw + *//*! + * FullCalendar v3.9.0 Print Stylesheet + * Docs & License: https://fullcalendar.io/ + * (c) 2018 Adam Shaw + */.fc-bg,.fc-bgevent-container,.fc-bgevent-skeleton,.fc-business-container,.fc-event .fc-resizer,.fc-helper-container,.fc-helper-skeleton,.fc-highlight-container,.fc-highlight-skeleton{display:none}.fc tbody .fc-row,.fc-time-grid{min-height:0!important}.fc-time-grid .fc-event.fc-not-end:after,.fc-time-grid .fc-event.fc-not-start:before{content:"..."}.fc{max-width:100%!important}.fc-event{background:#fff!important;color:#000!important;page-break-inside:avoid}.fc hr,.fc tbody,.fc td,.fc th,.fc thead,.fc-row{border-color:#ccc!important;background:#fff!important}.fc tbody .fc-row{height:auto!important}.fc tbody .fc-row .fc-content-skeleton{position:static;padding-bottom:0!important}.fc tbody .fc-row .fc-content-skeleton tbody tr:last-child td{padding-bottom:1em}.fc tbody .fc-row .fc-content-skeleton table{height:1em}.fc-more,.fc-more-cell{display:none!important}.fc tr.fc-limited{display:table-row!important}.fc td.fc-limited{display:table-cell!important}.fc-agenda-view .fc-axis,.fc-popover{display:none}.fc-slats,.fc-time-grid hr{display:none!important}.fc button,.fc-button-group,.fc-time-grid .fc-event .fc-time span{display:none}.fc-time-grid .fc-content-skeleton{position:static}.fc-time-grid .fc-content-skeleton table{height:4em}.fc-time-grid .fc-event-container{margin:0!important}.fc-time-grid .fc-event{position:static!important;margin:3px 2px!important}.fc-time-grid .fc-event.fc-not-end{border-bottom-width:1px!important}.fc-time-grid .fc-event.fc-not-start{border-top-width:1px!important}.fc-time-grid .fc-event .fc-time{white-space:normal!important}.fc-time-grid .fc-event .fc-time:after{content:attr(data-full)}.fc-day-grid-container,.fc-scroller,.fc-time-grid-container{overflow:visible!important;height:auto!important}.fc-row{border:0!important;margin:0!important} \ No newline at end of file diff --git a/public/assets/lib/fullcalendar/gcal.min.js b/public/assets/lib/fullcalendar/gcal.min.js new file mode 100755 index 0000000..b0a949d --- /dev/null +++ b/public/assets/lib/fullcalendar/gcal.min.js @@ -0,0 +1,6 @@ +/*! + * FullCalendar v3.9.0 + * Docs & License: https://fullcalendar.io/ + * (c) 2018 Adam Shaw + */ +!function(e,t){"object"==typeof exports&&"object"==typeof module?module.exports=t(require("fullcalendar"),require("jquery")):"function"==typeof define&&define.amd?define(["fullcalendar","jquery"],t):"object"==typeof exports?t(require("fullcalendar"),require("jquery")):t(e.FullCalendar,e.jQuery)}("undefined"!=typeof self?self:this,function(e,t){return function(e){function t(o){if(r[o])return r[o].exports;var n=r[o]={i:o,l:!1,exports:{}};return e[o].call(n.exports,n,n.exports,t),n.l=!0,n.exports}var r={};return t.m=e,t.c=r,t.d=function(e,r,o){t.o(e,r)||Object.defineProperty(e,r,{configurable:!1,enumerable:!0,get:o})},t.n=function(e){var r=e&&e.__esModule?function(){return e.default}:function(){return e};return t.d(r,"a",r),r},t.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},t.p="",t(t.s=266)}({1:function(t,r){t.exports=e},2:function(e,t){var r=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var r in t)t.hasOwnProperty(r)&&(e[r]=t[r])};t.__extends=function(e,t){function o(){this.constructor=e}r(e,t),e.prototype=null===t?Object.create(t):(o.prototype=t.prototype,new o)}},266:function(e,t,r){Object.defineProperty(t,"__esModule",{value:!0});var o=r(1),n=r(267);o.EventSourceParser.registerClass(n.default),o.GcalEventSource=n.default},267:function(e,t,r){function o(e){var t;return/^[^\/]+@([^\/\.]+\.)*(google|googlemail|gmail)\.com$/.test(e)?e:(t=/^https:\/\/www.googleapis.com\/calendar\/v3\/calendars\/([^\/]*)/.exec(e))||(t=/^https?:\/\/www.google.com\/calendar\/feeds\/([^\/]*)/.exec(e))?decodeURIComponent(t[1]):void 0}function n(e,t){return e.replace(/(\?.*?)?(#|$)/,function(e,r,o){return(r?r+"&":"?")+t+o})}Object.defineProperty(t,"__esModule",{value:!0});var a=r(2),l=r(3),i=r(1),u=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return a.__extends(t,e),t.parse=function(e,t){var r;return"object"==typeof e?r=e:"string"==typeof e&&(r={url:e}),!!r&&i.EventSource.parse.call(this,r,t)},t.prototype.fetch=function(e,t,r){var o=this,n=this.buildUrl(),a=this.buildRequestParams(e,t,r),u=this.ajaxSettings||{},c=u.success;return a?(this.calendar.pushLoading(),i.Promise.construct(function(e,t){l.ajax(l.extend({},i.JsonFeedEventSource.AJAX_DEFAULTS,u,{url:n,data:a,success:function(r,n,u){var s,p;o.calendar.popLoading(),r.error?(o.reportError("Google Calendar API: "+r.error.message,r.error.errors),t()):r.items&&(s=o.gcalItemsToRawEventDefs(r.items,a.timeZone),p=i.applyAll(c,o,[r,n,u]),l.isArray(p)&&(s=p),e(o.parseEventDefs(s)))},error:function(e,r,n){o.reportError("Google Calendar network failure: "+r,[e,n]),o.calendar.popLoading(),t()}}))})):i.Promise.reject()},t.prototype.gcalItemsToRawEventDefs=function(e,t){var r=this;return e.map(function(e){return r.gcalItemToRawEventDef(e,t)})},t.prototype.gcalItemToRawEventDef=function(e,t){var r=e.htmlLink||null;return r&&t&&(r=n(r,"ctz="+t)),{id:e.id,title:e.summary,start:e.start.dateTime||e.start.date,end:e.end.dateTime||e.end.date,url:r,location:e.location,description:e.description}},t.prototype.buildUrl=function(){return t.API_BASE+"/"+encodeURIComponent(this.googleCalendarId)+"/events?callback=?"},t.prototype.buildRequestParams=function(e,t,r){var o,n=this.googleCalendarApiKey||this.calendar.opt("googleCalendarApiKey");return n?(e.hasZone()||(e=e.clone().utc().add(-1,"day")),t.hasZone()||(t=t.clone().utc().add(1,"day")),o=l.extend(this.ajaxSettings.data||{},{key:n,timeMin:e.format(),timeMax:t.format(),singleEvents:!0,maxResults:9999}),r&&"local"!==r&&(o.timeZone=r.replace(" ","_")),o):(this.reportError("Specify a googleCalendarApiKey. See http://fullcalendar.io/docs/google_calendar/"),null)},t.prototype.reportError=function(e,t){var r=this.calendar,o=r.opt("googleCalendarError"),n=t||[{message:e}];this.googleCalendarError&&this.googleCalendarError.apply(r,n),o&&o.apply(r,n),i.warn.apply(null,[e].concat(t||[]))},t.prototype.getPrimitive=function(){return this.googleCalendarId},t.prototype.applyManualStandardProps=function(e){var t=i.EventSource.prototype.applyManualStandardProps.apply(this,arguments),r=e.googleCalendarId;return null==r&&e.url&&(r=o(e.url)),null!=r&&(this.googleCalendarId=r,t)},t.prototype.applyMiscProps=function(e){this.ajaxSettings||(this.ajaxSettings={}),l.extend(this.ajaxSettings,e)},t.API_BASE="https://www.googleapis.com/calendar/v3/calendars",t}(i.EventSource);t.default=u,u.defineStandardProps({url:!1,googleCalendarId:!1,googleCalendarApiKey:!0,googleCalendarError:!0})},3:function(e,r){e.exports=t}})}); \ No newline at end of file diff --git a/public/assets/lib/fullcalendar/locale-all.js b/public/assets/lib/fullcalendar/locale-all.js new file mode 100755 index 0000000..ebc4154 --- /dev/null +++ b/public/assets/lib/fullcalendar/locale-all.js @@ -0,0 +1,6 @@ +!function(e,a){"object"==typeof exports&&"object"==typeof module?module.exports=a(require("moment"),require("fullcalendar")):"function"==typeof define&&define.amd?define(["moment","fullcalendar"],a):"object"==typeof exports?a(require("moment"),require("fullcalendar")):a(e.moment,e.FullCalendar)}("undefined"!=typeof self?self:this,function(e,a){return function(e){function a(n){if(t[n])return t[n].exports;var r=t[n]={i:n,l:!1,exports:{}};return e[n].call(r.exports,r,r.exports,a),r.l=!0,r.exports}var t={};return a.m=e,a.c=t,a.d=function(e,t,n){a.o(e,t)||Object.defineProperty(e,t,{configurable:!1,enumerable:!0,get:n})},a.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return a.d(t,"a",t),t},a.o=function(e,a){return Object.prototype.hasOwnProperty.call(e,a)},a.p="",a(a.s=434)}([function(a,t){a.exports=e},function(e,t){e.exports=a},,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,function(e,a,t){Object.defineProperty(a,"__esModule",{value:!0}),t(66);var n=t(1);n.datepickerLocale("af","af",{closeText:"Selekteer",prevText:"Vorige",nextText:"Volgende",currentText:"Vandag",monthNames:["Januarie","Februarie","Maart","April","Mei","Junie","Julie","Augustus","September","Oktober","November","Desember"],monthNamesShort:["Jan","Feb","Mrt","Apr","Mei","Jun","Jul","Aug","Sep","Okt","Nov","Des"],dayNames:["Sondag","Maandag","Dinsdag","Woensdag","Donderdag","Vrydag","Saterdag"],dayNamesShort:["Son","Maa","Din","Woe","Don","Vry","Sat"],dayNamesMin:["So","Ma","Di","Wo","Do","Vr","Sa"],weekHeader:"Wk",dateFormat:"dd/mm/yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),n.locale("af",{buttonText:{year:"Jaar",month:"Maand",week:"Week",day:"Dag",list:"Agenda"},allDayHtml:"Heeldag",eventLimitText:"Addisionele",noEventsMessage:"Daar is geen gebeurtenisse nie"})},function(e,a,t){!function(e,a){a(t(0))}(0,function(e){return e.defineLocale("af",{months:"Januarie_Februarie_Maart_April_Mei_Junie_Julie_Augustus_September_Oktober_November_Desember".split("_"),monthsShort:"Jan_Feb_Mrt_Apr_Mei_Jun_Jul_Aug_Sep_Okt_Nov_Des".split("_"),weekdays:"Sondag_Maandag_Dinsdag_Woensdag_Donderdag_Vrydag_Saterdag".split("_"),weekdaysShort:"Son_Maa_Din_Woe_Don_Vry_Sat".split("_"),weekdaysMin:"So_Ma_Di_Wo_Do_Vr_Sa".split("_"),meridiemParse:/vm|nm/i,isPM:function(e){return/^nm$/i.test(e)},meridiem:function(e,a,t){return e<12?t?"vm":"VM":t?"nm":"NM"},longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[Vandag om] LT",nextDay:"[Môre om] LT",nextWeek:"dddd [om] LT",lastDay:"[Gister om] LT",lastWeek:"[Laas] dddd [om] LT",sameElse:"L"},relativeTime:{future:"oor %s",past:"%s gelede",s:"'n paar sekondes",ss:"%d sekondes",m:"'n minuut",mm:"%d minute",h:"'n uur",hh:"%d ure",d:"'n dag",dd:"%d dae",M:"'n maand",MM:"%d maande",y:"'n jaar",yy:"%d jaar"},dayOfMonthOrdinalParse:/\d{1,2}(ste|de)/,ordinal:function(e){return e+(1===e||8===e||e>=20?"ste":"de")},week:{dow:1,doy:4}})})},function(e,a,t){Object.defineProperty(a,"__esModule",{value:!0}),t(68);var n=t(1);n.datepickerLocale("ar-dz","ar-DZ",{closeText:"إغلاق",prevText:"<السابق",nextText:"التالي>",currentText:"اليوم",monthNames:["جانفي","فيفري","مارس","أفريل","ماي","جوان","جويلية","أوت","سبتمبر","أكتوبر","نوفمبر","ديسمبر"],monthNamesShort:["1","2","3","4","5","6","7","8","9","10","11","12"],dayNames:["الأحد","الاثنين","الثلاثاء","الأربعاء","الخميس","الجمعة","السبت"],dayNamesShort:["الأحد","الاثنين","الثلاثاء","الأربعاء","الخميس","الجمعة","السبت"],dayNamesMin:["ح","ن","ث","ر","خ","ج","س"],weekHeader:"أسبوع",dateFormat:"dd/mm/yy",firstDay:6,isRTL:!0,showMonthAfterYear:!1,yearSuffix:""}),n.locale("ar-dz",{buttonText:{month:"شهر",week:"أسبوع",day:"يوم",list:"أجندة"},allDayText:"اليوم كله",eventLimitText:"أخرى",noEventsMessage:"أي أحداث لعرض"})},function(e,a,t){!function(e,a){a(t(0))}(0,function(e){return e.defineLocale("ar-dz",{months:"جانفي_فيفري_مارس_أفريل_ماي_جوان_جويلية_أوت_سبتمبر_أكتوبر_نوفمبر_ديسمبر".split("_"),monthsShort:"جانفي_فيفري_مارس_أفريل_ماي_جوان_جويلية_أوت_سبتمبر_أكتوبر_نوفمبر_ديسمبر".split("_"),weekdays:"الأحد_الإثنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت".split("_"),weekdaysShort:"احد_اثنين_ثلاثاء_اربعاء_خميس_جمعة_سبت".split("_"),weekdaysMin:"أح_إث_ثلا_أر_خم_جم_سب".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[اليوم على الساعة] LT",nextDay:"[غدا على الساعة] LT",nextWeek:"dddd [على الساعة] LT",lastDay:"[أمس على الساعة] LT",lastWeek:"dddd [على الساعة] LT",sameElse:"L"},relativeTime:{future:"في %s",past:"منذ %s",s:"ثوان",ss:"%d ثانية",m:"دقيقة",mm:"%d دقائق",h:"ساعة",hh:"%d ساعات",d:"يوم",dd:"%d أيام",M:"شهر",MM:"%d أشهر",y:"سنة",yy:"%d سنوات"},week:{dow:0,doy:4}})})},function(e,a,t){Object.defineProperty(a,"__esModule",{value:!0}),t(70);var n=t(1);n.datepickerLocale("ar-kw","ar",{closeText:"إغلاق",prevText:"<السابق",nextText:"التالي>",currentText:"اليوم",monthNames:["يناير","فبراير","مارس","أبريل","مايو","يونيو","يوليو","أغسطس","سبتمبر","أكتوبر","نوفمبر","ديسمبر"],monthNamesShort:["1","2","3","4","5","6","7","8","9","10","11","12"],dayNames:["الأحد","الاثنين","الثلاثاء","الأربعاء","الخميس","الجمعة","السبت"],dayNamesShort:["أحد","اثنين","ثلاثاء","أربعاء","خميس","جمعة","سبت"],dayNamesMin:["ح","ن","ث","ر","خ","ج","س"],weekHeader:"أسبوع",dateFormat:"dd/mm/yy",firstDay:0,isRTL:!0,showMonthAfterYear:!1,yearSuffix:""}),n.locale("ar-kw",{buttonText:{month:"شهر",week:"أسبوع",day:"يوم",list:"أجندة"},allDayText:"اليوم كله",eventLimitText:"أخرى",noEventsMessage:"أي أحداث لعرض"})},function(e,a,t){!function(e,a){a(t(0))}(0,function(e){return e.defineLocale("ar-kw",{months:"يناير_فبراير_مارس_أبريل_ماي_يونيو_يوليوز_غشت_شتنبر_أكتوبر_نونبر_دجنبر".split("_"),monthsShort:"يناير_فبراير_مارس_أبريل_ماي_يونيو_يوليوز_غشت_شتنبر_أكتوبر_نونبر_دجنبر".split("_"),weekdays:"الأحد_الإتنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت".split("_"),weekdaysShort:"احد_اتنين_ثلاثاء_اربعاء_خميس_جمعة_سبت".split("_"),weekdaysMin:"ح_ن_ث_ر_خ_ج_س".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[اليوم على الساعة] LT",nextDay:"[غدا على الساعة] LT",nextWeek:"dddd [على الساعة] LT",lastDay:"[أمس على الساعة] LT",lastWeek:"dddd [على الساعة] LT",sameElse:"L"},relativeTime:{future:"في %s",past:"منذ %s",s:"ثوان",ss:"%d ثانية",m:"دقيقة",mm:"%d دقائق",h:"ساعة",hh:"%d ساعات",d:"يوم",dd:"%d أيام",M:"شهر",MM:"%d أشهر",y:"سنة",yy:"%d سنوات"},week:{dow:0,doy:12}})})},function(e,a,t){Object.defineProperty(a,"__esModule",{value:!0}),t(72);var n=t(1);n.datepickerLocale("ar-ly","ar",{closeText:"إغلاق",prevText:"<السابق",nextText:"التالي>",currentText:"اليوم",monthNames:["يناير","فبراير","مارس","أبريل","مايو","يونيو","يوليو","أغسطس","سبتمبر","أكتوبر","نوفمبر","ديسمبر"],monthNamesShort:["1","2","3","4","5","6","7","8","9","10","11","12"],dayNames:["الأحد","الاثنين","الثلاثاء","الأربعاء","الخميس","الجمعة","السبت"],dayNamesShort:["أحد","اثنين","ثلاثاء","أربعاء","خميس","جمعة","سبت"],dayNamesMin:["ح","ن","ث","ر","خ","ج","س"],weekHeader:"أسبوع",dateFormat:"dd/mm/yy",firstDay:0,isRTL:!0,showMonthAfterYear:!1,yearSuffix:""}),n.locale("ar-ly",{buttonText:{month:"شهر",week:"أسبوع",day:"يوم",list:"أجندة"},allDayText:"اليوم كله",eventLimitText:"أخرى",noEventsMessage:"أي أحداث لعرض"})},function(e,a,t){!function(e,a){a(t(0))}(0,function(e){var a={1:"1",2:"2",3:"3",4:"4",5:"5",6:"6",7:"7",8:"8",9:"9",0:"0"},t=function(e){return 0===e?0:1===e?1:2===e?2:e%100>=3&&e%100<=10?3:e%100>=11?4:5},n={s:["أقل من ثانية","ثانية واحدة",["ثانيتان","ثانيتين"],"%d ثوان","%d ثانية","%d ثانية"],m:["أقل من دقيقة","دقيقة واحدة",["دقيقتان","دقيقتين"],"%d دقائق","%d دقيقة","%d دقيقة"],h:["أقل من ساعة","ساعة واحدة",["ساعتان","ساعتين"],"%d ساعات","%d ساعة","%d ساعة"],d:["أقل من يوم","يوم واحد",["يومان","يومين"],"%d أيام","%d يومًا","%d يوم"],M:["أقل من شهر","شهر واحد",["شهران","شهرين"],"%d أشهر","%d شهرا","%d شهر"],y:["أقل من عام","عام واحد",["عامان","عامين"],"%d أعوام","%d عامًا","%d عام"]},r=function(e){return function(a,r,s,d){var i=t(a),o=n[e][t(a)];return 2===i&&(o=o[r?0:1]),o.replace(/%d/i,a)}},s=["يناير","فبراير","مارس","أبريل","مايو","يونيو","يوليو","أغسطس","سبتمبر","أكتوبر","نوفمبر","ديسمبر"];return e.defineLocale("ar-ly",{months:s,monthsShort:s,weekdays:"الأحد_الإثنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت".split("_"),weekdaysShort:"أحد_إثنين_ثلاثاء_أربعاء_خميس_جمعة_سبت".split("_"),weekdaysMin:"ح_ن_ث_ر_خ_ج_س".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"D/‏M/‏YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},meridiemParse:/ص|م/,isPM:function(e){return"م"===e},meridiem:function(e,a,t){return e<12?"ص":"م"},calendar:{sameDay:"[اليوم عند الساعة] LT",nextDay:"[غدًا عند الساعة] LT",nextWeek:"dddd [عند الساعة] LT",lastDay:"[أمس عند الساعة] LT",lastWeek:"dddd [عند الساعة] LT",sameElse:"L"},relativeTime:{future:"بعد %s",past:"منذ %s",s:r("s"),ss:r("s"),m:r("m"),mm:r("m"),h:r("h"),hh:r("h"),d:r("d"),dd:r("d"),M:r("M"),MM:r("M"),y:r("y"),yy:r("y")},preparse:function(e){return e.replace(/،/g,",")},postformat:function(e){return e.replace(/\d/g,function(e){return a[e]}).replace(/,/g,"،")},week:{dow:6,doy:12}})})},function(e,a,t){Object.defineProperty(a,"__esModule",{value:!0}),t(74);var n=t(1);n.datepickerLocale("ar-ma","ar",{closeText:"إغلاق",prevText:"<السابق",nextText:"التالي>",currentText:"اليوم",monthNames:["يناير","فبراير","مارس","أبريل","مايو","يونيو","يوليو","أغسطس","سبتمبر","أكتوبر","نوفمبر","ديسمبر"],monthNamesShort:["1","2","3","4","5","6","7","8","9","10","11","12"],dayNames:["الأحد","الاثنين","الثلاثاء","الأربعاء","الخميس","الجمعة","السبت"],dayNamesShort:["أحد","اثنين","ثلاثاء","أربعاء","خميس","جمعة","سبت"],dayNamesMin:["ح","ن","ث","ر","خ","ج","س"],weekHeader:"أسبوع",dateFormat:"dd/mm/yy",firstDay:0,isRTL:!0,showMonthAfterYear:!1,yearSuffix:""}),n.locale("ar-ma",{buttonText:{month:"شهر",week:"أسبوع",day:"يوم",list:"أجندة"},allDayText:"اليوم كله",eventLimitText:"أخرى",noEventsMessage:"أي أحداث لعرض"})},function(e,a,t){!function(e,a){a(t(0))}(0,function(e){return e.defineLocale("ar-ma",{months:"يناير_فبراير_مارس_أبريل_ماي_يونيو_يوليوز_غشت_شتنبر_أكتوبر_نونبر_دجنبر".split("_"),monthsShort:"يناير_فبراير_مارس_أبريل_ماي_يونيو_يوليوز_غشت_شتنبر_أكتوبر_نونبر_دجنبر".split("_"),weekdays:"الأحد_الإتنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت".split("_"),weekdaysShort:"احد_اتنين_ثلاثاء_اربعاء_خميس_جمعة_سبت".split("_"),weekdaysMin:"ح_ن_ث_ر_خ_ج_س".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[اليوم على الساعة] LT",nextDay:"[غدا على الساعة] LT",nextWeek:"dddd [على الساعة] LT",lastDay:"[أمس على الساعة] LT",lastWeek:"dddd [على الساعة] LT",sameElse:"L"},relativeTime:{future:"في %s",past:"منذ %s",s:"ثوان",ss:"%d ثانية",m:"دقيقة",mm:"%d دقائق",h:"ساعة",hh:"%d ساعات",d:"يوم",dd:"%d أيام",M:"شهر",MM:"%d أشهر",y:"سنة",yy:"%d سنوات"},week:{dow:6,doy:12}})})},function(e,a,t){Object.defineProperty(a,"__esModule",{value:!0}),t(76);var n=t(1);n.datepickerLocale("ar-sa","ar",{closeText:"إغلاق",prevText:"<السابق",nextText:"التالي>",currentText:"اليوم",monthNames:["يناير","فبراير","مارس","أبريل","مايو","يونيو","يوليو","أغسطس","سبتمبر","أكتوبر","نوفمبر","ديسمبر"],monthNamesShort:["1","2","3","4","5","6","7","8","9","10","11","12"],dayNames:["الأحد","الاثنين","الثلاثاء","الأربعاء","الخميس","الجمعة","السبت"],dayNamesShort:["أحد","اثنين","ثلاثاء","أربعاء","خميس","جمعة","سبت"],dayNamesMin:["ح","ن","ث","ر","خ","ج","س"],weekHeader:"أسبوع",dateFormat:"dd/mm/yy",firstDay:0,isRTL:!0,showMonthAfterYear:!1,yearSuffix:""}),n.locale("ar-sa",{buttonText:{month:"شهر",week:"أسبوع",day:"يوم",list:"أجندة"},allDayText:"اليوم كله",eventLimitText:"أخرى",noEventsMessage:"أي أحداث لعرض"})},function(e,a,t){!function(e,a){a(t(0))}(0,function(e){var a={1:"١",2:"٢",3:"٣",4:"٤",5:"٥",6:"٦",7:"٧",8:"٨",9:"٩",0:"٠"},t={"١":"1","٢":"2","٣":"3","٤":"4","٥":"5","٦":"6","٧":"7","٨":"8","٩":"9","٠":"0"};return e.defineLocale("ar-sa",{months:"يناير_فبراير_مارس_أبريل_مايو_يونيو_يوليو_أغسطس_سبتمبر_أكتوبر_نوفمبر_ديسمبر".split("_"),monthsShort:"يناير_فبراير_مارس_أبريل_مايو_يونيو_يوليو_أغسطس_سبتمبر_أكتوبر_نوفمبر_ديسمبر".split("_"),weekdays:"الأحد_الإثنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت".split("_"),weekdaysShort:"أحد_إثنين_ثلاثاء_أربعاء_خميس_جمعة_سبت".split("_"),weekdaysMin:"ح_ن_ث_ر_خ_ج_س".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},meridiemParse:/ص|م/,isPM:function(e){return"م"===e},meridiem:function(e,a,t){return e<12?"ص":"م"},calendar:{sameDay:"[اليوم على الساعة] LT",nextDay:"[غدا على الساعة] LT",nextWeek:"dddd [على الساعة] LT",lastDay:"[أمس على الساعة] LT",lastWeek:"dddd [على الساعة] LT",sameElse:"L"},relativeTime:{future:"في %s",past:"منذ %s",s:"ثوان",ss:"%d ثانية",m:"دقيقة",mm:"%d دقائق",h:"ساعة",hh:"%d ساعات",d:"يوم",dd:"%d أيام",M:"شهر",MM:"%d أشهر",y:"سنة",yy:"%d سنوات"},preparse:function(e){return e.replace(/[١٢٣٤٥٦٧٨٩٠]/g,function(e){return t[e]}).replace(/،/g,",")},postformat:function(e){return e.replace(/\d/g,function(e){return a[e]}).replace(/,/g,"،")},week:{dow:0,doy:6}})})},function(e,a,t){Object.defineProperty(a,"__esModule",{value:!0}),t(78);var n=t(1);n.datepickerLocale("ar-tn","ar",{closeText:"إغلاق",prevText:"<السابق",nextText:"التالي>",currentText:"اليوم",monthNames:["يناير","فبراير","مارس","أبريل","مايو","يونيو","يوليو","أغسطس","سبتمبر","أكتوبر","نوفمبر","ديسمبر"],monthNamesShort:["1","2","3","4","5","6","7","8","9","10","11","12"],dayNames:["الأحد","الاثنين","الثلاثاء","الأربعاء","الخميس","الجمعة","السبت"],dayNamesShort:["أحد","اثنين","ثلاثاء","أربعاء","خميس","جمعة","سبت"],dayNamesMin:["ح","ن","ث","ر","خ","ج","س"],weekHeader:"أسبوع",dateFormat:"dd/mm/yy",firstDay:0,isRTL:!0,showMonthAfterYear:!1,yearSuffix:""}),n.locale("ar-tn",{buttonText:{month:"شهر",week:"أسبوع",day:"يوم",list:"أجندة"},allDayText:"اليوم كله",eventLimitText:"أخرى",noEventsMessage:"أي أحداث لعرض"})},function(e,a,t){!function(e,a){a(t(0))}(0,function(e){return e.defineLocale("ar-tn",{months:"جانفي_فيفري_مارس_أفريل_ماي_جوان_جويلية_أوت_سبتمبر_أكتوبر_نوفمبر_ديسمبر".split("_"),monthsShort:"جانفي_فيفري_مارس_أفريل_ماي_جوان_جويلية_أوت_سبتمبر_أكتوبر_نوفمبر_ديسمبر".split("_"),weekdays:"الأحد_الإثنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت".split("_"),weekdaysShort:"أحد_إثنين_ثلاثاء_أربعاء_خميس_جمعة_سبت".split("_"),weekdaysMin:"ح_ن_ث_ر_خ_ج_س".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[اليوم على الساعة] LT",nextDay:"[غدا على الساعة] LT",nextWeek:"dddd [على الساعة] LT",lastDay:"[أمس على الساعة] LT",lastWeek:"dddd [على الساعة] LT",sameElse:"L"},relativeTime:{future:"في %s",past:"منذ %s",s:"ثوان",ss:"%d ثانية",m:"دقيقة",mm:"%d دقائق",h:"ساعة",hh:"%d ساعات",d:"يوم",dd:"%d أيام",M:"شهر",MM:"%d أشهر",y:"سنة",yy:"%d سنوات"},week:{dow:1,doy:4}})})},function(e,a,t){Object.defineProperty(a,"__esModule",{value:!0}),t(80);var n=t(1);n.datepickerLocale("ar","ar",{closeText:"إغلاق",prevText:"<السابق",nextText:"التالي>",currentText:"اليوم",monthNames:["يناير","فبراير","مارس","أبريل","مايو","يونيو","يوليو","أغسطس","سبتمبر","أكتوبر","نوفمبر","ديسمبر"],monthNamesShort:["1","2","3","4","5","6","7","8","9","10","11","12"],dayNames:["الأحد","الاثنين","الثلاثاء","الأربعاء","الخميس","الجمعة","السبت"],dayNamesShort:["أحد","اثنين","ثلاثاء","أربعاء","خميس","جمعة","سبت"],dayNamesMin:["ح","ن","ث","ر","خ","ج","س"],weekHeader:"أسبوع",dateFormat:"dd/mm/yy",firstDay:0,isRTL:!0,showMonthAfterYear:!1,yearSuffix:""}),n.locale("ar",{buttonText:{month:"شهر",week:"أسبوع",day:"يوم",list:"أجندة"},allDayText:"اليوم كله",eventLimitText:"أخرى",noEventsMessage:"أي أحداث لعرض"})},function(e,a,t){!function(e,a){a(t(0))}(0,function(e){var a={1:"١",2:"٢",3:"٣",4:"٤",5:"٥",6:"٦",7:"٧",8:"٨",9:"٩",0:"٠"},t={"١":"1","٢":"2","٣":"3","٤":"4","٥":"5","٦":"6","٧":"7","٨":"8","٩":"9","٠":"0"},n=function(e){return 0===e?0:1===e?1:2===e?2:e%100>=3&&e%100<=10?3:e%100>=11?4:5},r={s:["أقل من ثانية","ثانية واحدة",["ثانيتان","ثانيتين"],"%d ثوان","%d ثانية","%d ثانية"],m:["أقل من دقيقة","دقيقة واحدة",["دقيقتان","دقيقتين"],"%d دقائق","%d دقيقة","%d دقيقة"],h:["أقل من ساعة","ساعة واحدة",["ساعتان","ساعتين"],"%d ساعات","%d ساعة","%d ساعة"],d:["أقل من يوم","يوم واحد",["يومان","يومين"],"%d أيام","%d يومًا","%d يوم"],M:["أقل من شهر","شهر واحد",["شهران","شهرين"],"%d أشهر","%d شهرا","%d شهر"],y:["أقل من عام","عام واحد",["عامان","عامين"],"%d أعوام","%d عامًا","%d عام"]},s=function(e){return function(a,t,s,d){var i=n(a),o=r[e][n(a)];return 2===i&&(o=o[t?0:1]),o.replace(/%d/i,a)}},d=["يناير","فبراير","مارس","أبريل","مايو","يونيو","يوليو","أغسطس","سبتمبر","أكتوبر","نوفمبر","ديسمبر"];return e.defineLocale("ar",{months:d,monthsShort:d,weekdays:"الأحد_الإثنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت".split("_"),weekdaysShort:"أحد_إثنين_ثلاثاء_أربعاء_خميس_جمعة_سبت".split("_"),weekdaysMin:"ح_ن_ث_ر_خ_ج_س".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"D/‏M/‏YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},meridiemParse:/ص|م/,isPM:function(e){return"م"===e},meridiem:function(e,a,t){return e<12?"ص":"م"},calendar:{sameDay:"[اليوم عند الساعة] LT",nextDay:"[غدًا عند الساعة] LT",nextWeek:"dddd [عند الساعة] LT",lastDay:"[أمس عند الساعة] LT",lastWeek:"dddd [عند الساعة] LT",sameElse:"L"},relativeTime:{future:"بعد %s",past:"منذ %s",s:s("s"),ss:s("s"),m:s("m"),mm:s("m"),h:s("h"),hh:s("h"),d:s("d"),dd:s("d"),M:s("M"),MM:s("M"),y:s("y"),yy:s("y")},preparse:function(e){return e.replace(/[١٢٣٤٥٦٧٨٩٠]/g,function(e){return t[e]}).replace(/،/g,",")},postformat:function(e){return e.replace(/\d/g,function(e){return a[e]}).replace(/,/g,"،")},week:{dow:6,doy:12}})})},function(e,a,t){Object.defineProperty(a,"__esModule",{value:!0}),t(82);var n=t(1);n.datepickerLocale("bg","bg",{closeText:"затвори",prevText:"<назад",nextText:"напред>",nextBigText:">>",currentText:"днес",monthNames:["Януари","Февруари","Март","Април","Май","Юни","Юли","Август","Септември","Октомври","Ноември","Декември"],monthNamesShort:["Яну","Фев","Мар","Апр","Май","Юни","Юли","Авг","Сеп","Окт","Нов","Дек"],dayNames:["Неделя","Понеделник","Вторник","Сряда","Четвъртък","Петък","Събота"],dayNamesShort:["Нед","Пон","Вто","Сря","Чет","Пет","Съб"],dayNamesMin:["Не","По","Вт","Ср","Че","Пе","Съ"],weekHeader:"Wk",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),n.locale("bg",{buttonText:{month:"Месец",week:"Седмица",day:"Ден",list:"График"},allDayText:"Цял ден",eventLimitText:function(e){return"+още "+e},noEventsMessage:"Няма събития за показване"})},function(e,a,t){!function(e,a){a(t(0))}(0,function(e){return e.defineLocale("bg",{months:"януари_февруари_март_април_май_юни_юли_август_септември_октомври_ноември_декември".split("_"),monthsShort:"янр_фев_мар_апр_май_юни_юли_авг_сеп_окт_ное_дек".split("_"),weekdays:"неделя_понеделник_вторник_сряда_четвъртък_петък_събота".split("_"),weekdaysShort:"нед_пон_вто_сря_чет_пет_съб".split("_"),weekdaysMin:"нд_пн_вт_ср_чт_пт_сб".split("_"),longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"D.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY H:mm",LLLL:"dddd, D MMMM YYYY H:mm"},calendar:{sameDay:"[Днес в] LT",nextDay:"[Утре в] LT",nextWeek:"dddd [в] LT",lastDay:"[Вчера в] LT",lastWeek:function(){switch(this.day()){case 0:case 3:case 6:return"[В изминалата] dddd [в] LT";case 1:case 2:case 4:case 5:return"[В изминалия] dddd [в] LT"}},sameElse:"L"},relativeTime:{future:"след %s",past:"преди %s",s:"няколко секунди",ss:"%d секунди",m:"минута",mm:"%d минути",h:"час",hh:"%d часа",d:"ден",dd:"%d дни",M:"месец",MM:"%d месеца",y:"година",yy:"%d години"},dayOfMonthOrdinalParse:/\d{1,2}-(ев|ен|ти|ви|ри|ми)/,ordinal:function(e){var a=e%10,t=e%100;return 0===e?e+"-ев":0===t?e+"-ен":t>10&&t<20?e+"-ти":1===a?e+"-ви":2===a?e+"-ри":7===a||8===a?e+"-ми":e+"-ти"},week:{dow:1,doy:7}})})},function(e,a,t){Object.defineProperty(a,"__esModule",{value:!0}),t(84);var n=t(1);n.datepickerLocale("bs","bs",{closeText:"Zatvori",prevText:"<",nextText:">",currentText:"Danas",monthNames:["Januar","Februar","Mart","April","Maj","Juni","Juli","August","Septembar","Oktobar","Novmbar","Decembar"],monthNamesShort:["Jan","Feb","Mar","Apr","Maj","Jun","Jul","Aug","Sep","Okt","Nov","Dec"],dayNames:["Nedjelja","Ponedjeljak","Utorak","Srijeda","Četvrtak","Petak","Subota"],dayNamesShort:["Ned","Pon","Uto","Sri","Čet","Pet","Sub"],dayNamesMin:["Ne","Po","Ut","Sr","Če","Pe","Su"],weekHeader:"Sed",dateFormat:"dd.mm.yy.",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),n.locale("bs",{buttonText:{prev:"Prošli",next:"Sljedeći",month:"Mjesec",week:"Sedmica",day:"Dan",list:"Raspored"},allDayText:"Cijeli dan",eventLimitText:function(e){return"+ još "+e},noEventsMessage:"Nema događaja za prikazivanje"})},function(e,a,t){!function(e,a){a(t(0))}(0,function(e){function a(e,a,t){var n=e+" ";switch(t){case"ss":return n+=1===e?"sekunda":2===e||3===e||4===e?"sekunde":"sekundi";case"m":return a?"jedna minuta":"jedne minute";case"mm":return n+=1===e?"minuta":2===e||3===e||4===e?"minute":"minuta";case"h":return a?"jedan sat":"jednog sata";case"hh":return n+=1===e?"sat":2===e||3===e||4===e?"sata":"sati";case"dd":return n+=1===e?"dan":"dana";case"MM":return n+=1===e?"mjesec":2===e||3===e||4===e?"mjeseca":"mjeseci";case"yy":return n+=1===e?"godina":2===e||3===e||4===e?"godine":"godina"}}return e.defineLocale("bs",{months:"januar_februar_mart_april_maj_juni_juli_august_septembar_oktobar_novembar_decembar".split("_"),monthsShort:"jan._feb._mar._apr._maj._jun._jul._aug._sep._okt._nov._dec.".split("_"),monthsParseExact:!0,weekdays:"nedjelja_ponedjeljak_utorak_srijeda_četvrtak_petak_subota".split("_"),weekdaysShort:"ned._pon._uto._sri._čet._pet._sub.".split("_"),weekdaysMin:"ne_po_ut_sr_če_pe_su".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY H:mm",LLLL:"dddd, D. MMMM YYYY H:mm"},calendar:{sameDay:"[danas u] LT",nextDay:"[sutra u] LT",nextWeek:function(){switch(this.day()){case 0:return"[u] [nedjelju] [u] LT";case 3:return"[u] [srijedu] [u] LT";case 6:return"[u] [subotu] [u] LT";case 1:case 2:case 4:case 5:return"[u] dddd [u] LT"}},lastDay:"[jučer u] LT",lastWeek:function(){switch(this.day()){case 0:case 3:return"[prošlu] dddd [u] LT";case 6:return"[prošle] [subote] [u] LT";case 1:case 2:case 4:case 5:return"[prošli] dddd [u] LT"}},sameElse:"L"},relativeTime:{future:"za %s",past:"prije %s",s:"par sekundi",ss:a,m:a,mm:a,h:a,hh:a,d:"dan",dd:a,M:"mjesec",MM:a,y:"godinu",yy:a},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:7}})})},function(e,a,t){Object.defineProperty(a,"__esModule",{value:!0}),t(86);var n=t(1);n.datepickerLocale("ca","ca",{closeText:"Tanca",prevText:"Anterior",nextText:"Següent",currentText:"Avui",monthNames:["gener","febrer","març","abril","maig","juny","juliol","agost","setembre","octubre","novembre","desembre"],monthNamesShort:["gen","feb","març","abr","maig","juny","jul","ag","set","oct","nov","des"],dayNames:["diumenge","dilluns","dimarts","dimecres","dijous","divendres","dissabte"],dayNamesShort:["dg","dl","dt","dc","dj","dv","ds"],dayNamesMin:["dg","dl","dt","dc","dj","dv","ds"],weekHeader:"Set",dateFormat:"dd/mm/yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),n.locale("ca",{buttonText:{month:"Mes",week:"Setmana",day:"Dia",list:"Agenda"},allDayText:"Tot el dia",eventLimitText:"més",noEventsMessage:"No hi ha esdeveniments per mostrar"})},function(e,a,t){!function(e,a){a(t(0))}(0,function(e){return e.defineLocale("ca",{months:{standalone:"gener_febrer_març_abril_maig_juny_juliol_agost_setembre_octubre_novembre_desembre".split("_"),format:"de gener_de febrer_de març_d'abril_de maig_de juny_de juliol_d'agost_de setembre_d'octubre_de novembre_de desembre".split("_"),isFormat:/D[oD]?(\s)+MMMM/},monthsShort:"gen._febr._març_abr._maig_juny_jul._ag._set._oct._nov._des.".split("_"),monthsParseExact:!0,weekdays:"diumenge_dilluns_dimarts_dimecres_dijous_divendres_dissabte".split("_"),weekdaysShort:"dg._dl._dt._dc._dj._dv._ds.".split("_"),weekdaysMin:"dg_dl_dt_dc_dj_dv_ds".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM [de] YYYY",ll:"D MMM YYYY",LLL:"D MMMM [de] YYYY [a les] H:mm",lll:"D MMM YYYY, H:mm",LLLL:"dddd D MMMM [de] YYYY [a les] H:mm",llll:"ddd D MMM YYYY, H:mm"},calendar:{sameDay:function(){return"[avui a "+(1!==this.hours()?"les":"la")+"] LT"},nextDay:function(){return"[demà a "+(1!==this.hours()?"les":"la")+"] LT"},nextWeek:function(){return"dddd [a "+(1!==this.hours()?"les":"la")+"] LT"},lastDay:function(){return"[ahir a "+(1!==this.hours()?"les":"la")+"] LT"},lastWeek:function(){return"[el] dddd [passat a "+(1!==this.hours()?"les":"la")+"] LT"},sameElse:"L"},relativeTime:{future:"d'aquí %s",past:"fa %s",s:"uns segons",ss:"%d segons",m:"un minut",mm:"%d minuts",h:"una hora",hh:"%d hores",d:"un dia",dd:"%d dies",M:"un mes",MM:"%d mesos",y:"un any",yy:"%d anys"},dayOfMonthOrdinalParse:/\d{1,2}(r|n|t|è|a)/,ordinal:function(e,a){var t=1===e?"r":2===e?"n":3===e?"r":4===e?"t":"è";return"w"!==a&&"W"!==a||(t="a"),e+t},week:{dow:1,doy:4}})})},function(e,a,t){Object.defineProperty(a,"__esModule",{value:!0}),t(88);var n=t(1);n.datepickerLocale("cs","cs",{closeText:"Zavřít",prevText:"<Dříve",nextText:"Později>",currentText:"Nyní",monthNames:["leden","únor","březen","duben","květen","červen","červenec","srpen","září","říjen","listopad","prosinec"],monthNamesShort:["led","úno","bře","dub","kvě","čer","čvc","srp","zář","říj","lis","pro"],dayNames:["neděle","pondělí","úterý","středa","čtvrtek","pátek","sobota"],dayNamesShort:["ne","po","út","st","čt","pá","so"],dayNamesMin:["ne","po","út","st","čt","pá","so"],weekHeader:"Týd",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),n.locale("cs",{buttonText:{month:"Měsíc",week:"Týden",day:"Den",list:"Agenda"},allDayText:"Celý den",eventLimitText:function(e){return"+další: "+e},noEventsMessage:"Žádné akce k zobrazení"})},function(e,a,t){!function(e,a){a(t(0))}(0,function(e){function a(e){return e>1&&e<5&&1!=~~(e/10)}function t(e,t,n,r){var s=e+" ";switch(n){case"s":return t||r?"pár sekund":"pár sekundami";case"ss":return t||r?s+(a(e)?"sekundy":"sekund"):s+"sekundami";case"m":return t?"minuta":r?"minutu":"minutou";case"mm":return t||r?s+(a(e)?"minuty":"minut"):s+"minutami";case"h":return t?"hodina":r?"hodinu":"hodinou";case"hh":return t||r?s+(a(e)?"hodiny":"hodin"):s+"hodinami";case"d":return t||r?"den":"dnem";case"dd":return t||r?s+(a(e)?"dny":"dní"):s+"dny";case"M":return t||r?"měsíc":"měsícem";case"MM":return t||r?s+(a(e)?"měsíce":"měsíců"):s+"měsíci";case"y":return t||r?"rok":"rokem";case"yy":return t||r?s+(a(e)?"roky":"let"):s+"lety"}}var n="leden_únor_březen_duben_květen_červen_červenec_srpen_září_říjen_listopad_prosinec".split("_"),r="led_úno_bře_dub_kvě_čvn_čvc_srp_zář_říj_lis_pro".split("_");return e.defineLocale("cs",{months:n,monthsShort:r,monthsParse:function(e,a){var t,n=[];for(t=0;t<12;t++)n[t]=new RegExp("^"+e[t]+"$|^"+a[t]+"$","i");return n}(n,r),shortMonthsParse:function(e){var a,t=[];for(a=0;a<12;a++)t[a]=new RegExp("^"+e[a]+"$","i");return t}(r),longMonthsParse:function(e){var a,t=[];for(a=0;a<12;a++)t[a]=new RegExp("^"+e[a]+"$","i");return t}(n),weekdays:"neděle_pondělí_úterý_středa_čtvrtek_pátek_sobota".split("_"),weekdaysShort:"ne_po_út_st_čt_pá_so".split("_"),weekdaysMin:"ne_po_út_st_čt_pá_so".split("_"),longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY H:mm",LLLL:"dddd D. MMMM YYYY H:mm",l:"D. M. YYYY"},calendar:{sameDay:"[dnes v] LT",nextDay:"[zítra v] LT",nextWeek:function(){switch(this.day()){case 0:return"[v neděli v] LT";case 1:case 2:return"[v] dddd [v] LT";case 3:return"[ve středu v] LT";case 4:return"[ve čtvrtek v] LT";case 5:return"[v pátek v] LT";case 6:return"[v sobotu v] LT"}},lastDay:"[včera v] LT",lastWeek:function(){switch(this.day()){case 0:return"[minulou neděli v] LT";case 1:case 2:return"[minulé] dddd [v] LT";case 3:return"[minulou středu v] LT";case 4:case 5:return"[minulý] dddd [v] LT";case 6:return"[minulou sobotu v] LT"}},sameElse:"L"},relativeTime:{future:"za %s",past:"před %s",s:t,ss:t,m:t,mm:t,h:t,hh:t,d:t,dd:t,M:t,MM:t,y:t,yy:t},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})})},function(e,a,t){Object.defineProperty(a,"__esModule",{value:!0}),t(90);var n=t(1);n.datepickerLocale("da","da",{closeText:"Luk",prevText:"<Forrige",nextText:"Næste>",currentText:"Idag",monthNames:["Januar","Februar","Marts","April","Maj","Juni","Juli","August","September","Oktober","November","December"],monthNamesShort:["Jan","Feb","Mar","Apr","Maj","Jun","Jul","Aug","Sep","Okt","Nov","Dec"],dayNames:["Søndag","Mandag","Tirsdag","Onsdag","Torsdag","Fredag","Lørdag"],dayNamesShort:["Søn","Man","Tir","Ons","Tor","Fre","Lør"],dayNamesMin:["Sø","Ma","Ti","On","To","Fr","Lø"],weekHeader:"Uge",dateFormat:"dd-mm-yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),n.locale("da",{buttonText:{month:"Måned",week:"Uge",day:"Dag",list:"Agenda"},allDayText:"Hele dagen",eventLimitText:"flere",noEventsMessage:"Ingen arrangementer at vise"})},function(e,a,t){!function(e,a){a(t(0))}(0,function(e){return e.defineLocale("da",{months:"januar_februar_marts_april_maj_juni_juli_august_september_oktober_november_december".split("_"),monthsShort:"jan_feb_mar_apr_maj_jun_jul_aug_sep_okt_nov_dec".split("_"),weekdays:"søndag_mandag_tirsdag_onsdag_torsdag_fredag_lørdag".split("_"),weekdaysShort:"søn_man_tir_ons_tor_fre_lør".split("_"),weekdaysMin:"sø_ma_ti_on_to_fr_lø".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY HH:mm",LLLL:"dddd [d.] D. MMMM YYYY [kl.] HH:mm"},calendar:{sameDay:"[i dag kl.] LT",nextDay:"[i morgen kl.] LT",nextWeek:"på dddd [kl.] LT",lastDay:"[i går kl.] LT",lastWeek:"[i] dddd[s kl.] LT",sameElse:"L"},relativeTime:{future:"om %s",past:"%s siden",s:"få sekunder",ss:"%d sekunder",m:"et minut",mm:"%d minutter",h:"en time",hh:"%d timer",d:"en dag",dd:"%d dage",M:"en måned",MM:"%d måneder",y:"et år",yy:"%d år"},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})})},function(e,a,t){Object.defineProperty(a,"__esModule",{value:!0}),t(92);var n=t(1);n.datepickerLocale("de-at","de",{closeText:"Schließen",prevText:"<Zurück",nextText:"Vor>",currentText:"Heute",monthNames:["Januar","Februar","März","April","Mai","Juni","Juli","August","September","Oktober","November","Dezember"],monthNamesShort:["Jan","Feb","Mär","Apr","Mai","Jun","Jul","Aug","Sep","Okt","Nov","Dez"],dayNames:["Sonntag","Montag","Dienstag","Mittwoch","Donnerstag","Freitag","Samstag"],dayNamesShort:["So","Mo","Di","Mi","Do","Fr","Sa"],dayNamesMin:["So","Mo","Di","Mi","Do","Fr","Sa"],weekHeader:"KW",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),n.locale("de-at",{buttonText:{month:"Monat",week:"Woche",day:"Tag",list:"Terminübersicht"},allDayText:"Ganztägig",eventLimitText:function(e){return"+ weitere "+e},noEventsMessage:"Keine Ereignisse anzuzeigen"})},function(e,a,t){!function(e,a){a(t(0))}(0,function(e){function a(e,a,t,n){var r={m:["eine Minute","einer Minute"],h:["eine Stunde","einer Stunde"],d:["ein Tag","einem Tag"],dd:[e+" Tage",e+" Tagen"],M:["ein Monat","einem Monat"],MM:[e+" Monate",e+" Monaten"],y:["ein Jahr","einem Jahr"],yy:[e+" Jahre",e+" Jahren"]};return a?r[t][0]:r[t][1]}return e.defineLocale("de-at",{ +months:"Jänner_Februar_März_April_Mai_Juni_Juli_August_September_Oktober_November_Dezember".split("_"),monthsShort:"Jän._Feb._März_Apr._Mai_Juni_Juli_Aug._Sep._Okt._Nov._Dez.".split("_"),monthsParseExact:!0,weekdays:"Sonntag_Montag_Dienstag_Mittwoch_Donnerstag_Freitag_Samstag".split("_"),weekdaysShort:"So._Mo._Di._Mi._Do._Fr._Sa.".split("_"),weekdaysMin:"So_Mo_Di_Mi_Do_Fr_Sa".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY HH:mm",LLLL:"dddd, D. MMMM YYYY HH:mm"},calendar:{sameDay:"[heute um] LT [Uhr]",sameElse:"L",nextDay:"[morgen um] LT [Uhr]",nextWeek:"dddd [um] LT [Uhr]",lastDay:"[gestern um] LT [Uhr]",lastWeek:"[letzten] dddd [um] LT [Uhr]"},relativeTime:{future:"in %s",past:"vor %s",s:"ein paar Sekunden",ss:"%d Sekunden",m:a,mm:"%d Minuten",h:a,hh:"%d Stunden",d:a,dd:a,M:a,MM:a,y:a,yy:a},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})})},function(e,a,t){Object.defineProperty(a,"__esModule",{value:!0}),t(94);var n=t(1);n.datepickerLocale("de-ch","de",{closeText:"Schließen",prevText:"<Zurück",nextText:"Vor>",currentText:"Heute",monthNames:["Januar","Februar","März","April","Mai","Juni","Juli","August","September","Oktober","November","Dezember"],monthNamesShort:["Jan","Feb","Mär","Apr","Mai","Jun","Jul","Aug","Sep","Okt","Nov","Dez"],dayNames:["Sonntag","Montag","Dienstag","Mittwoch","Donnerstag","Freitag","Samstag"],dayNamesShort:["So","Mo","Di","Mi","Do","Fr","Sa"],dayNamesMin:["So","Mo","Di","Mi","Do","Fr","Sa"],weekHeader:"KW",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),n.locale("de-ch",{buttonText:{month:"Monat",week:"Woche",day:"Tag",list:"Terminübersicht"},allDayText:"Ganztägig",eventLimitText:function(e){return"+ weitere "+e},noEventsMessage:"Keine Ereignisse anzuzeigen"})},function(e,a,t){!function(e,a){a(t(0))}(0,function(e){function a(e,a,t,n){var r={m:["eine Minute","einer Minute"],h:["eine Stunde","einer Stunde"],d:["ein Tag","einem Tag"],dd:[e+" Tage",e+" Tagen"],M:["ein Monat","einem Monat"],MM:[e+" Monate",e+" Monaten"],y:["ein Jahr","einem Jahr"],yy:[e+" Jahre",e+" Jahren"]};return a?r[t][0]:r[t][1]}return e.defineLocale("de-ch",{months:"Januar_Februar_März_April_Mai_Juni_Juli_August_September_Oktober_November_Dezember".split("_"),monthsShort:"Jan._Feb._März_Apr._Mai_Juni_Juli_Aug._Sep._Okt._Nov._Dez.".split("_"),monthsParseExact:!0,weekdays:"Sonntag_Montag_Dienstag_Mittwoch_Donnerstag_Freitag_Samstag".split("_"),weekdaysShort:"So_Mo_Di_Mi_Do_Fr_Sa".split("_"),weekdaysMin:"So_Mo_Di_Mi_Do_Fr_Sa".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY HH:mm",LLLL:"dddd, D. MMMM YYYY HH:mm"},calendar:{sameDay:"[heute um] LT [Uhr]",sameElse:"L",nextDay:"[morgen um] LT [Uhr]",nextWeek:"dddd [um] LT [Uhr]",lastDay:"[gestern um] LT [Uhr]",lastWeek:"[letzten] dddd [um] LT [Uhr]"},relativeTime:{future:"in %s",past:"vor %s",s:"ein paar Sekunden",ss:"%d Sekunden",m:a,mm:"%d Minuten",h:a,hh:"%d Stunden",d:a,dd:a,M:a,MM:a,y:a,yy:a},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})})},function(e,a,t){Object.defineProperty(a,"__esModule",{value:!0}),t(96);var n=t(1);n.datepickerLocale("de","de",{closeText:"Schließen",prevText:"<Zurück",nextText:"Vor>",currentText:"Heute",monthNames:["Januar","Februar","März","April","Mai","Juni","Juli","August","September","Oktober","November","Dezember"],monthNamesShort:["Jan","Feb","Mär","Apr","Mai","Jun","Jul","Aug","Sep","Okt","Nov","Dez"],dayNames:["Sonntag","Montag","Dienstag","Mittwoch","Donnerstag","Freitag","Samstag"],dayNamesShort:["So","Mo","Di","Mi","Do","Fr","Sa"],dayNamesMin:["So","Mo","Di","Mi","Do","Fr","Sa"],weekHeader:"KW",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),n.locale("de",{buttonText:{month:"Monat",week:"Woche",day:"Tag",list:"Terminübersicht"},allDayText:"Ganztägig",eventLimitText:function(e){return"+ weitere "+e},noEventsMessage:"Keine Ereignisse anzuzeigen"})},function(e,a,t){!function(e,a){a(t(0))}(0,function(e){function a(e,a,t,n){var r={m:["eine Minute","einer Minute"],h:["eine Stunde","einer Stunde"],d:["ein Tag","einem Tag"],dd:[e+" Tage",e+" Tagen"],M:["ein Monat","einem Monat"],MM:[e+" Monate",e+" Monaten"],y:["ein Jahr","einem Jahr"],yy:[e+" Jahre",e+" Jahren"]};return a?r[t][0]:r[t][1]}return e.defineLocale("de",{months:"Januar_Februar_März_April_Mai_Juni_Juli_August_September_Oktober_November_Dezember".split("_"),monthsShort:"Jan._Feb._März_Apr._Mai_Juni_Juli_Aug._Sep._Okt._Nov._Dez.".split("_"),monthsParseExact:!0,weekdays:"Sonntag_Montag_Dienstag_Mittwoch_Donnerstag_Freitag_Samstag".split("_"),weekdaysShort:"So._Mo._Di._Mi._Do._Fr._Sa.".split("_"),weekdaysMin:"So_Mo_Di_Mi_Do_Fr_Sa".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY HH:mm",LLLL:"dddd, D. MMMM YYYY HH:mm"},calendar:{sameDay:"[heute um] LT [Uhr]",sameElse:"L",nextDay:"[morgen um] LT [Uhr]",nextWeek:"dddd [um] LT [Uhr]",lastDay:"[gestern um] LT [Uhr]",lastWeek:"[letzten] dddd [um] LT [Uhr]"},relativeTime:{future:"in %s",past:"vor %s",s:"ein paar Sekunden",ss:"%d Sekunden",m:a,mm:"%d Minuten",h:a,hh:"%d Stunden",d:a,dd:a,M:a,MM:a,y:a,yy:a},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})})},function(e,a,t){Object.defineProperty(a,"__esModule",{value:!0}),t(98);var n=t(1);n.datepickerLocale("el","el",{closeText:"Κλείσιμο",prevText:"Προηγούμενος",nextText:"Επόμενος",currentText:"Σήμερα",monthNames:["Ιανουάριος","Φεβρουάριος","Μάρτιος","Απρίλιος","Μάιος","Ιούνιος","Ιούλιος","Αύγουστος","Σεπτέμβριος","Οκτώβριος","Νοέμβριος","Δεκέμβριος"],monthNamesShort:["Ιαν","Φεβ","Μαρ","Απρ","Μαι","Ιουν","Ιουλ","Αυγ","Σεπ","Οκτ","Νοε","Δεκ"],dayNames:["Κυριακή","Δευτέρα","Τρίτη","Τετάρτη","Πέμπτη","Παρασκευή","Σάββατο"],dayNamesShort:["Κυρ","Δευ","Τρι","Τετ","Πεμ","Παρ","Σαβ"],dayNamesMin:["Κυ","Δε","Τρ","Τε","Πε","Πα","Σα"],weekHeader:"Εβδ",dateFormat:"dd/mm/yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),n.locale("el",{buttonText:{month:"Μήνας",week:"Εβδομάδα",day:"Ημέρα",list:"Ατζέντα"},allDayText:"Ολοήμερο",eventLimitText:"περισσότερα",noEventsMessage:"Δεν υπάρχουν γεγονότα για να εμφανιστεί"})},function(e,a,t){!function(e,a){a(t(0))}(0,function(e){function a(e){return e instanceof Function||"[object Function]"===Object.prototype.toString.call(e)}return e.defineLocale("el",{monthsNominativeEl:"Ιανουάριος_Φεβρουάριος_Μάρτιος_Απρίλιος_Μάιος_Ιούνιος_Ιούλιος_Αύγουστος_Σεπτέμβριος_Οκτώβριος_Νοέμβριος_Δεκέμβριος".split("_"),monthsGenitiveEl:"Ιανουαρίου_Φεβρουαρίου_Μαρτίου_Απριλίου_Μαΐου_Ιουνίου_Ιουλίου_Αυγούστου_Σεπτεμβρίου_Οκτωβρίου_Νοεμβρίου_Δεκεμβρίου".split("_"),months:function(e,a){return e?"string"==typeof a&&/D/.test(a.substring(0,a.indexOf("MMMM")))?this._monthsGenitiveEl[e.month()]:this._monthsNominativeEl[e.month()]:this._monthsNominativeEl},monthsShort:"Ιαν_Φεβ_Μαρ_Απρ_Μαϊ_Ιουν_Ιουλ_Αυγ_Σεπ_Οκτ_Νοε_Δεκ".split("_"),weekdays:"Κυριακή_Δευτέρα_Τρίτη_Τετάρτη_Πέμπτη_Παρασκευή_Σάββατο".split("_"),weekdaysShort:"Κυρ_Δευ_Τρι_Τετ_Πεμ_Παρ_Σαβ".split("_"),weekdaysMin:"Κυ_Δε_Τρ_Τε_Πε_Πα_Σα".split("_"),meridiem:function(e,a,t){return e>11?t?"μμ":"ΜΜ":t?"πμ":"ΠΜ"},isPM:function(e){return"μ"===(e+"").toLowerCase()[0]},meridiemParse:/[ΠΜ]\.?Μ?\.?/i,longDateFormat:{LT:"h:mm A",LTS:"h:mm:ss A",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY h:mm A",LLLL:"dddd, D MMMM YYYY h:mm A"},calendarEl:{sameDay:"[Σήμερα {}] LT",nextDay:"[Αύριο {}] LT",nextWeek:"dddd [{}] LT",lastDay:"[Χθες {}] LT",lastWeek:function(){switch(this.day()){case 6:return"[το προηγούμενο] dddd [{}] LT";default:return"[την προηγούμενη] dddd [{}] LT"}},sameElse:"L"},calendar:function(e,t){var n=this._calendarEl[e],r=t&&t.hours();return a(n)&&(n=n.apply(t)),n.replace("{}",r%12==1?"στη":"στις")},relativeTime:{future:"σε %s",past:"%s πριν",s:"λίγα δευτερόλεπτα",ss:"%d δευτερόλεπτα",m:"ένα λεπτό",mm:"%d λεπτά",h:"μία ώρα",hh:"%d ώρες",d:"μία μέρα",dd:"%d μέρες",M:"ένας μήνας",MM:"%d μήνες",y:"ένας χρόνος",yy:"%d χρόνια"},dayOfMonthOrdinalParse:/\d{1,2}η/,ordinal:"%dη",week:{dow:1,doy:4}})})},function(e,a,t){Object.defineProperty(a,"__esModule",{value:!0}),t(100);var n=t(1);n.datepickerLocale("en-au","en-AU",{closeText:"Done",prevText:"Prev",nextText:"Next",currentText:"Today",monthNames:["January","February","March","April","May","June","July","August","September","October","November","December"],monthNamesShort:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],dayNames:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],dayNamesShort:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],dayNamesMin:["Su","Mo","Tu","We","Th","Fr","Sa"],weekHeader:"Wk",dateFormat:"dd/mm/yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),n.locale("en-au")},function(e,a,t){!function(e,a){a(t(0))}(0,function(e){return e.defineLocale("en-au",{months:"January_February_March_April_May_June_July_August_September_October_November_December".split("_"),monthsShort:"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec".split("_"),weekdays:"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),weekdaysShort:"Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),weekdaysMin:"Su_Mo_Tu_We_Th_Fr_Sa".split("_"),longDateFormat:{LT:"h:mm A",LTS:"h:mm:ss A",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY h:mm A",LLLL:"dddd, D MMMM YYYY h:mm A"},calendar:{sameDay:"[Today at] LT",nextDay:"[Tomorrow at] LT",nextWeek:"dddd [at] LT",lastDay:"[Yesterday at] LT",lastWeek:"[Last] dddd [at] LT",sameElse:"L"},relativeTime:{future:"in %s",past:"%s ago",s:"a few seconds",ss:"%d seconds",m:"a minute",mm:"%d minutes",h:"an hour",hh:"%d hours",d:"a day",dd:"%d days",M:"a month",MM:"%d months",y:"a year",yy:"%d years"},dayOfMonthOrdinalParse:/\d{1,2}(st|nd|rd|th)/,ordinal:function(e){var a=e%10;return e+(1==~~(e%100/10)?"th":1===a?"st":2===a?"nd":3===a?"rd":"th")},week:{dow:1,doy:4}})})},function(e,a,t){Object.defineProperty(a,"__esModule",{value:!0}),t(102),t(1).locale("en-ca")},function(e,a,t){!function(e,a){a(t(0))}(0,function(e){return e.defineLocale("en-ca",{months:"January_February_March_April_May_June_July_August_September_October_November_December".split("_"),monthsShort:"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec".split("_"),weekdays:"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),weekdaysShort:"Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),weekdaysMin:"Su_Mo_Tu_We_Th_Fr_Sa".split("_"),longDateFormat:{LT:"h:mm A",LTS:"h:mm:ss A",L:"YYYY-MM-DD",LL:"MMMM D, YYYY",LLL:"MMMM D, YYYY h:mm A",LLLL:"dddd, MMMM D, YYYY h:mm A"},calendar:{sameDay:"[Today at] LT",nextDay:"[Tomorrow at] LT",nextWeek:"dddd [at] LT",lastDay:"[Yesterday at] LT",lastWeek:"[Last] dddd [at] LT",sameElse:"L"},relativeTime:{future:"in %s",past:"%s ago",s:"a few seconds",ss:"%d seconds",m:"a minute",mm:"%d minutes",h:"an hour",hh:"%d hours",d:"a day",dd:"%d days",M:"a month",MM:"%d months",y:"a year",yy:"%d years"},dayOfMonthOrdinalParse:/\d{1,2}(st|nd|rd|th)/,ordinal:function(e){var a=e%10;return e+(1==~~(e%100/10)?"th":1===a?"st":2===a?"nd":3===a?"rd":"th")}})})},function(e,a,t){Object.defineProperty(a,"__esModule",{value:!0}),t(104);var n=t(1);n.datepickerLocale("en-gb","en-GB",{closeText:"Done",prevText:"Prev",nextText:"Next",currentText:"Today",monthNames:["January","February","March","April","May","June","July","August","September","October","November","December"],monthNamesShort:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],dayNames:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],dayNamesShort:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],dayNamesMin:["Su","Mo","Tu","We","Th","Fr","Sa"],weekHeader:"Wk",dateFormat:"dd/mm/yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),n.locale("en-gb")},function(e,a,t){!function(e,a){a(t(0))}(0,function(e){return e.defineLocale("en-gb",{months:"January_February_March_April_May_June_July_August_September_October_November_December".split("_"),monthsShort:"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec".split("_"),weekdays:"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),weekdaysShort:"Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),weekdaysMin:"Su_Mo_Tu_We_Th_Fr_Sa".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[Today at] LT",nextDay:"[Tomorrow at] LT",nextWeek:"dddd [at] LT",lastDay:"[Yesterday at] LT",lastWeek:"[Last] dddd [at] LT",sameElse:"L"},relativeTime:{future:"in %s",past:"%s ago",s:"a few seconds",ss:"%d seconds",m:"a minute",mm:"%d minutes",h:"an hour",hh:"%d hours",d:"a day",dd:"%d days",M:"a month",MM:"%d months",y:"a year",yy:"%d years"},dayOfMonthOrdinalParse:/\d{1,2}(st|nd|rd|th)/,ordinal:function(e){var a=e%10;return e+(1==~~(e%100/10)?"th":1===a?"st":2===a?"nd":3===a?"rd":"th")},week:{dow:1,doy:4}})})},function(e,a,t){Object.defineProperty(a,"__esModule",{value:!0}),t(106),t(1).locale("en-ie")},function(e,a,t){!function(e,a){a(t(0))}(0,function(e){return e.defineLocale("en-ie",{months:"January_February_March_April_May_June_July_August_September_October_November_December".split("_"),monthsShort:"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec".split("_"),weekdays:"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),weekdaysShort:"Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),weekdaysMin:"Su_Mo_Tu_We_Th_Fr_Sa".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD-MM-YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[Today at] LT",nextDay:"[Tomorrow at] LT",nextWeek:"dddd [at] LT",lastDay:"[Yesterday at] LT",lastWeek:"[Last] dddd [at] LT",sameElse:"L"},relativeTime:{future:"in %s",past:"%s ago",s:"a few seconds",ss:"%d seconds",m:"a minute",mm:"%d minutes",h:"an hour",hh:"%d hours",d:"a day",dd:"%d days",M:"a month",MM:"%d months",y:"a year",yy:"%d years"},dayOfMonthOrdinalParse:/\d{1,2}(st|nd|rd|th)/,ordinal:function(e){var a=e%10;return e+(1==~~(e%100/10)?"th":1===a?"st":2===a?"nd":3===a?"rd":"th")},week:{dow:1,doy:4}})})},function(e,a,t){Object.defineProperty(a,"__esModule",{value:!0}),t(108);var n=t(1);n.datepickerLocale("en-nz","en-NZ",{closeText:"Done",prevText:"Prev",nextText:"Next",currentText:"Today",monthNames:["January","February","March","April","May","June","July","August","September","October","November","December"],monthNamesShort:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],dayNames:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],dayNamesShort:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],dayNamesMin:["Su","Mo","Tu","We","Th","Fr","Sa"],weekHeader:"Wk",dateFormat:"dd/mm/yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),n.locale("en-nz")},function(e,a,t){!function(e,a){a(t(0))}(0,function(e){return e.defineLocale("en-nz",{months:"January_February_March_April_May_June_July_August_September_October_November_December".split("_"),monthsShort:"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec".split("_"),weekdays:"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),weekdaysShort:"Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),weekdaysMin:"Su_Mo_Tu_We_Th_Fr_Sa".split("_"),longDateFormat:{LT:"h:mm A",LTS:"h:mm:ss A",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY h:mm A",LLLL:"dddd, D MMMM YYYY h:mm A"},calendar:{sameDay:"[Today at] LT",nextDay:"[Tomorrow at] LT",nextWeek:"dddd [at] LT",lastDay:"[Yesterday at] LT",lastWeek:"[Last] dddd [at] LT",sameElse:"L"},relativeTime:{future:"in %s",past:"%s ago",s:"a few seconds",ss:"%d seconds",m:"a minute",mm:"%d minutes",h:"an hour",hh:"%d hours",d:"a day",dd:"%d days",M:"a month",MM:"%d months",y:"a year",yy:"%d years"},dayOfMonthOrdinalParse:/\d{1,2}(st|nd|rd|th)/,ordinal:function(e){var a=e%10;return e+(1==~~(e%100/10)?"th":1===a?"st":2===a?"nd":3===a?"rd":"th")},week:{dow:1,doy:4}})})},function(e,a,t){Object.defineProperty(a,"__esModule",{value:!0}),t(110);var n=t(1);n.datepickerLocale("es-do","es",{closeText:"Cerrar",prevText:"<Ant",nextText:"Sig>",currentText:"Hoy",monthNames:["enero","febrero","marzo","abril","mayo","junio","julio","agosto","septiembre","octubre","noviembre","diciembre"],monthNamesShort:["ene","feb","mar","abr","may","jun","jul","ago","sep","oct","nov","dic"],dayNames:["domingo","lunes","martes","miércoles","jueves","viernes","sábado"],dayNamesShort:["dom","lun","mar","mié","jue","vie","sáb"],dayNamesMin:["D","L","M","X","J","V","S"],weekHeader:"Sm",dateFormat:"dd/mm/yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),n.locale("es-do",{buttonText:{month:"Mes",week:"Semana",day:"Día",list:"Agenda"},allDayHtml:"Todo
el día",eventLimitText:"más",noEventsMessage:"No hay eventos para mostrar"})},function(e,a,t){!function(e,a){a(t(0))}(0,function(e){var a="ene._feb._mar._abr._may._jun._jul._ago._sep._oct._nov._dic.".split("_"),t="ene_feb_mar_abr_may_jun_jul_ago_sep_oct_nov_dic".split("_"),n=[/^ene/i,/^feb/i,/^mar/i,/^abr/i,/^may/i,/^jun/i,/^jul/i,/^ago/i,/^sep/i,/^oct/i,/^nov/i,/^dic/i],r=/^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre|ene\.?|feb\.?|mar\.?|abr\.?|may\.?|jun\.?|jul\.?|ago\.?|sep\.?|oct\.?|nov\.?|dic\.?)/i;return e.defineLocale("es-do",{months:"enero_febrero_marzo_abril_mayo_junio_julio_agosto_septiembre_octubre_noviembre_diciembre".split("_"),monthsShort:function(e,n){return e?/-MMM-/.test(n)?t[e.month()]:a[e.month()]:a},monthsRegex:r,monthsShortRegex:r,monthsStrictRegex:/^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre)/i,monthsShortStrictRegex:/^(ene\.?|feb\.?|mar\.?|abr\.?|may\.?|jun\.?|jul\.?|ago\.?|sep\.?|oct\.?|nov\.?|dic\.?)/i,monthsParse:n,longMonthsParse:n,shortMonthsParse:n,weekdays:"domingo_lunes_martes_miércoles_jueves_viernes_sábado".split("_"),weekdaysShort:"dom._lun._mar._mié._jue._vie._sáb.".split("_"),weekdaysMin:"do_lu_ma_mi_ju_vi_sá".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"h:mm A",LTS:"h:mm:ss A",L:"DD/MM/YYYY",LL:"D [de] MMMM [de] YYYY",LLL:"D [de] MMMM [de] YYYY h:mm A",LLLL:"dddd, D [de] MMMM [de] YYYY h:mm A"},calendar:{sameDay:function(){return"[hoy a la"+(1!==this.hours()?"s":"")+"] LT"},nextDay:function(){return"[mañana a la"+(1!==this.hours()?"s":"")+"] LT"},nextWeek:function(){return"dddd [a la"+(1!==this.hours()?"s":"")+"] LT"},lastDay:function(){return"[ayer a la"+(1!==this.hours()?"s":"")+"] LT"},lastWeek:function(){return"[el] dddd [pasado a la"+(1!==this.hours()?"s":"")+"] LT"},sameElse:"L"},relativeTime:{future:"en %s",past:"hace %s",s:"unos segundos",ss:"%d segundos",m:"un minuto",mm:"%d minutos",h:"una hora",hh:"%d horas",d:"un día",dd:"%d días",M:"un mes",MM:"%d meses",y:"un año",yy:"%d años"},dayOfMonthOrdinalParse:/\d{1,2}º/,ordinal:"%dº",week:{dow:1,doy:4}})})},function(e,a,t){Object.defineProperty(a,"__esModule",{value:!0}),t(112);var n=t(1);n.datepickerLocale("es-us","es",{closeText:"Cerrar",prevText:"<Ant",nextText:"Sig>",currentText:"Hoy",monthNames:["enero","febrero","marzo","abril","mayo","junio","julio","agosto","septiembre","octubre","noviembre","diciembre"],monthNamesShort:["ene","feb","mar","abr","may","jun","jul","ago","sep","oct","nov","dic"],dayNames:["domingo","lunes","martes","miércoles","jueves","viernes","sábado"],dayNamesShort:["dom","lun","mar","mié","jue","vie","sáb"],dayNamesMin:["D","L","M","X","J","V","S"],weekHeader:"Sm",dateFormat:"dd/mm/yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),n.locale("es-us",{buttonText:{month:"Mes",week:"Semana",day:"Día",list:"Agenda"},allDayHtml:"Todo
el día",eventLimitText:"más",noEventsMessage:"No hay eventos para mostrar"})},function(e,a,t){!function(e,a){a(t(0))}(0,function(e){var a="ene._feb._mar._abr._may._jun._jul._ago._sep._oct._nov._dic.".split("_"),t="ene_feb_mar_abr_may_jun_jul_ago_sep_oct_nov_dic".split("_");return e.defineLocale("es-us",{months:"enero_febrero_marzo_abril_mayo_junio_julio_agosto_septiembre_octubre_noviembre_diciembre".split("_"),monthsShort:function(e,n){return e?/-MMM-/.test(n)?t[e.month()]:a[e.month()]:a},monthsParseExact:!0,weekdays:"domingo_lunes_martes_miércoles_jueves_viernes_sábado".split("_"),weekdaysShort:"dom._lun._mar._mié._jue._vie._sáb.".split("_"),weekdaysMin:"do_lu_ma_mi_ju_vi_sá".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"h:mm A",LTS:"h:mm:ss A",L:"MM/DD/YYYY",LL:"MMMM [de] D [de] YYYY",LLL:"MMMM [de] D [de] YYYY h:mm A",LLLL:"dddd, MMMM [de] D [de] YYYY h:mm A"},calendar:{sameDay:function(){return"[hoy a la"+(1!==this.hours()?"s":"")+"] LT"},nextDay:function(){return"[mañana a la"+(1!==this.hours()?"s":"")+"] LT"},nextWeek:function(){return"dddd [a la"+(1!==this.hours()?"s":"")+"] LT"},lastDay:function(){return"[ayer a la"+(1!==this.hours()?"s":"")+"] LT"},lastWeek:function(){return"[el] dddd [pasado a la"+(1!==this.hours()?"s":"")+"] LT"},sameElse:"L"},relativeTime:{future:"en %s",past:"hace %s",s:"unos segundos",ss:"%d segundos",m:"un minuto",mm:"%d minutos",h:"una hora",hh:"%d horas",d:"un día",dd:"%d días",M:"un mes",MM:"%d meses",y:"un año",yy:"%d años"},dayOfMonthOrdinalParse:/\d{1,2}º/,ordinal:"%dº",week:{dow:0,doy:6}})})},function(e,a,t){Object.defineProperty(a,"__esModule",{value:!0}),t(114);var n=t(1);n.datepickerLocale("es","es",{closeText:"Cerrar",prevText:"<Ant",nextText:"Sig>",currentText:"Hoy",monthNames:["enero","febrero","marzo","abril","mayo","junio","julio","agosto","septiembre","octubre","noviembre","diciembre"],monthNamesShort:["ene","feb","mar","abr","may","jun","jul","ago","sep","oct","nov","dic"],dayNames:["domingo","lunes","martes","miércoles","jueves","viernes","sábado"],dayNamesShort:["dom","lun","mar","mié","jue","vie","sáb"],dayNamesMin:["D","L","M","X","J","V","S"],weekHeader:"Sm",dateFormat:"dd/mm/yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),n.locale("es",{buttonText:{month:"Mes",week:"Semana",day:"Día",list:"Agenda"},allDayHtml:"Todo
el día",eventLimitText:"más",noEventsMessage:"No hay eventos para mostrar"})},function(e,a,t){!function(e,a){a(t(0))}(0,function(e){var a="ene._feb._mar._abr._may._jun._jul._ago._sep._oct._nov._dic.".split("_"),t="ene_feb_mar_abr_may_jun_jul_ago_sep_oct_nov_dic".split("_"),n=[/^ene/i,/^feb/i,/^mar/i,/^abr/i,/^may/i,/^jun/i,/^jul/i,/^ago/i,/^sep/i,/^oct/i,/^nov/i,/^dic/i],r=/^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre|ene\.?|feb\.?|mar\.?|abr\.?|may\.?|jun\.?|jul\.?|ago\.?|sep\.?|oct\.?|nov\.?|dic\.?)/i;return e.defineLocale("es",{months:"enero_febrero_marzo_abril_mayo_junio_julio_agosto_septiembre_octubre_noviembre_diciembre".split("_"),monthsShort:function(e,n){return e?/-MMM-/.test(n)?t[e.month()]:a[e.month()]:a},monthsRegex:r,monthsShortRegex:r,monthsStrictRegex:/^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre)/i,monthsShortStrictRegex:/^(ene\.?|feb\.?|mar\.?|abr\.?|may\.?|jun\.?|jul\.?|ago\.?|sep\.?|oct\.?|nov\.?|dic\.?)/i,monthsParse:n,longMonthsParse:n,shortMonthsParse:n,weekdays:"domingo_lunes_martes_miércoles_jueves_viernes_sábado".split("_"),weekdaysShort:"dom._lun._mar._mié._jue._vie._sáb.".split("_"),weekdaysMin:"do_lu_ma_mi_ju_vi_sá".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD/MM/YYYY",LL:"D [de] MMMM [de] YYYY",LLL:"D [de] MMMM [de] YYYY H:mm",LLLL:"dddd, D [de] MMMM [de] YYYY H:mm"},calendar:{sameDay:function(){return"[hoy a la"+(1!==this.hours()?"s":"")+"] LT"},nextDay:function(){return"[mañana a la"+(1!==this.hours()?"s":"")+"] LT"},nextWeek:function(){return"dddd [a la"+(1!==this.hours()?"s":"")+"] LT"},lastDay:function(){return"[ayer a la"+(1!==this.hours()?"s":"")+"] LT"},lastWeek:function(){return"[el] dddd [pasado a la"+(1!==this.hours()?"s":"")+"] LT"},sameElse:"L"},relativeTime:{future:"en %s",past:"hace %s",s:"unos segundos",ss:"%d segundos",m:"un minuto",mm:"%d minutos",h:"una hora",hh:"%d horas",d:"un día",dd:"%d días",M:"un mes",MM:"%d meses",y:"un año",yy:"%d años"},dayOfMonthOrdinalParse:/\d{1,2}º/,ordinal:"%dº",week:{dow:1,doy:4}})})},function(e,a,t){Object.defineProperty(a,"__esModule",{value:!0}),t(116);var n=t(1);n.datepickerLocale("et","et",{closeText:"Sulge",prevText:"Eelnev",nextText:"Järgnev",currentText:"Täna",monthNames:["Jaanuar","Veebruar","Märts","Aprill","Mai","Juuni","Juuli","August","September","Oktoober","November","Detsember"],monthNamesShort:["Jaan","Veebr","Märts","Apr","Mai","Juuni","Juuli","Aug","Sept","Okt","Nov","Dets"],dayNames:["Pühapäev","Esmaspäev","Teisipäev","Kolmapäev","Neljapäev","Reede","Laupäev"],dayNamesShort:["Pühap","Esmasp","Teisip","Kolmap","Neljap","Reede","Laup"],dayNamesMin:["P","E","T","K","N","R","L"],weekHeader:"näd",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),n.locale("et",{buttonText:{month:"Kuu",week:"Nädal",day:"Päev",list:"Päevakord"},allDayText:"Kogu päev",eventLimitText:function(e){return"+ veel "+e},noEventsMessage:"Kuvamiseks puuduvad sündmused"})},function(e,a,t){!function(e,a){a(t(0))}(0,function(e){function a(e,a,t,n){var r={s:["mõne sekundi","mõni sekund","paar sekundit"],ss:[e+"sekundi",e+"sekundit"],m:["ühe minuti","üks minut"],mm:[e+" minuti",e+" minutit"],h:["ühe tunni","tund aega","üks tund"],hh:[e+" tunni",e+" tundi"],d:["ühe päeva","üks päev"],M:["kuu aja","kuu aega","üks kuu"],MM:[e+" kuu",e+" kuud"],y:["ühe aasta","aasta","üks aasta"],yy:[e+" aasta",e+" aastat"]};return a?r[t][2]?r[t][2]:r[t][1]:n?r[t][0]:r[t][1]}return e.defineLocale("et",{months:"jaanuar_veebruar_märts_aprill_mai_juuni_juuli_august_september_oktoober_november_detsember".split("_"),monthsShort:"jaan_veebr_märts_apr_mai_juuni_juuli_aug_sept_okt_nov_dets".split("_"),weekdays:"pühapäev_esmaspäev_teisipäev_kolmapäev_neljapäev_reede_laupäev".split("_"),weekdaysShort:"P_E_T_K_N_R_L".split("_"),weekdaysMin:"P_E_T_K_N_R_L".split("_"),longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY H:mm",LLLL:"dddd, D. MMMM YYYY H:mm"},calendar:{sameDay:"[Täna,] LT",nextDay:"[Homme,] LT",nextWeek:"[Järgmine] dddd LT",lastDay:"[Eile,] LT",lastWeek:"[Eelmine] dddd LT",sameElse:"L"},relativeTime:{future:"%s pärast",past:"%s tagasi",s:a,ss:a,m:a,mm:a,h:a,hh:a,d:a,dd:"%d päeva",M:a,MM:a,y:a,yy:a},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})})},function(e,a,t){Object.defineProperty(a,"__esModule",{value:!0}),t(118);var n=t(1);n.datepickerLocale("eu","eu",{closeText:"Egina",prevText:"<Aur",nextText:"Hur>",currentText:"Gaur",monthNames:["urtarrila","otsaila","martxoa","apirila","maiatza","ekaina","uztaila","abuztua","iraila","urria","azaroa","abendua"],monthNamesShort:["urt.","ots.","mar.","api.","mai.","eka.","uzt.","abu.","ira.","urr.","aza.","abe."],dayNames:["igandea","astelehena","asteartea","asteazkena","osteguna","ostirala","larunbata"],dayNamesShort:["ig.","al.","ar.","az.","og.","ol.","lr."],dayNamesMin:["ig","al","ar","az","og","ol","lr"],weekHeader:"As",dateFormat:"yy-mm-dd",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),n.locale("eu",{buttonText:{month:"Hilabetea",week:"Astea",day:"Eguna",list:"Agenda"},allDayHtml:"Egun
osoa",eventLimitText:"gehiago",noEventsMessage:"Ez dago ekitaldirik erakusteko"})},function(e,a,t){!function(e,a){a(t(0))}(0,function(e){return e.defineLocale("eu",{months:"urtarrila_otsaila_martxoa_apirila_maiatza_ekaina_uztaila_abuztua_iraila_urria_azaroa_abendua".split("_"),monthsShort:"urt._ots._mar._api._mai._eka._uzt._abu._ira._urr._aza._abe.".split("_"),monthsParseExact:!0,weekdays:"igandea_astelehena_asteartea_asteazkena_osteguna_ostirala_larunbata".split("_"),weekdaysShort:"ig._al._ar._az._og._ol._lr.".split("_"),weekdaysMin:"ig_al_ar_az_og_ol_lr".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"YYYY-MM-DD",LL:"YYYY[ko] MMMM[ren] D[a]",LLL:"YYYY[ko] MMMM[ren] D[a] HH:mm",LLLL:"dddd, YYYY[ko] MMMM[ren] D[a] HH:mm",l:"YYYY-M-D",ll:"YYYY[ko] MMM D[a]",lll:"YYYY[ko] MMM D[a] HH:mm",llll:"ddd, YYYY[ko] MMM D[a] HH:mm"},calendar:{sameDay:"[gaur] LT[etan]",nextDay:"[bihar] LT[etan]",nextWeek:"dddd LT[etan]",lastDay:"[atzo] LT[etan]",lastWeek:"[aurreko] dddd LT[etan]",sameElse:"L"},relativeTime:{future:"%s barru",past:"duela %s",s:"segundo batzuk",ss:"%d segundo",m:"minutu bat",mm:"%d minutu",h:"ordu bat",hh:"%d ordu",d:"egun bat",dd:"%d egun",M:"hilabete bat",MM:"%d hilabete",y:"urte bat",yy:"%d urte"},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:7}})})},function(e,a,t){Object.defineProperty(a,"__esModule",{value:!0}),t(120);var n=t(1);n.datepickerLocale("fa","fa",{closeText:"بستن",prevText:"<قبلی",nextText:"بعدی>",currentText:"امروز",monthNames:["ژانویه","فوریه","مارس","آوریل","مه","ژوئن","ژوئیه","اوت","سپتامبر","اکتبر","نوامبر","دسامبر"],monthNamesShort:["1","2","3","4","5","6","7","8","9","10","11","12"],dayNames:["يکشنبه","دوشنبه","سه‌شنبه","چهارشنبه","پنجشنبه","جمعه","شنبه"],dayNamesShort:["ی","د","س","چ","پ","ج","ش"],dayNamesMin:["ی","د","س","چ","پ","ج","ش"],weekHeader:"هف",dateFormat:"yy/mm/dd",firstDay:6,isRTL:!0,showMonthAfterYear:!1,yearSuffix:""}),n.locale("fa",{buttonText:{month:"ماه",week:"هفته",day:"روز",list:"برنامه"},allDayText:"تمام روز",eventLimitText:function(e){return"بیش از "+e},noEventsMessage:"هیچ رویدادی به نمایش"})},function(e,a,t){!function(e,a){a(t(0))}(0,function(e){var a={1:"۱",2:"۲",3:"۳",4:"۴",5:"۵",6:"۶",7:"۷",8:"۸",9:"۹",0:"۰"},t={"۱":"1","۲":"2","۳":"3","۴":"4","۵":"5","۶":"6","۷":"7","۸":"8","۹":"9","۰":"0"};return e.defineLocale("fa",{months:"ژانویه_فوریه_مارس_آوریل_مه_ژوئن_ژوئیه_اوت_سپتامبر_اکتبر_نوامبر_دسامبر".split("_"),monthsShort:"ژانویه_فوریه_مارس_آوریل_مه_ژوئن_ژوئیه_اوت_سپتامبر_اکتبر_نوامبر_دسامبر".split("_"),weekdays:"یک‌شنبه_دوشنبه_سه‌شنبه_چهارشنبه_پنج‌شنبه_جمعه_شنبه".split("_"),weekdaysShort:"یک‌شنبه_دوشنبه_سه‌شنبه_چهارشنبه_پنج‌شنبه_جمعه_شنبه".split("_"),weekdaysMin:"ی_د_س_چ_پ_ج_ش".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},meridiemParse:/قبل از ظهر|بعد از ظهر/,isPM:function(e){return/بعد از ظهر/.test(e)},meridiem:function(e,a,t){return e<12?"قبل از ظهر":"بعد از ظهر"},calendar:{sameDay:"[امروز ساعت] LT",nextDay:"[فردا ساعت] LT",nextWeek:"dddd [ساعت] LT",lastDay:"[دیروز ساعت] LT",lastWeek:"dddd [پیش] [ساعت] LT",sameElse:"L"},relativeTime:{future:"در %s",past:"%s پیش",s:"چند ثانیه",ss:"ثانیه d%",m:"یک دقیقه",mm:"%d دقیقه",h:"یک ساعت",hh:"%d ساعت",d:"یک روز",dd:"%d روز",M:"یک ماه",MM:"%d ماه",y:"یک سال",yy:"%d سال"},preparse:function(e){return e.replace(/[۰-۹]/g,function(e){return t[e]}).replace(/،/g,",")},postformat:function(e){return e.replace(/\d/g,function(e){return a[e]}).replace(/,/g,"،")},dayOfMonthOrdinalParse:/\d{1,2}م/,ordinal:"%dم",week:{dow:6,doy:12}})})},function(e,a,t){Object.defineProperty(a,"__esModule",{value:!0}),t(122);var n=t(1);n.datepickerLocale("fi","fi",{closeText:"Sulje",prevText:"«Edellinen",nextText:"Seuraava»",currentText:"Tänään",monthNames:["Tammikuu","Helmikuu","Maaliskuu","Huhtikuu","Toukokuu","Kesäkuu","Heinäkuu","Elokuu","Syyskuu","Lokakuu","Marraskuu","Joulukuu"],monthNamesShort:["Tammi","Helmi","Maalis","Huhti","Touko","Kesä","Heinä","Elo","Syys","Loka","Marras","Joulu"],dayNamesShort:["Su","Ma","Ti","Ke","To","Pe","La"],dayNames:["Sunnuntai","Maanantai","Tiistai","Keskiviikko","Torstai","Perjantai","Lauantai"],dayNamesMin:["Su","Ma","Ti","Ke","To","Pe","La"],weekHeader:"Vk",dateFormat:"d.m.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),n.locale("fi",{buttonText:{month:"Kuukausi",week:"Viikko",day:"Päivä",list:"Tapahtumat"},allDayText:"Koko päivä",eventLimitText:"lisää",noEventsMessage:"Ei näytettäviä tapahtumia"})},function(e,a,t){!function(e,a){a(t(0))}(0,function(e){function a(e,a,n,r){var s="";switch(n){ +case"s":return r?"muutaman sekunnin":"muutama sekunti";case"ss":return r?"sekunnin":"sekuntia";case"m":return r?"minuutin":"minuutti";case"mm":s=r?"minuutin":"minuuttia";break;case"h":return r?"tunnin":"tunti";case"hh":s=r?"tunnin":"tuntia";break;case"d":return r?"päivän":"päivä";case"dd":s=r?"päivän":"päivää";break;case"M":return r?"kuukauden":"kuukausi";case"MM":s=r?"kuukauden":"kuukautta";break;case"y":return r?"vuoden":"vuosi";case"yy":s=r?"vuoden":"vuotta"}return s=t(e,r)+" "+s}function t(e,a){return e<10?a?r[e]:n[e]:e}var n="nolla yksi kaksi kolme neljä viisi kuusi seitsemän kahdeksan yhdeksän".split(" "),r=["nolla","yhden","kahden","kolmen","neljän","viiden","kuuden",n[7],n[8],n[9]];return e.defineLocale("fi",{months:"tammikuu_helmikuu_maaliskuu_huhtikuu_toukokuu_kesäkuu_heinäkuu_elokuu_syyskuu_lokakuu_marraskuu_joulukuu".split("_"),monthsShort:"tammi_helmi_maalis_huhti_touko_kesä_heinä_elo_syys_loka_marras_joulu".split("_"),weekdays:"sunnuntai_maanantai_tiistai_keskiviikko_torstai_perjantai_lauantai".split("_"),weekdaysShort:"su_ma_ti_ke_to_pe_la".split("_"),weekdaysMin:"su_ma_ti_ke_to_pe_la".split("_"),longDateFormat:{LT:"HH.mm",LTS:"HH.mm.ss",L:"DD.MM.YYYY",LL:"Do MMMM[ta] YYYY",LLL:"Do MMMM[ta] YYYY, [klo] HH.mm",LLLL:"dddd, Do MMMM[ta] YYYY, [klo] HH.mm",l:"D.M.YYYY",ll:"Do MMM YYYY",lll:"Do MMM YYYY, [klo] HH.mm",llll:"ddd, Do MMM YYYY, [klo] HH.mm"},calendar:{sameDay:"[tänään] [klo] LT",nextDay:"[huomenna] [klo] LT",nextWeek:"dddd [klo] LT",lastDay:"[eilen] [klo] LT",lastWeek:"[viime] dddd[na] [klo] LT",sameElse:"L"},relativeTime:{future:"%s päästä",past:"%s sitten",s:a,ss:a,m:a,mm:a,h:a,hh:a,d:a,dd:a,M:a,MM:a,y:a,yy:a},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})})},function(e,a,t){Object.defineProperty(a,"__esModule",{value:!0}),t(124);var n=t(1);n.datepickerLocale("fr-ca","fr-CA",{closeText:"Fermer",prevText:"Précédent",nextText:"Suivant",currentText:"Aujourd'hui",monthNames:["janvier","février","mars","avril","mai","juin","juillet","août","septembre","octobre","novembre","décembre"],monthNamesShort:["janv.","févr.","mars","avril","mai","juin","juil.","août","sept.","oct.","nov.","déc."],dayNames:["dimanche","lundi","mardi","mercredi","jeudi","vendredi","samedi"],dayNamesShort:["dim.","lun.","mar.","mer.","jeu.","ven.","sam."],dayNamesMin:["D","L","M","M","J","V","S"],weekHeader:"Sem.",dateFormat:"yy-mm-dd",firstDay:0,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),n.locale("fr-ca",{buttonText:{year:"Année",month:"Mois",week:"Semaine",day:"Jour",list:"Mon planning"},allDayHtml:"Toute la
journée",eventLimitText:"en plus",noEventsMessage:"Aucun événement à afficher"})},function(e,a,t){!function(e,a){a(t(0))}(0,function(e){return e.defineLocale("fr-ca",{months:"janvier_février_mars_avril_mai_juin_juillet_août_septembre_octobre_novembre_décembre".split("_"),monthsShort:"janv._févr._mars_avr._mai_juin_juil._août_sept._oct._nov._déc.".split("_"),monthsParseExact:!0,weekdays:"dimanche_lundi_mardi_mercredi_jeudi_vendredi_samedi".split("_"),weekdaysShort:"dim._lun._mar._mer._jeu._ven._sam.".split("_"),weekdaysMin:"di_lu_ma_me_je_ve_sa".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"YYYY-MM-DD",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[Aujourd’hui à] LT",nextDay:"[Demain à] LT",nextWeek:"dddd [à] LT",lastDay:"[Hier à] LT",lastWeek:"dddd [dernier à] LT",sameElse:"L"},relativeTime:{future:"dans %s",past:"il y a %s",s:"quelques secondes",ss:"%d secondes",m:"une minute",mm:"%d minutes",h:"une heure",hh:"%d heures",d:"un jour",dd:"%d jours",M:"un mois",MM:"%d mois",y:"un an",yy:"%d ans"},dayOfMonthOrdinalParse:/\d{1,2}(er|e)/,ordinal:function(e,a){switch(a){default:case"M":case"Q":case"D":case"DDD":case"d":return e+(1===e?"er":"e");case"w":case"W":return e+(1===e?"re":"e")}}})})},function(e,a,t){Object.defineProperty(a,"__esModule",{value:!0}),t(126);var n=t(1);n.datepickerLocale("fr-ch","fr-CH",{closeText:"Fermer",prevText:"<Préc",nextText:"Suiv>",currentText:"Courant",monthNames:["janvier","février","mars","avril","mai","juin","juillet","août","septembre","octobre","novembre","décembre"],monthNamesShort:["janv.","févr.","mars","avril","mai","juin","juil.","août","sept.","oct.","nov.","déc."],dayNames:["dimanche","lundi","mardi","mercredi","jeudi","vendredi","samedi"],dayNamesShort:["dim.","lun.","mar.","mer.","jeu.","ven.","sam."],dayNamesMin:["D","L","M","M","J","V","S"],weekHeader:"Sm",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),n.locale("fr-ch",{buttonText:{year:"Année",month:"Mois",week:"Semaine",day:"Jour",list:"Mon planning"},allDayHtml:"Toute la
journée",eventLimitText:"en plus",noEventsMessage:"Aucun événement à afficher"})},function(e,a,t){!function(e,a){a(t(0))}(0,function(e){return e.defineLocale("fr-ch",{months:"janvier_février_mars_avril_mai_juin_juillet_août_septembre_octobre_novembre_décembre".split("_"),monthsShort:"janv._févr._mars_avr._mai_juin_juil._août_sept._oct._nov._déc.".split("_"),monthsParseExact:!0,weekdays:"dimanche_lundi_mardi_mercredi_jeudi_vendredi_samedi".split("_"),weekdaysShort:"dim._lun._mar._mer._jeu._ven._sam.".split("_"),weekdaysMin:"di_lu_ma_me_je_ve_sa".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[Aujourd’hui à] LT",nextDay:"[Demain à] LT",nextWeek:"dddd [à] LT",lastDay:"[Hier à] LT",lastWeek:"dddd [dernier à] LT",sameElse:"L"},relativeTime:{future:"dans %s",past:"il y a %s",s:"quelques secondes",ss:"%d secondes",m:"une minute",mm:"%d minutes",h:"une heure",hh:"%d heures",d:"un jour",dd:"%d jours",M:"un mois",MM:"%d mois",y:"un an",yy:"%d ans"},dayOfMonthOrdinalParse:/\d{1,2}(er|e)/,ordinal:function(e,a){switch(a){default:case"M":case"Q":case"D":case"DDD":case"d":return e+(1===e?"er":"e");case"w":case"W":return e+(1===e?"re":"e")}},week:{dow:1,doy:4}})})},function(e,a,t){Object.defineProperty(a,"__esModule",{value:!0}),t(128);var n=t(1);n.datepickerLocale("fr","fr",{closeText:"Fermer",prevText:"Précédent",nextText:"Suivant",currentText:"Aujourd'hui",monthNames:["janvier","février","mars","avril","mai","juin","juillet","août","septembre","octobre","novembre","décembre"],monthNamesShort:["janv.","févr.","mars","avr.","mai","juin","juil.","août","sept.","oct.","nov.","déc."],dayNames:["dimanche","lundi","mardi","mercredi","jeudi","vendredi","samedi"],dayNamesShort:["dim.","lun.","mar.","mer.","jeu.","ven.","sam."],dayNamesMin:["D","L","M","M","J","V","S"],weekHeader:"Sem.",dateFormat:"dd/mm/yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),n.locale("fr",{buttonText:{year:"Année",month:"Mois",week:"Semaine",day:"Jour",list:"Mon planning"},allDayHtml:"Toute la
journée",eventLimitText:"en plus",noEventsMessage:"Aucun événement à afficher"})},function(e,a,t){!function(e,a){a(t(0))}(0,function(e){return e.defineLocale("fr",{months:"janvier_février_mars_avril_mai_juin_juillet_août_septembre_octobre_novembre_décembre".split("_"),monthsShort:"janv._févr._mars_avr._mai_juin_juil._août_sept._oct._nov._déc.".split("_"),monthsParseExact:!0,weekdays:"dimanche_lundi_mardi_mercredi_jeudi_vendredi_samedi".split("_"),weekdaysShort:"dim._lun._mar._mer._jeu._ven._sam.".split("_"),weekdaysMin:"di_lu_ma_me_je_ve_sa".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[Aujourd’hui à] LT",nextDay:"[Demain à] LT",nextWeek:"dddd [à] LT",lastDay:"[Hier à] LT",lastWeek:"dddd [dernier à] LT",sameElse:"L"},relativeTime:{future:"dans %s",past:"il y a %s",s:"quelques secondes",ss:"%d secondes",m:"une minute",mm:"%d minutes",h:"une heure",hh:"%d heures",d:"un jour",dd:"%d jours",M:"un mois",MM:"%d mois",y:"un an",yy:"%d ans"},dayOfMonthOrdinalParse:/\d{1,2}(er|)/,ordinal:function(e,a){switch(a){case"D":return e+(1===e?"er":"");default:case"M":case"Q":case"DDD":case"d":return e+(1===e?"er":"e");case"w":case"W":return e+(1===e?"re":"e")}},week:{dow:1,doy:4}})})},function(e,a,t){Object.defineProperty(a,"__esModule",{value:!0}),t(130);var n=t(1);n.datepickerLocale("gl","gl",{closeText:"Pechar",prevText:"<Ant",nextText:"Seg>",currentText:"Hoxe",monthNames:["Xaneiro","Febreiro","Marzo","Abril","Maio","Xuño","Xullo","Agosto","Setembro","Outubro","Novembro","Decembro"],monthNamesShort:["Xan","Feb","Mar","Abr","Mai","Xuñ","Xul","Ago","Set","Out","Nov","Dec"],dayNames:["Domingo","Luns","Martes","Mércores","Xoves","Venres","Sábado"],dayNamesShort:["Dom","Lun","Mar","Mér","Xov","Ven","Sáb"],dayNamesMin:["Do","Lu","Ma","Mé","Xo","Ve","Sá"],weekHeader:"Sm",dateFormat:"dd/mm/yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),n.locale("gl",{buttonText:{month:"Mes",week:"Semana",day:"Día",list:"Axenda"},allDayHtml:"Todo
o día",eventLimitText:"máis",noEventsMessage:"Non hai eventos para amosar"})},function(e,a,t){!function(e,a){a(t(0))}(0,function(e){return e.defineLocale("gl",{months:"xaneiro_febreiro_marzo_abril_maio_xuño_xullo_agosto_setembro_outubro_novembro_decembro".split("_"),monthsShort:"xan._feb._mar._abr._mai._xuñ._xul._ago._set._out._nov._dec.".split("_"),monthsParseExact:!0,weekdays:"domingo_luns_martes_mércores_xoves_venres_sábado".split("_"),weekdaysShort:"dom._lun._mar._mér._xov._ven._sáb.".split("_"),weekdaysMin:"do_lu_ma_mé_xo_ve_sá".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD/MM/YYYY",LL:"D [de] MMMM [de] YYYY",LLL:"D [de] MMMM [de] YYYY H:mm",LLLL:"dddd, D [de] MMMM [de] YYYY H:mm"},calendar:{sameDay:function(){return"[hoxe "+(1!==this.hours()?"ás":"á")+"] LT"},nextDay:function(){return"[mañá "+(1!==this.hours()?"ás":"á")+"] LT"},nextWeek:function(){return"dddd ["+(1!==this.hours()?"ás":"a")+"] LT"},lastDay:function(){return"[onte "+(1!==this.hours()?"á":"a")+"] LT"},lastWeek:function(){return"[o] dddd [pasado "+(1!==this.hours()?"ás":"a")+"] LT"},sameElse:"L"},relativeTime:{future:function(e){return 0===e.indexOf("un")?"n"+e:"en "+e},past:"hai %s",s:"uns segundos",ss:"%d segundos",m:"un minuto",mm:"%d minutos",h:"unha hora",hh:"%d horas",d:"un día",dd:"%d días",M:"un mes",MM:"%d meses",y:"un ano",yy:"%d anos"},dayOfMonthOrdinalParse:/\d{1,2}º/,ordinal:"%dº",week:{dow:1,doy:4}})})},function(e,a,t){Object.defineProperty(a,"__esModule",{value:!0}),t(132);var n=t(1);n.datepickerLocale("he","he",{closeText:"סגור",prevText:"<הקודם",nextText:"הבא>",currentText:"היום",monthNames:["ינואר","פברואר","מרץ","אפריל","מאי","יוני","יולי","אוגוסט","ספטמבר","אוקטובר","נובמבר","דצמבר"],monthNamesShort:["ינו","פבר","מרץ","אפר","מאי","יוני","יולי","אוג","ספט","אוק","נוב","דצמ"],dayNames:["ראשון","שני","שלישי","רביעי","חמישי","שישי","שבת"],dayNamesShort:["א'","ב'","ג'","ד'","ה'","ו'","שבת"],dayNamesMin:["א'","ב'","ג'","ד'","ה'","ו'","שבת"],weekHeader:"Wk",dateFormat:"dd/mm/yy",firstDay:0,isRTL:!0,showMonthAfterYear:!1,yearSuffix:""}),n.locale("he",{buttonText:{month:"חודש",week:"שבוע",day:"יום",list:"סדר יום"},allDayText:"כל היום",eventLimitText:"אחר",noEventsMessage:"אין אירועים להצגה",weekNumberTitle:"שבוע"})},function(e,a,t){!function(e,a){a(t(0))}(0,function(e){return e.defineLocale("he",{months:"ינואר_פברואר_מרץ_אפריל_מאי_יוני_יולי_אוגוסט_ספטמבר_אוקטובר_נובמבר_דצמבר".split("_"),monthsShort:"ינו׳_פבר׳_מרץ_אפר׳_מאי_יוני_יולי_אוג׳_ספט׳_אוק׳_נוב׳_דצמ׳".split("_"),weekdays:"ראשון_שני_שלישי_רביעי_חמישי_שישי_שבת".split("_"),weekdaysShort:"א׳_ב׳_ג׳_ד׳_ה׳_ו׳_ש׳".split("_"),weekdaysMin:"א_ב_ג_ד_ה_ו_ש".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D [ב]MMMM YYYY",LLL:"D [ב]MMMM YYYY HH:mm",LLLL:"dddd, D [ב]MMMM YYYY HH:mm",l:"D/M/YYYY",ll:"D MMM YYYY",lll:"D MMM YYYY HH:mm",llll:"ddd, D MMM YYYY HH:mm"},calendar:{sameDay:"[היום ב־]LT",nextDay:"[מחר ב־]LT",nextWeek:"dddd [בשעה] LT",lastDay:"[אתמול ב־]LT",lastWeek:"[ביום] dddd [האחרון בשעה] LT",sameElse:"L"},relativeTime:{future:"בעוד %s",past:"לפני %s",s:"מספר שניות",ss:"%d שניות",m:"דקה",mm:"%d דקות",h:"שעה",hh:function(e){return 2===e?"שעתיים":e+" שעות"},d:"יום",dd:function(e){return 2===e?"יומיים":e+" ימים"},M:"חודש",MM:function(e){return 2===e?"חודשיים":e+" חודשים"},y:"שנה",yy:function(e){return 2===e?"שנתיים":e%10==0&&10!==e?e+" שנה":e+" שנים"}},meridiemParse:/אחה"צ|לפנה"צ|אחרי הצהריים|לפני הצהריים|לפנות בוקר|בבוקר|בערב/i,isPM:function(e){return/^(אחה"צ|אחרי הצהריים|בערב)$/.test(e)},meridiem:function(e,a,t){return e<5?"לפנות בוקר":e<10?"בבוקר":e<12?t?'לפנה"צ':"לפני הצהריים":e<18?t?'אחה"צ':"אחרי הצהריים":"בערב"}})})},function(e,a,t){Object.defineProperty(a,"__esModule",{value:!0}),t(134);var n=t(1);n.datepickerLocale("hi","hi",{closeText:"बंद",prevText:"पिछला",nextText:"अगला",currentText:"आज",monthNames:["जनवरी ","फरवरी","मार्च","अप्रेल","मई","जून","जूलाई","अगस्त ","सितम्बर","अक्टूबर","नवम्बर","दिसम्बर"],monthNamesShort:["जन","फर","मार्च","अप्रेल","मई","जून","जूलाई","अग","सित","अक्ट","नव","दि"],dayNames:["रविवार","सोमवार","मंगलवार","बुधवार","गुरुवार","शुक्रवार","शनिवार"],dayNamesShort:["रवि","सोम","मंगल","बुध","गुरु","शुक्र","शनि"],dayNamesMin:["रवि","सोम","मंगल","बुध","गुरु","शुक्र","शनि"],weekHeader:"हफ्ता",dateFormat:"dd/mm/yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),n.locale("hi",{buttonText:{month:"महीना",week:"सप्ताह",day:"दिन",list:"कार्यसूची"},allDayText:"सभी दिन",eventLimitText:function(e){return"+अधिक "+e},noEventsMessage:"कोई घटनाओं को प्रदर्शित करने के लिए"})},function(e,a,t){!function(e,a){a(t(0))}(0,function(e){var a={1:"१",2:"२",3:"३",4:"४",5:"५",6:"६",7:"७",8:"८",9:"९",0:"०"},t={"१":"1","२":"2","३":"3","४":"4","५":"5","६":"6","७":"7","८":"8","९":"9","०":"0"};return e.defineLocale("hi",{months:"जनवरी_फ़रवरी_मार्च_अप्रैल_मई_जून_जुलाई_अगस्त_सितम्बर_अक्टूबर_नवम्बर_दिसम्बर".split("_"),monthsShort:"जन._फ़र._मार्च_अप्रै._मई_जून_जुल._अग._सित._अक्टू._नव._दिस.".split("_"),monthsParseExact:!0,weekdays:"रविवार_सोमवार_मंगलवार_बुधवार_गुरूवार_शुक्रवार_शनिवार".split("_"),weekdaysShort:"रवि_सोम_मंगल_बुध_गुरू_शुक्र_शनि".split("_"),weekdaysMin:"र_सो_मं_बु_गु_शु_श".split("_"),longDateFormat:{LT:"A h:mm बजे",LTS:"A h:mm:ss बजे",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY, A h:mm बजे",LLLL:"dddd, D MMMM YYYY, A h:mm बजे"},calendar:{sameDay:"[आज] LT",nextDay:"[कल] LT",nextWeek:"dddd, LT",lastDay:"[कल] LT",lastWeek:"[पिछले] dddd, LT",sameElse:"L"},relativeTime:{future:"%s में",past:"%s पहले",s:"कुछ ही क्षण",ss:"%d सेकंड",m:"एक मिनट",mm:"%d मिनट",h:"एक घंटा",hh:"%d घंटे",d:"एक दिन",dd:"%d दिन",M:"एक महीने",MM:"%d महीने",y:"एक वर्ष",yy:"%d वर्ष"},preparse:function(e){return e.replace(/[१२३४५६७८९०]/g,function(e){return t[e]})},postformat:function(e){return e.replace(/\d/g,function(e){return a[e]})},meridiemParse:/रात|सुबह|दोपहर|शाम/,meridiemHour:function(e,a){return 12===e&&(e=0),"रात"===a?e<4?e:e+12:"सुबह"===a?e:"दोपहर"===a?e>=10?e:e+12:"शाम"===a?e+12:void 0},meridiem:function(e,a,t){return e<4?"रात":e<10?"सुबह":e<17?"दोपहर":e<20?"शाम":"रात"},week:{dow:0,doy:6}})})},function(e,a,t){Object.defineProperty(a,"__esModule",{value:!0}),t(136);var n=t(1);n.datepickerLocale("hr","hr",{closeText:"Zatvori",prevText:"<",nextText:">",currentText:"Danas",monthNames:["Siječanj","Veljača","Ožujak","Travanj","Svibanj","Lipanj","Srpanj","Kolovoz","Rujan","Listopad","Studeni","Prosinac"],monthNamesShort:["Sij","Velj","Ožu","Tra","Svi","Lip","Srp","Kol","Ruj","Lis","Stu","Pro"],dayNames:["Nedjelja","Ponedjeljak","Utorak","Srijeda","Četvrtak","Petak","Subota"],dayNamesShort:["Ned","Pon","Uto","Sri","Čet","Pet","Sub"],dayNamesMin:["Ne","Po","Ut","Sr","Če","Pe","Su"],weekHeader:"Tje",dateFormat:"dd.mm.yy.",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),n.locale("hr",{buttonText:{prev:"Prijašnji",next:"Sljedeći",month:"Mjesec",week:"Tjedan",day:"Dan",list:"Raspored"},allDayText:"Cijeli dan",eventLimitText:function(e){return"+ još "+e},noEventsMessage:"Nema događaja za prikaz"})},function(e,a,t){!function(e,a){a(t(0))}(0,function(e){function a(e,a,t){var n=e+" ";switch(t){case"ss":return n+=1===e?"sekunda":2===e||3===e||4===e?"sekunde":"sekundi";case"m":return a?"jedna minuta":"jedne minute";case"mm":return n+=1===e?"minuta":2===e||3===e||4===e?"minute":"minuta";case"h":return a?"jedan sat":"jednog sata";case"hh":return n+=1===e?"sat":2===e||3===e||4===e?"sata":"sati";case"dd":return n+=1===e?"dan":"dana";case"MM":return n+=1===e?"mjesec":2===e||3===e||4===e?"mjeseca":"mjeseci";case"yy":return n+=1===e?"godina":2===e||3===e||4===e?"godine":"godina"}}return e.defineLocale("hr",{months:{format:"siječnja_veljače_ožujka_travnja_svibnja_lipnja_srpnja_kolovoza_rujna_listopada_studenoga_prosinca".split("_"),standalone:"siječanj_veljača_ožujak_travanj_svibanj_lipanj_srpanj_kolovoz_rujan_listopad_studeni_prosinac".split("_")},monthsShort:"sij._velj._ožu._tra._svi._lip._srp._kol._ruj._lis._stu._pro.".split("_"),monthsParseExact:!0,weekdays:"nedjelja_ponedjeljak_utorak_srijeda_četvrtak_petak_subota".split("_"),weekdaysShort:"ned._pon._uto._sri._čet._pet._sub.".split("_"),weekdaysMin:"ne_po_ut_sr_če_pe_su".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY H:mm",LLLL:"dddd, D. MMMM YYYY H:mm"},calendar:{sameDay:"[danas u] LT",nextDay:"[sutra u] LT",nextWeek:function(){switch(this.day()){case 0:return"[u] [nedjelju] [u] LT";case 3:return"[u] [srijedu] [u] LT";case 6:return"[u] [subotu] [u] LT";case 1:case 2:case 4:case 5:return"[u] dddd [u] LT"}},lastDay:"[jučer u] LT",lastWeek:function(){switch(this.day()){case 0:case 3:return"[prošlu] dddd [u] LT";case 6:return"[prošle] [subote] [u] LT";case 1:case 2:case 4:case 5:return"[prošli] dddd [u] LT"}},sameElse:"L"},relativeTime:{future:"za %s",past:"prije %s",s:"par sekundi",ss:a,m:a,mm:a,h:a,hh:a,d:"dan",dd:a,M:"mjesec",MM:a,y:"godinu",yy:a},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:7}})})},function(e,a,t){Object.defineProperty(a,"__esModule",{value:!0}),t(138);var n=t(1);n.datepickerLocale("hu","hu",{closeText:"bezár",prevText:"vissza",nextText:"előre",currentText:"ma",monthNames:["Január","Február","Március","Április","Május","Június","Július","Augusztus","Szeptember","Október","November","December"],monthNamesShort:["Jan","Feb","Már","Ápr","Máj","Jún","Júl","Aug","Szep","Okt","Nov","Dec"],dayNames:["Vasárnap","Hétfő","Kedd","Szerda","Csütörtök","Péntek","Szombat"],dayNamesShort:["Vas","Hét","Ked","Sze","Csü","Pén","Szo"],dayNamesMin:["V","H","K","Sze","Cs","P","Szo"],weekHeader:"Hét",dateFormat:"yy.mm.dd.",firstDay:1,isRTL:!1,showMonthAfterYear:!0,yearSuffix:""}),n.locale("hu",{buttonText:{month:"Hónap",week:"Hét",day:"Nap",list:"Napló"},allDayText:"Egész nap",eventLimitText:"további",noEventsMessage:"Nincs megjeleníthető események"})},function(e,a,t){!function(e,a){a(t(0))}(0,function(e){function a(e,a,t,n){var r=e;switch(t){case"s":return n||a?"néhány másodperc":"néhány másodperce";case"ss":return r+(n||a)?" másodperc":" másodperce";case"m":return"egy"+(n||a?" perc":" perce");case"mm":return r+(n||a?" perc":" perce");case"h":return"egy"+(n||a?" óra":" órája");case"hh":return r+(n||a?" óra":" órája");case"d":return"egy"+(n||a?" nap":" napja");case"dd":return r+(n||a?" nap":" napja");case"M":return"egy"+(n||a?" hónap":" hónapja");case"MM":return r+(n||a?" hónap":" hónapja");case"y":return"egy"+(n||a?" év":" éve");case"yy":return r+(n||a?" év":" éve")}return""}function t(e){return(e?"":"[múlt] ")+"["+n[this.day()]+"] LT[-kor]"}var n="vasárnap hétfőn kedden szerdán csütörtökön pénteken szombaton".split(" ");return e.defineLocale("hu",{months:"január_február_március_április_május_június_július_augusztus_szeptember_október_november_december".split("_"),monthsShort:"jan_feb_márc_ápr_máj_jún_júl_aug_szept_okt_nov_dec".split("_"),weekdays:"vasárnap_hétfő_kedd_szerda_csütörtök_péntek_szombat".split("_"),weekdaysShort:"vas_hét_kedd_sze_csüt_pén_szo".split("_"),weekdaysMin:"v_h_k_sze_cs_p_szo".split("_"),longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"YYYY.MM.DD.",LL:"YYYY. MMMM D.",LLL:"YYYY. MMMM D. H:mm",LLLL:"YYYY. MMMM D., dddd H:mm"},meridiemParse:/de|du/i,isPM:function(e){return"u"===e.charAt(1).toLowerCase()},meridiem:function(e,a,t){return e<12?!0===t?"de":"DE":!0===t?"du":"DU"},calendar:{sameDay:"[ma] LT[-kor]",nextDay:"[holnap] LT[-kor]",nextWeek:function(){return t.call(this,!0)},lastDay:"[tegnap] LT[-kor]",lastWeek:function(){return t.call(this,!1)},sameElse:"L"},relativeTime:{future:"%s múlva",past:"%s",s:a,ss:a,m:a,mm:a,h:a,hh:a,d:a,dd:a,M:a,MM:a,y:a,yy:a},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})})},function(e,a,t){Object.defineProperty(a,"__esModule",{value:!0}),t(140);var n=t(1);n.datepickerLocale("id","id",{closeText:"Tutup",prevText:"<mundur",nextText:"maju>",currentText:"hari ini",monthNames:["Januari","Februari","Maret","April","Mei","Juni","Juli","Agustus","September","Oktober","Nopember","Desember"],monthNamesShort:["Jan","Feb","Mar","Apr","Mei","Jun","Jul","Agus","Sep","Okt","Nop","Des"],dayNames:["Minggu","Senin","Selasa","Rabu","Kamis","Jumat","Sabtu"],dayNamesShort:["Min","Sen","Sel","Rab","kam","Jum","Sab"],dayNamesMin:["Mg","Sn","Sl","Rb","Km","jm","Sb"],weekHeader:"Mg",dateFormat:"dd/mm/yy",firstDay:0,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),n.locale("id",{buttonText:{month:"Bulan",week:"Minggu",day:"Hari",list:"Agenda"},allDayHtml:"Sehari
penuh",eventLimitText:"lebih",noEventsMessage:"Tidak ada acara untuk ditampilkan"})},function(e,a,t){!function(e,a){a(t(0))}(0,function(e){return e.defineLocale("id",{months:"Januari_Februari_Maret_April_Mei_Juni_Juli_Agustus_September_Oktober_November_Desember".split("_"),monthsShort:"Jan_Feb_Mar_Apr_Mei_Jun_Jul_Agt_Sep_Okt_Nov_Des".split("_"),weekdays:"Minggu_Senin_Selasa_Rabu_Kamis_Jumat_Sabtu".split("_"),weekdaysShort:"Min_Sen_Sel_Rab_Kam_Jum_Sab".split("_"),weekdaysMin:"Mg_Sn_Sl_Rb_Km_Jm_Sb".split("_"),longDateFormat:{LT:"HH.mm",LTS:"HH.mm.ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY [pukul] HH.mm",LLLL:"dddd, D MMMM YYYY [pukul] HH.mm"},meridiemParse:/pagi|siang|sore|malam/,meridiemHour:function(e,a){return 12===e&&(e=0),"pagi"===a?e:"siang"===a?e>=11?e:e+12:"sore"===a||"malam"===a?e+12:void 0},meridiem:function(e,a,t){return e<11?"pagi":e<15?"siang":e<19?"sore":"malam"},calendar:{sameDay:"[Hari ini pukul] LT",nextDay:"[Besok pukul] LT",nextWeek:"dddd [pukul] LT",lastDay:"[Kemarin pukul] LT",lastWeek:"dddd [lalu pukul] LT",sameElse:"L"},relativeTime:{future:"dalam %s",past:"%s yang lalu",s:"beberapa detik",ss:"%d detik",m:"semenit",mm:"%d menit",h:"sejam",hh:"%d jam",d:"sehari",dd:"%d hari",M:"sebulan",MM:"%d bulan",y:"setahun",yy:"%d tahun"},week:{dow:1,doy:7}})})},function(e,a,t){Object.defineProperty(a,"__esModule",{value:!0}),t(142);var n=t(1);n.datepickerLocale("is","is",{closeText:"Loka",prevText:"< Fyrri",nextText:"Næsti >",currentText:"Í dag",monthNames:["Janúar","Febrúar","Mars","Apríl","Maí","Júní","Júlí","Ágúst","September","Október","Nóvember","Desember"],monthNamesShort:["Jan","Feb","Mar","Apr","Maí","Jún","Júl","Ágú","Sep","Okt","Nóv","Des"],dayNames:["Sunnudagur","Mánudagur","Þriðjudagur","Miðvikudagur","Fimmtudagur","Föstudagur","Laugardagur"],dayNamesShort:["Sun","Mán","Þri","Mið","Fim","Fös","Lau"],dayNamesMin:["Su","Má","Þr","Mi","Fi","Fö","La"],weekHeader:"Vika",dateFormat:"dd.mm.yy",firstDay:0,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),n.locale("is",{buttonText:{month:"Mánuður",week:"Vika",day:"Dagur",list:"Dagskrá"},allDayHtml:"Allan
daginn",eventLimitText:"meira",noEventsMessage:"Engir viðburðir til að sýna"})},function(e,a,t){!function(e,a){a(t(0))}(0,function(e){function a(e){return e%100==11||e%10!=1}function t(e,t,n,r){var s=e+" ";switch(n){case"s":return t||r?"nokkrar sekúndur":"nokkrum sekúndum";case"ss":return a(e)?s+(t||r?"sekúndur":"sekúndum"):s+"sekúnda";case"m":return t?"mínúta":"mínútu";case"mm":return a(e)?s+(t||r?"mínútur":"mínútum"):t?s+"mínúta":s+"mínútu";case"hh":return a(e)?s+(t||r?"klukkustundir":"klukkustundum"):s+"klukkustund";case"d":return t?"dagur":r?"dag":"degi";case"dd":return a(e)?t?s+"dagar":s+(r?"daga":"dögum"):t?s+"dagur":s+(r?"dag":"degi");case"M":return t?"mánuður":r?"mánuð":"mánuði";case"MM":return a(e)?t?s+"mánuðir":s+(r?"mánuði":"mánuðum"):t?s+"mánuður":s+(r?"mánuð":"mánuði");case"y":return t||r?"ár":"ári";case"yy":return a(e)?s+(t||r?"ár":"árum"):s+(t||r?"ár":"ári")}}return e.defineLocale("is",{months:"janúar_febrúar_mars_apríl_maí_júní_júlí_ágúst_september_október_nóvember_desember".split("_"),monthsShort:"jan_feb_mar_apr_maí_jún_júl_ágú_sep_okt_nóv_des".split("_"),weekdays:"sunnudagur_mánudagur_þriðjudagur_miðvikudagur_fimmtudagur_föstudagur_laugardagur".split("_"),weekdaysShort:"sun_mán_þri_mið_fim_fös_lau".split("_"),weekdaysMin:"Su_Má_Þr_Mi_Fi_Fö_La".split("_"),longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY [kl.] H:mm",LLLL:"dddd, D. MMMM YYYY [kl.] H:mm"},calendar:{sameDay:"[í dag kl.] LT",nextDay:"[á morgun kl.] LT",nextWeek:"dddd [kl.] LT",lastDay:"[í gær kl.] LT",lastWeek:"[síðasta] dddd [kl.] LT",sameElse:"L"},relativeTime:{future:"eftir %s",past:"fyrir %s síðan",s:t,ss:t,m:t,mm:t,h:"klukkustund",hh:t,d:t,dd:t,M:t,MM:t,y:t,yy:t},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})})},function(e,a,t){Object.defineProperty(a,"__esModule",{value:!0}),t(144);var n=t(1);n.datepickerLocale("it","it",{closeText:"Chiudi",prevText:"<Prec",nextText:"Succ>",currentText:"Oggi",monthNames:["Gennaio","Febbraio","Marzo","Aprile","Maggio","Giugno","Luglio","Agosto","Settembre","Ottobre","Novembre","Dicembre"],monthNamesShort:["Gen","Feb","Mar","Apr","Mag","Giu","Lug","Ago","Set","Ott","Nov","Dic"],dayNames:["Domenica","Lunedì","Martedì","Mercoledì","Giovedì","Venerdì","Sabato"],dayNamesShort:["Dom","Lun","Mar","Mer","Gio","Ven","Sab"],dayNamesMin:["Do","Lu","Ma","Me","Gi","Ve","Sa"],weekHeader:"Sm",dateFormat:"dd/mm/yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),n.locale("it",{buttonText:{month:"Mese",week:"Settimana",day:"Giorno",list:"Agenda"},allDayHtml:"Tutto il
giorno",eventLimitText:function(e){return"+altri "+e},noEventsMessage:"Non ci sono eventi da visualizzare"})},function(e,a,t){!function(e,a){a(t(0))}(0,function(e){return e.defineLocale("it",{months:"gennaio_febbraio_marzo_aprile_maggio_giugno_luglio_agosto_settembre_ottobre_novembre_dicembre".split("_"),monthsShort:"gen_feb_mar_apr_mag_giu_lug_ago_set_ott_nov_dic".split("_"),weekdays:"domenica_lunedì_martedì_mercoledì_giovedì_venerdì_sabato".split("_"),weekdaysShort:"dom_lun_mar_mer_gio_ven_sab".split("_"),weekdaysMin:"do_lu_ma_me_gi_ve_sa".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[Oggi alle] LT",nextDay:"[Domani alle] LT",nextWeek:"dddd [alle] LT",lastDay:"[Ieri alle] LT",lastWeek:function(){switch(this.day()){case 0:return"[la scorsa] dddd [alle] LT";default:return"[lo scorso] dddd [alle] LT"}},sameElse:"L"},relativeTime:{future:function(e){return(/^[0-9].+$/.test(e)?"tra":"in")+" "+e},past:"%s fa",s:"alcuni secondi",ss:"%d secondi",m:"un minuto",mm:"%d minuti",h:"un'ora",hh:"%d ore",d:"un giorno",dd:"%d giorni",M:"un mese",MM:"%d mesi",y:"un anno",yy:"%d anni"},dayOfMonthOrdinalParse:/\d{1,2}º/,ordinal:"%dº",week:{dow:1,doy:4}})})},function(e,a,t){Object.defineProperty(a,"__esModule",{value:!0}),t(146);var n=t(1);n.datepickerLocale("ja","ja",{closeText:"閉じる",prevText:"<前",nextText:"次>",currentText:"今日",monthNames:["1月","2月","3月","4月","5月","6月","7月","8月","9月","10月","11月","12月"],monthNamesShort:["1月","2月","3月","4月","5月","6月","7月","8月","9月","10月","11月","12月"],dayNames:["日曜日","月曜日","火曜日","水曜日","木曜日","金曜日","土曜日"],dayNamesShort:["日","月","火","水","木","金","土"],dayNamesMin:["日","月","火","水","木","金","土"],weekHeader:"週",dateFormat:"yy/mm/dd",firstDay:0,isRTL:!1,showMonthAfterYear:!0,yearSuffix:"年"}),n.locale("ja",{buttonText:{month:"月",week:"週",day:"日",list:"予定リスト"},allDayText:"終日",eventLimitText:function(e){return"他 "+e+" 件"},noEventsMessage:"イベントが表示されないように"})},function(e,a,t){!function(e,a){a(t(0))}(0,function(e){return e.defineLocale("ja",{months:"1月_2月_3月_4月_5月_6月_7月_8月_9月_10月_11月_12月".split("_"),monthsShort:"1月_2月_3月_4月_5月_6月_7月_8月_9月_10月_11月_12月".split("_"),weekdays:"日曜日_月曜日_火曜日_水曜日_木曜日_金曜日_土曜日".split("_"),weekdaysShort:"日_月_火_水_木_金_土".split("_"),weekdaysMin:"日_月_火_水_木_金_土".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"YYYY/MM/DD",LL:"YYYY年M月D日",LLL:"YYYY年M月D日 HH:mm",LLLL:"YYYY年M月D日 HH:mm dddd",l:"YYYY/MM/DD",ll:"YYYY年M月D日",lll:"YYYY年M月D日 HH:mm",llll:"YYYY年M月D日 HH:mm dddd"},meridiemParse:/午前|午後/i,isPM:function(e){return"午後"===e},meridiem:function(e,a,t){return e<12?"午前":"午後"},calendar:{sameDay:"[今日] LT",nextDay:"[明日] LT",nextWeek:"[来週]dddd LT",lastDay:"[昨日] LT",lastWeek:"[前週]dddd LT",sameElse:"L"},dayOfMonthOrdinalParse:/\d{1,2}日/,ordinal:function(e,a){switch(a){case"d":case"D":case"DDD":return e+"日";default:return e}},relativeTime:{future:"%s後",past:"%s前",s:"数秒",ss:"%d秒",m:"1分",mm:"%d分",h:"1時間",hh:"%d時間",d:"1日",dd:"%d日",M:"1ヶ月",MM:"%dヶ月",y:"1年",yy:"%d年"}})})},function(e,a,t){Object.defineProperty(a,"__esModule",{value:!0}),t(148);var n=t(1);n.datepickerLocale("ka","ka",{closeText:"დახურვა",prevText:"წინა",nextText:"შემდეგი",currentText:"დღეს",monthNames:["იანვარი","თებერვალი","მარტი","აპრილი","მაისი","ივნისი","ივლისი","აგვისტო","სექტემბერი","ოქტომბერი","ნოემბერი","დეკემბერი"],monthNamesShort:["იან","თებ","მარ","აპრ","მაი","ივნ","ივლ","აგვ","სექ","ოქტ","ნოე","დეკ"],dayNames:["კვირა","ორშაბათი","სამშაბათი","ოთხშაბათი","ხუთშაბათი","პარასკევი","შაბათი"],dayNamesShort:["კვი","ორშ","სამ","ოთხ","ხუთ","პარ","შაბ"],dayNamesMin:["კვ","ორ","სა","ოთ","ხუ","პა","შა"],weekHeader:"კვ",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),n.locale("ka",{buttonText:{month:"თვე",week:"კვირა",day:"დღე",list:"დღის წესრიგი"},allDayText:"მთელი დღე",eventLimitText:function(e){return"+ კიდევ "+e},noEventsMessage:"ღონისძიებები არ არის"})},function(e,a,t){!function(e,a){a(t(0))}(0,function(e){return e.defineLocale("ka",{months:{standalone:"იანვარი_თებერვალი_მარტი_აპრილი_მაისი_ივნისი_ივლისი_აგვისტო_სექტემბერი_ოქტომბერი_ნოემბერი_დეკემბერი".split("_"),format:"იანვარს_თებერვალს_მარტს_აპრილის_მაისს_ივნისს_ივლისს_აგვისტს_სექტემბერს_ოქტომბერს_ნოემბერს_დეკემბერს".split("_")},monthsShort:"იან_თებ_მარ_აპრ_მაი_ივნ_ივლ_აგვ_სექ_ოქტ_ნოე_დეკ".split("_"),weekdays:{standalone:"კვირა_ორშაბათი_სამშაბათი_ოთხშაბათი_ხუთშაბათი_პარასკევი_შაბათი".split("_"),format:"კვირას_ორშაბათს_სამშაბათს_ოთხშაბათს_ხუთშაბათს_პარასკევს_შაბათს".split("_"),isFormat:/(წინა|შემდეგ)/},weekdaysShort:"კვი_ორშ_სამ_ოთხ_ხუთ_პარ_შაბ".split("_"),weekdaysMin:"კვ_ორ_სა_ოთ_ხუ_პა_შა".split("_"),longDateFormat:{LT:"h:mm A",LTS:"h:mm:ss A",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY h:mm A",LLLL:"dddd, D MMMM YYYY h:mm A"},calendar:{sameDay:"[დღეს] LT[-ზე]",nextDay:"[ხვალ] LT[-ზე]",lastDay:"[გუშინ] LT[-ზე]",nextWeek:"[შემდეგ] dddd LT[-ზე]",lastWeek:"[წინა] dddd LT-ზე",sameElse:"L"},relativeTime:{future:function(e){return/(წამი|წუთი|საათი|წელი)/.test(e)?e.replace(/ი$/,"ში"):e+"ში"},past:function(e){return/(წამი|წუთი|საათი|დღე|თვე)/.test(e)?e.replace(/(ი|ე)$/,"ის უკან"):/წელი/.test(e)?e.replace(/წელი$/,"წლის უკან"):void 0},s:"რამდენიმე წამი",ss:"%d წამი",m:"წუთი",mm:"%d წუთი",h:"საათი",hh:"%d საათი",d:"დღე",dd:"%d დღე",M:"თვე",MM:"%d თვე",y:"წელი",yy:"%d წელი"},dayOfMonthOrdinalParse:/0|1-ლი|მე-\d{1,2}|\d{1,2}-ე/,ordinal:function(e){return 0===e?e:1===e?e+"-ლი":e<20||e<=100&&e%20==0||e%100==0?"მე-"+e:e+"-ე"},week:{dow:1,doy:7}})})},function(e,a,t){Object.defineProperty(a,"__esModule",{value:!0}),t(150);var n=t(1);n.datepickerLocale("kk","kk",{closeText:"Жабу",prevText:"<Алдыңғы",nextText:"Келесі>",currentText:"Бүгін",monthNames:["Қаңтар","Ақпан","Наурыз","Сәуір","Мамыр","Маусым","Шілде","Тамыз","Қыркүйек","Қазан","Қараша","Желтоқсан"], +monthNamesShort:["Қаң","Ақп","Нау","Сәу","Мам","Мау","Шіл","Там","Қыр","Қаз","Қар","Жел"],dayNames:["Жексенбі","Дүйсенбі","Сейсенбі","Сәрсенбі","Бейсенбі","Жұма","Сенбі"],dayNamesShort:["жкс","дсн","ссн","срс","бсн","жма","снб"],dayNamesMin:["Жк","Дс","Сс","Ср","Бс","Жм","Сн"],weekHeader:"Не",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),n.locale("kk",{buttonText:{month:"Ай",week:"Апта",day:"Күн",list:"Күн тәртібі"},allDayText:"Күні бойы",eventLimitText:function(e){return"+ тағы "+e},noEventsMessage:"Көрсету үшін оқиғалар жоқ"})},function(e,a,t){!function(e,a){a(t(0))}(0,function(e){var a={0:"-ші",1:"-ші",2:"-ші",3:"-ші",4:"-ші",5:"-ші",6:"-шы",7:"-ші",8:"-ші",9:"-шы",10:"-шы",20:"-шы",30:"-шы",40:"-шы",50:"-ші",60:"-шы",70:"-ші",80:"-ші",90:"-шы",100:"-ші"};return e.defineLocale("kk",{months:"қаңтар_ақпан_наурыз_сәуір_мамыр_маусым_шілде_тамыз_қыркүйек_қазан_қараша_желтоқсан".split("_"),monthsShort:"қаң_ақп_нау_сәу_мам_мау_шіл_там_қыр_қаз_қар_жел".split("_"),weekdays:"жексенбі_дүйсенбі_сейсенбі_сәрсенбі_бейсенбі_жұма_сенбі".split("_"),weekdaysShort:"жек_дүй_сей_сәр_бей_жұм_сен".split("_"),weekdaysMin:"жк_дй_сй_ср_бй_жм_сн".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[Бүгін сағат] LT",nextDay:"[Ертең сағат] LT",nextWeek:"dddd [сағат] LT",lastDay:"[Кеше сағат] LT",lastWeek:"[Өткен аптаның] dddd [сағат] LT",sameElse:"L"},relativeTime:{future:"%s ішінде",past:"%s бұрын",s:"бірнеше секунд",ss:"%d секунд",m:"бір минут",mm:"%d минут",h:"бір сағат",hh:"%d сағат",d:"бір күн",dd:"%d күн",M:"бір ай",MM:"%d ай",y:"бір жыл",yy:"%d жыл"},dayOfMonthOrdinalParse:/\d{1,2}-(ші|шы)/,ordinal:function(e){var t=e%10,n=e>=100?100:null;return e+(a[e]||a[t]||a[n])},week:{dow:1,doy:7}})})},function(e,a,t){Object.defineProperty(a,"__esModule",{value:!0}),t(152);var n=t(1);n.datepickerLocale("ko","ko",{closeText:"닫기",prevText:"이전달",nextText:"다음달",currentText:"오늘",monthNames:["1월","2월","3월","4월","5월","6월","7월","8월","9월","10월","11월","12월"],monthNamesShort:["1월","2월","3월","4월","5월","6월","7월","8월","9월","10월","11월","12월"],dayNames:["일요일","월요일","화요일","수요일","목요일","금요일","토요일"],dayNamesShort:["일","월","화","수","목","금","토"],dayNamesMin:["일","월","화","수","목","금","토"],weekHeader:"주",dateFormat:"yy. m. d.",firstDay:0,isRTL:!1,showMonthAfterYear:!0,yearSuffix:"년"}),n.locale("ko",{buttonText:{month:"월",week:"주",day:"일",list:"일정목록"},allDayText:"종일",eventLimitText:"개",noEventsMessage:"일정이 없습니다"})},function(e,a,t){!function(e,a){a(t(0))}(0,function(e){return e.defineLocale("ko",{months:"1월_2월_3월_4월_5월_6월_7월_8월_9월_10월_11월_12월".split("_"),monthsShort:"1월_2월_3월_4월_5월_6월_7월_8월_9월_10월_11월_12월".split("_"),weekdays:"일요일_월요일_화요일_수요일_목요일_금요일_토요일".split("_"),weekdaysShort:"일_월_화_수_목_금_토".split("_"),weekdaysMin:"일_월_화_수_목_금_토".split("_"),longDateFormat:{LT:"A h:mm",LTS:"A h:mm:ss",L:"YYYY.MM.DD.",LL:"YYYY년 MMMM D일",LLL:"YYYY년 MMMM D일 A h:mm",LLLL:"YYYY년 MMMM D일 dddd A h:mm",l:"YYYY.MM.DD.",ll:"YYYY년 MMMM D일",lll:"YYYY년 MMMM D일 A h:mm",llll:"YYYY년 MMMM D일 dddd A h:mm"},calendar:{sameDay:"오늘 LT",nextDay:"내일 LT",nextWeek:"dddd LT",lastDay:"어제 LT",lastWeek:"지난주 dddd LT",sameElse:"L"},relativeTime:{future:"%s 후",past:"%s 전",s:"몇 초",ss:"%d초",m:"1분",mm:"%d분",h:"한 시간",hh:"%d시간",d:"하루",dd:"%d일",M:"한 달",MM:"%d달",y:"일 년",yy:"%d년"},dayOfMonthOrdinalParse:/\d{1,2}(일|월|주)/,ordinal:function(e,a){switch(a){case"d":case"D":case"DDD":return e+"일";case"M":return e+"월";case"w":case"W":return e+"주";default:return e}},meridiemParse:/오전|오후/,isPM:function(e){return"오후"===e},meridiem:function(e,a,t){return e<12?"오전":"오후"}})})},function(e,a,t){Object.defineProperty(a,"__esModule",{value:!0}),t(154);var n=t(1);n.datepickerLocale("lb","lb",{closeText:"Fäerdeg",prevText:"Zréck",nextText:"Weider",currentText:"Haut",monthNames:["Januar","Februar","Mäerz","Abrëll","Mee","Juni","Juli","August","September","Oktober","November","Dezember"],monthNamesShort:["Jan","Feb","Mäe","Abr","Mee","Jun","Jul","Aug","Sep","Okt","Nov","Dez"],dayNames:["Sonndeg","Méindeg","Dënschdeg","Mëttwoch","Donneschdeg","Freideg","Samschdeg"],dayNamesShort:["Son","Méi","Dën","Mët","Don","Fre","Sam"],dayNamesMin:["So","Mé","Dë","Më","Do","Fr","Sa"],weekHeader:"W",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),n.locale("lb",{buttonText:{month:"Mount",week:"Woch",day:"Dag",list:"Terminiwwersiicht"},allDayText:"Ganzen Dag",eventLimitText:"méi",noEventsMessage:"Nee Evenementer ze affichéieren"})},function(e,a,t){!function(e,a){a(t(0))}(0,function(e){function a(e,a,t,n){var r={m:["eng Minutt","enger Minutt"],h:["eng Stonn","enger Stonn"],d:["een Dag","engem Dag"],M:["ee Mount","engem Mount"],y:["ee Joer","engem Joer"]};return a?r[t][0]:r[t][1]}function t(e){return r(e.substr(0,e.indexOf(" ")))?"a "+e:"an "+e}function n(e){return r(e.substr(0,e.indexOf(" ")))?"viru "+e:"virun "+e}function r(e){if(e=parseInt(e,10),isNaN(e))return!1;if(e<0)return!0;if(e<10)return 4<=e&&e<=7;if(e<100){var a=e%10,t=e/10;return r(0===a?t:a)}if(e<1e4){for(;e>=10;)e/=10;return r(e)}return e/=1e3,r(e)}return e.defineLocale("lb",{months:"Januar_Februar_Mäerz_Abrëll_Mee_Juni_Juli_August_September_Oktober_November_Dezember".split("_"),monthsShort:"Jan._Febr._Mrz._Abr._Mee_Jun._Jul._Aug._Sept._Okt._Nov._Dez.".split("_"),monthsParseExact:!0,weekdays:"Sonndeg_Méindeg_Dënschdeg_Mëttwoch_Donneschdeg_Freideg_Samschdeg".split("_"),weekdaysShort:"So._Mé._Dë._Më._Do._Fr._Sa.".split("_"),weekdaysMin:"So_Mé_Dë_Më_Do_Fr_Sa".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"H:mm [Auer]",LTS:"H:mm:ss [Auer]",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY H:mm [Auer]",LLLL:"dddd, D. MMMM YYYY H:mm [Auer]"},calendar:{sameDay:"[Haut um] LT",sameElse:"L",nextDay:"[Muer um] LT",nextWeek:"dddd [um] LT",lastDay:"[Gëschter um] LT",lastWeek:function(){switch(this.day()){case 2:case 4:return"[Leschten] dddd [um] LT";default:return"[Leschte] dddd [um] LT"}}},relativeTime:{future:t,past:n,s:"e puer Sekonnen",ss:"%d Sekonnen",m:a,mm:"%d Minutten",h:a,hh:"%d Stonnen",d:a,dd:"%d Deeg",M:a,MM:"%d Méint",y:a,yy:"%d Joer"},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})})},function(e,a,t){Object.defineProperty(a,"__esModule",{value:!0}),t(156);var n=t(1);n.datepickerLocale("lt","lt",{closeText:"Uždaryti",prevText:"<Atgal",nextText:"Pirmyn>",currentText:"Šiandien",monthNames:["Sausis","Vasaris","Kovas","Balandis","Gegužė","Birželis","Liepa","Rugpjūtis","Rugsėjis","Spalis","Lapkritis","Gruodis"],monthNamesShort:["Sau","Vas","Kov","Bal","Geg","Bir","Lie","Rugp","Rugs","Spa","Lap","Gru"],dayNames:["sekmadienis","pirmadienis","antradienis","trečiadienis","ketvirtadienis","penktadienis","šeštadienis"],dayNamesShort:["sek","pir","ant","tre","ket","pen","šeš"],dayNamesMin:["Se","Pr","An","Tr","Ke","Pe","Še"],weekHeader:"SAV",dateFormat:"yy-mm-dd",firstDay:1,isRTL:!1,showMonthAfterYear:!0,yearSuffix:""}),n.locale("lt",{buttonText:{month:"Mėnuo",week:"Savaitė",day:"Diena",list:"Darbotvarkė"},allDayText:"Visą dieną",eventLimitText:"daugiau",noEventsMessage:"Nėra įvykių rodyti"})},function(e,a,t){!function(e,a){a(t(0))}(0,function(e){function a(e,a,t,n){return a?"kelios sekundės":n?"kelių sekundžių":"kelias sekundes"}function t(e,a,t,n){return a?r(t)[0]:n?r(t)[1]:r(t)[2]}function n(e){return e%10==0||e>10&&e<20}function r(e){return d[e].split("_")}function s(e,a,s,d){var i=e+" ";return 1===e?i+t(e,a,s[0],d):a?i+(n(e)?r(s)[1]:r(s)[0]):d?i+r(s)[1]:i+(n(e)?r(s)[1]:r(s)[2])}var d={ss:"sekundė_sekundžių_sekundes",m:"minutė_minutės_minutę",mm:"minutės_minučių_minutes",h:"valanda_valandos_valandą",hh:"valandos_valandų_valandas",d:"diena_dienos_dieną",dd:"dienos_dienų_dienas",M:"mėnuo_mėnesio_mėnesį",MM:"mėnesiai_mėnesių_mėnesius",y:"metai_metų_metus",yy:"metai_metų_metus"};return e.defineLocale("lt",{months:{format:"sausio_vasario_kovo_balandžio_gegužės_birželio_liepos_rugpjūčio_rugsėjo_spalio_lapkričio_gruodžio".split("_"),standalone:"sausis_vasaris_kovas_balandis_gegužė_birželis_liepa_rugpjūtis_rugsėjis_spalis_lapkritis_gruodis".split("_"),isFormat:/D[oD]?(\[[^\[\]]*\]|\s)+MMMM?|MMMM?(\[[^\[\]]*\]|\s)+D[oD]?/},monthsShort:"sau_vas_kov_bal_geg_bir_lie_rgp_rgs_spa_lap_grd".split("_"),weekdays:{format:"sekmadienį_pirmadienį_antradienį_trečiadienį_ketvirtadienį_penktadienį_šeštadienį".split("_"),standalone:"sekmadienis_pirmadienis_antradienis_trečiadienis_ketvirtadienis_penktadienis_šeštadienis".split("_"),isFormat:/dddd HH:mm/},weekdaysShort:"Sek_Pir_Ant_Tre_Ket_Pen_Šeš".split("_"),weekdaysMin:"S_P_A_T_K_Pn_Š".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"YYYY-MM-DD",LL:"YYYY [m.] MMMM D [d.]",LLL:"YYYY [m.] MMMM D [d.], HH:mm [val.]",LLLL:"YYYY [m.] MMMM D [d.], dddd, HH:mm [val.]",l:"YYYY-MM-DD",ll:"YYYY [m.] MMMM D [d.]",lll:"YYYY [m.] MMMM D [d.], HH:mm [val.]",llll:"YYYY [m.] MMMM D [d.], ddd, HH:mm [val.]"},calendar:{sameDay:"[Šiandien] LT",nextDay:"[Rytoj] LT",nextWeek:"dddd LT",lastDay:"[Vakar] LT",lastWeek:"[Praėjusį] dddd LT",sameElse:"L"},relativeTime:{future:"po %s",past:"prieš %s",s:a,ss:s,m:t,mm:s,h:t,hh:s,d:t,dd:s,M:t,MM:s,y:t,yy:s},dayOfMonthOrdinalParse:/\d{1,2}-oji/,ordinal:function(e){return e+"-oji"},week:{dow:1,doy:4}})})},function(e,a,t){Object.defineProperty(a,"__esModule",{value:!0}),t(158);var n=t(1);n.datepickerLocale("lv","lv",{closeText:"Aizvērt",prevText:"Iepr.",nextText:"Nāk.",currentText:"Šodien",monthNames:["Janvāris","Februāris","Marts","Aprīlis","Maijs","Jūnijs","Jūlijs","Augusts","Septembris","Oktobris","Novembris","Decembris"],monthNamesShort:["Jan","Feb","Mar","Apr","Mai","Jūn","Jūl","Aug","Sep","Okt","Nov","Dec"],dayNames:["svētdiena","pirmdiena","otrdiena","trešdiena","ceturtdiena","piektdiena","sestdiena"],dayNamesShort:["svt","prm","otr","tre","ctr","pkt","sst"],dayNamesMin:["Sv","Pr","Ot","Tr","Ct","Pk","Ss"],weekHeader:"Ned.",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),n.locale("lv",{buttonText:{month:"Mēnesis",week:"Nedēļa",day:"Diena",list:"Dienas kārtība"},allDayText:"Visu dienu",eventLimitText:function(e){return"+vēl "+e},noEventsMessage:"Nav notikumu"})},function(e,a,t){!function(e,a){a(t(0))}(0,function(e){function a(e,a,t){return t?a%10==1&&a%100!=11?e[2]:e[3]:a%10==1&&a%100!=11?e[0]:e[1]}function t(e,t,n){return e+" "+a(s[n],e,t)}function n(e,t,n){return a(s[n],e,t)}function r(e,a){return a?"dažas sekundes":"dažām sekundēm"}var s={ss:"sekundes_sekundēm_sekunde_sekundes".split("_"),m:"minūtes_minūtēm_minūte_minūtes".split("_"),mm:"minūtes_minūtēm_minūte_minūtes".split("_"),h:"stundas_stundām_stunda_stundas".split("_"),hh:"stundas_stundām_stunda_stundas".split("_"),d:"dienas_dienām_diena_dienas".split("_"),dd:"dienas_dienām_diena_dienas".split("_"),M:"mēneša_mēnešiem_mēnesis_mēneši".split("_"),MM:"mēneša_mēnešiem_mēnesis_mēneši".split("_"),y:"gada_gadiem_gads_gadi".split("_"),yy:"gada_gadiem_gads_gadi".split("_")};return e.defineLocale("lv",{months:"janvāris_februāris_marts_aprīlis_maijs_jūnijs_jūlijs_augusts_septembris_oktobris_novembris_decembris".split("_"),monthsShort:"jan_feb_mar_apr_mai_jūn_jūl_aug_sep_okt_nov_dec".split("_"),weekdays:"svētdiena_pirmdiena_otrdiena_trešdiena_ceturtdiena_piektdiena_sestdiena".split("_"),weekdaysShort:"Sv_P_O_T_C_Pk_S".split("_"),weekdaysMin:"Sv_P_O_T_C_Pk_S".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY.",LL:"YYYY. [gada] D. MMMM",LLL:"YYYY. [gada] D. MMMM, HH:mm",LLLL:"YYYY. [gada] D. MMMM, dddd, HH:mm"},calendar:{sameDay:"[Šodien pulksten] LT",nextDay:"[Rīt pulksten] LT",nextWeek:"dddd [pulksten] LT",lastDay:"[Vakar pulksten] LT",lastWeek:"[Pagājušā] dddd [pulksten] LT",sameElse:"L"},relativeTime:{future:"pēc %s",past:"pirms %s",s:r,ss:t,m:n,mm:t,h:n,hh:t,d:n,dd:t,M:n,MM:t,y:n,yy:t},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})})},function(e,a,t){Object.defineProperty(a,"__esModule",{value:!0}),t(160);var n=t(1);n.datepickerLocale("mk","mk",{closeText:"Затвори",prevText:"<",nextText:">",currentText:"Денес",monthNames:["Јануари","Февруари","Март","Април","Мај","Јуни","Јули","Август","Септември","Октомври","Ноември","Декември"],monthNamesShort:["Јан","Фев","Мар","Апр","Мај","Јун","Јул","Авг","Сеп","Окт","Ное","Дек"],dayNames:["Недела","Понеделник","Вторник","Среда","Четврток","Петок","Сабота"],dayNamesShort:["Нед","Пон","Вто","Сре","Чет","Пет","Саб"],dayNamesMin:["Не","По","Вт","Ср","Че","Пе","Са"],weekHeader:"Сед",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),n.locale("mk",{buttonText:{month:"Месец",week:"Недела",day:"Ден",list:"График"},allDayText:"Цел ден",eventLimitText:function(e){return"+повеќе "+e},noEventsMessage:"Нема настани за прикажување"})},function(e,a,t){!function(e,a){a(t(0))}(0,function(e){return e.defineLocale("mk",{months:"јануари_февруари_март_април_мај_јуни_јули_август_септември_октомври_ноември_декември".split("_"),monthsShort:"јан_фев_мар_апр_мај_јун_јул_авг_сеп_окт_ное_дек".split("_"),weekdays:"недела_понеделник_вторник_среда_четврток_петок_сабота".split("_"),weekdaysShort:"нед_пон_вто_сре_чет_пет_саб".split("_"),weekdaysMin:"нe_пo_вт_ср_че_пе_сa".split("_"),longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"D.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY H:mm",LLLL:"dddd, D MMMM YYYY H:mm"},calendar:{sameDay:"[Денес во] LT",nextDay:"[Утре во] LT",nextWeek:"[Во] dddd [во] LT",lastDay:"[Вчера во] LT",lastWeek:function(){switch(this.day()){case 0:case 3:case 6:return"[Изминатата] dddd [во] LT";case 1:case 2:case 4:case 5:return"[Изминатиот] dddd [во] LT"}},sameElse:"L"},relativeTime:{future:"после %s",past:"пред %s",s:"неколку секунди",ss:"%d секунди",m:"минута",mm:"%d минути",h:"час",hh:"%d часа",d:"ден",dd:"%d дена",M:"месец",MM:"%d месеци",y:"година",yy:"%d години"},dayOfMonthOrdinalParse:/\d{1,2}-(ев|ен|ти|ви|ри|ми)/,ordinal:function(e){var a=e%10,t=e%100;return 0===e?e+"-ев":0===t?e+"-ен":t>10&&t<20?e+"-ти":1===a?e+"-ви":2===a?e+"-ри":7===a||8===a?e+"-ми":e+"-ти"},week:{dow:1,doy:7}})})},function(e,a,t){Object.defineProperty(a,"__esModule",{value:!0}),t(162);var n=t(1);n.datepickerLocale("ms-my","ms",{closeText:"Tutup",prevText:"<Sebelum",nextText:"Selepas>",currentText:"hari ini",monthNames:["Januari","Februari","Mac","April","Mei","Jun","Julai","Ogos","September","Oktober","November","Disember"],monthNamesShort:["Jan","Feb","Mac","Apr","Mei","Jun","Jul","Ogo","Sep","Okt","Nov","Dis"],dayNames:["Ahad","Isnin","Selasa","Rabu","Khamis","Jumaat","Sabtu"],dayNamesShort:["Aha","Isn","Sel","Rab","kha","Jum","Sab"],dayNamesMin:["Ah","Is","Se","Ra","Kh","Ju","Sa"],weekHeader:"Mg",dateFormat:"dd/mm/yy",firstDay:0,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),n.locale("ms-my",{buttonText:{month:"Bulan",week:"Minggu",day:"Hari",list:"Agenda"},allDayText:"Sepanjang hari",eventLimitText:function(e){return"masih ada "+e+" acara"},noEventsMessage:"Tiada peristiwa untuk dipaparkan"})},function(e,a,t){!function(e,a){a(t(0))}(0,function(e){return e.defineLocale("ms-my",{months:"Januari_Februari_Mac_April_Mei_Jun_Julai_Ogos_September_Oktober_November_Disember".split("_"),monthsShort:"Jan_Feb_Mac_Apr_Mei_Jun_Jul_Ogs_Sep_Okt_Nov_Dis".split("_"),weekdays:"Ahad_Isnin_Selasa_Rabu_Khamis_Jumaat_Sabtu".split("_"),weekdaysShort:"Ahd_Isn_Sel_Rab_Kha_Jum_Sab".split("_"),weekdaysMin:"Ah_Is_Sl_Rb_Km_Jm_Sb".split("_"),longDateFormat:{LT:"HH.mm",LTS:"HH.mm.ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY [pukul] HH.mm",LLLL:"dddd, D MMMM YYYY [pukul] HH.mm"},meridiemParse:/pagi|tengahari|petang|malam/,meridiemHour:function(e,a){return 12===e&&(e=0),"pagi"===a?e:"tengahari"===a?e>=11?e:e+12:"petang"===a||"malam"===a?e+12:void 0},meridiem:function(e,a,t){return e<11?"pagi":e<15?"tengahari":e<19?"petang":"malam"},calendar:{sameDay:"[Hari ini pukul] LT",nextDay:"[Esok pukul] LT",nextWeek:"dddd [pukul] LT",lastDay:"[Kelmarin pukul] LT",lastWeek:"dddd [lepas pukul] LT",sameElse:"L"},relativeTime:{future:"dalam %s",past:"%s yang lepas",s:"beberapa saat",ss:"%d saat",m:"seminit",mm:"%d minit",h:"sejam",hh:"%d jam",d:"sehari",dd:"%d hari",M:"sebulan",MM:"%d bulan",y:"setahun",yy:"%d tahun"},week:{dow:1,doy:7}})})},function(e,a,t){Object.defineProperty(a,"__esModule",{value:!0}),t(164);var n=t(1);n.datepickerLocale("ms","ms",{closeText:"Tutup",prevText:"<Sebelum",nextText:"Selepas>",currentText:"hari ini",monthNames:["Januari","Februari","Mac","April","Mei","Jun","Julai","Ogos","September","Oktober","November","Disember"],monthNamesShort:["Jan","Feb","Mac","Apr","Mei","Jun","Jul","Ogo","Sep","Okt","Nov","Dis"],dayNames:["Ahad","Isnin","Selasa","Rabu","Khamis","Jumaat","Sabtu"],dayNamesShort:["Aha","Isn","Sel","Rab","kha","Jum","Sab"],dayNamesMin:["Ah","Is","Se","Ra","Kh","Ju","Sa"],weekHeader:"Mg",dateFormat:"dd/mm/yy",firstDay:0,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),n.locale("ms",{buttonText:{month:"Bulan",week:"Minggu",day:"Hari",list:"Agenda"},allDayText:"Sepanjang hari",eventLimitText:function(e){return"masih ada "+e+" acara"},noEventsMessage:"Tiada peristiwa untuk dipaparkan"})},function(e,a,t){!function(e,a){a(t(0))}(0,function(e){return e.defineLocale("ms",{months:"Januari_Februari_Mac_April_Mei_Jun_Julai_Ogos_September_Oktober_November_Disember".split("_"),monthsShort:"Jan_Feb_Mac_Apr_Mei_Jun_Jul_Ogs_Sep_Okt_Nov_Dis".split("_"),weekdays:"Ahad_Isnin_Selasa_Rabu_Khamis_Jumaat_Sabtu".split("_"),weekdaysShort:"Ahd_Isn_Sel_Rab_Kha_Jum_Sab".split("_"),weekdaysMin:"Ah_Is_Sl_Rb_Km_Jm_Sb".split("_"),longDateFormat:{LT:"HH.mm",LTS:"HH.mm.ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY [pukul] HH.mm",LLLL:"dddd, D MMMM YYYY [pukul] HH.mm"},meridiemParse:/pagi|tengahari|petang|malam/,meridiemHour:function(e,a){return 12===e&&(e=0),"pagi"===a?e:"tengahari"===a?e>=11?e:e+12:"petang"===a||"malam"===a?e+12:void 0},meridiem:function(e,a,t){return e<11?"pagi":e<15?"tengahari":e<19?"petang":"malam"},calendar:{sameDay:"[Hari ini pukul] LT",nextDay:"[Esok pukul] LT",nextWeek:"dddd [pukul] LT",lastDay:"[Kelmarin pukul] LT",lastWeek:"dddd [lepas pukul] LT",sameElse:"L"},relativeTime:{future:"dalam %s",past:"%s yang lepas",s:"beberapa saat",ss:"%d saat",m:"seminit",mm:"%d minit",h:"sejam",hh:"%d jam",d:"sehari",dd:"%d hari",M:"sebulan",MM:"%d bulan",y:"setahun",yy:"%d tahun"},week:{dow:1,doy:7}})})},function(e,a,t){Object.defineProperty(a,"__esModule",{value:!0}),t(166);var n=t(1);n.datepickerLocale("nb","nb",{closeText:"Lukk",prevText:"«Forrige",nextText:"Neste»",currentText:"I dag",monthNames:["januar","februar","mars","april","mai","juni","juli","august","september","oktober","november","desember"],monthNamesShort:["jan","feb","mar","apr","mai","jun","jul","aug","sep","okt","nov","des"],dayNamesShort:["søn","man","tir","ons","tor","fre","lør"],dayNames:["søndag","mandag","tirsdag","onsdag","torsdag","fredag","lørdag"],dayNamesMin:["sø","ma","ti","on","to","fr","lø"],weekHeader:"Uke",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),n.locale("nb",{buttonText:{month:"Måned",week:"Uke",day:"Dag",list:"Agenda"},allDayText:"Hele dagen",eventLimitText:"til",noEventsMessage:"Ingen hendelser å vise"})},function(e,a,t){!function(e,a){a(t(0))}(0,function(e){return e.defineLocale("nb",{months:"januar_februar_mars_april_mai_juni_juli_august_september_oktober_november_desember".split("_"),monthsShort:"jan._feb._mars_april_mai_juni_juli_aug._sep._okt._nov._des.".split("_"),monthsParseExact:!0,weekdays:"søndag_mandag_tirsdag_onsdag_torsdag_fredag_lørdag".split("_"),weekdaysShort:"sø._ma._ti._on._to._fr._lø.".split("_"),weekdaysMin:"sø_ma_ti_on_to_fr_lø".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY [kl.] HH:mm",LLLL:"dddd D. MMMM YYYY [kl.] HH:mm"},calendar:{sameDay:"[i dag kl.] LT",nextDay:"[i morgen kl.] LT",nextWeek:"dddd [kl.] LT",lastDay:"[i går kl.] LT",lastWeek:"[forrige] dddd [kl.] LT",sameElse:"L"},relativeTime:{future:"om %s",past:"%s siden",s:"noen sekunder",ss:"%d sekunder",m:"ett minutt",mm:"%d minutter",h:"en time",hh:"%d timer",d:"en dag",dd:"%d dager",M:"en måned",MM:"%d måneder",y:"ett år",yy:"%d år"},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})})},function(e,a,t){Object.defineProperty(a,"__esModule",{value:!0}),t(168);var n=t(1);n.datepickerLocale("nl-be","nl-BE",{closeText:"Sluiten",prevText:"←",nextText:"→",currentText:"Vandaag",monthNames:["januari","februari","maart","april","mei","juni","juli","augustus","september","oktober","november","december"],monthNamesShort:["jan","feb","mrt","apr","mei","jun","jul","aug","sep","okt","nov","dec"],dayNames:["zondag","maandag","dinsdag","woensdag","donderdag","vrijdag","zaterdag"],dayNamesShort:["zon","maa","din","woe","don","vri","zat"],dayNamesMin:["zo","ma","di","wo","do","vr","za"],weekHeader:"Wk",dateFormat:"dd/mm/yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),n.locale("nl-be",{buttonText:{month:"Maand",week:"Week",day:"Dag",list:"Agenda"},allDayText:"Hele dag",eventLimitText:"extra",noEventsMessage:"Geen evenementen om te laten zien"})},function(e,a,t){!function(e,a){a(t(0))}(0,function(e){var a="jan._feb._mrt._apr._mei_jun._jul._aug._sep._okt._nov._dec.".split("_"),t="jan_feb_mrt_apr_mei_jun_jul_aug_sep_okt_nov_dec".split("_"),n=[/^jan/i,/^feb/i,/^maart|mrt.?$/i,/^apr/i,/^mei$/i,/^jun[i.]?$/i,/^jul[i.]?$/i,/^aug/i,/^sep/i,/^okt/i,/^nov/i,/^dec/i],r=/^(januari|februari|maart|april|mei|april|ju[nl]i|augustus|september|oktober|november|december|jan\.?|feb\.?|mrt\.?|apr\.?|ju[nl]\.?|aug\.?|sep\.?|okt\.?|nov\.?|dec\.?)/i;return e.defineLocale("nl-be",{months:"januari_februari_maart_april_mei_juni_juli_augustus_september_oktober_november_december".split("_"),monthsShort:function(e,n){return e?/-MMM-/.test(n)?t[e.month()]:a[e.month()]:a},monthsRegex:r,monthsShortRegex:r,monthsStrictRegex:/^(januari|februari|maart|mei|ju[nl]i|april|augustus|september|oktober|november|december)/i,monthsShortStrictRegex:/^(jan\.?|feb\.?|mrt\.?|apr\.?|mei|ju[nl]\.?|aug\.?|sep\.?|okt\.?|nov\.?|dec\.?)/i,monthsParse:n,longMonthsParse:n,shortMonthsParse:n,weekdays:"zondag_maandag_dinsdag_woensdag_donderdag_vrijdag_zaterdag".split("_"),weekdaysShort:"zo._ma._di._wo._do._vr._za.".split("_"),weekdaysMin:"zo_ma_di_wo_do_vr_za".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[vandaag om] LT",nextDay:"[morgen om] LT",nextWeek:"dddd [om] LT",lastDay:"[gisteren om] LT",lastWeek:"[afgelopen] dddd [om] LT",sameElse:"L"},relativeTime:{future:"over %s",past:"%s geleden",s:"een paar seconden",ss:"%d seconden",m:"één minuut",mm:"%d minuten",h:"één uur",hh:"%d uur",d:"één dag",dd:"%d dagen",M:"één maand",MM:"%d maanden",y:"één jaar",yy:"%d jaar"},dayOfMonthOrdinalParse:/\d{1,2}(ste|de)/,ordinal:function(e){return e+(1===e||8===e||e>=20?"ste":"de")},week:{dow:1,doy:4}})})},function(e,a,t){Object.defineProperty(a,"__esModule",{value:!0}),t(170);var n=t(1);n.datepickerLocale("nl","nl",{closeText:"Sluiten",prevText:"←",nextText:"→",currentText:"Vandaag",monthNames:["januari","februari","maart","april","mei","juni","juli","augustus","september","oktober","november","december"],monthNamesShort:["jan","feb","mrt","apr","mei","jun","jul","aug","sep","okt","nov","dec"],dayNames:["zondag","maandag","dinsdag","woensdag","donderdag","vrijdag","zaterdag"],dayNamesShort:["zon","maa","din","woe","don","vri","zat"],dayNamesMin:["zo","ma","di","wo","do","vr","za"],weekHeader:"Wk",dateFormat:"dd-mm-yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),n.locale("nl",{buttonText:{year:"Jaar",month:"Maand",week:"Week",day:"Dag",list:"Agenda"},allDayText:"Hele dag",eventLimitText:"extra",noEventsMessage:"Geen evenementen om te laten zien"})},function(e,a,t){!function(e,a){a(t(0))}(0,function(e){var a="jan._feb._mrt._apr._mei_jun._jul._aug._sep._okt._nov._dec.".split("_"),t="jan_feb_mrt_apr_mei_jun_jul_aug_sep_okt_nov_dec".split("_"),n=[/^jan/i,/^feb/i,/^maart|mrt.?$/i,/^apr/i,/^mei$/i,/^jun[i.]?$/i,/^jul[i.]?$/i,/^aug/i,/^sep/i,/^okt/i,/^nov/i,/^dec/i],r=/^(januari|februari|maart|april|mei|april|ju[nl]i|augustus|september|oktober|november|december|jan\.?|feb\.?|mrt\.?|apr\.?|ju[nl]\.?|aug\.?|sep\.?|okt\.?|nov\.?|dec\.?)/i;return e.defineLocale("nl",{months:"januari_februari_maart_april_mei_juni_juli_augustus_september_oktober_november_december".split("_"),monthsShort:function(e,n){return e?/-MMM-/.test(n)?t[e.month()]:a[e.month()]:a},monthsRegex:r,monthsShortRegex:r,monthsStrictRegex:/^(januari|februari|maart|mei|ju[nl]i|april|augustus|september|oktober|november|december)/i,monthsShortStrictRegex:/^(jan\.?|feb\.?|mrt\.?|apr\.?|mei|ju[nl]\.?|aug\.?|sep\.?|okt\.?|nov\.?|dec\.?)/i,monthsParse:n,longMonthsParse:n,shortMonthsParse:n,weekdays:"zondag_maandag_dinsdag_woensdag_donderdag_vrijdag_zaterdag".split("_"),weekdaysShort:"zo._ma._di._wo._do._vr._za.".split("_"),weekdaysMin:"zo_ma_di_wo_do_vr_za".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD-MM-YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[vandaag om] LT",nextDay:"[morgen om] LT",nextWeek:"dddd [om] LT",lastDay:"[gisteren om] LT",lastWeek:"[afgelopen] dddd [om] LT",sameElse:"L"},relativeTime:{future:"over %s",past:"%s geleden",s:"een paar seconden",ss:"%d seconden",m:"één minuut",mm:"%d minuten",h:"één uur",hh:"%d uur",d:"één dag",dd:"%d dagen",M:"één maand",MM:"%d maanden",y:"één jaar",yy:"%d jaar"},dayOfMonthOrdinalParse:/\d{1,2}(ste|de)/,ordinal:function(e){return e+(1===e||8===e||e>=20?"ste":"de")},week:{dow:1,doy:4}})})},function(e,a,t){Object.defineProperty(a,"__esModule",{value:!0}),t(172);var n=t(1);n.datepickerLocale("nn","nn",{closeText:"Lukk",prevText:"«Førre",nextText:"Neste»",currentText:"I dag",monthNames:["januar","februar","mars","april","mai","juni","juli","august","september","oktober","november","desember"],monthNamesShort:["jan","feb","mar","apr","mai","jun","jul","aug","sep","okt","nov","des"],dayNamesShort:["sun","mån","tys","ons","tor","fre","lau"],dayNames:["sundag","måndag","tysdag","onsdag","torsdag","fredag","laurdag"],dayNamesMin:["su","må","ty","on","to","fr","la"],weekHeader:"Veke",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),n.locale("nn",{buttonText:{month:"Månad",week:"Veke",day:"Dag",list:"Agenda"},allDayText:"Heile dagen",eventLimitText:"til",noEventsMessage:"Ingen hendelser å vise"})},function(e,a,t){!function(e,a){a(t(0))}(0,function(e){return e.defineLocale("nn",{months:"januar_februar_mars_april_mai_juni_juli_august_september_oktober_november_desember".split("_"),monthsShort:"jan_feb_mar_apr_mai_jun_jul_aug_sep_okt_nov_des".split("_"),weekdays:"sundag_måndag_tysdag_onsdag_torsdag_fredag_laurdag".split("_"),weekdaysShort:"sun_mån_tys_ons_tor_fre_lau".split("_"),weekdaysMin:"su_må_ty_on_to_fr_lø".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY [kl.] H:mm",LLLL:"dddd D. MMMM YYYY [kl.] HH:mm"},calendar:{sameDay:"[I dag klokka] LT",nextDay:"[I morgon klokka] LT",nextWeek:"dddd [klokka] LT",lastDay:"[I går klokka] LT",lastWeek:"[Føregåande] dddd [klokka] LT",sameElse:"L"},relativeTime:{future:"om %s",past:"%s sidan",s:"nokre sekund",ss:"%d sekund",m:"eit minutt",mm:"%d minutt",h:"ein time",hh:"%d timar",d:"ein dag",dd:"%d dagar",M:"ein månad",MM:"%d månader",y:"eit år",yy:"%d år"},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})})},function(e,a,t){Object.defineProperty(a,"__esModule",{value:!0}),t(174);var n=t(1);n.datepickerLocale("pl","pl",{closeText:"Zamknij",prevText:"<Poprzedni",nextText:"Następny>",currentText:"Dziś",monthNames:["Styczeń","Luty","Marzec","Kwiecień","Maj","Czerwiec","Lipiec","Sierpień","Wrzesień","Październik","Listopad","Grudzień"],monthNamesShort:["Sty","Lu","Mar","Kw","Maj","Cze","Lip","Sie","Wrz","Pa","Lis","Gru"],dayNames:["Niedziela","Poniedziałek","Wtorek","Środa","Czwartek","Piątek","Sobota"],dayNamesShort:["Nie","Pn","Wt","Śr","Czw","Pt","So"],dayNamesMin:["N","Pn","Wt","Śr","Cz","Pt","So"],weekHeader:"Tydz",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),n.locale("pl",{buttonText:{month:"Miesiąc",week:"Tydzień",day:"Dzień",list:"Plan dnia"},allDayText:"Cały dzień",eventLimitText:"więcej",noEventsMessage:"Brak wydarzeń do wyświetlenia"})},function(e,a,t){!function(e,a){a(t(0))}(0,function(e){function a(e){return e%10<5&&e%10>1&&~~(e/10)%10!=1}function t(e,t,n){var r=e+" ";switch(n){case"ss":return r+(a(e)?"sekundy":"sekund");case"m":return t?"minuta":"minutę";case"mm":return r+(a(e)?"minuty":"minut");case"h":return t?"godzina":"godzinę";case"hh":return r+(a(e)?"godziny":"godzin");case"MM":return r+(a(e)?"miesiące":"miesięcy");case"yy":return r+(a(e)?"lata":"lat")}}var n="styczeń_luty_marzec_kwiecień_maj_czerwiec_lipiec_sierpień_wrzesień_październik_listopad_grudzień".split("_"),r="stycznia_lutego_marca_kwietnia_maja_czerwca_lipca_sierpnia_września_października_listopada_grudnia".split("_");return e.defineLocale("pl",{months:function(e,a){return e?""===a?"("+r[e.month()]+"|"+n[e.month()]+")":/D MMMM/.test(a)?r[e.month()]:n[e.month()]:n},monthsShort:"sty_lut_mar_kwi_maj_cze_lip_sie_wrz_paź_lis_gru".split("_"),weekdays:"niedziela_poniedziałek_wtorek_środa_czwartek_piątek_sobota".split("_"),weekdaysShort:"ndz_pon_wt_śr_czw_pt_sob".split("_"),weekdaysMin:"Nd_Pn_Wt_Śr_Cz_Pt_So".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[Dziś o] LT",nextDay:"[Jutro o] LT",nextWeek:function(){switch(this.day()){case 0:return"[W niedzielę o] LT";case 2:return"[We wtorek o] LT";case 3:return"[W środę o] LT";case 6:return"[W sobotę o] LT";default:return"[W] dddd [o] LT"}},lastDay:"[Wczoraj o] LT",lastWeek:function(){switch(this.day()){case 0:return"[W zeszłą niedzielę o] LT";case 3:return"[W zeszłą środę o] LT";case 6:return"[W zeszłą sobotę o] LT";default:return"[W zeszły] dddd [o] LT"}},sameElse:"L"},relativeTime:{future:"za %s",past:"%s temu",s:"kilka sekund",ss:t,m:t,mm:t,h:t,hh:t,d:"1 dzień",dd:"%d dni",M:"miesiąc",MM:t,y:"rok",yy:t},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})})},function(e,a,t){Object.defineProperty(a,"__esModule",{value:!0}),t(176);var n=t(1);n.datepickerLocale("pt-br","pt-BR",{closeText:"Fechar",prevText:"<Anterior",nextText:"Próximo>",currentText:"Hoje",monthNames:["Janeiro","Fevereiro","Março","Abril","Maio","Junho","Julho","Agosto","Setembro","Outubro","Novembro","Dezembro"],monthNamesShort:["Jan","Fev","Mar","Abr","Mai","Jun","Jul","Ago","Set","Out","Nov","Dez"],dayNames:["Domingo","Segunda-feira","Terça-feira","Quarta-feira","Quinta-feira","Sexta-feira","Sábado"],dayNamesShort:["Dom","Seg","Ter","Qua","Qui","Sex","Sáb"],dayNamesMin:["Dom","Seg","Ter","Qua","Qui","Sex","Sáb"],weekHeader:"Sm",dateFormat:"dd/mm/yy",firstDay:0,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),n.locale("pt-br",{buttonText:{month:"Mês",week:"Semana",day:"Dia",list:"Compromissos"},allDayText:"dia inteiro",eventLimitText:function(e){return"mais +"+e},noEventsMessage:"Não há eventos para mostrar"})},function(e,a,t){!function(e,a){a(t(0))}(0,function(e){return e.defineLocale("pt-br",{months:"janeiro_fevereiro_março_abril_maio_junho_julho_agosto_setembro_outubro_novembro_dezembro".split("_"),monthsShort:"jan_fev_mar_abr_mai_jun_jul_ago_set_out_nov_dez".split("_"),weekdays:"Domingo_Segunda-feira_Terça-feira_Quarta-feira_Quinta-feira_Sexta-feira_Sábado".split("_"),weekdaysShort:"Dom_Seg_Ter_Qua_Qui_Sex_Sáb".split("_"),weekdaysMin:"Do_2ª_3ª_4ª_5ª_6ª_Sá".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D [de] MMMM [de] YYYY",LLL:"D [de] MMMM [de] YYYY [às] HH:mm", +LLLL:"dddd, D [de] MMMM [de] YYYY [às] HH:mm"},calendar:{sameDay:"[Hoje às] LT",nextDay:"[Amanhã às] LT",nextWeek:"dddd [às] LT",lastDay:"[Ontem às] LT",lastWeek:function(){return 0===this.day()||6===this.day()?"[Último] dddd [às] LT":"[Última] dddd [às] LT"},sameElse:"L"},relativeTime:{future:"em %s",past:"há %s",s:"poucos segundos",ss:"%d segundos",m:"um minuto",mm:"%d minutos",h:"uma hora",hh:"%d horas",d:"um dia",dd:"%d dias",M:"um mês",MM:"%d meses",y:"um ano",yy:"%d anos"},dayOfMonthOrdinalParse:/\d{1,2}º/,ordinal:"%dº"})})},function(e,a,t){Object.defineProperty(a,"__esModule",{value:!0}),t(178);var n=t(1);n.datepickerLocale("pt","pt",{closeText:"Fechar",prevText:"Anterior",nextText:"Seguinte",currentText:"Hoje",monthNames:["Janeiro","Fevereiro","Março","Abril","Maio","Junho","Julho","Agosto","Setembro","Outubro","Novembro","Dezembro"],monthNamesShort:["Jan","Fev","Mar","Abr","Mai","Jun","Jul","Ago","Set","Out","Nov","Dez"],dayNames:["Domingo","Segunda-feira","Terça-feira","Quarta-feira","Quinta-feira","Sexta-feira","Sábado"],dayNamesShort:["Dom","Seg","Ter","Qua","Qui","Sex","Sáb"],dayNamesMin:["Dom","Seg","Ter","Qua","Qui","Sex","Sáb"],weekHeader:"Sem",dateFormat:"dd/mm/yy",firstDay:0,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),n.locale("pt",{buttonText:{month:"Mês",week:"Semana",day:"Dia",list:"Agenda"},allDayText:"Todo o dia",eventLimitText:"mais",noEventsMessage:"Não há eventos para mostrar"})},function(e,a,t){!function(e,a){a(t(0))}(0,function(e){return e.defineLocale("pt",{months:"janeiro_fevereiro_março_abril_maio_junho_julho_agosto_setembro_outubro_novembro_dezembro".split("_"),monthsShort:"jan_fev_mar_abr_mai_jun_jul_ago_set_out_nov_dez".split("_"),weekdays:"Domingo_Segunda-feira_Terça-feira_Quarta-feira_Quinta-feira_Sexta-feira_Sábado".split("_"),weekdaysShort:"Dom_Seg_Ter_Qua_Qui_Sex_Sáb".split("_"),weekdaysMin:"Do_2ª_3ª_4ª_5ª_6ª_Sá".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D [de] MMMM [de] YYYY",LLL:"D [de] MMMM [de] YYYY HH:mm",LLLL:"dddd, D [de] MMMM [de] YYYY HH:mm"},calendar:{sameDay:"[Hoje às] LT",nextDay:"[Amanhã às] LT",nextWeek:"dddd [às] LT",lastDay:"[Ontem às] LT",lastWeek:function(){return 0===this.day()||6===this.day()?"[Último] dddd [às] LT":"[Última] dddd [às] LT"},sameElse:"L"},relativeTime:{future:"em %s",past:"há %s",s:"segundos",ss:"%d segundos",m:"um minuto",mm:"%d minutos",h:"uma hora",hh:"%d horas",d:"um dia",dd:"%d dias",M:"um mês",MM:"%d meses",y:"um ano",yy:"%d anos"},dayOfMonthOrdinalParse:/\d{1,2}º/,ordinal:"%dº",week:{dow:1,doy:4}})})},function(e,a,t){Object.defineProperty(a,"__esModule",{value:!0}),t(180);var n=t(1);n.datepickerLocale("ro","ro",{closeText:"Închide",prevText:"« Luna precedentă",nextText:"Luna următoare »",currentText:"Azi",monthNames:["Ianuarie","Februarie","Martie","Aprilie","Mai","Iunie","Iulie","August","Septembrie","Octombrie","Noiembrie","Decembrie"],monthNamesShort:["Ian","Feb","Mar","Apr","Mai","Iun","Iul","Aug","Sep","Oct","Nov","Dec"],dayNames:["Duminică","Luni","Marţi","Miercuri","Joi","Vineri","Sâmbătă"],dayNamesShort:["Dum","Lun","Mar","Mie","Joi","Vin","Sâm"],dayNamesMin:["Du","Lu","Ma","Mi","Jo","Vi","Sâ"],weekHeader:"Săpt",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),n.locale("ro",{buttonText:{prev:"precedentă",next:"următoare",month:"Lună",week:"Săptămână",day:"Zi",list:"Agendă"},allDayText:"Toată ziua",eventLimitText:function(e){return"+alte "+e},noEventsMessage:"Nu există evenimente de afișat"})},function(e,a,t){!function(e,a){a(t(0))}(0,function(e){function a(e,a,t){var n={ss:"secunde",mm:"minute",hh:"ore",dd:"zile",MM:"luni",yy:"ani"},r=" ";return(e%100>=20||e>=100&&e%100==0)&&(r=" de "),e+r+n[t]}return e.defineLocale("ro",{months:"ianuarie_februarie_martie_aprilie_mai_iunie_iulie_august_septembrie_octombrie_noiembrie_decembrie".split("_"),monthsShort:"ian._febr._mart._apr._mai_iun._iul._aug._sept._oct._nov._dec.".split("_"),monthsParseExact:!0,weekdays:"duminică_luni_marți_miercuri_joi_vineri_sâmbătă".split("_"),weekdaysShort:"Dum_Lun_Mar_Mie_Joi_Vin_Sâm".split("_"),weekdaysMin:"Du_Lu_Ma_Mi_Jo_Vi_Sâ".split("_"),longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY H:mm",LLLL:"dddd, D MMMM YYYY H:mm"},calendar:{sameDay:"[azi la] LT",nextDay:"[mâine la] LT",nextWeek:"dddd [la] LT",lastDay:"[ieri la] LT",lastWeek:"[fosta] dddd [la] LT",sameElse:"L"},relativeTime:{future:"peste %s",past:"%s în urmă",s:"câteva secunde",ss:a,m:"un minut",mm:a,h:"o oră",hh:a,d:"o zi",dd:a,M:"o lună",MM:a,y:"un an",yy:a},week:{dow:1,doy:7}})})},function(e,a,t){Object.defineProperty(a,"__esModule",{value:!0}),t(182);var n=t(1);n.datepickerLocale("ru","ru",{closeText:"Закрыть",prevText:"<Пред",nextText:"След>",currentText:"Сегодня",monthNames:["Январь","Февраль","Март","Апрель","Май","Июнь","Июль","Август","Сентябрь","Октябрь","Ноябрь","Декабрь"],monthNamesShort:["Янв","Фев","Мар","Апр","Май","Июн","Июл","Авг","Сен","Окт","Ноя","Дек"],dayNames:["воскресенье","понедельник","вторник","среда","четверг","пятница","суббота"],dayNamesShort:["вск","пнд","втр","срд","чтв","птн","сбт"],dayNamesMin:["Вс","Пн","Вт","Ср","Чт","Пт","Сб"],weekHeader:"Нед",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),n.locale("ru",{buttonText:{month:"Месяц",week:"Неделя",day:"День",list:"Повестка дня"},allDayText:"Весь день",eventLimitText:function(e){return"+ ещё "+e},noEventsMessage:"Нет событий для отображения"})},function(e,a,t){!function(e,a){a(t(0))}(0,function(e){function a(e,a){var t=e.split("_");return a%10==1&&a%100!=11?t[0]:a%10>=2&&a%10<=4&&(a%100<10||a%100>=20)?t[1]:t[2]}function t(e,t,n){var r={ss:t?"секунда_секунды_секунд":"секунду_секунды_секунд",mm:t?"минута_минуты_минут":"минуту_минуты_минут",hh:"час_часа_часов",dd:"день_дня_дней",MM:"месяц_месяца_месяцев",yy:"год_года_лет"};return"m"===n?t?"минута":"минуту":e+" "+a(r[n],+e)}var n=[/^янв/i,/^фев/i,/^мар/i,/^апр/i,/^ма[йя]/i,/^июн/i,/^июл/i,/^авг/i,/^сен/i,/^окт/i,/^ноя/i,/^дек/i];return e.defineLocale("ru",{months:{format:"января_февраля_марта_апреля_мая_июня_июля_августа_сентября_октября_ноября_декабря".split("_"),standalone:"январь_февраль_март_апрель_май_июнь_июль_август_сентябрь_октябрь_ноябрь_декабрь".split("_")},monthsShort:{format:"янв._февр._мар._апр._мая_июня_июля_авг._сент._окт._нояб._дек.".split("_"),standalone:"янв._февр._март_апр._май_июнь_июль_авг._сент._окт._нояб._дек.".split("_")},weekdays:{standalone:"воскресенье_понедельник_вторник_среда_четверг_пятница_суббота".split("_"),format:"воскресенье_понедельник_вторник_среду_четверг_пятницу_субботу".split("_"),isFormat:/\[ ?[Вв] ?(?:прошлую|следующую|эту)? ?\] ?dddd/},weekdaysShort:"вс_пн_вт_ср_чт_пт_сб".split("_"),weekdaysMin:"вс_пн_вт_ср_чт_пт_сб".split("_"),monthsParse:n,longMonthsParse:n,shortMonthsParse:n,monthsRegex:/^(январ[ья]|янв\.?|феврал[ья]|февр?\.?|марта?|мар\.?|апрел[ья]|апр\.?|ма[йя]|июн[ья]|июн\.?|июл[ья]|июл\.?|августа?|авг\.?|сентябр[ья]|сент?\.?|октябр[ья]|окт\.?|ноябр[ья]|нояб?\.?|декабр[ья]|дек\.?)/i,monthsShortRegex:/^(январ[ья]|янв\.?|феврал[ья]|февр?\.?|марта?|мар\.?|апрел[ья]|апр\.?|ма[йя]|июн[ья]|июн\.?|июл[ья]|июл\.?|августа?|авг\.?|сентябр[ья]|сент?\.?|октябр[ья]|окт\.?|ноябр[ья]|нояб?\.?|декабр[ья]|дек\.?)/i,monthsStrictRegex:/^(январ[яь]|феврал[яь]|марта?|апрел[яь]|ма[яй]|июн[яь]|июл[яь]|августа?|сентябр[яь]|октябр[яь]|ноябр[яь]|декабр[яь])/i,monthsShortStrictRegex:/^(янв\.|февр?\.|мар[т.]|апр\.|ма[яй]|июн[ья.]|июл[ья.]|авг\.|сент?\.|окт\.|нояб?\.|дек\.)/i,longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY г.",LLL:"D MMMM YYYY г., H:mm",LLLL:"dddd, D MMMM YYYY г., H:mm"},calendar:{sameDay:"[Сегодня в] LT",nextDay:"[Завтра в] LT",lastDay:"[Вчера в] LT",nextWeek:function(e){if(e.week()===this.week())return 2===this.day()?"[Во] dddd [в] LT":"[В] dddd [в] LT";switch(this.day()){case 0:return"[В следующее] dddd [в] LT";case 1:case 2:case 4:return"[В следующий] dddd [в] LT";case 3:case 5:case 6:return"[В следующую] dddd [в] LT"}},lastWeek:function(e){if(e.week()===this.week())return 2===this.day()?"[Во] dddd [в] LT":"[В] dddd [в] LT";switch(this.day()){case 0:return"[В прошлое] dddd [в] LT";case 1:case 2:case 4:return"[В прошлый] dddd [в] LT";case 3:case 5:case 6:return"[В прошлую] dddd [в] LT"}},sameElse:"L"},relativeTime:{future:"через %s",past:"%s назад",s:"несколько секунд",ss:t,m:t,mm:t,h:"час",hh:t,d:"день",dd:t,M:"месяц",MM:t,y:"год",yy:t},meridiemParse:/ночи|утра|дня|вечера/i,isPM:function(e){return/^(дня|вечера)$/.test(e)},meridiem:function(e,a,t){return e<4?"ночи":e<12?"утра":e<17?"дня":"вечера"},dayOfMonthOrdinalParse:/\d{1,2}-(й|го|я)/,ordinal:function(e,a){switch(a){case"M":case"d":case"DDD":return e+"-й";case"D":return e+"-го";case"w":case"W":return e+"-я";default:return e}},week:{dow:1,doy:4}})})},function(e,a,t){Object.defineProperty(a,"__esModule",{value:!0}),t(184);var n=t(1);n.datepickerLocale("sk","sk",{closeText:"Zavrieť",prevText:"<Predchádzajúci",nextText:"Nasledujúci>",currentText:"Dnes",monthNames:["január","február","marec","apríl","máj","jún","júl","august","september","október","november","december"],monthNamesShort:["Jan","Feb","Mar","Apr","Máj","Jún","Júl","Aug","Sep","Okt","Nov","Dec"],dayNames:["nedeľa","pondelok","utorok","streda","štvrtok","piatok","sobota"],dayNamesShort:["Ned","Pon","Uto","Str","Štv","Pia","Sob"],dayNamesMin:["Ne","Po","Ut","St","Št","Pia","So"],weekHeader:"Ty",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),n.locale("sk",{buttonText:{month:"Mesiac",week:"Týždeň",day:"Deň",list:"Rozvrh"},allDayText:"Celý deň",eventLimitText:function(e){return"+ďalšie: "+e},noEventsMessage:"Žiadne akcie na zobrazenie"})},function(e,a,t){!function(e,a){a(t(0))}(0,function(e){function a(e){return e>1&&e<5}function t(e,t,n,r){var s=e+" ";switch(n){case"s":return t||r?"pár sekúnd":"pár sekundami";case"ss":return t||r?s+(a(e)?"sekundy":"sekúnd"):s+"sekundami";case"m":return t?"minúta":r?"minútu":"minútou";case"mm":return t||r?s+(a(e)?"minúty":"minút"):s+"minútami";case"h":return t?"hodina":r?"hodinu":"hodinou";case"hh":return t||r?s+(a(e)?"hodiny":"hodín"):s+"hodinami";case"d":return t||r?"deň":"dňom";case"dd":return t||r?s+(a(e)?"dni":"dní"):s+"dňami";case"M":return t||r?"mesiac":"mesiacom";case"MM":return t||r?s+(a(e)?"mesiace":"mesiacov"):s+"mesiacmi";case"y":return t||r?"rok":"rokom";case"yy":return t||r?s+(a(e)?"roky":"rokov"):s+"rokmi"}}var n="január_február_marec_apríl_máj_jún_júl_august_september_október_november_december".split("_"),r="jan_feb_mar_apr_máj_jún_júl_aug_sep_okt_nov_dec".split("_");return e.defineLocale("sk",{months:n,monthsShort:r,weekdays:"nedeľa_pondelok_utorok_streda_štvrtok_piatok_sobota".split("_"),weekdaysShort:"ne_po_ut_st_št_pi_so".split("_"),weekdaysMin:"ne_po_ut_st_št_pi_so".split("_"),longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY H:mm",LLLL:"dddd D. MMMM YYYY H:mm"},calendar:{sameDay:"[dnes o] LT",nextDay:"[zajtra o] LT",nextWeek:function(){switch(this.day()){case 0:return"[v nedeľu o] LT";case 1:case 2:return"[v] dddd [o] LT";case 3:return"[v stredu o] LT";case 4:return"[vo štvrtok o] LT";case 5:return"[v piatok o] LT";case 6:return"[v sobotu o] LT"}},lastDay:"[včera o] LT",lastWeek:function(){switch(this.day()){case 0:return"[minulú nedeľu o] LT";case 1:case 2:return"[minulý] dddd [o] LT";case 3:return"[minulú stredu o] LT";case 4:case 5:return"[minulý] dddd [o] LT";case 6:return"[minulú sobotu o] LT"}},sameElse:"L"},relativeTime:{future:"za %s",past:"pred %s",s:t,ss:t,m:t,mm:t,h:t,hh:t,d:t,dd:t,M:t,MM:t,y:t,yy:t},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})})},function(e,a,t){Object.defineProperty(a,"__esModule",{value:!0}),t(186);var n=t(1);n.datepickerLocale("sl","sl",{closeText:"Zapri",prevText:"<Prejšnji",nextText:"Naslednji>",currentText:"Trenutni",monthNames:["Januar","Februar","Marec","April","Maj","Junij","Julij","Avgust","September","Oktober","November","December"],monthNamesShort:["Jan","Feb","Mar","Apr","Maj","Jun","Jul","Avg","Sep","Okt","Nov","Dec"],dayNames:["Nedelja","Ponedeljek","Torek","Sreda","Četrtek","Petek","Sobota"],dayNamesShort:["Ned","Pon","Tor","Sre","Čet","Pet","Sob"],dayNamesMin:["Ne","Po","To","Sr","Če","Pe","So"],weekHeader:"Teden",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),n.locale("sl",{buttonText:{month:"Mesec",week:"Teden",day:"Dan",list:"Dnevni red"},allDayText:"Ves dan",eventLimitText:"več",noEventsMessage:"Ni dogodkov za prikaz"})},function(e,a,t){!function(e,a){a(t(0))}(0,function(e){function a(e,a,t,n){var r=e+" ";switch(t){case"s":return a||n?"nekaj sekund":"nekaj sekundami";case"ss":return r+=1===e?a?"sekundo":"sekundi":2===e?a||n?"sekundi":"sekundah":e<5?a||n?"sekunde":"sekundah":"sekund";case"m":return a?"ena minuta":"eno minuto";case"mm":return r+=1===e?a?"minuta":"minuto":2===e?a||n?"minuti":"minutama":e<5?a||n?"minute":"minutami":a||n?"minut":"minutami";case"h":return a?"ena ura":"eno uro";case"hh":return r+=1===e?a?"ura":"uro":2===e?a||n?"uri":"urama":e<5?a||n?"ure":"urami":a||n?"ur":"urami";case"d":return a||n?"en dan":"enim dnem";case"dd":return r+=1===e?a||n?"dan":"dnem":2===e?a||n?"dni":"dnevoma":a||n?"dni":"dnevi";case"M":return a||n?"en mesec":"enim mesecem";case"MM":return r+=1===e?a||n?"mesec":"mesecem":2===e?a||n?"meseca":"mesecema":e<5?a||n?"mesece":"meseci":a||n?"mesecev":"meseci";case"y":return a||n?"eno leto":"enim letom";case"yy":return r+=1===e?a||n?"leto":"letom":2===e?a||n?"leti":"letoma":e<5?a||n?"leta":"leti":a||n?"let":"leti"}}return e.defineLocale("sl",{months:"januar_februar_marec_april_maj_junij_julij_avgust_september_oktober_november_december".split("_"),monthsShort:"jan._feb._mar._apr._maj._jun._jul._avg._sep._okt._nov._dec.".split("_"),monthsParseExact:!0,weekdays:"nedelja_ponedeljek_torek_sreda_četrtek_petek_sobota".split("_"),weekdaysShort:"ned._pon._tor._sre._čet._pet._sob.".split("_"),weekdaysMin:"ne_po_to_sr_če_pe_so".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY H:mm",LLLL:"dddd, D. MMMM YYYY H:mm"},calendar:{sameDay:"[danes ob] LT",nextDay:"[jutri ob] LT",nextWeek:function(){switch(this.day()){case 0:return"[v] [nedeljo] [ob] LT";case 3:return"[v] [sredo] [ob] LT";case 6:return"[v] [soboto] [ob] LT";case 1:case 2:case 4:case 5:return"[v] dddd [ob] LT"}},lastDay:"[včeraj ob] LT",lastWeek:function(){switch(this.day()){case 0:return"[prejšnjo] [nedeljo] [ob] LT";case 3:return"[prejšnjo] [sredo] [ob] LT";case 6:return"[prejšnjo] [soboto] [ob] LT";case 1:case 2:case 4:case 5:return"[prejšnji] dddd [ob] LT"}},sameElse:"L"},relativeTime:{future:"čez %s",past:"pred %s",s:a,ss:a,m:a,mm:a,h:a,hh:a,d:a,dd:a,M:a,MM:a,y:a,yy:a},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:7}})})},function(e,a,t){Object.defineProperty(a,"__esModule",{value:!0}),t(188);var n=t(1);n.datepickerLocale("sq","sq",{closeText:"mbylle",prevText:"<mbrapa",nextText:"Përpara>",currentText:"sot",monthNames:["Janar","Shkurt","Mars","Prill","Maj","Qershor","Korrik","Gusht","Shtator","Tetor","Nëntor","Dhjetor"],monthNamesShort:["Jan","Shk","Mar","Pri","Maj","Qer","Kor","Gus","Sht","Tet","Nën","Dhj"],dayNames:["E Diel","E Hënë","E Martë","E Mërkurë","E Enjte","E Premte","E Shtune"],dayNamesShort:["Di","Hë","Ma","Më","En","Pr","Sh"],dayNamesMin:["Di","Hë","Ma","Më","En","Pr","Sh"],weekHeader:"Ja",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),n.locale("sq",{buttonText:{month:"Muaj",week:"Javë",day:"Ditë",list:"Listë"},allDayHtml:"Gjithë
ditën",eventLimitText:function(e){return"+më tepër "+e},noEventsMessage:"Nuk ka evente për të shfaqur"})},function(e,a,t){!function(e,a){a(t(0))}(0,function(e){return e.defineLocale("sq",{months:"Janar_Shkurt_Mars_Prill_Maj_Qershor_Korrik_Gusht_Shtator_Tetor_Nëntor_Dhjetor".split("_"),monthsShort:"Jan_Shk_Mar_Pri_Maj_Qer_Kor_Gus_Sht_Tet_Nën_Dhj".split("_"),weekdays:"E Diel_E Hënë_E Martë_E Mërkurë_E Enjte_E Premte_E Shtunë".split("_"),weekdaysShort:"Die_Hën_Mar_Mër_Enj_Pre_Sht".split("_"),weekdaysMin:"D_H_Ma_Më_E_P_Sh".split("_"),weekdaysParseExact:!0,meridiemParse:/PD|MD/,isPM:function(e){return"M"===e.charAt(0)},meridiem:function(e,a,t){return e<12?"PD":"MD"},longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[Sot në] LT",nextDay:"[Nesër në] LT",nextWeek:"dddd [në] LT",lastDay:"[Dje në] LT",lastWeek:"dddd [e kaluar në] LT",sameElse:"L"},relativeTime:{future:"në %s",past:"%s më parë",s:"disa sekonda",ss:"%d sekonda",m:"një minutë",mm:"%d minuta",h:"një orë",hh:"%d orë",d:"një ditë",dd:"%d ditë",M:"një muaj",MM:"%d muaj",y:"një vit",yy:"%d vite"},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})})},function(e,a,t){Object.defineProperty(a,"__esModule",{value:!0}),t(190);var n=t(1);n.datepickerLocale("sr-cyrl","sr",{closeText:"Затвори",prevText:"<",nextText:">",currentText:"Данас",monthNames:["Јануар","Фебруар","Март","Април","Мај","Јун","Јул","Август","Септембар","Октобар","Новембар","Децембар"],monthNamesShort:["Јан","Феб","Мар","Апр","Мај","Јун","Јул","Авг","Сеп","Окт","Нов","Дец"],dayNames:["Недеља","Понедељак","Уторак","Среда","Четвртак","Петак","Субота"],dayNamesShort:["Нед","Пон","Уто","Сре","Чет","Пет","Суб"],dayNamesMin:["Не","По","Ут","Ср","Че","Пе","Су"],weekHeader:"Сед",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),n.locale("sr-cyrl",{buttonText:{prev:"Претходна",next:"следећи",month:"Месец",week:"Недеља",day:"Дан",list:"Планер"},allDayText:"Цео дан",eventLimitText:function(e){return"+ још "+e},noEventsMessage:"Нема догађаја за приказ"})},function(e,a,t){!function(e,a){a(t(0))}(0,function(e){var a={words:{ss:["секунда","секунде","секунди"],m:["један минут","једне минуте"],mm:["минут","минуте","минута"],h:["један сат","једног сата"],hh:["сат","сата","сати"],dd:["дан","дана","дана"],MM:["месец","месеца","месеци"],yy:["година","године","година"]},correctGrammaticalCase:function(e,a){return 1===e?a[0]:e>=2&&e<=4?a[1]:a[2]},translate:function(e,t,n){var r=a.words[n];return 1===n.length?t?r[0]:r[1]:e+" "+a.correctGrammaticalCase(e,r)}};return e.defineLocale("sr-cyrl",{months:"јануар_фебруар_март_април_мај_јун_јул_август_септембар_октобар_новембар_децембар".split("_"),monthsShort:"јан._феб._мар._апр._мај_јун_јул_авг._сеп._окт._нов._дец.".split("_"),monthsParseExact:!0,weekdays:"недеља_понедељак_уторак_среда_четвртак_петак_субота".split("_"),weekdaysShort:"нед._пон._уто._сре._чет._пет._суб.".split("_"),weekdaysMin:"не_по_ут_ср_че_пе_су".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY H:mm",LLLL:"dddd, D. MMMM YYYY H:mm"},calendar:{sameDay:"[данас у] LT",nextDay:"[сутра у] LT",nextWeek:function(){switch(this.day()){case 0:return"[у] [недељу] [у] LT";case 3:return"[у] [среду] [у] LT";case 6:return"[у] [суботу] [у] LT";case 1:case 2:case 4:case 5:return"[у] dddd [у] LT"}},lastDay:"[јуче у] LT",lastWeek:function(){return["[прошле] [недеље] [у] LT","[прошлог] [понедељка] [у] LT","[прошлог] [уторка] [у] LT","[прошле] [среде] [у] LT","[прошлог] [четвртка] [у] LT","[прошлог] [петка] [у] LT","[прошле] [суботе] [у] LT"][this.day()]},sameElse:"L"},relativeTime:{future:"за %s",past:"пре %s",s:"неколико секунди",ss:a.translate,m:a.translate,mm:a.translate,h:a.translate,hh:a.translate,d:"дан",dd:a.translate,M:"месец",MM:a.translate,y:"годину",yy:a.translate},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:7}})})},function(e,a,t){Object.defineProperty(a,"__esModule",{value:!0}),t(192);var n=t(1);n.datepickerLocale("sr","sr-SR",{closeText:"Zatvori",prevText:"<",nextText:">",currentText:"Danas",monthNames:["Januar","Februar","Mart","April","Maj","Jun","Jul","Avgust","Septembar","Oktobar","Novembar","Decembar"],monthNamesShort:["Jan","Feb","Mar","Apr","Maj","Jun","Jul","Avg","Sep","Okt","Nov","Dec"],dayNames:["Nedelja","Ponedeljak","Utorak","Sreda","Četvrtak","Petak","Subota"],dayNamesShort:["Ned","Pon","Uto","Sre","Čet","Pet","Sub"],dayNamesMin:["Ne","Po","Ut","Sr","Če","Pe","Su"],weekHeader:"Sed",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),n.locale("sr",{buttonText:{prev:"Prethodna",next:"Sledeći",month:"Mеsеc",week:"Nеdеlja",day:"Dan",list:"Planеr"},allDayText:"Cеo dan",eventLimitText:function(e){return"+ još "+e},noEventsMessage:"Nеma događaja za prikaz"})},function(e,a,t){!function(e,a){a(t(0))}(0,function(e){var a={words:{ss:["sekunda","sekunde","sekundi"],m:["jedan minut","jedne minute"],mm:["minut","minute","minuta"],h:["jedan sat","jednog sata"],hh:["sat","sata","sati"],dd:["dan","dana","dana"],MM:["mesec","meseca","meseci"],yy:["godina","godine","godina"]},correctGrammaticalCase:function(e,a){return 1===e?a[0]:e>=2&&e<=4?a[1]:a[2]},translate:function(e,t,n){var r=a.words[n];return 1===n.length?t?r[0]:r[1]:e+" "+a.correctGrammaticalCase(e,r)}};return e.defineLocale("sr",{months:"januar_februar_mart_april_maj_jun_jul_avgust_septembar_oktobar_novembar_decembar".split("_"),monthsShort:"jan._feb._mar._apr._maj_jun_jul_avg._sep._okt._nov._dec.".split("_"),monthsParseExact:!0,weekdays:"nedelja_ponedeljak_utorak_sreda_četvrtak_petak_subota".split("_"),weekdaysShort:"ned._pon._uto._sre._čet._pet._sub.".split("_"),weekdaysMin:"ne_po_ut_sr_če_pe_su".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY H:mm",LLLL:"dddd, D. MMMM YYYY H:mm"},calendar:{sameDay:"[danas u] LT",nextDay:"[sutra u] LT",nextWeek:function(){switch(this.day()){case 0:return"[u] [nedelju] [u] LT";case 3:return"[u] [sredu] [u] LT";case 6:return"[u] [subotu] [u] LT";case 1:case 2:case 4:case 5:return"[u] dddd [u] LT"}},lastDay:"[juče u] LT",lastWeek:function(){return["[prošle] [nedelje] [u] LT","[prošlog] [ponedeljka] [u] LT","[prošlog] [utorka] [u] LT","[prošle] [srede] [u] LT","[prošlog] [četvrtka] [u] LT","[prošlog] [petka] [u] LT","[prošle] [subote] [u] LT"][this.day()]},sameElse:"L"},relativeTime:{future:"za %s",past:"pre %s",s:"nekoliko sekundi",ss:a.translate,m:a.translate,mm:a.translate,h:a.translate,hh:a.translate,d:"dan",dd:a.translate,M:"mesec",MM:a.translate,y:"godinu",yy:a.translate},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:7}})})},function(e,a,t){Object.defineProperty(a,"__esModule",{value:!0}),t(194);var n=t(1);n.datepickerLocale("sv","sv",{closeText:"Stäng",prevText:"«Förra",nextText:"Nästa»",currentText:"Idag",monthNames:["Januari","Februari","Mars","April","Maj","Juni","Juli","Augusti","September","Oktober","November","December"],monthNamesShort:["Jan","Feb","Mar","Apr","Maj","Jun","Jul","Aug","Sep","Okt","Nov","Dec"],dayNamesShort:["Sön","Mån","Tis","Ons","Tor","Fre","Lör"],dayNames:["Söndag","Måndag","Tisdag","Onsdag","Torsdag","Fredag","Lördag"],dayNamesMin:["Sö","Må","Ti","On","To","Fr","Lö"],weekHeader:"v. ",dateFormat:"yy-mm-dd",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),n.locale("sv",{buttonText:{month:"Månad",week:"Vecka",day:"Dag",list:"Program"},allDayText:"Heldag",eventLimitText:"till",noEventsMessage:"Inga händelser att visa"})},function(e,a,t){!function(e,a){a(t(0))}(0,function(e){return e.defineLocale("sv",{months:"januari_februari_mars_april_maj_juni_juli_augusti_september_oktober_november_december".split("_"),monthsShort:"jan_feb_mar_apr_maj_jun_jul_aug_sep_okt_nov_dec".split("_"),weekdays:"söndag_måndag_tisdag_onsdag_torsdag_fredag_lördag".split("_"),weekdaysShort:"sön_mån_tis_ons_tor_fre_lör".split("_"),weekdaysMin:"sö_må_ti_on_to_fr_lö".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"YYYY-MM-DD",LL:"D MMMM YYYY",LLL:"D MMMM YYYY [kl.] HH:mm",LLLL:"dddd D MMMM YYYY [kl.] HH:mm",lll:"D MMM YYYY HH:mm",llll:"ddd D MMM YYYY HH:mm"},calendar:{sameDay:"[Idag] LT",nextDay:"[Imorgon] LT",lastDay:"[Igår] LT",nextWeek:"[På] dddd LT",lastWeek:"[I] dddd[s] LT",sameElse:"L"},relativeTime:{future:"om %s",past:"för %s sedan",s:"några sekunder",ss:"%d sekunder",m:"en minut",mm:"%d minuter",h:"en timme",hh:"%d timmar",d:"en dag",dd:"%d dagar",M:"en månad",MM:"%d månader",y:"ett år",yy:"%d år"},dayOfMonthOrdinalParse:/\d{1,2}(e|a)/,ordinal:function(e){var a=e%10;return e+(1==~~(e%100/10)?"e":1===a?"a":2===a?"a":"e")},week:{dow:1,doy:4}})})},function(e,a,t){Object.defineProperty(a,"__esModule",{value:!0}),t(196);var n=t(1);n.datepickerLocale("th","th",{closeText:"ปิด",prevText:"« ย้อน",nextText:"ถัดไป »",currentText:"วันนี้",monthNames:["มกราคม","กุมภาพันธ์","มีนาคม","เมษายน","พฤษภาคม","มิถุนายน","กรกฎาคม","สิงหาคม","กันยายน","ตุลาคม","พฤศจิกายน","ธันวาคม"],monthNamesShort:["ม.ค.","ก.พ.","มี.ค.","เม.ย.","พ.ค.","มิ.ย.","ก.ค.","ส.ค.","ก.ย.","ต.ค.","พ.ย.","ธ.ค."],dayNames:["อาทิตย์","จันทร์","อังคาร","พุธ","พฤหัสบดี","ศุกร์","เสาร์"],dayNamesShort:["อา.","จ.","อ.","พ.","พฤ.","ศ.","ส."],dayNamesMin:["อา.","จ.","อ.","พ.","พฤ.","ศ.","ส."],weekHeader:"Wk",dateFormat:"dd/mm/yy",firstDay:0,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),n.locale("th",{buttonText:{month:"เดือน",week:"สัปดาห์",day:"วัน",list:"แผนงาน"},allDayText:"ตลอดวัน",eventLimitText:"เพิ่มเติม",noEventsMessage:"ไม่มีกิจกรรมที่จะแสดง"})},function(e,a,t){!function(e,a){a(t(0))}(0,function(e){return e.defineLocale("th",{months:"มกราคม_กุมภาพันธ์_มีนาคม_เมษายน_พฤษภาคม_มิถุนายน_กรกฎาคม_สิงหาคม_กันยายน_ตุลาคม_พฤศจิกายน_ธันวาคม".split("_"),monthsShort:"ม.ค._ก.พ._มี.ค._เม.ย._พ.ค._มิ.ย._ก.ค._ส.ค._ก.ย._ต.ค._พ.ย._ธ.ค.".split("_"),monthsParseExact:!0,weekdays:"อาทิตย์_จันทร์_อังคาร_พุธ_พฤหัสบดี_ศุกร์_เสาร์".split("_"),weekdaysShort:"อาทิตย์_จันทร์_อังคาร_พุธ_พฤหัส_ศุกร์_เสาร์".split("_"),weekdaysMin:"อา._จ._อ._พ._พฤ._ศ._ส.".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY เวลา H:mm",LLLL:"วันddddที่ D MMMM YYYY เวลา H:mm"},meridiemParse:/ก่อนเที่ยง|หลังเที่ยง/,isPM:function(e){return"หลังเที่ยง"===e},meridiem:function(e,a,t){return e<12?"ก่อนเที่ยง":"หลังเที่ยง"},calendar:{sameDay:"[วันนี้ เวลา] LT",nextDay:"[พรุ่งนี้ เวลา] LT",nextWeek:"dddd[หน้า เวลา] LT",lastDay:"[เมื่อวานนี้ เวลา] LT",lastWeek:"[วัน]dddd[ที่แล้ว เวลา] LT",sameElse:"L"},relativeTime:{future:"อีก %s",past:"%sที่แล้ว",s:"ไม่กี่วินาที",ss:"%d วินาที",m:"1 นาที",mm:"%d นาที",h:"1 ชั่วโมง",hh:"%d ชั่วโมง",d:"1 วัน",dd:"%d วัน",M:"1 เดือน",MM:"%d เดือน",y:"1 ปี",yy:"%d ปี"}})})},function(e,a,t){Object.defineProperty(a,"__esModule",{value:!0}),t(198);var n=t(1);n.datepickerLocale("tr","tr",{closeText:"kapat",prevText:"<geri",nextText:"ileri>",currentText:"bugün",monthNames:["Ocak","Şubat","Mart","Nisan","Mayıs","Haziran","Temmuz","Ağustos","Eylül","Ekim","Kasım","Aralık"],monthNamesShort:["Oca","Şub","Mar","Nis","May","Haz","Tem","Ağu","Eyl","Eki","Kas","Ara"],dayNames:["Pazar","Pazartesi","Salı","Çarşamba","Perşembe","Cuma","Cumartesi"],dayNamesShort:["Pz","Pt","Sa","Ça","Pe","Cu","Ct"],dayNamesMin:["Pz","Pt","Sa","Ça","Pe","Cu","Ct"],weekHeader:"Hf",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),n.locale("tr",{buttonText:{next:"ileri",month:"Ay",week:"Hafta",day:"Gün",list:"Ajanda"},allDayText:"Tüm gün",eventLimitText:"daha fazla",noEventsMessage:"Herhangi bir etkinlik görüntülemek için"})},function(e,a,t){!function(e,a){a(t(0))}(0,function(e){var a={1:"'inci",5:"'inci",8:"'inci",70:"'inci",80:"'inci",2:"'nci",7:"'nci",20:"'nci",50:"'nci",3:"'üncü",4:"'üncü",100:"'üncü",6:"'ncı",9:"'uncu",10:"'uncu",30:"'uncu",60:"'ıncı",90:"'ıncı"};return e.defineLocale("tr",{months:"Ocak_Şubat_Mart_Nisan_Mayıs_Haziran_Temmuz_Ağustos_Eylül_Ekim_Kasım_Aralık".split("_"),monthsShort:"Oca_Şub_Mar_Nis_May_Haz_Tem_Ağu_Eyl_Eki_Kas_Ara".split("_"),weekdays:"Pazar_Pazartesi_Salı_Çarşamba_Perşembe_Cuma_Cumartesi".split("_"),weekdaysShort:"Paz_Pts_Sal_Çar_Per_Cum_Cts".split("_"),weekdaysMin:"Pz_Pt_Sa_Ça_Pe_Cu_Ct".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[bugün saat] LT",nextDay:"[yarın saat] LT",nextWeek:"[gelecek] dddd [saat] LT",lastDay:"[dün] LT",lastWeek:"[geçen] dddd [saat] LT",sameElse:"L"},relativeTime:{future:"%s sonra",past:"%s önce",s:"birkaç saniye",ss:"%d saniye",m:"bir dakika",mm:"%d dakika",h:"bir saat",hh:"%d saat",d:"bir gün",dd:"%d gün",M:"bir ay",MM:"%d ay",y:"bir yıl",yy:"%d yıl"},ordinal:function(e,t){switch(t){case"d":case"D":case"Do":case"DD":return e;default:if(0===e)return e+"'ıncı";var n=e%10,r=e%100-n,s=e>=100?100:null;return e+(a[n]||a[r]||a[s])}},week:{dow:1,doy:7}})})},function(e,a,t){Object.defineProperty(a,"__esModule",{value:!0}),t(200);var n=t(1);n.datepickerLocale("uk","uk",{closeText:"Закрити",prevText:"<",nextText:">",currentText:"Сьогодні",monthNames:["Січень","Лютий","Березень","Квітень","Травень","Червень","Липень","Серпень","Вересень","Жовтень","Листопад","Грудень"],monthNamesShort:["Січ","Лют","Бер","Кві","Тра","Чер","Лип","Сер","Вер","Жов","Лис","Гру"],dayNames:["неділя","понеділок","вівторок","середа","четвер","п’ятниця","субота"],dayNamesShort:["нед","пнд","вів","срд","чтв","птн","сбт"],dayNamesMin:["Нд","Пн","Вт","Ср","Чт","Пт","Сб"],weekHeader:"Тиж",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),n.locale("uk",{buttonText:{month:"Місяць",week:"Тиждень",day:"День",list:"Порядок денний"},allDayText:"Увесь день",eventLimitText:function(e){return"+ще "+e+"..."},noEventsMessage:"Немає подій для відображення"})},function(e,a,t){!function(e,a){a(t(0))}(0,function(e){function a(e,a){var t=e.split("_");return a%10==1&&a%100!=11?t[0]:a%10>=2&&a%10<=4&&(a%100<10||a%100>=20)?t[1]:t[2]}function t(e,t,n){var r={ss:t?"секунда_секунди_секунд":"секунду_секунди_секунд",mm:t?"хвилина_хвилини_хвилин":"хвилину_хвилини_хвилин",hh:t?"година_години_годин":"годину_години_годин",dd:"день_дні_днів",MM:"місяць_місяці_місяців",yy:"рік_роки_років"};return"m"===n?t?"хвилина":"хвилину":"h"===n?t?"година":"годину":e+" "+a(r[n],+e)}function n(e,a){var t={nominative:"неділя_понеділок_вівторок_середа_четвер_п’ятниця_субота".split("_"),accusative:"неділю_понеділок_вівторок_середу_четвер_п’ятницю_суботу".split("_"),genitive:"неділі_понеділка_вівторка_середи_четверга_п’ятниці_суботи".split("_")};return e?t[/(\[[ВвУу]\]) ?dddd/.test(a)?"accusative":/\[?(?:минулої|наступної)? ?\] ?dddd/.test(a)?"genitive":"nominative"][e.day()]:t.nominative}function r(e){return function(){return e+"о"+(11===this.hours()?"б":"")+"] LT"}}return e.defineLocale("uk",{months:{format:"січня_лютого_березня_квітня_травня_червня_липня_серпня_вересня_жовтня_листопада_грудня".split("_"),standalone:"січень_лютий_березень_квітень_травень_червень_липень_серпень_вересень_жовтень_листопад_грудень".split("_")},monthsShort:"січ_лют_бер_квіт_трав_черв_лип_серп_вер_жовт_лист_груд".split("_"),weekdays:n,weekdaysShort:"нд_пн_вт_ср_чт_пт_сб".split("_"),weekdaysMin:"нд_пн_вт_ср_чт_пт_сб".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY р.",LLL:"D MMMM YYYY р., HH:mm",LLLL:"dddd, D MMMM YYYY р., HH:mm"},calendar:{sameDay:r("[Сьогодні "),nextDay:r("[Завтра "),lastDay:r("[Вчора "),nextWeek:r("[У] dddd ["),lastWeek:function(){switch(this.day()){case 0:case 3:case 5:case 6:return r("[Минулої] dddd [").call(this);case 1:case 2:case 4:return r("[Минулого] dddd [").call(this)}},sameElse:"L"},relativeTime:{future:"за %s",past:"%s тому",s:"декілька секунд",ss:t,m:t,mm:t,h:"годину",hh:t,d:"день",dd:t,M:"місяць",MM:t,y:"рік",yy:t},meridiemParse:/ночі|ранку|дня|вечора/,isPM:function(e){return/^(дня|вечора)$/.test(e)},meridiem:function(e,a,t){return e<4?"ночі":e<12?"ранку":e<17?"дня":"вечора"},dayOfMonthOrdinalParse:/\d{1,2}-(й|го)/,ordinal:function(e,a){switch(a){case"M":case"d":case"DDD":case"w":case"W":return e+"-й" +;case"D":return e+"-го";default:return e}},week:{dow:1,doy:7}})})},function(e,a,t){Object.defineProperty(a,"__esModule",{value:!0}),t(202);var n=t(1);n.datepickerLocale("vi","vi",{closeText:"Đóng",prevText:"<Trước",nextText:"Tiếp>",currentText:"Hôm nay",monthNames:["Tháng Một","Tháng Hai","Tháng Ba","Tháng Tư","Tháng Năm","Tháng Sáu","Tháng Bảy","Tháng Tám","Tháng Chín","Tháng Mười","Tháng Mười Một","Tháng Mười Hai"],monthNamesShort:["Tháng 1","Tháng 2","Tháng 3","Tháng 4","Tháng 5","Tháng 6","Tháng 7","Tháng 8","Tháng 9","Tháng 10","Tháng 11","Tháng 12"],dayNames:["Chủ Nhật","Thứ Hai","Thứ Ba","Thứ Tư","Thứ Năm","Thứ Sáu","Thứ Bảy"],dayNamesShort:["CN","T2","T3","T4","T5","T6","T7"],dayNamesMin:["CN","T2","T3","T4","T5","T6","T7"],weekHeader:"Tu",dateFormat:"dd/mm/yy",firstDay:0,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),n.locale("vi",{buttonText:{month:"Tháng",week:"Tuần",day:"Ngày",list:"Lịch biểu"},allDayText:"Cả ngày",eventLimitText:function(e){return"+ thêm "+e},noEventsMessage:"Không có sự kiện để hiển thị"})},function(e,a,t){!function(e,a){a(t(0))}(0,function(e){return e.defineLocale("vi",{months:"tháng 1_tháng 2_tháng 3_tháng 4_tháng 5_tháng 6_tháng 7_tháng 8_tháng 9_tháng 10_tháng 11_tháng 12".split("_"),monthsShort:"Th01_Th02_Th03_Th04_Th05_Th06_Th07_Th08_Th09_Th10_Th11_Th12".split("_"),monthsParseExact:!0,weekdays:"chủ nhật_thứ hai_thứ ba_thứ tư_thứ năm_thứ sáu_thứ bảy".split("_"),weekdaysShort:"CN_T2_T3_T4_T5_T6_T7".split("_"),weekdaysMin:"CN_T2_T3_T4_T5_T6_T7".split("_"),weekdaysParseExact:!0,meridiemParse:/sa|ch/i,isPM:function(e){return/^ch$/i.test(e)},meridiem:function(e,a,t){return e<12?t?"sa":"SA":t?"ch":"CH"},longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM [năm] YYYY",LLL:"D MMMM [năm] YYYY HH:mm",LLLL:"dddd, D MMMM [năm] YYYY HH:mm",l:"DD/M/YYYY",ll:"D MMM YYYY",lll:"D MMM YYYY HH:mm",llll:"ddd, D MMM YYYY HH:mm"},calendar:{sameDay:"[Hôm nay lúc] LT",nextDay:"[Ngày mai lúc] LT",nextWeek:"dddd [tuần tới lúc] LT",lastDay:"[Hôm qua lúc] LT",lastWeek:"dddd [tuần rồi lúc] LT",sameElse:"L"},relativeTime:{future:"%s tới",past:"%s trước",s:"vài giây",ss:"%d giây",m:"một phút",mm:"%d phút",h:"một giờ",hh:"%d giờ",d:"một ngày",dd:"%d ngày",M:"một tháng",MM:"%d tháng",y:"một năm",yy:"%d năm"},dayOfMonthOrdinalParse:/\d{1,2}/,ordinal:function(e){return e},week:{dow:1,doy:4}})})},function(e,a,t){Object.defineProperty(a,"__esModule",{value:!0}),t(204);var n=t(1);n.datepickerLocale("zh-cn","zh-CN",{closeText:"关闭",prevText:"<上月",nextText:"下月>",currentText:"今天",monthNames:["一月","二月","三月","四月","五月","六月","七月","八月","九月","十月","十一月","十二月"],monthNamesShort:["一月","二月","三月","四月","五月","六月","七月","八月","九月","十月","十一月","十二月"],dayNames:["星期日","星期一","星期二","星期三","星期四","星期五","星期六"],dayNamesShort:["周日","周一","周二","周三","周四","周五","周六"],dayNamesMin:["日","一","二","三","四","五","六"],weekHeader:"周",dateFormat:"yy-mm-dd",firstDay:1,isRTL:!1,showMonthAfterYear:!0,yearSuffix:"年"}),n.locale("zh-cn",{buttonText:{month:"月",week:"周",day:"日",list:"日程"},allDayText:"全天",eventLimitText:function(e){return"另外 "+e+" 个"},noEventsMessage:"没有事件显示"})},function(e,a,t){!function(e,a){a(t(0))}(0,function(e){return e.defineLocale("zh-cn",{months:"一月_二月_三月_四月_五月_六月_七月_八月_九月_十月_十一月_十二月".split("_"),monthsShort:"1月_2月_3月_4月_5月_6月_7月_8月_9月_10月_11月_12月".split("_"),weekdays:"星期日_星期一_星期二_星期三_星期四_星期五_星期六".split("_"),weekdaysShort:"周日_周一_周二_周三_周四_周五_周六".split("_"),weekdaysMin:"日_一_二_三_四_五_六".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"YYYY/MM/DD",LL:"YYYY年M月D日",LLL:"YYYY年M月D日Ah点mm分",LLLL:"YYYY年M月D日ddddAh点mm分",l:"YYYY/M/D",ll:"YYYY年M月D日",lll:"YYYY年M月D日 HH:mm",llll:"YYYY年M月D日dddd HH:mm"},meridiemParse:/凌晨|早上|上午|中午|下午|晚上/,meridiemHour:function(e,a){return 12===e&&(e=0),"凌晨"===a||"早上"===a||"上午"===a?e:"下午"===a||"晚上"===a?e+12:e>=11?e:e+12},meridiem:function(e,a,t){var n=100*e+a;return n<600?"凌晨":n<900?"早上":n<1130?"上午":n<1230?"中午":n<1800?"下午":"晚上"},calendar:{sameDay:"[今天]LT",nextDay:"[明天]LT",nextWeek:"[下]ddddLT",lastDay:"[昨天]LT",lastWeek:"[上]ddddLT",sameElse:"L"},dayOfMonthOrdinalParse:/\d{1,2}(日|月|周)/,ordinal:function(e,a){switch(a){case"d":case"D":case"DDD":return e+"日";case"M":return e+"月";case"w":case"W":return e+"周";default:return e}},relativeTime:{future:"%s内",past:"%s前",s:"几秒",ss:"%d 秒",m:"1 分钟",mm:"%d 分钟",h:"1 小时",hh:"%d 小时",d:"1 天",dd:"%d 天",M:"1 个月",MM:"%d 个月",y:"1 年",yy:"%d 年"},week:{dow:1,doy:4}})})},function(e,a,t){Object.defineProperty(a,"__esModule",{value:!0}),t(206);var n=t(1);n.datepickerLocale("zh-tw","zh-TW",{closeText:"關閉",prevText:"<上月",nextText:"下月>",currentText:"今天",monthNames:["一月","二月","三月","四月","五月","六月","七月","八月","九月","十月","十一月","十二月"],monthNamesShort:["一月","二月","三月","四月","五月","六月","七月","八月","九月","十月","十一月","十二月"],dayNames:["星期日","星期一","星期二","星期三","星期四","星期五","星期六"],dayNamesShort:["周日","周一","周二","周三","周四","周五","周六"],dayNamesMin:["日","一","二","三","四","五","六"],weekHeader:"周",dateFormat:"yy/mm/dd",firstDay:1,isRTL:!1,showMonthAfterYear:!0,yearSuffix:"年"}),n.locale("zh-tw",{buttonText:{month:"月",week:"週",day:"天",list:"活動列表"},allDayText:"整天",eventLimitText:"顯示更多",noEventsMessage:"没有任何活動"})},function(e,a,t){!function(e,a){a(t(0))}(0,function(e){return e.defineLocale("zh-tw",{months:"一月_二月_三月_四月_五月_六月_七月_八月_九月_十月_十一月_十二月".split("_"),monthsShort:"1月_2月_3月_4月_5月_6月_7月_8月_9月_10月_11月_12月".split("_"),weekdays:"星期日_星期一_星期二_星期三_星期四_星期五_星期六".split("_"),weekdaysShort:"週日_週一_週二_週三_週四_週五_週六".split("_"),weekdaysMin:"日_一_二_三_四_五_六".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"YYYY/MM/DD",LL:"YYYY年M月D日",LLL:"YYYY年M月D日 HH:mm",LLLL:"YYYY年M月D日dddd HH:mm",l:"YYYY/M/D",ll:"YYYY年M月D日",lll:"YYYY年M月D日 HH:mm",llll:"YYYY年M月D日dddd HH:mm"},meridiemParse:/凌晨|早上|上午|中午|下午|晚上/,meridiemHour:function(e,a){return 12===e&&(e=0),"凌晨"===a||"早上"===a||"上午"===a?e:"中午"===a?e>=11?e:e+12:"下午"===a||"晚上"===a?e+12:void 0},meridiem:function(e,a,t){var n=100*e+a;return n<600?"凌晨":n<900?"早上":n<1130?"上午":n<1230?"中午":n<1800?"下午":"晚上"},calendar:{sameDay:"[今天]LT",nextDay:"[明天]LT",nextWeek:"[下]ddddLT",lastDay:"[昨天]LT",lastWeek:"[上]ddddLT",sameElse:"L"},dayOfMonthOrdinalParse:/\d{1,2}(日|月|週)/,ordinal:function(e,a){switch(a){case"d":case"D":case"DDD":return e+"日";case"M":return e+"月";case"w":case"W":return e+"週";default:return e}},relativeTime:{future:"%s內",past:"%s前",s:"幾秒",ss:"%d 秒",m:"1 分鐘",mm:"%d 分鐘",h:"1 小時",hh:"%d 小時",d:"1 天",dd:"%d 天",M:"1 個月",MM:"%d 個月",y:"1 年",yy:"%d 年"}})})},,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,function(e,a,t){t(65),t(67),t(69),t(71),t(73),t(75),t(77),t(79),t(81),t(83),t(85),t(87),t(89),t(91),t(93),t(95),t(97),t(99),t(101),t(103),t(105),t(107),t(109),t(111),t(113),t(115),t(117),t(119),t(121),t(123),t(125),t(127),t(129),t(131),t(133),t(135),t(137),t(139),t(141),t(143),t(145),t(147),t(149),t(151),t(153),t(155),t(157),t(159),t(161),t(163),t(165),t(167),t(169),t(171),t(173),t(175),t(177),t(179),t(181),t(183),t(185),t(187),t(189),t(191),t(193),t(195),t(197),t(199),t(201),t(203),t(205),e.exports=t(435)},function(e,a,t){Object.defineProperty(a,"__esModule",{value:!0});var n=t(0),r=t(1);n.locale("en"),r.locale("en"),window.jQuery.datepicker&&window.jQuery.datepicker.setDefaults(window.jQuery.datepicker.regional[""])}])}); \ No newline at end of file diff --git a/public/assets/lib/fullcalendar/locale/af.js b/public/assets/lib/fullcalendar/locale/af.js new file mode 100755 index 0000000..b89bdee --- /dev/null +++ b/public/assets/lib/fullcalendar/locale/af.js @@ -0,0 +1 @@ +!function(e,n){"object"==typeof exports&&"object"==typeof module?module.exports=n(require("moment"),require("fullcalendar")):"function"==typeof define&&define.amd?define(["moment","fullcalendar"],n):"object"==typeof exports?n(require("moment"),require("fullcalendar")):n(e.moment,e.FullCalendar)}("undefined"!=typeof self?self:this,function(e,n){return function(e){function n(t){if(a[t])return a[t].exports;var r=a[t]={i:t,l:!1,exports:{}};return e[t].call(r.exports,r,r.exports,n),r.l=!0,r.exports}var a={};return n.m=e,n.c=a,n.d=function(e,a,t){n.o(e,a)||Object.defineProperty(e,a,{configurable:!1,enumerable:!0,get:t})},n.n=function(e){var a=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(a,"a",a),a},n.o=function(e,n){return Object.prototype.hasOwnProperty.call(e,n)},n.p="",n(n.s=65)}({0:function(n,a){n.exports=e},1:function(e,a){e.exports=n},65:function(e,n,a){Object.defineProperty(n,"__esModule",{value:!0}),a(66);var t=a(1);t.datepickerLocale("af","af",{closeText:"Selekteer",prevText:"Vorige",nextText:"Volgende",currentText:"Vandag",monthNames:["Januarie","Februarie","Maart","April","Mei","Junie","Julie","Augustus","September","Oktober","November","Desember"],monthNamesShort:["Jan","Feb","Mrt","Apr","Mei","Jun","Jul","Aug","Sep","Okt","Nov","Des"],dayNames:["Sondag","Maandag","Dinsdag","Woensdag","Donderdag","Vrydag","Saterdag"],dayNamesShort:["Son","Maa","Din","Woe","Don","Vry","Sat"],dayNamesMin:["So","Ma","Di","Wo","Do","Vr","Sa"],weekHeader:"Wk",dateFormat:"dd/mm/yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),t.locale("af",{buttonText:{year:"Jaar",month:"Maand",week:"Week",day:"Dag",list:"Agenda"},allDayHtml:"Heeldag",eventLimitText:"Addisionele",noEventsMessage:"Daar is geen gebeurtenisse nie"})},66:function(e,n,a){!function(e,n){n(a(0))}(0,function(e){return e.defineLocale("af",{months:"Januarie_Februarie_Maart_April_Mei_Junie_Julie_Augustus_September_Oktober_November_Desember".split("_"),monthsShort:"Jan_Feb_Mrt_Apr_Mei_Jun_Jul_Aug_Sep_Okt_Nov_Des".split("_"),weekdays:"Sondag_Maandag_Dinsdag_Woensdag_Donderdag_Vrydag_Saterdag".split("_"),weekdaysShort:"Son_Maa_Din_Woe_Don_Vry_Sat".split("_"),weekdaysMin:"So_Ma_Di_Wo_Do_Vr_Sa".split("_"),meridiemParse:/vm|nm/i,isPM:function(e){return/^nm$/i.test(e)},meridiem:function(e,n,a){return e<12?a?"vm":"VM":a?"nm":"NM"},longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[Vandag om] LT",nextDay:"[Môre om] LT",nextWeek:"dddd [om] LT",lastDay:"[Gister om] LT",lastWeek:"[Laas] dddd [om] LT",sameElse:"L"},relativeTime:{future:"oor %s",past:"%s gelede",s:"'n paar sekondes",ss:"%d sekondes",m:"'n minuut",mm:"%d minute",h:"'n uur",hh:"%d ure",d:"'n dag",dd:"%d dae",M:"'n maand",MM:"%d maande",y:"'n jaar",yy:"%d jaar"},dayOfMonthOrdinalParse:/\d{1,2}(ste|de)/,ordinal:function(e){return e+(1===e||8===e||e>=20?"ste":"de")},week:{dow:1,doy:4}})})}})}); \ No newline at end of file diff --git a/public/assets/lib/fullcalendar/locale/ar-dz.js b/public/assets/lib/fullcalendar/locale/ar-dz.js new file mode 100755 index 0000000..31b01a3 --- /dev/null +++ b/public/assets/lib/fullcalendar/locale/ar-dz.js @@ -0,0 +1 @@ +!function(e,t){"object"==typeof exports&&"object"==typeof module?module.exports=t(require("moment"),require("fullcalendar")):"function"==typeof define&&define.amd?define(["moment","fullcalendar"],t):"object"==typeof exports?t(require("moment"),require("fullcalendar")):t(e.moment,e.FullCalendar)}("undefined"!=typeof self?self:this,function(e,t){return function(e){function t(r){if(n[r])return n[r].exports;var o=n[r]={i:r,l:!1,exports:{}};return e[r].call(o.exports,o,o.exports,t),o.l=!0,o.exports}var n={};return t.m=e,t.c=n,t.d=function(e,n,r){t.o(e,n)||Object.defineProperty(e,n,{configurable:!1,enumerable:!0,get:r})},t.n=function(e){var n=e&&e.__esModule?function(){return e.default}:function(){return e};return t.d(n,"a",n),n},t.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},t.p="",t(t.s=67)}({0:function(t,n){t.exports=e},1:function(e,n){e.exports=t},67:function(e,t,n){Object.defineProperty(t,"__esModule",{value:!0}),n(68);var r=n(1);r.datepickerLocale("ar-dz","ar-DZ",{closeText:"إغلاق",prevText:"<السابق",nextText:"التالي>",currentText:"اليوم",monthNames:["جانفي","فيفري","مارس","أفريل","ماي","جوان","جويلية","أوت","سبتمبر","أكتوبر","نوفمبر","ديسمبر"],monthNamesShort:["1","2","3","4","5","6","7","8","9","10","11","12"],dayNames:["الأحد","الاثنين","الثلاثاء","الأربعاء","الخميس","الجمعة","السبت"],dayNamesShort:["الأحد","الاثنين","الثلاثاء","الأربعاء","الخميس","الجمعة","السبت"],dayNamesMin:["ح","ن","ث","ر","خ","ج","س"],weekHeader:"أسبوع",dateFormat:"dd/mm/yy",firstDay:6,isRTL:!0,showMonthAfterYear:!1,yearSuffix:""}),r.locale("ar-dz",{buttonText:{month:"شهر",week:"أسبوع",day:"يوم",list:"أجندة"},allDayText:"اليوم كله",eventLimitText:"أخرى",noEventsMessage:"أي أحداث لعرض"})},68:function(e,t,n){!function(e,t){t(n(0))}(0,function(e){return e.defineLocale("ar-dz",{months:"جانفي_فيفري_مارس_أفريل_ماي_جوان_جويلية_أوت_سبتمبر_أكتوبر_نوفمبر_ديسمبر".split("_"),monthsShort:"جانفي_فيفري_مارس_أفريل_ماي_جوان_جويلية_أوت_سبتمبر_أكتوبر_نوفمبر_ديسمبر".split("_"),weekdays:"الأحد_الإثنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت".split("_"),weekdaysShort:"احد_اثنين_ثلاثاء_اربعاء_خميس_جمعة_سبت".split("_"),weekdaysMin:"أح_إث_ثلا_أر_خم_جم_سب".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[اليوم على الساعة] LT",nextDay:"[غدا على الساعة] LT",nextWeek:"dddd [على الساعة] LT",lastDay:"[أمس على الساعة] LT",lastWeek:"dddd [على الساعة] LT",sameElse:"L"},relativeTime:{future:"في %s",past:"منذ %s",s:"ثوان",ss:"%d ثانية",m:"دقيقة",mm:"%d دقائق",h:"ساعة",hh:"%d ساعات",d:"يوم",dd:"%d أيام",M:"شهر",MM:"%d أشهر",y:"سنة",yy:"%d سنوات"},week:{dow:0,doy:4}})})}})}); \ No newline at end of file diff --git a/public/assets/lib/fullcalendar/locale/ar-kw.js b/public/assets/lib/fullcalendar/locale/ar-kw.js new file mode 100755 index 0000000..9b29613 --- /dev/null +++ b/public/assets/lib/fullcalendar/locale/ar-kw.js @@ -0,0 +1 @@ +!function(e,t){"object"==typeof exports&&"object"==typeof module?module.exports=t(require("moment"),require("fullcalendar")):"function"==typeof define&&define.amd?define(["moment","fullcalendar"],t):"object"==typeof exports?t(require("moment"),require("fullcalendar")):t(e.moment,e.FullCalendar)}("undefined"!=typeof self?self:this,function(e,t){return function(e){function t(r){if(n[r])return n[r].exports;var o=n[r]={i:r,l:!1,exports:{}};return e[r].call(o.exports,o,o.exports,t),o.l=!0,o.exports}var n={};return t.m=e,t.c=n,t.d=function(e,n,r){t.o(e,n)||Object.defineProperty(e,n,{configurable:!1,enumerable:!0,get:r})},t.n=function(e){var n=e&&e.__esModule?function(){return e.default}:function(){return e};return t.d(n,"a",n),n},t.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},t.p="",t(t.s=69)}({0:function(t,n){t.exports=e},1:function(e,n){e.exports=t},69:function(e,t,n){Object.defineProperty(t,"__esModule",{value:!0}),n(70);var r=n(1);r.datepickerLocale("ar-kw","ar",{closeText:"إغلاق",prevText:"<السابق",nextText:"التالي>",currentText:"اليوم",monthNames:["يناير","فبراير","مارس","أبريل","مايو","يونيو","يوليو","أغسطس","سبتمبر","أكتوبر","نوفمبر","ديسمبر"],monthNamesShort:["1","2","3","4","5","6","7","8","9","10","11","12"],dayNames:["الأحد","الاثنين","الثلاثاء","الأربعاء","الخميس","الجمعة","السبت"],dayNamesShort:["أحد","اثنين","ثلاثاء","أربعاء","خميس","جمعة","سبت"],dayNamesMin:["ح","ن","ث","ر","خ","ج","س"],weekHeader:"أسبوع",dateFormat:"dd/mm/yy",firstDay:0,isRTL:!0,showMonthAfterYear:!1,yearSuffix:""}),r.locale("ar-kw",{buttonText:{month:"شهر",week:"أسبوع",day:"يوم",list:"أجندة"},allDayText:"اليوم كله",eventLimitText:"أخرى",noEventsMessage:"أي أحداث لعرض"})},70:function(e,t,n){!function(e,t){t(n(0))}(0,function(e){return e.defineLocale("ar-kw",{months:"يناير_فبراير_مارس_أبريل_ماي_يونيو_يوليوز_غشت_شتنبر_أكتوبر_نونبر_دجنبر".split("_"),monthsShort:"يناير_فبراير_مارس_أبريل_ماي_يونيو_يوليوز_غشت_شتنبر_أكتوبر_نونبر_دجنبر".split("_"),weekdays:"الأحد_الإتنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت".split("_"),weekdaysShort:"احد_اتنين_ثلاثاء_اربعاء_خميس_جمعة_سبت".split("_"),weekdaysMin:"ح_ن_ث_ر_خ_ج_س".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[اليوم على الساعة] LT",nextDay:"[غدا على الساعة] LT",nextWeek:"dddd [على الساعة] LT",lastDay:"[أمس على الساعة] LT",lastWeek:"dddd [على الساعة] LT",sameElse:"L"},relativeTime:{future:"في %s",past:"منذ %s",s:"ثوان",ss:"%d ثانية",m:"دقيقة",mm:"%d دقائق",h:"ساعة",hh:"%d ساعات",d:"يوم",dd:"%d أيام",M:"شهر",MM:"%d أشهر",y:"سنة",yy:"%d سنوات"},week:{dow:0,doy:12}})})}})}); \ No newline at end of file diff --git a/public/assets/lib/fullcalendar/locale/ar-ly.js b/public/assets/lib/fullcalendar/locale/ar-ly.js new file mode 100755 index 0000000..217aabb --- /dev/null +++ b/public/assets/lib/fullcalendar/locale/ar-ly.js @@ -0,0 +1 @@ +!function(e,t){"object"==typeof exports&&"object"==typeof module?module.exports=t(require("moment"),require("fullcalendar")):"function"==typeof define&&define.amd?define(["moment","fullcalendar"],t):"object"==typeof exports?t(require("moment"),require("fullcalendar")):t(e.moment,e.FullCalendar)}("undefined"!=typeof self?self:this,function(e,t){return function(e){function t(n){if(r[n])return r[n].exports;var o=r[n]={i:n,l:!1,exports:{}};return e[n].call(o.exports,o,o.exports,t),o.l=!0,o.exports}var r={};return t.m=e,t.c=r,t.d=function(e,r,n){t.o(e,r)||Object.defineProperty(e,r,{configurable:!1,enumerable:!0,get:n})},t.n=function(e){var r=e&&e.__esModule?function(){return e.default}:function(){return e};return t.d(r,"a",r),r},t.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},t.p="",t(t.s=71)}({0:function(t,r){t.exports=e},1:function(e,r){e.exports=t},71:function(e,t,r){Object.defineProperty(t,"__esModule",{value:!0}),r(72);var n=r(1);n.datepickerLocale("ar-ly","ar",{closeText:"إغلاق",prevText:"<السابق",nextText:"التالي>",currentText:"اليوم",monthNames:["يناير","فبراير","مارس","أبريل","مايو","يونيو","يوليو","أغسطس","سبتمبر","أكتوبر","نوفمبر","ديسمبر"],monthNamesShort:["1","2","3","4","5","6","7","8","9","10","11","12"],dayNames:["الأحد","الاثنين","الثلاثاء","الأربعاء","الخميس","الجمعة","السبت"],dayNamesShort:["أحد","اثنين","ثلاثاء","أربعاء","خميس","جمعة","سبت"],dayNamesMin:["ح","ن","ث","ر","خ","ج","س"],weekHeader:"أسبوع",dateFormat:"dd/mm/yy",firstDay:0,isRTL:!0,showMonthAfterYear:!1,yearSuffix:""}),n.locale("ar-ly",{buttonText:{month:"شهر",week:"أسبوع",day:"يوم",list:"أجندة"},allDayText:"اليوم كله",eventLimitText:"أخرى",noEventsMessage:"أي أحداث لعرض"})},72:function(e,t,r){!function(e,t){t(r(0))}(0,function(e){var t={1:"1",2:"2",3:"3",4:"4",5:"5",6:"6",7:"7",8:"8",9:"9",0:"0"},r=function(e){return 0===e?0:1===e?1:2===e?2:e%100>=3&&e%100<=10?3:e%100>=11?4:5},n={s:["أقل من ثانية","ثانية واحدة",["ثانيتان","ثانيتين"],"%d ثوان","%d ثانية","%d ثانية"],m:["أقل من دقيقة","دقيقة واحدة",["دقيقتان","دقيقتين"],"%d دقائق","%d دقيقة","%d دقيقة"],h:["أقل من ساعة","ساعة واحدة",["ساعتان","ساعتين"],"%d ساعات","%d ساعة","%d ساعة"],d:["أقل من يوم","يوم واحد",["يومان","يومين"],"%d أيام","%d يومًا","%d يوم"],M:["أقل من شهر","شهر واحد",["شهران","شهرين"],"%d أشهر","%d شهرا","%d شهر"],y:["أقل من عام","عام واحد",["عامان","عامين"],"%d أعوام","%d عامًا","%d عام"]},o=function(e){return function(t,o,d,a){var u=r(t),s=n[e][r(t)];return 2===u&&(s=s[o?0:1]),s.replace(/%d/i,t)}},d=["يناير","فبراير","مارس","أبريل","مايو","يونيو","يوليو","أغسطس","سبتمبر","أكتوبر","نوفمبر","ديسمبر"];return e.defineLocale("ar-ly",{months:d,monthsShort:d,weekdays:"الأحد_الإثنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت".split("_"),weekdaysShort:"أحد_إثنين_ثلاثاء_أربعاء_خميس_جمعة_سبت".split("_"),weekdaysMin:"ح_ن_ث_ر_خ_ج_س".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"D/‏M/‏YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},meridiemParse:/ص|م/,isPM:function(e){return"م"===e},meridiem:function(e,t,r){return e<12?"ص":"م"},calendar:{sameDay:"[اليوم عند الساعة] LT",nextDay:"[غدًا عند الساعة] LT",nextWeek:"dddd [عند الساعة] LT",lastDay:"[أمس عند الساعة] LT",lastWeek:"dddd [عند الساعة] LT",sameElse:"L"},relativeTime:{future:"بعد %s",past:"منذ %s",s:o("s"),ss:o("s"),m:o("m"),mm:o("m"),h:o("h"),hh:o("h"),d:o("d"),dd:o("d"),M:o("M"),MM:o("M"),y:o("y"),yy:o("y")},preparse:function(e){return e.replace(/،/g,",")},postformat:function(e){return e.replace(/\d/g,function(e){return t[e]}).replace(/,/g,"،")},week:{dow:6,doy:12}})})}})}); \ No newline at end of file diff --git a/public/assets/lib/fullcalendar/locale/ar-ma.js b/public/assets/lib/fullcalendar/locale/ar-ma.js new file mode 100755 index 0000000..29a2b06 --- /dev/null +++ b/public/assets/lib/fullcalendar/locale/ar-ma.js @@ -0,0 +1 @@ +!function(e,t){"object"==typeof exports&&"object"==typeof module?module.exports=t(require("moment"),require("fullcalendar")):"function"==typeof define&&define.amd?define(["moment","fullcalendar"],t):"object"==typeof exports?t(require("moment"),require("fullcalendar")):t(e.moment,e.FullCalendar)}("undefined"!=typeof self?self:this,function(e,t){return function(e){function t(r){if(n[r])return n[r].exports;var o=n[r]={i:r,l:!1,exports:{}};return e[r].call(o.exports,o,o.exports,t),o.l=!0,o.exports}var n={};return t.m=e,t.c=n,t.d=function(e,n,r){t.o(e,n)||Object.defineProperty(e,n,{configurable:!1,enumerable:!0,get:r})},t.n=function(e){var n=e&&e.__esModule?function(){return e.default}:function(){return e};return t.d(n,"a",n),n},t.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},t.p="",t(t.s=73)}({0:function(t,n){t.exports=e},1:function(e,n){e.exports=t},73:function(e,t,n){Object.defineProperty(t,"__esModule",{value:!0}),n(74);var r=n(1);r.datepickerLocale("ar-ma","ar",{closeText:"إغلاق",prevText:"<السابق",nextText:"التالي>",currentText:"اليوم",monthNames:["يناير","فبراير","مارس","أبريل","مايو","يونيو","يوليو","أغسطس","سبتمبر","أكتوبر","نوفمبر","ديسمبر"],monthNamesShort:["1","2","3","4","5","6","7","8","9","10","11","12"],dayNames:["الأحد","الاثنين","الثلاثاء","الأربعاء","الخميس","الجمعة","السبت"],dayNamesShort:["أحد","اثنين","ثلاثاء","أربعاء","خميس","جمعة","سبت"],dayNamesMin:["ح","ن","ث","ر","خ","ج","س"],weekHeader:"أسبوع",dateFormat:"dd/mm/yy",firstDay:0,isRTL:!0,showMonthAfterYear:!1,yearSuffix:""}),r.locale("ar-ma",{buttonText:{month:"شهر",week:"أسبوع",day:"يوم",list:"أجندة"},allDayText:"اليوم كله",eventLimitText:"أخرى",noEventsMessage:"أي أحداث لعرض"})},74:function(e,t,n){!function(e,t){t(n(0))}(0,function(e){return e.defineLocale("ar-ma",{months:"يناير_فبراير_مارس_أبريل_ماي_يونيو_يوليوز_غشت_شتنبر_أكتوبر_نونبر_دجنبر".split("_"),monthsShort:"يناير_فبراير_مارس_أبريل_ماي_يونيو_يوليوز_غشت_شتنبر_أكتوبر_نونبر_دجنبر".split("_"),weekdays:"الأحد_الإتنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت".split("_"),weekdaysShort:"احد_اتنين_ثلاثاء_اربعاء_خميس_جمعة_سبت".split("_"),weekdaysMin:"ح_ن_ث_ر_خ_ج_س".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[اليوم على الساعة] LT",nextDay:"[غدا على الساعة] LT",nextWeek:"dddd [على الساعة] LT",lastDay:"[أمس على الساعة] LT",lastWeek:"dddd [على الساعة] LT",sameElse:"L"},relativeTime:{future:"في %s",past:"منذ %s",s:"ثوان",ss:"%d ثانية",m:"دقيقة",mm:"%d دقائق",h:"ساعة",hh:"%d ساعات",d:"يوم",dd:"%d أيام",M:"شهر",MM:"%d أشهر",y:"سنة",yy:"%d سنوات"},week:{dow:6,doy:12}})})}})}); \ No newline at end of file diff --git a/public/assets/lib/fullcalendar/locale/ar-sa.js b/public/assets/lib/fullcalendar/locale/ar-sa.js new file mode 100755 index 0000000..3d24a2d --- /dev/null +++ b/public/assets/lib/fullcalendar/locale/ar-sa.js @@ -0,0 +1 @@ +!function(e,t){"object"==typeof exports&&"object"==typeof module?module.exports=t(require("moment"),require("fullcalendar")):"function"==typeof define&&define.amd?define(["moment","fullcalendar"],t):"object"==typeof exports?t(require("moment"),require("fullcalendar")):t(e.moment,e.FullCalendar)}("undefined"!=typeof self?self:this,function(e,t){return function(e){function t(n){if(r[n])return r[n].exports;var o=r[n]={i:n,l:!1,exports:{}};return e[n].call(o.exports,o,o.exports,t),o.l=!0,o.exports}var r={};return t.m=e,t.c=r,t.d=function(e,r,n){t.o(e,r)||Object.defineProperty(e,r,{configurable:!1,enumerable:!0,get:n})},t.n=function(e){var r=e&&e.__esModule?function(){return e.default}:function(){return e};return t.d(r,"a",r),r},t.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},t.p="",t(t.s=75)}({0:function(t,r){t.exports=e},1:function(e,r){e.exports=t},75:function(e,t,r){Object.defineProperty(t,"__esModule",{value:!0}),r(76);var n=r(1);n.datepickerLocale("ar-sa","ar",{closeText:"إغلاق",prevText:"<السابق",nextText:"التالي>",currentText:"اليوم",monthNames:["يناير","فبراير","مارس","أبريل","مايو","يونيو","يوليو","أغسطس","سبتمبر","أكتوبر","نوفمبر","ديسمبر"],monthNamesShort:["1","2","3","4","5","6","7","8","9","10","11","12"],dayNames:["الأحد","الاثنين","الثلاثاء","الأربعاء","الخميس","الجمعة","السبت"],dayNamesShort:["أحد","اثنين","ثلاثاء","أربعاء","خميس","جمعة","سبت"],dayNamesMin:["ح","ن","ث","ر","خ","ج","س"],weekHeader:"أسبوع",dateFormat:"dd/mm/yy",firstDay:0,isRTL:!0,showMonthAfterYear:!1,yearSuffix:""}),n.locale("ar-sa",{buttonText:{month:"شهر",week:"أسبوع",day:"يوم",list:"أجندة"},allDayText:"اليوم كله",eventLimitText:"أخرى",noEventsMessage:"أي أحداث لعرض"})},76:function(e,t,r){!function(e,t){t(r(0))}(0,function(e){var t={1:"١",2:"٢",3:"٣",4:"٤",5:"٥",6:"٦",7:"٧",8:"٨",9:"٩",0:"٠"},r={"١":"1","٢":"2","٣":"3","٤":"4","٥":"5","٦":"6","٧":"7","٨":"8","٩":"9","٠":"0"};return e.defineLocale("ar-sa",{months:"يناير_فبراير_مارس_أبريل_مايو_يونيو_يوليو_أغسطس_سبتمبر_أكتوبر_نوفمبر_ديسمبر".split("_"),monthsShort:"يناير_فبراير_مارس_أبريل_مايو_يونيو_يوليو_أغسطس_سبتمبر_أكتوبر_نوفمبر_ديسمبر".split("_"),weekdays:"الأحد_الإثنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت".split("_"),weekdaysShort:"أحد_إثنين_ثلاثاء_أربعاء_خميس_جمعة_سبت".split("_"),weekdaysMin:"ح_ن_ث_ر_خ_ج_س".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},meridiemParse:/ص|م/,isPM:function(e){return"م"===e},meridiem:function(e,t,r){return e<12?"ص":"م"},calendar:{sameDay:"[اليوم على الساعة] LT",nextDay:"[غدا على الساعة] LT",nextWeek:"dddd [على الساعة] LT",lastDay:"[أمس على الساعة] LT",lastWeek:"dddd [على الساعة] LT",sameElse:"L"},relativeTime:{future:"في %s",past:"منذ %s",s:"ثوان",ss:"%d ثانية",m:"دقيقة",mm:"%d دقائق",h:"ساعة",hh:"%d ساعات",d:"يوم",dd:"%d أيام",M:"شهر",MM:"%d أشهر",y:"سنة",yy:"%d سنوات"},preparse:function(e){return e.replace(/[١٢٣٤٥٦٧٨٩٠]/g,function(e){return r[e]}).replace(/،/g,",")},postformat:function(e){return e.replace(/\d/g,function(e){return t[e]}).replace(/,/g,"،")},week:{dow:0,doy:6}})})}})}); \ No newline at end of file diff --git a/public/assets/lib/fullcalendar/locale/ar-tn.js b/public/assets/lib/fullcalendar/locale/ar-tn.js new file mode 100755 index 0000000..e35e64f --- /dev/null +++ b/public/assets/lib/fullcalendar/locale/ar-tn.js @@ -0,0 +1 @@ +!function(e,t){"object"==typeof exports&&"object"==typeof module?module.exports=t(require("moment"),require("fullcalendar")):"function"==typeof define&&define.amd?define(["moment","fullcalendar"],t):"object"==typeof exports?t(require("moment"),require("fullcalendar")):t(e.moment,e.FullCalendar)}("undefined"!=typeof self?self:this,function(e,t){return function(e){function t(r){if(n[r])return n[r].exports;var o=n[r]={i:r,l:!1,exports:{}};return e[r].call(o.exports,o,o.exports,t),o.l=!0,o.exports}var n={};return t.m=e,t.c=n,t.d=function(e,n,r){t.o(e,n)||Object.defineProperty(e,n,{configurable:!1,enumerable:!0,get:r})},t.n=function(e){var n=e&&e.__esModule?function(){return e.default}:function(){return e};return t.d(n,"a",n),n},t.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},t.p="",t(t.s=77)}({0:function(t,n){t.exports=e},1:function(e,n){e.exports=t},77:function(e,t,n){Object.defineProperty(t,"__esModule",{value:!0}),n(78);var r=n(1);r.datepickerLocale("ar-tn","ar",{closeText:"إغلاق",prevText:"<السابق",nextText:"التالي>",currentText:"اليوم",monthNames:["يناير","فبراير","مارس","أبريل","مايو","يونيو","يوليو","أغسطس","سبتمبر","أكتوبر","نوفمبر","ديسمبر"],monthNamesShort:["1","2","3","4","5","6","7","8","9","10","11","12"],dayNames:["الأحد","الاثنين","الثلاثاء","الأربعاء","الخميس","الجمعة","السبت"],dayNamesShort:["أحد","اثنين","ثلاثاء","أربعاء","خميس","جمعة","سبت"],dayNamesMin:["ح","ن","ث","ر","خ","ج","س"],weekHeader:"أسبوع",dateFormat:"dd/mm/yy",firstDay:0,isRTL:!0,showMonthAfterYear:!1,yearSuffix:""}),r.locale("ar-tn",{buttonText:{month:"شهر",week:"أسبوع",day:"يوم",list:"أجندة"},allDayText:"اليوم كله",eventLimitText:"أخرى",noEventsMessage:"أي أحداث لعرض"})},78:function(e,t,n){!function(e,t){t(n(0))}(0,function(e){return e.defineLocale("ar-tn",{months:"جانفي_فيفري_مارس_أفريل_ماي_جوان_جويلية_أوت_سبتمبر_أكتوبر_نوفمبر_ديسمبر".split("_"),monthsShort:"جانفي_فيفري_مارس_أفريل_ماي_جوان_جويلية_أوت_سبتمبر_أكتوبر_نوفمبر_ديسمبر".split("_"),weekdays:"الأحد_الإثنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت".split("_"),weekdaysShort:"أحد_إثنين_ثلاثاء_أربعاء_خميس_جمعة_سبت".split("_"),weekdaysMin:"ح_ن_ث_ر_خ_ج_س".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[اليوم على الساعة] LT",nextDay:"[غدا على الساعة] LT",nextWeek:"dddd [على الساعة] LT",lastDay:"[أمس على الساعة] LT",lastWeek:"dddd [على الساعة] LT",sameElse:"L"},relativeTime:{future:"في %s",past:"منذ %s",s:"ثوان",ss:"%d ثانية",m:"دقيقة",mm:"%d دقائق",h:"ساعة",hh:"%d ساعات",d:"يوم",dd:"%d أيام",M:"شهر",MM:"%d أشهر",y:"سنة",yy:"%d سنوات"},week:{dow:1,doy:4}})})}})}); \ No newline at end of file diff --git a/public/assets/lib/fullcalendar/locale/ar.js b/public/assets/lib/fullcalendar/locale/ar.js new file mode 100755 index 0000000..6c6a39e --- /dev/null +++ b/public/assets/lib/fullcalendar/locale/ar.js @@ -0,0 +1 @@ +!function(e,t){"object"==typeof exports&&"object"==typeof module?module.exports=t(require("moment"),require("fullcalendar")):"function"==typeof define&&define.amd?define(["moment","fullcalendar"],t):"object"==typeof exports?t(require("moment"),require("fullcalendar")):t(e.moment,e.FullCalendar)}("undefined"!=typeof self?self:this,function(e,t){return function(e){function t(n){if(r[n])return r[n].exports;var o=r[n]={i:n,l:!1,exports:{}};return e[n].call(o.exports,o,o.exports,t),o.l=!0,o.exports}var r={};return t.m=e,t.c=r,t.d=function(e,r,n){t.o(e,r)||Object.defineProperty(e,r,{configurable:!1,enumerable:!0,get:n})},t.n=function(e){var r=e&&e.__esModule?function(){return e.default}:function(){return e};return t.d(r,"a",r),r},t.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},t.p="",t(t.s=79)}({0:function(t,r){t.exports=e},1:function(e,r){e.exports=t},79:function(e,t,r){Object.defineProperty(t,"__esModule",{value:!0}),r(80);var n=r(1);n.datepickerLocale("ar","ar",{closeText:"إغلاق",prevText:"<السابق",nextText:"التالي>",currentText:"اليوم",monthNames:["يناير","فبراير","مارس","أبريل","مايو","يونيو","يوليو","أغسطس","سبتمبر","أكتوبر","نوفمبر","ديسمبر"],monthNamesShort:["1","2","3","4","5","6","7","8","9","10","11","12"],dayNames:["الأحد","الاثنين","الثلاثاء","الأربعاء","الخميس","الجمعة","السبت"],dayNamesShort:["أحد","اثنين","ثلاثاء","أربعاء","خميس","جمعة","سبت"],dayNamesMin:["ح","ن","ث","ر","خ","ج","س"],weekHeader:"أسبوع",dateFormat:"dd/mm/yy",firstDay:0,isRTL:!0,showMonthAfterYear:!1,yearSuffix:""}),n.locale("ar",{buttonText:{month:"شهر",week:"أسبوع",day:"يوم",list:"أجندة"},allDayText:"اليوم كله",eventLimitText:"أخرى",noEventsMessage:"أي أحداث لعرض"})},80:function(e,t,r){!function(e,t){t(r(0))}(0,function(e){var t={1:"١",2:"٢",3:"٣",4:"٤",5:"٥",6:"٦",7:"٧",8:"٨",9:"٩",0:"٠"},r={"١":"1","٢":"2","٣":"3","٤":"4","٥":"5","٦":"6","٧":"7","٨":"8","٩":"9","٠":"0"},n=function(e){return 0===e?0:1===e?1:2===e?2:e%100>=3&&e%100<=10?3:e%100>=11?4:5},o={s:["أقل من ثانية","ثانية واحدة",["ثانيتان","ثانيتين"],"%d ثوان","%d ثانية","%d ثانية"],m:["أقل من دقيقة","دقيقة واحدة",["دقيقتان","دقيقتين"],"%d دقائق","%d دقيقة","%d دقيقة"],h:["أقل من ساعة","ساعة واحدة",["ساعتان","ساعتين"],"%d ساعات","%d ساعة","%d ساعة"],d:["أقل من يوم","يوم واحد",["يومان","يومين"],"%d أيام","%d يومًا","%d يوم"],M:["أقل من شهر","شهر واحد",["شهران","شهرين"],"%d أشهر","%d شهرا","%d شهر"],y:["أقل من عام","عام واحد",["عامان","عامين"],"%d أعوام","%d عامًا","%d عام"]},a=function(e){return function(t,r,a,d){var u=n(t),i=o[e][n(t)];return 2===u&&(i=i[r?0:1]),i.replace(/%d/i,t)}},d=["يناير","فبراير","مارس","أبريل","مايو","يونيو","يوليو","أغسطس","سبتمبر","أكتوبر","نوفمبر","ديسمبر"];return e.defineLocale("ar",{months:d,monthsShort:d,weekdays:"الأحد_الإثنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت".split("_"),weekdaysShort:"أحد_إثنين_ثلاثاء_أربعاء_خميس_جمعة_سبت".split("_"),weekdaysMin:"ح_ن_ث_ر_خ_ج_س".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"D/‏M/‏YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},meridiemParse:/ص|م/,isPM:function(e){return"م"===e},meridiem:function(e,t,r){return e<12?"ص":"م"},calendar:{sameDay:"[اليوم عند الساعة] LT",nextDay:"[غدًا عند الساعة] LT",nextWeek:"dddd [عند الساعة] LT",lastDay:"[أمس عند الساعة] LT",lastWeek:"dddd [عند الساعة] LT",sameElse:"L"},relativeTime:{future:"بعد %s",past:"منذ %s",s:a("s"),ss:a("s"),m:a("m"),mm:a("m"),h:a("h"),hh:a("h"),d:a("d"),dd:a("d"),M:a("M"),MM:a("M"),y:a("y"),yy:a("y")},preparse:function(e){return e.replace(/[١٢٣٤٥٦٧٨٩٠]/g,function(e){return r[e]}).replace(/،/g,",")},postformat:function(e){return e.replace(/\d/g,function(e){return t[e]}).replace(/,/g,"،")},week:{dow:6,doy:12}})})}})}); \ No newline at end of file diff --git a/public/assets/lib/fullcalendar/locale/bg.js b/public/assets/lib/fullcalendar/locale/bg.js new file mode 100755 index 0000000..122e4e8 --- /dev/null +++ b/public/assets/lib/fullcalendar/locale/bg.js @@ -0,0 +1 @@ +!function(e,t){"object"==typeof exports&&"object"==typeof module?module.exports=t(require("moment"),require("fullcalendar")):"function"==typeof define&&define.amd?define(["moment","fullcalendar"],t):"object"==typeof exports?t(require("moment"),require("fullcalendar")):t(e.moment,e.FullCalendar)}("undefined"!=typeof self?self:this,function(e,t){return function(e){function t(r){if(n[r])return n[r].exports;var o=n[r]={i:r,l:!1,exports:{}};return e[r].call(o.exports,o,o.exports,t),o.l=!0,o.exports}var n={};return t.m=e,t.c=n,t.d=function(e,n,r){t.o(e,n)||Object.defineProperty(e,n,{configurable:!1,enumerable:!0,get:r})},t.n=function(e){var n=e&&e.__esModule?function(){return e.default}:function(){return e};return t.d(n,"a",n),n},t.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},t.p="",t(t.s=81)}({0:function(t,n){t.exports=e},1:function(e,n){e.exports=t},81:function(e,t,n){Object.defineProperty(t,"__esModule",{value:!0}),n(82);var r=n(1);r.datepickerLocale("bg","bg",{closeText:"затвори",prevText:"<назад",nextText:"напред>",nextBigText:">>",currentText:"днес",monthNames:["Януари","Февруари","Март","Април","Май","Юни","Юли","Август","Септември","Октомври","Ноември","Декември"],monthNamesShort:["Яну","Фев","Мар","Апр","Май","Юни","Юли","Авг","Сеп","Окт","Нов","Дек"],dayNames:["Неделя","Понеделник","Вторник","Сряда","Четвъртък","Петък","Събота"],dayNamesShort:["Нед","Пон","Вто","Сря","Чет","Пет","Съб"],dayNamesMin:["Не","По","Вт","Ср","Че","Пе","Съ"],weekHeader:"Wk",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),r.locale("bg",{buttonText:{month:"Месец",week:"Седмица",day:"Ден",list:"График"},allDayText:"Цял ден",eventLimitText:function(e){return"+още "+e},noEventsMessage:"Няма събития за показване"})},82:function(e,t,n){!function(e,t){t(n(0))}(0,function(e){return e.defineLocale("bg",{months:"януари_февруари_март_април_май_юни_юли_август_септември_октомври_ноември_декември".split("_"),monthsShort:"янр_фев_мар_апр_май_юни_юли_авг_сеп_окт_ное_дек".split("_"),weekdays:"неделя_понеделник_вторник_сряда_четвъртък_петък_събота".split("_"),weekdaysShort:"нед_пон_вто_сря_чет_пет_съб".split("_"),weekdaysMin:"нд_пн_вт_ср_чт_пт_сб".split("_"),longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"D.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY H:mm",LLLL:"dddd, D MMMM YYYY H:mm"},calendar:{sameDay:"[Днес в] LT",nextDay:"[Утре в] LT",nextWeek:"dddd [в] LT",lastDay:"[Вчера в] LT",lastWeek:function(){switch(this.day()){case 0:case 3:case 6:return"[В изминалата] dddd [в] LT";case 1:case 2:case 4:case 5:return"[В изминалия] dddd [в] LT"}},sameElse:"L"},relativeTime:{future:"след %s",past:"преди %s",s:"няколко секунди",ss:"%d секунди",m:"минута",mm:"%d минути",h:"час",hh:"%d часа",d:"ден",dd:"%d дни",M:"месец",MM:"%d месеца",y:"година",yy:"%d години"},dayOfMonthOrdinalParse:/\d{1,2}-(ев|ен|ти|ви|ри|ми)/,ordinal:function(e){var t=e%10,n=e%100;return 0===e?e+"-ев":0===n?e+"-ен":n>10&&n<20?e+"-ти":1===t?e+"-ви":2===t?e+"-ри":7===t||8===t?e+"-ми":e+"-ти"},week:{dow:1,doy:7}})})}})}); \ No newline at end of file diff --git a/public/assets/lib/fullcalendar/locale/bs.js b/public/assets/lib/fullcalendar/locale/bs.js new file mode 100755 index 0000000..943bc79 --- /dev/null +++ b/public/assets/lib/fullcalendar/locale/bs.js @@ -0,0 +1 @@ +!function(e,a){"object"==typeof exports&&"object"==typeof module?module.exports=a(require("moment"),require("fullcalendar")):"function"==typeof define&&define.amd?define(["moment","fullcalendar"],a):"object"==typeof exports?a(require("moment"),require("fullcalendar")):a(e.moment,e.FullCalendar)}("undefined"!=typeof self?self:this,function(e,a){return function(e){function a(r){if(t[r])return t[r].exports;var n=t[r]={i:r,l:!1,exports:{}};return e[r].call(n.exports,n,n.exports,a),n.l=!0,n.exports}var t={};return a.m=e,a.c=t,a.d=function(e,t,r){a.o(e,t)||Object.defineProperty(e,t,{configurable:!1,enumerable:!0,get:r})},a.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return a.d(t,"a",t),t},a.o=function(e,a){return Object.prototype.hasOwnProperty.call(e,a)},a.p="",a(a.s=83)}({0:function(a,t){a.exports=e},1:function(e,t){e.exports=a},83:function(e,a,t){Object.defineProperty(a,"__esModule",{value:!0}),t(84);var r=t(1);r.datepickerLocale("bs","bs",{closeText:"Zatvori",prevText:"<",nextText:">",currentText:"Danas",monthNames:["Januar","Februar","Mart","April","Maj","Juni","Juli","August","Septembar","Oktobar","Novmbar","Decembar"],monthNamesShort:["Jan","Feb","Mar","Apr","Maj","Jun","Jul","Aug","Sep","Okt","Nov","Dec"],dayNames:["Nedjelja","Ponedjeljak","Utorak","Srijeda","Četvrtak","Petak","Subota"],dayNamesShort:["Ned","Pon","Uto","Sri","Čet","Pet","Sub"],dayNamesMin:["Ne","Po","Ut","Sr","Če","Pe","Su"],weekHeader:"Sed",dateFormat:"dd.mm.yy.",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),r.locale("bs",{buttonText:{prev:"Prošli",next:"Sljedeći",month:"Mjesec",week:"Sedmica",day:"Dan",list:"Raspored"},allDayText:"Cijeli dan",eventLimitText:function(e){return"+ još "+e},noEventsMessage:"Nema događaja za prikazivanje"})},84:function(e,a,t){!function(e,a){a(t(0))}(0,function(e){function a(e,a,t){var r=e+" ";switch(t){case"ss":return r+=1===e?"sekunda":2===e||3===e||4===e?"sekunde":"sekundi";case"m":return a?"jedna minuta":"jedne minute";case"mm":return r+=1===e?"minuta":2===e||3===e||4===e?"minute":"minuta";case"h":return a?"jedan sat":"jednog sata";case"hh":return r+=1===e?"sat":2===e||3===e||4===e?"sata":"sati";case"dd":return r+=1===e?"dan":"dana";case"MM":return r+=1===e?"mjesec":2===e||3===e||4===e?"mjeseca":"mjeseci";case"yy":return r+=1===e?"godina":2===e||3===e||4===e?"godine":"godina"}}return e.defineLocale("bs",{months:"januar_februar_mart_april_maj_juni_juli_august_septembar_oktobar_novembar_decembar".split("_"),monthsShort:"jan._feb._mar._apr._maj._jun._jul._aug._sep._okt._nov._dec.".split("_"),monthsParseExact:!0,weekdays:"nedjelja_ponedjeljak_utorak_srijeda_četvrtak_petak_subota".split("_"),weekdaysShort:"ned._pon._uto._sri._čet._pet._sub.".split("_"),weekdaysMin:"ne_po_ut_sr_če_pe_su".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY H:mm",LLLL:"dddd, D. MMMM YYYY H:mm"},calendar:{sameDay:"[danas u] LT",nextDay:"[sutra u] LT",nextWeek:function(){switch(this.day()){case 0:return"[u] [nedjelju] [u] LT";case 3:return"[u] [srijedu] [u] LT";case 6:return"[u] [subotu] [u] LT";case 1:case 2:case 4:case 5:return"[u] dddd [u] LT"}},lastDay:"[jučer u] LT",lastWeek:function(){switch(this.day()){case 0:case 3:return"[prošlu] dddd [u] LT";case 6:return"[prošle] [subote] [u] LT";case 1:case 2:case 4:case 5:return"[prošli] dddd [u] LT"}},sameElse:"L"},relativeTime:{future:"za %s",past:"prije %s",s:"par sekundi",ss:a,m:a,mm:a,h:a,hh:a,d:"dan",dd:a,M:"mjesec",MM:a,y:"godinu",yy:a},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:7}})})}})}); \ No newline at end of file diff --git a/public/assets/lib/fullcalendar/locale/ca.js b/public/assets/lib/fullcalendar/locale/ca.js new file mode 100755 index 0000000..6a0da74 --- /dev/null +++ b/public/assets/lib/fullcalendar/locale/ca.js @@ -0,0 +1 @@ +!function(e,t){"object"==typeof exports&&"object"==typeof module?module.exports=t(require("moment"),require("fullcalendar")):"function"==typeof define&&define.amd?define(["moment","fullcalendar"],t):"object"==typeof exports?t(require("moment"),require("fullcalendar")):t(e.moment,e.FullCalendar)}("undefined"!=typeof self?self:this,function(e,t){return function(e){function t(r){if(n[r])return n[r].exports;var d=n[r]={i:r,l:!1,exports:{}};return e[r].call(d.exports,d,d.exports,t),d.l=!0,d.exports}var n={};return t.m=e,t.c=n,t.d=function(e,n,r){t.o(e,n)||Object.defineProperty(e,n,{configurable:!1,enumerable:!0,get:r})},t.n=function(e){var n=e&&e.__esModule?function(){return e.default}:function(){return e};return t.d(n,"a",n),n},t.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},t.p="",t(t.s=85)}({0:function(t,n){t.exports=e},1:function(e,n){e.exports=t},85:function(e,t,n){Object.defineProperty(t,"__esModule",{value:!0}),n(86);var r=n(1);r.datepickerLocale("ca","ca",{closeText:"Tanca",prevText:"Anterior",nextText:"Següent",currentText:"Avui",monthNames:["gener","febrer","març","abril","maig","juny","juliol","agost","setembre","octubre","novembre","desembre"],monthNamesShort:["gen","feb","març","abr","maig","juny","jul","ag","set","oct","nov","des"],dayNames:["diumenge","dilluns","dimarts","dimecres","dijous","divendres","dissabte"],dayNamesShort:["dg","dl","dt","dc","dj","dv","ds"],dayNamesMin:["dg","dl","dt","dc","dj","dv","ds"],weekHeader:"Set",dateFormat:"dd/mm/yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),r.locale("ca",{buttonText:{month:"Mes",week:"Setmana",day:"Dia",list:"Agenda"},allDayText:"Tot el dia",eventLimitText:"més",noEventsMessage:"No hi ha esdeveniments per mostrar"})},86:function(e,t,n){!function(e,t){t(n(0))}(0,function(e){return e.defineLocale("ca",{months:{standalone:"gener_febrer_març_abril_maig_juny_juliol_agost_setembre_octubre_novembre_desembre".split("_"),format:"de gener_de febrer_de març_d'abril_de maig_de juny_de juliol_d'agost_de setembre_d'octubre_de novembre_de desembre".split("_"),isFormat:/D[oD]?(\s)+MMMM/},monthsShort:"gen._febr._març_abr._maig_juny_jul._ag._set._oct._nov._des.".split("_"),monthsParseExact:!0,weekdays:"diumenge_dilluns_dimarts_dimecres_dijous_divendres_dissabte".split("_"),weekdaysShort:"dg._dl._dt._dc._dj._dv._ds.".split("_"),weekdaysMin:"dg_dl_dt_dc_dj_dv_ds".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM [de] YYYY",ll:"D MMM YYYY",LLL:"D MMMM [de] YYYY [a les] H:mm",lll:"D MMM YYYY, H:mm",LLLL:"dddd D MMMM [de] YYYY [a les] H:mm",llll:"ddd D MMM YYYY, H:mm"},calendar:{sameDay:function(){return"[avui a "+(1!==this.hours()?"les":"la")+"] LT"},nextDay:function(){return"[demà a "+(1!==this.hours()?"les":"la")+"] LT"},nextWeek:function(){return"dddd [a "+(1!==this.hours()?"les":"la")+"] LT"},lastDay:function(){return"[ahir a "+(1!==this.hours()?"les":"la")+"] LT"},lastWeek:function(){return"[el] dddd [passat a "+(1!==this.hours()?"les":"la")+"] LT"},sameElse:"L"},relativeTime:{future:"d'aquí %s",past:"fa %s",s:"uns segons",ss:"%d segons",m:"un minut",mm:"%d minuts",h:"una hora",hh:"%d hores",d:"un dia",dd:"%d dies",M:"un mes",MM:"%d mesos",y:"un any",yy:"%d anys"},dayOfMonthOrdinalParse:/\d{1,2}(r|n|t|è|a)/,ordinal:function(e,t){var n=1===e?"r":2===e?"n":3===e?"r":4===e?"t":"è";return"w"!==t&&"W"!==t||(n="a"),e+n},week:{dow:1,doy:4}})})}})}); \ No newline at end of file diff --git a/public/assets/lib/fullcalendar/locale/cs.js b/public/assets/lib/fullcalendar/locale/cs.js new file mode 100755 index 0000000..f441b54 --- /dev/null +++ b/public/assets/lib/fullcalendar/locale/cs.js @@ -0,0 +1 @@ +!function(e,n){"object"==typeof exports&&"object"==typeof module?module.exports=n(require("moment"),require("fullcalendar")):"function"==typeof define&&define.amd?define(["moment","fullcalendar"],n):"object"==typeof exports?n(require("moment"),require("fullcalendar")):n(e.moment,e.FullCalendar)}("undefined"!=typeof self?self:this,function(e,n){return function(e){function n(r){if(t[r])return t[r].exports;var s=t[r]={i:r,l:!1,exports:{}};return e[r].call(s.exports,s,s.exports,n),s.l=!0,s.exports}var t={};return n.m=e,n.c=t,n.d=function(e,t,r){n.o(e,t)||Object.defineProperty(e,t,{configurable:!1,enumerable:!0,get:r})},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,n){return Object.prototype.hasOwnProperty.call(e,n)},n.p="",n(n.s=87)}({0:function(n,t){n.exports=e},1:function(e,t){e.exports=n},87:function(e,n,t){Object.defineProperty(n,"__esModule",{value:!0}),t(88);var r=t(1);r.datepickerLocale("cs","cs",{closeText:"Zavřít",prevText:"<Dříve",nextText:"Později>",currentText:"Nyní",monthNames:["leden","únor","březen","duben","květen","červen","červenec","srpen","září","říjen","listopad","prosinec"],monthNamesShort:["led","úno","bře","dub","kvě","čer","čvc","srp","zář","říj","lis","pro"],dayNames:["neděle","pondělí","úterý","středa","čtvrtek","pátek","sobota"],dayNamesShort:["ne","po","út","st","čt","pá","so"],dayNamesMin:["ne","po","út","st","čt","pá","so"],weekHeader:"Týd",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),r.locale("cs",{buttonText:{month:"Měsíc",week:"Týden",day:"Den",list:"Agenda"},allDayText:"Celý den",eventLimitText:function(e){return"+další: "+e},noEventsMessage:"Žádné akce k zobrazení"})},88:function(e,n,t){!function(e,n){n(t(0))}(0,function(e){function n(e){return e>1&&e<5&&1!=~~(e/10)}function t(e,t,r,s){var o=e+" ";switch(r){case"s":return t||s?"pár sekund":"pár sekundami";case"ss":return t||s?o+(n(e)?"sekundy":"sekund"):o+"sekundami";case"m":return t?"minuta":s?"minutu":"minutou";case"mm":return t||s?o+(n(e)?"minuty":"minut"):o+"minutami";case"h":return t?"hodina":s?"hodinu":"hodinou";case"hh":return t||s?o+(n(e)?"hodiny":"hodin"):o+"hodinami";case"d":return t||s?"den":"dnem";case"dd":return t||s?o+(n(e)?"dny":"dní"):o+"dny";case"M":return t||s?"měsíc":"měsícem";case"MM":return t||s?o+(n(e)?"měsíce":"měsíců"):o+"měsíci";case"y":return t||s?"rok":"rokem";case"yy":return t||s?o+(n(e)?"roky":"let"):o+"lety"}}var r="leden_únor_březen_duben_květen_červen_červenec_srpen_září_říjen_listopad_prosinec".split("_"),s="led_úno_bře_dub_kvě_čvn_čvc_srp_zář_říj_lis_pro".split("_");return e.defineLocale("cs",{months:r,monthsShort:s,monthsParse:function(e,n){var t,r=[];for(t=0;t<12;t++)r[t]=new RegExp("^"+e[t]+"$|^"+n[t]+"$","i");return r}(r,s),shortMonthsParse:function(e){var n,t=[];for(n=0;n<12;n++)t[n]=new RegExp("^"+e[n]+"$","i");return t}(s),longMonthsParse:function(e){var n,t=[];for(n=0;n<12;n++)t[n]=new RegExp("^"+e[n]+"$","i");return t}(r),weekdays:"neděle_pondělí_úterý_středa_čtvrtek_pátek_sobota".split("_"),weekdaysShort:"ne_po_út_st_čt_pá_so".split("_"),weekdaysMin:"ne_po_út_st_čt_pá_so".split("_"),longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY H:mm",LLLL:"dddd D. MMMM YYYY H:mm",l:"D. M. YYYY"},calendar:{sameDay:"[dnes v] LT",nextDay:"[zítra v] LT",nextWeek:function(){switch(this.day()){case 0:return"[v neděli v] LT";case 1:case 2:return"[v] dddd [v] LT";case 3:return"[ve středu v] LT";case 4:return"[ve čtvrtek v] LT";case 5:return"[v pátek v] LT";case 6:return"[v sobotu v] LT"}},lastDay:"[včera v] LT",lastWeek:function(){switch(this.day()){case 0:return"[minulou neděli v] LT";case 1:case 2:return"[minulé] dddd [v] LT";case 3:return"[minulou středu v] LT";case 4:case 5:return"[minulý] dddd [v] LT";case 6:return"[minulou sobotu v] LT"}},sameElse:"L"},relativeTime:{future:"za %s",past:"před %s",s:t,ss:t,m:t,mm:t,h:t,hh:t,d:t,dd:t,M:t,MM:t,y:t,yy:t},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})})}})}); \ No newline at end of file diff --git a/public/assets/lib/fullcalendar/locale/da.js b/public/assets/lib/fullcalendar/locale/da.js new file mode 100755 index 0000000..bd76d9f --- /dev/null +++ b/public/assets/lib/fullcalendar/locale/da.js @@ -0,0 +1 @@ +!function(e,r){"object"==typeof exports&&"object"==typeof module?module.exports=r(require("moment"),require("fullcalendar")):"function"==typeof define&&define.amd?define(["moment","fullcalendar"],r):"object"==typeof exports?r(require("moment"),require("fullcalendar")):r(e.moment,e.FullCalendar)}("undefined"!=typeof self?self:this,function(e,r){return function(e){function r(n){if(t[n])return t[n].exports;var a=t[n]={i:n,l:!1,exports:{}};return e[n].call(a.exports,a,a.exports,r),a.l=!0,a.exports}var t={};return r.m=e,r.c=t,r.d=function(e,t,n){r.o(e,t)||Object.defineProperty(e,t,{configurable:!1,enumerable:!0,get:n})},r.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return r.d(t,"a",t),t},r.o=function(e,r){return Object.prototype.hasOwnProperty.call(e,r)},r.p="",r(r.s=89)}({0:function(r,t){r.exports=e},1:function(e,t){e.exports=r},89:function(e,r,t){Object.defineProperty(r,"__esModule",{value:!0}),t(90);var n=t(1);n.datepickerLocale("da","da",{closeText:"Luk",prevText:"<Forrige",nextText:"Næste>",currentText:"Idag",monthNames:["Januar","Februar","Marts","April","Maj","Juni","Juli","August","September","Oktober","November","December"],monthNamesShort:["Jan","Feb","Mar","Apr","Maj","Jun","Jul","Aug","Sep","Okt","Nov","Dec"],dayNames:["Søndag","Mandag","Tirsdag","Onsdag","Torsdag","Fredag","Lørdag"],dayNamesShort:["Søn","Man","Tir","Ons","Tor","Fre","Lør"],dayNamesMin:["Sø","Ma","Ti","On","To","Fr","Lø"],weekHeader:"Uge",dateFormat:"dd-mm-yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),n.locale("da",{buttonText:{month:"Måned",week:"Uge",day:"Dag",list:"Agenda"},allDayText:"Hele dagen",eventLimitText:"flere",noEventsMessage:"Ingen arrangementer at vise"})},90:function(e,r,t){!function(e,r){r(t(0))}(0,function(e){return e.defineLocale("da",{months:"januar_februar_marts_april_maj_juni_juli_august_september_oktober_november_december".split("_"),monthsShort:"jan_feb_mar_apr_maj_jun_jul_aug_sep_okt_nov_dec".split("_"),weekdays:"søndag_mandag_tirsdag_onsdag_torsdag_fredag_lørdag".split("_"),weekdaysShort:"søn_man_tir_ons_tor_fre_lør".split("_"),weekdaysMin:"sø_ma_ti_on_to_fr_lø".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY HH:mm",LLLL:"dddd [d.] D. MMMM YYYY [kl.] HH:mm"},calendar:{sameDay:"[i dag kl.] LT",nextDay:"[i morgen kl.] LT",nextWeek:"på dddd [kl.] LT",lastDay:"[i går kl.] LT",lastWeek:"[i] dddd[s kl.] LT",sameElse:"L"},relativeTime:{future:"om %s",past:"%s siden",s:"få sekunder",ss:"%d sekunder",m:"et minut",mm:"%d minutter",h:"en time",hh:"%d timer",d:"en dag",dd:"%d dage",M:"en måned",MM:"%d måneder",y:"et år",yy:"%d år"},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})})}})}); \ No newline at end of file diff --git a/public/assets/lib/fullcalendar/locale/de-at.js b/public/assets/lib/fullcalendar/locale/de-at.js new file mode 100755 index 0000000..934946c --- /dev/null +++ b/public/assets/lib/fullcalendar/locale/de-at.js @@ -0,0 +1 @@ +!function(e,t){"object"==typeof exports&&"object"==typeof module?module.exports=t(require("moment"),require("fullcalendar")):"function"==typeof define&&define.amd?define(["moment","fullcalendar"],t):"object"==typeof exports?t(require("moment"),require("fullcalendar")):t(e.moment,e.FullCalendar)}("undefined"!=typeof self?self:this,function(e,t){return function(e){function t(r){if(n[r])return n[r].exports;var a=n[r]={i:r,l:!1,exports:{}};return e[r].call(a.exports,a,a.exports,t),a.l=!0,a.exports}var n={};return t.m=e,t.c=n,t.d=function(e,n,r){t.o(e,n)||Object.defineProperty(e,n,{configurable:!1,enumerable:!0,get:r})},t.n=function(e){var n=e&&e.__esModule?function(){return e.default}:function(){return e};return t.d(n,"a",n),n},t.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},t.p="",t(t.s=91)}({0:function(t,n){t.exports=e},1:function(e,n){e.exports=t},91:function(e,t,n){Object.defineProperty(t,"__esModule",{value:!0}),n(92);var r=n(1);r.datepickerLocale("de-at","de",{closeText:"Schließen",prevText:"<Zurück",nextText:"Vor>",currentText:"Heute",monthNames:["Januar","Februar","März","April","Mai","Juni","Juli","August","September","Oktober","November","Dezember"],monthNamesShort:["Jan","Feb","Mär","Apr","Mai","Jun","Jul","Aug","Sep","Okt","Nov","Dez"],dayNames:["Sonntag","Montag","Dienstag","Mittwoch","Donnerstag","Freitag","Samstag"],dayNamesShort:["So","Mo","Di","Mi","Do","Fr","Sa"],dayNamesMin:["So","Mo","Di","Mi","Do","Fr","Sa"],weekHeader:"KW",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),r.locale("de-at",{buttonText:{month:"Monat",week:"Woche",day:"Tag",list:"Terminübersicht"},allDayText:"Ganztägig",eventLimitText:function(e){return"+ weitere "+e},noEventsMessage:"Keine Ereignisse anzuzeigen"})},92:function(e,t,n){!function(e,t){t(n(0))}(0,function(e){function t(e,t,n,r){var a={m:["eine Minute","einer Minute"],h:["eine Stunde","einer Stunde"],d:["ein Tag","einem Tag"],dd:[e+" Tage",e+" Tagen"],M:["ein Monat","einem Monat"],MM:[e+" Monate",e+" Monaten"],y:["ein Jahr","einem Jahr"],yy:[e+" Jahre",e+" Jahren"]};return t?a[n][0]:a[n][1]}return e.defineLocale("de-at",{months:"Jänner_Februar_März_April_Mai_Juni_Juli_August_September_Oktober_November_Dezember".split("_"),monthsShort:"Jän._Feb._März_Apr._Mai_Juni_Juli_Aug._Sep._Okt._Nov._Dez.".split("_"),monthsParseExact:!0,weekdays:"Sonntag_Montag_Dienstag_Mittwoch_Donnerstag_Freitag_Samstag".split("_"),weekdaysShort:"So._Mo._Di._Mi._Do._Fr._Sa.".split("_"),weekdaysMin:"So_Mo_Di_Mi_Do_Fr_Sa".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY HH:mm",LLLL:"dddd, D. MMMM YYYY HH:mm"},calendar:{sameDay:"[heute um] LT [Uhr]",sameElse:"L",nextDay:"[morgen um] LT [Uhr]",nextWeek:"dddd [um] LT [Uhr]",lastDay:"[gestern um] LT [Uhr]",lastWeek:"[letzten] dddd [um] LT [Uhr]"},relativeTime:{future:"in %s",past:"vor %s",s:"ein paar Sekunden",ss:"%d Sekunden",m:t,mm:"%d Minuten",h:t,hh:"%d Stunden",d:t,dd:t,M:t,MM:t,y:t,yy:t},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})})}})}); \ No newline at end of file diff --git a/public/assets/lib/fullcalendar/locale/de-ch.js b/public/assets/lib/fullcalendar/locale/de-ch.js new file mode 100755 index 0000000..2a83e79 --- /dev/null +++ b/public/assets/lib/fullcalendar/locale/de-ch.js @@ -0,0 +1 @@ +!function(e,t){"object"==typeof exports&&"object"==typeof module?module.exports=t(require("moment"),require("fullcalendar")):"function"==typeof define&&define.amd?define(["moment","fullcalendar"],t):"object"==typeof exports?t(require("moment"),require("fullcalendar")):t(e.moment,e.FullCalendar)}("undefined"!=typeof self?self:this,function(e,t){return function(e){function t(r){if(n[r])return n[r].exports;var a=n[r]={i:r,l:!1,exports:{}};return e[r].call(a.exports,a,a.exports,t),a.l=!0,a.exports}var n={};return t.m=e,t.c=n,t.d=function(e,n,r){t.o(e,n)||Object.defineProperty(e,n,{configurable:!1,enumerable:!0,get:r})},t.n=function(e){var n=e&&e.__esModule?function(){return e.default}:function(){return e};return t.d(n,"a",n),n},t.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},t.p="",t(t.s=93)}({0:function(t,n){t.exports=e},1:function(e,n){e.exports=t},93:function(e,t,n){Object.defineProperty(t,"__esModule",{value:!0}),n(94);var r=n(1);r.datepickerLocale("de-ch","de",{closeText:"Schließen",prevText:"<Zurück",nextText:"Vor>",currentText:"Heute",monthNames:["Januar","Februar","März","April","Mai","Juni","Juli","August","September","Oktober","November","Dezember"],monthNamesShort:["Jan","Feb","Mär","Apr","Mai","Jun","Jul","Aug","Sep","Okt","Nov","Dez"],dayNames:["Sonntag","Montag","Dienstag","Mittwoch","Donnerstag","Freitag","Samstag"],dayNamesShort:["So","Mo","Di","Mi","Do","Fr","Sa"],dayNamesMin:["So","Mo","Di","Mi","Do","Fr","Sa"],weekHeader:"KW",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),r.locale("de-ch",{buttonText:{month:"Monat",week:"Woche",day:"Tag",list:"Terminübersicht"},allDayText:"Ganztägig",eventLimitText:function(e){return"+ weitere "+e},noEventsMessage:"Keine Ereignisse anzuzeigen"})},94:function(e,t,n){!function(e,t){t(n(0))}(0,function(e){function t(e,t,n,r){var a={m:["eine Minute","einer Minute"],h:["eine Stunde","einer Stunde"],d:["ein Tag","einem Tag"],dd:[e+" Tage",e+" Tagen"],M:["ein Monat","einem Monat"],MM:[e+" Monate",e+" Monaten"],y:["ein Jahr","einem Jahr"],yy:[e+" Jahre",e+" Jahren"]};return t?a[n][0]:a[n][1]}return e.defineLocale("de-ch",{months:"Januar_Februar_März_April_Mai_Juni_Juli_August_September_Oktober_November_Dezember".split("_"),monthsShort:"Jan._Feb._März_Apr._Mai_Juni_Juli_Aug._Sep._Okt._Nov._Dez.".split("_"),monthsParseExact:!0,weekdays:"Sonntag_Montag_Dienstag_Mittwoch_Donnerstag_Freitag_Samstag".split("_"),weekdaysShort:"So_Mo_Di_Mi_Do_Fr_Sa".split("_"),weekdaysMin:"So_Mo_Di_Mi_Do_Fr_Sa".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY HH:mm",LLLL:"dddd, D. MMMM YYYY HH:mm"},calendar:{sameDay:"[heute um] LT [Uhr]",sameElse:"L",nextDay:"[morgen um] LT [Uhr]",nextWeek:"dddd [um] LT [Uhr]",lastDay:"[gestern um] LT [Uhr]",lastWeek:"[letzten] dddd [um] LT [Uhr]"},relativeTime:{future:"in %s",past:"vor %s",s:"ein paar Sekunden",ss:"%d Sekunden",m:t,mm:"%d Minuten",h:t,hh:"%d Stunden",d:t,dd:t,M:t,MM:t,y:t,yy:t},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})})}})}); \ No newline at end of file diff --git a/public/assets/lib/fullcalendar/locale/de.js b/public/assets/lib/fullcalendar/locale/de.js new file mode 100755 index 0000000..0e42bbf --- /dev/null +++ b/public/assets/lib/fullcalendar/locale/de.js @@ -0,0 +1 @@ +!function(e,t){"object"==typeof exports&&"object"==typeof module?module.exports=t(require("moment"),require("fullcalendar")):"function"==typeof define&&define.amd?define(["moment","fullcalendar"],t):"object"==typeof exports?t(require("moment"),require("fullcalendar")):t(e.moment,e.FullCalendar)}("undefined"!=typeof self?self:this,function(e,t){return function(e){function t(r){if(n[r])return n[r].exports;var a=n[r]={i:r,l:!1,exports:{}};return e[r].call(a.exports,a,a.exports,t),a.l=!0,a.exports}var n={};return t.m=e,t.c=n,t.d=function(e,n,r){t.o(e,n)||Object.defineProperty(e,n,{configurable:!1,enumerable:!0,get:r})},t.n=function(e){var n=e&&e.__esModule?function(){return e.default}:function(){return e};return t.d(n,"a",n),n},t.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},t.p="",t(t.s=95)}({0:function(t,n){t.exports=e},1:function(e,n){e.exports=t},95:function(e,t,n){Object.defineProperty(t,"__esModule",{value:!0}),n(96);var r=n(1);r.datepickerLocale("de","de",{closeText:"Schließen",prevText:"<Zurück",nextText:"Vor>",currentText:"Heute",monthNames:["Januar","Februar","März","April","Mai","Juni","Juli","August","September","Oktober","November","Dezember"],monthNamesShort:["Jan","Feb","Mär","Apr","Mai","Jun","Jul","Aug","Sep","Okt","Nov","Dez"],dayNames:["Sonntag","Montag","Dienstag","Mittwoch","Donnerstag","Freitag","Samstag"],dayNamesShort:["So","Mo","Di","Mi","Do","Fr","Sa"],dayNamesMin:["So","Mo","Di","Mi","Do","Fr","Sa"],weekHeader:"KW",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),r.locale("de",{buttonText:{month:"Monat",week:"Woche",day:"Tag",list:"Terminübersicht"},allDayText:"Ganztägig",eventLimitText:function(e){return"+ weitere "+e},noEventsMessage:"Keine Ereignisse anzuzeigen"})},96:function(e,t,n){!function(e,t){t(n(0))}(0,function(e){function t(e,t,n,r){var a={m:["eine Minute","einer Minute"],h:["eine Stunde","einer Stunde"],d:["ein Tag","einem Tag"],dd:[e+" Tage",e+" Tagen"],M:["ein Monat","einem Monat"],MM:[e+" Monate",e+" Monaten"],y:["ein Jahr","einem Jahr"],yy:[e+" Jahre",e+" Jahren"]};return t?a[n][0]:a[n][1]}return e.defineLocale("de",{months:"Januar_Februar_März_April_Mai_Juni_Juli_August_September_Oktober_November_Dezember".split("_"),monthsShort:"Jan._Feb._März_Apr._Mai_Juni_Juli_Aug._Sep._Okt._Nov._Dez.".split("_"),monthsParseExact:!0,weekdays:"Sonntag_Montag_Dienstag_Mittwoch_Donnerstag_Freitag_Samstag".split("_"),weekdaysShort:"So._Mo._Di._Mi._Do._Fr._Sa.".split("_"),weekdaysMin:"So_Mo_Di_Mi_Do_Fr_Sa".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY HH:mm",LLLL:"dddd, D. MMMM YYYY HH:mm"},calendar:{sameDay:"[heute um] LT [Uhr]",sameElse:"L",nextDay:"[morgen um] LT [Uhr]",nextWeek:"dddd [um] LT [Uhr]",lastDay:"[gestern um] LT [Uhr]",lastWeek:"[letzten] dddd [um] LT [Uhr]"},relativeTime:{future:"in %s",past:"vor %s",s:"ein paar Sekunden",ss:"%d Sekunden",m:t,mm:"%d Minuten",h:t,hh:"%d Stunden",d:t,dd:t,M:t,MM:t,y:t,yy:t},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})})}})}); \ No newline at end of file diff --git a/public/assets/lib/fullcalendar/locale/el.js b/public/assets/lib/fullcalendar/locale/el.js new file mode 100755 index 0000000..a6bc4d7 --- /dev/null +++ b/public/assets/lib/fullcalendar/locale/el.js @@ -0,0 +1 @@ +!function(e,t){"object"==typeof exports&&"object"==typeof module?module.exports=t(require("moment"),require("fullcalendar")):"function"==typeof define&&define.amd?define(["moment","fullcalendar"],t):"object"==typeof exports?t(require("moment"),require("fullcalendar")):t(e.moment,e.FullCalendar)}("undefined"!=typeof self?self:this,function(e,t){return function(e){function t(o){if(n[o])return n[o].exports;var r=n[o]={i:o,l:!1,exports:{}};return e[o].call(r.exports,r,r.exports,t),r.l=!0,r.exports}var n={};return t.m=e,t.c=n,t.d=function(e,n,o){t.o(e,n)||Object.defineProperty(e,n,{configurable:!1,enumerable:!0,get:o})},t.n=function(e){var n=e&&e.__esModule?function(){return e.default}:function(){return e};return t.d(n,"a",n),n},t.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},t.p="",t(t.s=97)}({0:function(t,n){t.exports=e},1:function(e,n){e.exports=t},97:function(e,t,n){Object.defineProperty(t,"__esModule",{value:!0}),n(98);var o=n(1);o.datepickerLocale("el","el",{closeText:"Κλείσιμο",prevText:"Προηγούμενος",nextText:"Επόμενος",currentText:"Σήμερα",monthNames:["Ιανουάριος","Φεβρουάριος","Μάρτιος","Απρίλιος","Μάιος","Ιούνιος","Ιούλιος","Αύγουστος","Σεπτέμβριος","Οκτώβριος","Νοέμβριος","Δεκέμβριος"],monthNamesShort:["Ιαν","Φεβ","Μαρ","Απρ","Μαι","Ιουν","Ιουλ","Αυγ","Σεπ","Οκτ","Νοε","Δεκ"],dayNames:["Κυριακή","Δευτέρα","Τρίτη","Τετάρτη","Πέμπτη","Παρασκευή","Σάββατο"],dayNamesShort:["Κυρ","Δευ","Τρι","Τετ","Πεμ","Παρ","Σαβ"],dayNamesMin:["Κυ","Δε","Τρ","Τε","Πε","Πα","Σα"],weekHeader:"Εβδ",dateFormat:"dd/mm/yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),o.locale("el",{buttonText:{month:"Μήνας",week:"Εβδομάδα",day:"Ημέρα",list:"Ατζέντα"},allDayText:"Ολοήμερο",eventLimitText:"περισσότερα",noEventsMessage:"Δεν υπάρχουν γεγονότα για να εμφανιστεί"})},98:function(e,t,n){!function(e,t){t(n(0))}(0,function(e){function t(e){return e instanceof Function||"[object Function]"===Object.prototype.toString.call(e)}return e.defineLocale("el",{monthsNominativeEl:"Ιανουάριος_Φεβρουάριος_Μάρτιος_Απρίλιος_Μάιος_Ιούνιος_Ιούλιος_Αύγουστος_Σεπτέμβριος_Οκτώβριος_Νοέμβριος_Δεκέμβριος".split("_"),monthsGenitiveEl:"Ιανουαρίου_Φεβρουαρίου_Μαρτίου_Απριλίου_Μαΐου_Ιουνίου_Ιουλίου_Αυγούστου_Σεπτεμβρίου_Οκτωβρίου_Νοεμβρίου_Δεκεμβρίου".split("_"),months:function(e,t){return e?"string"==typeof t&&/D/.test(t.substring(0,t.indexOf("MMMM")))?this._monthsGenitiveEl[e.month()]:this._monthsNominativeEl[e.month()]:this._monthsNominativeEl},monthsShort:"Ιαν_Φεβ_Μαρ_Απρ_Μαϊ_Ιουν_Ιουλ_Αυγ_Σεπ_Οκτ_Νοε_Δεκ".split("_"),weekdays:"Κυριακή_Δευτέρα_Τρίτη_Τετάρτη_Πέμπτη_Παρασκευή_Σάββατο".split("_"),weekdaysShort:"Κυρ_Δευ_Τρι_Τετ_Πεμ_Παρ_Σαβ".split("_"),weekdaysMin:"Κυ_Δε_Τρ_Τε_Πε_Πα_Σα".split("_"),meridiem:function(e,t,n){return e>11?n?"μμ":"ΜΜ":n?"πμ":"ΠΜ"},isPM:function(e){return"μ"===(e+"").toLowerCase()[0]},meridiemParse:/[ΠΜ]\.?Μ?\.?/i,longDateFormat:{LT:"h:mm A",LTS:"h:mm:ss A",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY h:mm A",LLLL:"dddd, D MMMM YYYY h:mm A"},calendarEl:{sameDay:"[Σήμερα {}] LT",nextDay:"[Αύριο {}] LT",nextWeek:"dddd [{}] LT",lastDay:"[Χθες {}] LT",lastWeek:function(){switch(this.day()){case 6:return"[το προηγούμενο] dddd [{}] LT";default:return"[την προηγούμενη] dddd [{}] LT"}},sameElse:"L"},calendar:function(e,n){var o=this._calendarEl[e],r=n&&n.hours();return t(o)&&(o=o.apply(n)),o.replace("{}",r%12==1?"στη":"στις")},relativeTime:{future:"σε %s",past:"%s πριν",s:"λίγα δευτερόλεπτα",ss:"%d δευτερόλεπτα",m:"ένα λεπτό",mm:"%d λεπτά",h:"μία ώρα",hh:"%d ώρες",d:"μία μέρα",dd:"%d μέρες",M:"ένας μήνας",MM:"%d μήνες",y:"ένας χρόνος",yy:"%d χρόνια"},dayOfMonthOrdinalParse:/\d{1,2}η/,ordinal:"%dη",week:{dow:1,doy:4}})})}})}); \ No newline at end of file diff --git a/public/assets/lib/fullcalendar/locale/en-au.js b/public/assets/lib/fullcalendar/locale/en-au.js new file mode 100755 index 0000000..a949c69 --- /dev/null +++ b/public/assets/lib/fullcalendar/locale/en-au.js @@ -0,0 +1 @@ +!function(e,t){"object"==typeof exports&&"object"==typeof module?module.exports=t(require("moment"),require("fullcalendar")):"function"==typeof define&&define.amd?define(["moment","fullcalendar"],t):"object"==typeof exports?t(require("moment"),require("fullcalendar")):t(e.moment,e.FullCalendar)}("undefined"!=typeof self?self:this,function(e,t){return function(e){function t(r){if(a[r])return a[r].exports;var n=a[r]={i:r,l:!1,exports:{}};return e[r].call(n.exports,n,n.exports,t),n.l=!0,n.exports}var a={};return t.m=e,t.c=a,t.d=function(e,a,r){t.o(e,a)||Object.defineProperty(e,a,{configurable:!1,enumerable:!0,get:r})},t.n=function(e){var a=e&&e.__esModule?function(){return e.default}:function(){return e};return t.d(a,"a",a),a},t.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},t.p="",t(t.s=99)}({0:function(t,a){t.exports=e},1:function(e,a){e.exports=t},100:function(e,t,a){!function(e,t){t(a(0))}(0,function(e){return e.defineLocale("en-au",{months:"January_February_March_April_May_June_July_August_September_October_November_December".split("_"),monthsShort:"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec".split("_"),weekdays:"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),weekdaysShort:"Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),weekdaysMin:"Su_Mo_Tu_We_Th_Fr_Sa".split("_"),longDateFormat:{LT:"h:mm A",LTS:"h:mm:ss A",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY h:mm A",LLLL:"dddd, D MMMM YYYY h:mm A"},calendar:{sameDay:"[Today at] LT",nextDay:"[Tomorrow at] LT",nextWeek:"dddd [at] LT",lastDay:"[Yesterday at] LT",lastWeek:"[Last] dddd [at] LT",sameElse:"L"},relativeTime:{future:"in %s",past:"%s ago",s:"a few seconds",ss:"%d seconds",m:"a minute",mm:"%d minutes",h:"an hour",hh:"%d hours",d:"a day",dd:"%d days",M:"a month",MM:"%d months",y:"a year",yy:"%d years"},dayOfMonthOrdinalParse:/\d{1,2}(st|nd|rd|th)/,ordinal:function(e){var t=e%10;return e+(1==~~(e%100/10)?"th":1===t?"st":2===t?"nd":3===t?"rd":"th")},week:{dow:1,doy:4}})})},99:function(e,t,a){Object.defineProperty(t,"__esModule",{value:!0}),a(100);var r=a(1);r.datepickerLocale("en-au","en-AU",{closeText:"Done",prevText:"Prev",nextText:"Next",currentText:"Today",monthNames:["January","February","March","April","May","June","July","August","September","October","November","December"],monthNamesShort:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],dayNames:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],dayNamesShort:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],dayNamesMin:["Su","Mo","Tu","We","Th","Fr","Sa"],weekHeader:"Wk",dateFormat:"dd/mm/yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),r.locale("en-au")}})}); \ No newline at end of file diff --git a/public/assets/lib/fullcalendar/locale/en-ca.js b/public/assets/lib/fullcalendar/locale/en-ca.js new file mode 100755 index 0000000..9a39847 --- /dev/null +++ b/public/assets/lib/fullcalendar/locale/en-ca.js @@ -0,0 +1 @@ +!function(e,t){"object"==typeof exports&&"object"==typeof module?module.exports=t(require("moment"),require("fullcalendar")):"function"==typeof define&&define.amd?define(["moment","fullcalendar"],t):"object"==typeof exports?t(require("moment"),require("fullcalendar")):t(e.moment,e.FullCalendar)}("undefined"!=typeof self?self:this,function(e,t){return function(e){function t(r){if(n[r])return n[r].exports;var a=n[r]={i:r,l:!1,exports:{}};return e[r].call(a.exports,a,a.exports,t),a.l=!0,a.exports}var n={};return t.m=e,t.c=n,t.d=function(e,n,r){t.o(e,n)||Object.defineProperty(e,n,{configurable:!1,enumerable:!0,get:r})},t.n=function(e){var n=e&&e.__esModule?function(){return e.default}:function(){return e};return t.d(n,"a",n),n},t.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},t.p="",t(t.s=101)}({0:function(t,n){t.exports=e},1:function(e,n){e.exports=t},101:function(e,t,n){Object.defineProperty(t,"__esModule",{value:!0}),n(102),n(1).locale("en-ca")},102:function(e,t,n){!function(e,t){t(n(0))}(0,function(e){return e.defineLocale("en-ca",{months:"January_February_March_April_May_June_July_August_September_October_November_December".split("_"),monthsShort:"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec".split("_"),weekdays:"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),weekdaysShort:"Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),weekdaysMin:"Su_Mo_Tu_We_Th_Fr_Sa".split("_"),longDateFormat:{LT:"h:mm A",LTS:"h:mm:ss A",L:"YYYY-MM-DD",LL:"MMMM D, YYYY",LLL:"MMMM D, YYYY h:mm A",LLLL:"dddd, MMMM D, YYYY h:mm A"},calendar:{sameDay:"[Today at] LT",nextDay:"[Tomorrow at] LT",nextWeek:"dddd [at] LT",lastDay:"[Yesterday at] LT",lastWeek:"[Last] dddd [at] LT",sameElse:"L"},relativeTime:{future:"in %s",past:"%s ago",s:"a few seconds",ss:"%d seconds",m:"a minute",mm:"%d minutes",h:"an hour",hh:"%d hours",d:"a day",dd:"%d days",M:"a month",MM:"%d months",y:"a year",yy:"%d years"},dayOfMonthOrdinalParse:/\d{1,2}(st|nd|rd|th)/,ordinal:function(e){var t=e%10;return e+(1==~~(e%100/10)?"th":1===t?"st":2===t?"nd":3===t?"rd":"th")}})})}})}); \ No newline at end of file diff --git a/public/assets/lib/fullcalendar/locale/en-gb.js b/public/assets/lib/fullcalendar/locale/en-gb.js new file mode 100755 index 0000000..1105634 --- /dev/null +++ b/public/assets/lib/fullcalendar/locale/en-gb.js @@ -0,0 +1 @@ +!function(e,t){"object"==typeof exports&&"object"==typeof module?module.exports=t(require("moment"),require("fullcalendar")):"function"==typeof define&&define.amd?define(["moment","fullcalendar"],t):"object"==typeof exports?t(require("moment"),require("fullcalendar")):t(e.moment,e.FullCalendar)}("undefined"!=typeof self?self:this,function(e,t){return function(e){function t(a){if(r[a])return r[a].exports;var n=r[a]={i:a,l:!1,exports:{}};return e[a].call(n.exports,n,n.exports,t),n.l=!0,n.exports}var r={};return t.m=e,t.c=r,t.d=function(e,r,a){t.o(e,r)||Object.defineProperty(e,r,{configurable:!1,enumerable:!0,get:a})},t.n=function(e){var r=e&&e.__esModule?function(){return e.default}:function(){return e};return t.d(r,"a",r),r},t.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},t.p="",t(t.s=103)}({0:function(t,r){t.exports=e},1:function(e,r){e.exports=t},103:function(e,t,r){Object.defineProperty(t,"__esModule",{value:!0}),r(104);var a=r(1);a.datepickerLocale("en-gb","en-GB",{closeText:"Done",prevText:"Prev",nextText:"Next",currentText:"Today",monthNames:["January","February","March","April","May","June","July","August","September","October","November","December"],monthNamesShort:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],dayNames:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],dayNamesShort:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],dayNamesMin:["Su","Mo","Tu","We","Th","Fr","Sa"],weekHeader:"Wk",dateFormat:"dd/mm/yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),a.locale("en-gb")},104:function(e,t,r){!function(e,t){t(r(0))}(0,function(e){return e.defineLocale("en-gb",{months:"January_February_March_April_May_June_July_August_September_October_November_December".split("_"),monthsShort:"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec".split("_"),weekdays:"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),weekdaysShort:"Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),weekdaysMin:"Su_Mo_Tu_We_Th_Fr_Sa".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[Today at] LT",nextDay:"[Tomorrow at] LT",nextWeek:"dddd [at] LT",lastDay:"[Yesterday at] LT",lastWeek:"[Last] dddd [at] LT",sameElse:"L"},relativeTime:{future:"in %s",past:"%s ago",s:"a few seconds",ss:"%d seconds",m:"a minute",mm:"%d minutes",h:"an hour",hh:"%d hours",d:"a day",dd:"%d days",M:"a month",MM:"%d months",y:"a year",yy:"%d years"},dayOfMonthOrdinalParse:/\d{1,2}(st|nd|rd|th)/,ordinal:function(e){var t=e%10;return e+(1==~~(e%100/10)?"th":1===t?"st":2===t?"nd":3===t?"rd":"th")},week:{dow:1,doy:4}})})}})}); \ No newline at end of file diff --git a/public/assets/lib/fullcalendar/locale/en-ie.js b/public/assets/lib/fullcalendar/locale/en-ie.js new file mode 100755 index 0000000..d21b244 --- /dev/null +++ b/public/assets/lib/fullcalendar/locale/en-ie.js @@ -0,0 +1 @@ +!function(e,t){"object"==typeof exports&&"object"==typeof module?module.exports=t(require("moment"),require("fullcalendar")):"function"==typeof define&&define.amd?define(["moment","fullcalendar"],t):"object"==typeof exports?t(require("moment"),require("fullcalendar")):t(e.moment,e.FullCalendar)}("undefined"!=typeof self?self:this,function(e,t){return function(e){function t(r){if(n[r])return n[r].exports;var a=n[r]={i:r,l:!1,exports:{}};return e[r].call(a.exports,a,a.exports,t),a.l=!0,a.exports}var n={};return t.m=e,t.c=n,t.d=function(e,n,r){t.o(e,n)||Object.defineProperty(e,n,{configurable:!1,enumerable:!0,get:r})},t.n=function(e){var n=e&&e.__esModule?function(){return e.default}:function(){return e};return t.d(n,"a",n),n},t.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},t.p="",t(t.s=105)}({0:function(t,n){t.exports=e},1:function(e,n){e.exports=t},105:function(e,t,n){Object.defineProperty(t,"__esModule",{value:!0}),n(106),n(1).locale("en-ie")},106:function(e,t,n){!function(e,t){t(n(0))}(0,function(e){return e.defineLocale("en-ie",{months:"January_February_March_April_May_June_July_August_September_October_November_December".split("_"),monthsShort:"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec".split("_"),weekdays:"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),weekdaysShort:"Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),weekdaysMin:"Su_Mo_Tu_We_Th_Fr_Sa".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD-MM-YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[Today at] LT",nextDay:"[Tomorrow at] LT",nextWeek:"dddd [at] LT",lastDay:"[Yesterday at] LT",lastWeek:"[Last] dddd [at] LT",sameElse:"L"},relativeTime:{future:"in %s",past:"%s ago",s:"a few seconds",ss:"%d seconds",m:"a minute",mm:"%d minutes",h:"an hour",hh:"%d hours",d:"a day",dd:"%d days",M:"a month",MM:"%d months",y:"a year",yy:"%d years"},dayOfMonthOrdinalParse:/\d{1,2}(st|nd|rd|th)/,ordinal:function(e){var t=e%10;return e+(1==~~(e%100/10)?"th":1===t?"st":2===t?"nd":3===t?"rd":"th")},week:{dow:1,doy:4}})})}})}); \ No newline at end of file diff --git a/public/assets/lib/fullcalendar/locale/en-nz.js b/public/assets/lib/fullcalendar/locale/en-nz.js new file mode 100755 index 0000000..cec864a --- /dev/null +++ b/public/assets/lib/fullcalendar/locale/en-nz.js @@ -0,0 +1 @@ +!function(e,t){"object"==typeof exports&&"object"==typeof module?module.exports=t(require("moment"),require("fullcalendar")):"function"==typeof define&&define.amd?define(["moment","fullcalendar"],t):"object"==typeof exports?t(require("moment"),require("fullcalendar")):t(e.moment,e.FullCalendar)}("undefined"!=typeof self?self:this,function(e,t){return function(e){function t(a){if(r[a])return r[a].exports;var n=r[a]={i:a,l:!1,exports:{}};return e[a].call(n.exports,n,n.exports,t),n.l=!0,n.exports}var r={};return t.m=e,t.c=r,t.d=function(e,r,a){t.o(e,r)||Object.defineProperty(e,r,{configurable:!1,enumerable:!0,get:a})},t.n=function(e){var r=e&&e.__esModule?function(){return e.default}:function(){return e};return t.d(r,"a",r),r},t.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},t.p="",t(t.s=107)}({0:function(t,r){t.exports=e},1:function(e,r){e.exports=t},107:function(e,t,r){Object.defineProperty(t,"__esModule",{value:!0}),r(108);var a=r(1);a.datepickerLocale("en-nz","en-NZ",{closeText:"Done",prevText:"Prev",nextText:"Next",currentText:"Today",monthNames:["January","February","March","April","May","June","July","August","September","October","November","December"],monthNamesShort:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],dayNames:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],dayNamesShort:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],dayNamesMin:["Su","Mo","Tu","We","Th","Fr","Sa"],weekHeader:"Wk",dateFormat:"dd/mm/yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),a.locale("en-nz")},108:function(e,t,r){!function(e,t){t(r(0))}(0,function(e){return e.defineLocale("en-nz",{months:"January_February_March_April_May_June_July_August_September_October_November_December".split("_"),monthsShort:"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec".split("_"),weekdays:"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),weekdaysShort:"Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),weekdaysMin:"Su_Mo_Tu_We_Th_Fr_Sa".split("_"),longDateFormat:{LT:"h:mm A",LTS:"h:mm:ss A",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY h:mm A",LLLL:"dddd, D MMMM YYYY h:mm A"},calendar:{sameDay:"[Today at] LT",nextDay:"[Tomorrow at] LT",nextWeek:"dddd [at] LT",lastDay:"[Yesterday at] LT",lastWeek:"[Last] dddd [at] LT",sameElse:"L"},relativeTime:{future:"in %s",past:"%s ago",s:"a few seconds",ss:"%d seconds",m:"a minute",mm:"%d minutes",h:"an hour",hh:"%d hours",d:"a day",dd:"%d days",M:"a month",MM:"%d months",y:"a year",yy:"%d years"},dayOfMonthOrdinalParse:/\d{1,2}(st|nd|rd|th)/,ordinal:function(e){var t=e%10;return e+(1==~~(e%100/10)?"th":1===t?"st":2===t?"nd":3===t?"rd":"th")},week:{dow:1,doy:4}})})}})}); \ No newline at end of file diff --git a/public/assets/lib/fullcalendar/locale/es-do.js b/public/assets/lib/fullcalendar/locale/es-do.js new file mode 100755 index 0000000..fb4cf04 --- /dev/null +++ b/public/assets/lib/fullcalendar/locale/es-do.js @@ -0,0 +1 @@ +!function(e,o){"object"==typeof exports&&"object"==typeof module?module.exports=o(require("moment"),require("fullcalendar")):"function"==typeof define&&define.amd?define(["moment","fullcalendar"],o):"object"==typeof exports?o(require("moment"),require("fullcalendar")):o(e.moment,e.FullCalendar)}("undefined"!=typeof self?self:this,function(e,o){return function(e){function o(t){if(r[t])return r[t].exports;var n=r[t]={i:t,l:!1,exports:{}};return e[t].call(n.exports,n,n.exports,o),n.l=!0,n.exports}var r={};return o.m=e,o.c=r,o.d=function(e,r,t){o.o(e,r)||Object.defineProperty(e,r,{configurable:!1,enumerable:!0,get:t})},o.n=function(e){var r=e&&e.__esModule?function(){return e.default}:function(){return e};return o.d(r,"a",r),r},o.o=function(e,o){return Object.prototype.hasOwnProperty.call(e,o)},o.p="",o(o.s=109)}({0:function(o,r){o.exports=e},1:function(e,r){e.exports=o},109:function(e,o,r){Object.defineProperty(o,"__esModule",{value:!0}),r(110);var t=r(1);t.datepickerLocale("es-do","es",{closeText:"Cerrar",prevText:"<Ant",nextText:"Sig>",currentText:"Hoy",monthNames:["enero","febrero","marzo","abril","mayo","junio","julio","agosto","septiembre","octubre","noviembre","diciembre"],monthNamesShort:["ene","feb","mar","abr","may","jun","jul","ago","sep","oct","nov","dic"],dayNames:["domingo","lunes","martes","miércoles","jueves","viernes","sábado"],dayNamesShort:["dom","lun","mar","mié","jue","vie","sáb"],dayNamesMin:["D","L","M","X","J","V","S"],weekHeader:"Sm",dateFormat:"dd/mm/yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),t.locale("es-do",{buttonText:{month:"Mes",week:"Semana",day:"Día",list:"Agenda"},allDayHtml:"Todo
el día",eventLimitText:"más",noEventsMessage:"No hay eventos para mostrar"})},110:function(e,o,r){!function(e,o){o(r(0))}(0,function(e){var o="ene._feb._mar._abr._may._jun._jul._ago._sep._oct._nov._dic.".split("_"),r="ene_feb_mar_abr_may_jun_jul_ago_sep_oct_nov_dic".split("_"),t=[/^ene/i,/^feb/i,/^mar/i,/^abr/i,/^may/i,/^jun/i,/^jul/i,/^ago/i,/^sep/i,/^oct/i,/^nov/i,/^dic/i],n=/^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre|ene\.?|feb\.?|mar\.?|abr\.?|may\.?|jun\.?|jul\.?|ago\.?|sep\.?|oct\.?|nov\.?|dic\.?)/i;return e.defineLocale("es-do",{months:"enero_febrero_marzo_abril_mayo_junio_julio_agosto_septiembre_octubre_noviembre_diciembre".split("_"),monthsShort:function(e,t){return e?/-MMM-/.test(t)?r[e.month()]:o[e.month()]:o},monthsRegex:n,monthsShortRegex:n,monthsStrictRegex:/^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre)/i,monthsShortStrictRegex:/^(ene\.?|feb\.?|mar\.?|abr\.?|may\.?|jun\.?|jul\.?|ago\.?|sep\.?|oct\.?|nov\.?|dic\.?)/i,monthsParse:t,longMonthsParse:t,shortMonthsParse:t,weekdays:"domingo_lunes_martes_miércoles_jueves_viernes_sábado".split("_"),weekdaysShort:"dom._lun._mar._mié._jue._vie._sáb.".split("_"),weekdaysMin:"do_lu_ma_mi_ju_vi_sá".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"h:mm A",LTS:"h:mm:ss A",L:"DD/MM/YYYY",LL:"D [de] MMMM [de] YYYY",LLL:"D [de] MMMM [de] YYYY h:mm A",LLLL:"dddd, D [de] MMMM [de] YYYY h:mm A"},calendar:{sameDay:function(){return"[hoy a la"+(1!==this.hours()?"s":"")+"] LT"},nextDay:function(){return"[mañana a la"+(1!==this.hours()?"s":"")+"] LT"},nextWeek:function(){return"dddd [a la"+(1!==this.hours()?"s":"")+"] LT"},lastDay:function(){return"[ayer a la"+(1!==this.hours()?"s":"")+"] LT"},lastWeek:function(){return"[el] dddd [pasado a la"+(1!==this.hours()?"s":"")+"] LT"},sameElse:"L"},relativeTime:{future:"en %s",past:"hace %s",s:"unos segundos",ss:"%d segundos",m:"un minuto",mm:"%d minutos",h:"una hora",hh:"%d horas",d:"un día",dd:"%d días",M:"un mes",MM:"%d meses",y:"un año",yy:"%d años"},dayOfMonthOrdinalParse:/\d{1,2}º/,ordinal:"%dº",week:{dow:1,doy:4}})})}})}); \ No newline at end of file diff --git a/public/assets/lib/fullcalendar/locale/es-us.js b/public/assets/lib/fullcalendar/locale/es-us.js new file mode 100755 index 0000000..a5b51fe --- /dev/null +++ b/public/assets/lib/fullcalendar/locale/es-us.js @@ -0,0 +1 @@ +!function(e,o){"object"==typeof exports&&"object"==typeof module?module.exports=o(require("moment"),require("fullcalendar")):"function"==typeof define&&define.amd?define(["moment","fullcalendar"],o):"object"==typeof exports?o(require("moment"),require("fullcalendar")):o(e.moment,e.FullCalendar)}("undefined"!=typeof self?self:this,function(e,o){return function(e){function o(n){if(t[n])return t[n].exports;var r=t[n]={i:n,l:!1,exports:{}};return e[n].call(r.exports,r,r.exports,o),r.l=!0,r.exports}var t={};return o.m=e,o.c=t,o.d=function(e,t,n){o.o(e,t)||Object.defineProperty(e,t,{configurable:!1,enumerable:!0,get:n})},o.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return o.d(t,"a",t),t},o.o=function(e,o){return Object.prototype.hasOwnProperty.call(e,o)},o.p="",o(o.s=111)}({0:function(o,t){o.exports=e},1:function(e,t){e.exports=o},111:function(e,o,t){Object.defineProperty(o,"__esModule",{value:!0}),t(112);var n=t(1);n.datepickerLocale("es-us","es",{closeText:"Cerrar",prevText:"<Ant",nextText:"Sig>",currentText:"Hoy",monthNames:["enero","febrero","marzo","abril","mayo","junio","julio","agosto","septiembre","octubre","noviembre","diciembre"],monthNamesShort:["ene","feb","mar","abr","may","jun","jul","ago","sep","oct","nov","dic"],dayNames:["domingo","lunes","martes","miércoles","jueves","viernes","sábado"],dayNamesShort:["dom","lun","mar","mié","jue","vie","sáb"],dayNamesMin:["D","L","M","X","J","V","S"],weekHeader:"Sm",dateFormat:"dd/mm/yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),n.locale("es-us",{buttonText:{month:"Mes",week:"Semana",day:"Día",list:"Agenda"},allDayHtml:"Todo
el día",eventLimitText:"más",noEventsMessage:"No hay eventos para mostrar"})},112:function(e,o,t){!function(e,o){o(t(0))}(0,function(e){var o="ene._feb._mar._abr._may._jun._jul._ago._sep._oct._nov._dic.".split("_"),t="ene_feb_mar_abr_may_jun_jul_ago_sep_oct_nov_dic".split("_");return e.defineLocale("es-us",{months:"enero_febrero_marzo_abril_mayo_junio_julio_agosto_septiembre_octubre_noviembre_diciembre".split("_"),monthsShort:function(e,n){return e?/-MMM-/.test(n)?t[e.month()]:o[e.month()]:o},monthsParseExact:!0,weekdays:"domingo_lunes_martes_miércoles_jueves_viernes_sábado".split("_"),weekdaysShort:"dom._lun._mar._mié._jue._vie._sáb.".split("_"),weekdaysMin:"do_lu_ma_mi_ju_vi_sá".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"h:mm A",LTS:"h:mm:ss A",L:"MM/DD/YYYY",LL:"MMMM [de] D [de] YYYY",LLL:"MMMM [de] D [de] YYYY h:mm A",LLLL:"dddd, MMMM [de] D [de] YYYY h:mm A"},calendar:{sameDay:function(){return"[hoy a la"+(1!==this.hours()?"s":"")+"] LT"},nextDay:function(){return"[mañana a la"+(1!==this.hours()?"s":"")+"] LT"},nextWeek:function(){return"dddd [a la"+(1!==this.hours()?"s":"")+"] LT"},lastDay:function(){return"[ayer a la"+(1!==this.hours()?"s":"")+"] LT"},lastWeek:function(){return"[el] dddd [pasado a la"+(1!==this.hours()?"s":"")+"] LT"},sameElse:"L"},relativeTime:{future:"en %s",past:"hace %s",s:"unos segundos",ss:"%d segundos",m:"un minuto",mm:"%d minutos",h:"una hora",hh:"%d horas",d:"un día",dd:"%d días",M:"un mes",MM:"%d meses",y:"un año",yy:"%d años"},dayOfMonthOrdinalParse:/\d{1,2}º/,ordinal:"%dº",week:{dow:0,doy:6}})})}})}); \ No newline at end of file diff --git a/public/assets/lib/fullcalendar/locale/es.js b/public/assets/lib/fullcalendar/locale/es.js new file mode 100755 index 0000000..84726ad --- /dev/null +++ b/public/assets/lib/fullcalendar/locale/es.js @@ -0,0 +1 @@ +!function(e,o){"object"==typeof exports&&"object"==typeof module?module.exports=o(require("moment"),require("fullcalendar")):"function"==typeof define&&define.amd?define(["moment","fullcalendar"],o):"object"==typeof exports?o(require("moment"),require("fullcalendar")):o(e.moment,e.FullCalendar)}("undefined"!=typeof self?self:this,function(e,o){return function(e){function o(t){if(r[t])return r[t].exports;var n=r[t]={i:t,l:!1,exports:{}};return e[t].call(n.exports,n,n.exports,o),n.l=!0,n.exports}var r={};return o.m=e,o.c=r,o.d=function(e,r,t){o.o(e,r)||Object.defineProperty(e,r,{configurable:!1,enumerable:!0,get:t})},o.n=function(e){var r=e&&e.__esModule?function(){return e.default}:function(){return e};return o.d(r,"a",r),r},o.o=function(e,o){return Object.prototype.hasOwnProperty.call(e,o)},o.p="",o(o.s=113)}({0:function(o,r){o.exports=e},1:function(e,r){e.exports=o},113:function(e,o,r){Object.defineProperty(o,"__esModule",{value:!0}),r(114);var t=r(1);t.datepickerLocale("es","es",{closeText:"Cerrar",prevText:"<Ant",nextText:"Sig>",currentText:"Hoy",monthNames:["enero","febrero","marzo","abril","mayo","junio","julio","agosto","septiembre","octubre","noviembre","diciembre"],monthNamesShort:["ene","feb","mar","abr","may","jun","jul","ago","sep","oct","nov","dic"],dayNames:["domingo","lunes","martes","miércoles","jueves","viernes","sábado"],dayNamesShort:["dom","lun","mar","mié","jue","vie","sáb"],dayNamesMin:["D","L","M","X","J","V","S"],weekHeader:"Sm",dateFormat:"dd/mm/yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),t.locale("es",{buttonText:{month:"Mes",week:"Semana",day:"Día",list:"Agenda"},allDayHtml:"Todo
el día",eventLimitText:"más",noEventsMessage:"No hay eventos para mostrar"})},114:function(e,o,r){!function(e,o){o(r(0))}(0,function(e){var o="ene._feb._mar._abr._may._jun._jul._ago._sep._oct._nov._dic.".split("_"),r="ene_feb_mar_abr_may_jun_jul_ago_sep_oct_nov_dic".split("_"),t=[/^ene/i,/^feb/i,/^mar/i,/^abr/i,/^may/i,/^jun/i,/^jul/i,/^ago/i,/^sep/i,/^oct/i,/^nov/i,/^dic/i],n=/^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre|ene\.?|feb\.?|mar\.?|abr\.?|may\.?|jun\.?|jul\.?|ago\.?|sep\.?|oct\.?|nov\.?|dic\.?)/i;return e.defineLocale("es",{months:"enero_febrero_marzo_abril_mayo_junio_julio_agosto_septiembre_octubre_noviembre_diciembre".split("_"),monthsShort:function(e,t){return e?/-MMM-/.test(t)?r[e.month()]:o[e.month()]:o},monthsRegex:n,monthsShortRegex:n,monthsStrictRegex:/^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre)/i,monthsShortStrictRegex:/^(ene\.?|feb\.?|mar\.?|abr\.?|may\.?|jun\.?|jul\.?|ago\.?|sep\.?|oct\.?|nov\.?|dic\.?)/i,monthsParse:t,longMonthsParse:t,shortMonthsParse:t,weekdays:"domingo_lunes_martes_miércoles_jueves_viernes_sábado".split("_"),weekdaysShort:"dom._lun._mar._mié._jue._vie._sáb.".split("_"),weekdaysMin:"do_lu_ma_mi_ju_vi_sá".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD/MM/YYYY",LL:"D [de] MMMM [de] YYYY",LLL:"D [de] MMMM [de] YYYY H:mm",LLLL:"dddd, D [de] MMMM [de] YYYY H:mm"},calendar:{sameDay:function(){return"[hoy a la"+(1!==this.hours()?"s":"")+"] LT"},nextDay:function(){return"[mañana a la"+(1!==this.hours()?"s":"")+"] LT"},nextWeek:function(){return"dddd [a la"+(1!==this.hours()?"s":"")+"] LT"},lastDay:function(){return"[ayer a la"+(1!==this.hours()?"s":"")+"] LT"},lastWeek:function(){return"[el] dddd [pasado a la"+(1!==this.hours()?"s":"")+"] LT"},sameElse:"L"},relativeTime:{future:"en %s",past:"hace %s",s:"unos segundos",ss:"%d segundos",m:"un minuto",mm:"%d minutos",h:"una hora",hh:"%d horas",d:"un día",dd:"%d días",M:"un mes",MM:"%d meses",y:"un año",yy:"%d años"},dayOfMonthOrdinalParse:/\d{1,2}º/,ordinal:"%dº",week:{dow:1,doy:4}})})}})}); \ No newline at end of file diff --git a/public/assets/lib/fullcalendar/locale/et.js b/public/assets/lib/fullcalendar/locale/et.js new file mode 100755 index 0000000..fc3d284 --- /dev/null +++ b/public/assets/lib/fullcalendar/locale/et.js @@ -0,0 +1 @@ +!function(e,t){"object"==typeof exports&&"object"==typeof module?module.exports=t(require("moment"),require("fullcalendar")):"function"==typeof define&&define.amd?define(["moment","fullcalendar"],t):"object"==typeof exports?t(require("moment"),require("fullcalendar")):t(e.moment,e.FullCalendar)}("undefined"!=typeof self?self:this,function(e,t){return function(e){function t(n){if(a[n])return a[n].exports;var u=a[n]={i:n,l:!1,exports:{}};return e[n].call(u.exports,u,u.exports,t),u.l=!0,u.exports}var a={};return t.m=e,t.c=a,t.d=function(e,a,n){t.o(e,a)||Object.defineProperty(e,a,{configurable:!1,enumerable:!0,get:n})},t.n=function(e){var a=e&&e.__esModule?function(){return e.default}:function(){return e};return t.d(a,"a",a),a},t.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},t.p="",t(t.s=115)}({0:function(t,a){t.exports=e},1:function(e,a){e.exports=t},115:function(e,t,a){Object.defineProperty(t,"__esModule",{value:!0}),a(116);var n=a(1);n.datepickerLocale("et","et",{closeText:"Sulge",prevText:"Eelnev",nextText:"Järgnev",currentText:"Täna",monthNames:["Jaanuar","Veebruar","Märts","Aprill","Mai","Juuni","Juuli","August","September","Oktoober","November","Detsember"],monthNamesShort:["Jaan","Veebr","Märts","Apr","Mai","Juuni","Juuli","Aug","Sept","Okt","Nov","Dets"],dayNames:["Pühapäev","Esmaspäev","Teisipäev","Kolmapäev","Neljapäev","Reede","Laupäev"],dayNamesShort:["Pühap","Esmasp","Teisip","Kolmap","Neljap","Reede","Laup"],dayNamesMin:["P","E","T","K","N","R","L"],weekHeader:"näd",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),n.locale("et",{buttonText:{month:"Kuu",week:"Nädal",day:"Päev",list:"Päevakord"},allDayText:"Kogu päev",eventLimitText:function(e){return"+ veel "+e},noEventsMessage:"Kuvamiseks puuduvad sündmused"})},116:function(e,t,a){!function(e,t){t(a(0))}(0,function(e){function t(e,t,a,n){var u={s:["mõne sekundi","mõni sekund","paar sekundit"],ss:[e+"sekundi",e+"sekundit"],m:["ühe minuti","üks minut"],mm:[e+" minuti",e+" minutit"],h:["ühe tunni","tund aega","üks tund"],hh:[e+" tunni",e+" tundi"],d:["ühe päeva","üks päev"],M:["kuu aja","kuu aega","üks kuu"],MM:[e+" kuu",e+" kuud"],y:["ühe aasta","aasta","üks aasta"],yy:[e+" aasta",e+" aastat"]};return t?u[a][2]?u[a][2]:u[a][1]:n?u[a][0]:u[a][1]}return e.defineLocale("et",{months:"jaanuar_veebruar_märts_aprill_mai_juuni_juuli_august_september_oktoober_november_detsember".split("_"),monthsShort:"jaan_veebr_märts_apr_mai_juuni_juuli_aug_sept_okt_nov_dets".split("_"),weekdays:"pühapäev_esmaspäev_teisipäev_kolmapäev_neljapäev_reede_laupäev".split("_"),weekdaysShort:"P_E_T_K_N_R_L".split("_"),weekdaysMin:"P_E_T_K_N_R_L".split("_"),longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY H:mm",LLLL:"dddd, D. MMMM YYYY H:mm"},calendar:{sameDay:"[Täna,] LT",nextDay:"[Homme,] LT",nextWeek:"[Järgmine] dddd LT",lastDay:"[Eile,] LT",lastWeek:"[Eelmine] dddd LT",sameElse:"L"},relativeTime:{future:"%s pärast",past:"%s tagasi",s:t,ss:t,m:t,mm:t,h:t,hh:t,d:t,dd:"%d päeva",M:t,MM:t,y:t,yy:t},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})})}})}); \ No newline at end of file diff --git a/public/assets/lib/fullcalendar/locale/eu.js b/public/assets/lib/fullcalendar/locale/eu.js new file mode 100755 index 0000000..8ec5aed --- /dev/null +++ b/public/assets/lib/fullcalendar/locale/eu.js @@ -0,0 +1 @@ +!function(a,e){"object"==typeof exports&&"object"==typeof module?module.exports=e(require("moment"),require("fullcalendar")):"function"==typeof define&&define.amd?define(["moment","fullcalendar"],e):"object"==typeof exports?e(require("moment"),require("fullcalendar")):e(a.moment,a.FullCalendar)}("undefined"!=typeof self?self:this,function(a,e){return function(a){function e(r){if(t[r])return t[r].exports;var n=t[r]={i:r,l:!1,exports:{}};return a[r].call(n.exports,n,n.exports,e),n.l=!0,n.exports}var t={};return e.m=a,e.c=t,e.d=function(a,t,r){e.o(a,t)||Object.defineProperty(a,t,{configurable:!1,enumerable:!0,get:r})},e.n=function(a){var t=a&&a.__esModule?function(){return a.default}:function(){return a};return e.d(t,"a",t),t},e.o=function(a,e){return Object.prototype.hasOwnProperty.call(a,e)},e.p="",e(e.s=117)}({0:function(e,t){e.exports=a},1:function(a,t){a.exports=e},117:function(a,e,t){Object.defineProperty(e,"__esModule",{value:!0}),t(118);var r=t(1);r.datepickerLocale("eu","eu",{closeText:"Egina",prevText:"<Aur",nextText:"Hur>",currentText:"Gaur",monthNames:["urtarrila","otsaila","martxoa","apirila","maiatza","ekaina","uztaila","abuztua","iraila","urria","azaroa","abendua"],monthNamesShort:["urt.","ots.","mar.","api.","mai.","eka.","uzt.","abu.","ira.","urr.","aza.","abe."],dayNames:["igandea","astelehena","asteartea","asteazkena","osteguna","ostirala","larunbata"],dayNamesShort:["ig.","al.","ar.","az.","og.","ol.","lr."],dayNamesMin:["ig","al","ar","az","og","ol","lr"],weekHeader:"As",dateFormat:"yy-mm-dd",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),r.locale("eu",{buttonText:{month:"Hilabetea",week:"Astea",day:"Eguna",list:"Agenda"},allDayHtml:"Egun
osoa",eventLimitText:"gehiago",noEventsMessage:"Ez dago ekitaldirik erakusteko"})},118:function(a,e,t){!function(a,e){e(t(0))}(0,function(a){return a.defineLocale("eu",{months:"urtarrila_otsaila_martxoa_apirila_maiatza_ekaina_uztaila_abuztua_iraila_urria_azaroa_abendua".split("_"),monthsShort:"urt._ots._mar._api._mai._eka._uzt._abu._ira._urr._aza._abe.".split("_"),monthsParseExact:!0,weekdays:"igandea_astelehena_asteartea_asteazkena_osteguna_ostirala_larunbata".split("_"),weekdaysShort:"ig._al._ar._az._og._ol._lr.".split("_"),weekdaysMin:"ig_al_ar_az_og_ol_lr".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"YYYY-MM-DD",LL:"YYYY[ko] MMMM[ren] D[a]",LLL:"YYYY[ko] MMMM[ren] D[a] HH:mm",LLLL:"dddd, YYYY[ko] MMMM[ren] D[a] HH:mm",l:"YYYY-M-D",ll:"YYYY[ko] MMM D[a]",lll:"YYYY[ko] MMM D[a] HH:mm",llll:"ddd, YYYY[ko] MMM D[a] HH:mm"},calendar:{sameDay:"[gaur] LT[etan]",nextDay:"[bihar] LT[etan]",nextWeek:"dddd LT[etan]",lastDay:"[atzo] LT[etan]",lastWeek:"[aurreko] dddd LT[etan]",sameElse:"L"},relativeTime:{future:"%s barru",past:"duela %s",s:"segundo batzuk",ss:"%d segundo",m:"minutu bat",mm:"%d minutu",h:"ordu bat",hh:"%d ordu",d:"egun bat",dd:"%d egun",M:"hilabete bat",MM:"%d hilabete",y:"urte bat",yy:"%d urte"},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:7}})})}})}); \ No newline at end of file diff --git a/public/assets/lib/fullcalendar/locale/fa.js b/public/assets/lib/fullcalendar/locale/fa.js new file mode 100755 index 0000000..8330521 --- /dev/null +++ b/public/assets/lib/fullcalendar/locale/fa.js @@ -0,0 +1 @@ +!function(e,t){"object"==typeof exports&&"object"==typeof module?module.exports=t(require("moment"),require("fullcalendar")):"function"==typeof define&&define.amd?define(["moment","fullcalendar"],t):"object"==typeof exports?t(require("moment"),require("fullcalendar")):t(e.moment,e.FullCalendar)}("undefined"!=typeof self?self:this,function(e,t){return function(e){function t(r){if(n[r])return n[r].exports;var o=n[r]={i:r,l:!1,exports:{}};return e[r].call(o.exports,o,o.exports,t),o.l=!0,o.exports}var n={};return t.m=e,t.c=n,t.d=function(e,n,r){t.o(e,n)||Object.defineProperty(e,n,{configurable:!1,enumerable:!0,get:r})},t.n=function(e){var n=e&&e.__esModule?function(){return e.default}:function(){return e};return t.d(n,"a",n),n},t.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},t.p="",t(t.s=119)}({0:function(t,n){t.exports=e},1:function(e,n){e.exports=t},119:function(e,t,n){Object.defineProperty(t,"__esModule",{value:!0}),n(120);var r=n(1);r.datepickerLocale("fa","fa",{closeText:"بستن",prevText:"<قبلی",nextText:"بعدی>",currentText:"امروز",monthNames:["ژانویه","فوریه","مارس","آوریل","مه","ژوئن","ژوئیه","اوت","سپتامبر","اکتبر","نوامبر","دسامبر"],monthNamesShort:["1","2","3","4","5","6","7","8","9","10","11","12"],dayNames:["يکشنبه","دوشنبه","سه‌شنبه","چهارشنبه","پنجشنبه","جمعه","شنبه"],dayNamesShort:["ی","د","س","چ","پ","ج","ش"],dayNamesMin:["ی","د","س","چ","پ","ج","ش"],weekHeader:"هف",dateFormat:"yy/mm/dd",firstDay:6,isRTL:!0,showMonthAfterYear:!1,yearSuffix:""}),r.locale("fa",{buttonText:{month:"ماه",week:"هفته",day:"روز",list:"برنامه"},allDayText:"تمام روز",eventLimitText:function(e){return"بیش از "+e},noEventsMessage:"هیچ رویدادی به نمایش"})},120:function(e,t,n){!function(e,t){t(n(0))}(0,function(e){var t={1:"۱",2:"۲",3:"۳",4:"۴",5:"۵",6:"۶",7:"۷",8:"۸",9:"۹",0:"۰"},n={"۱":"1","۲":"2","۳":"3","۴":"4","۵":"5","۶":"6","۷":"7","۸":"8","۹":"9","۰":"0"};return e.defineLocale("fa",{months:"ژانویه_فوریه_مارس_آوریل_مه_ژوئن_ژوئیه_اوت_سپتامبر_اکتبر_نوامبر_دسامبر".split("_"),monthsShort:"ژانویه_فوریه_مارس_آوریل_مه_ژوئن_ژوئیه_اوت_سپتامبر_اکتبر_نوامبر_دسامبر".split("_"),weekdays:"یک‌شنبه_دوشنبه_سه‌شنبه_چهارشنبه_پنج‌شنبه_جمعه_شنبه".split("_"),weekdaysShort:"یک‌شنبه_دوشنبه_سه‌شنبه_چهارشنبه_پنج‌شنبه_جمعه_شنبه".split("_"),weekdaysMin:"ی_د_س_چ_پ_ج_ش".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},meridiemParse:/قبل از ظهر|بعد از ظهر/,isPM:function(e){return/بعد از ظهر/.test(e)},meridiem:function(e,t,n){return e<12?"قبل از ظهر":"بعد از ظهر"},calendar:{sameDay:"[امروز ساعت] LT",nextDay:"[فردا ساعت] LT",nextWeek:"dddd [ساعت] LT",lastDay:"[دیروز ساعت] LT",lastWeek:"dddd [پیش] [ساعت] LT",sameElse:"L"},relativeTime:{future:"در %s",past:"%s پیش",s:"چند ثانیه",ss:"ثانیه d%",m:"یک دقیقه",mm:"%d دقیقه",h:"یک ساعت",hh:"%d ساعت",d:"یک روز",dd:"%d روز",M:"یک ماه",MM:"%d ماه",y:"یک سال",yy:"%d سال"},preparse:function(e){return e.replace(/[۰-۹]/g,function(e){return n[e]}).replace(/،/g,",")},postformat:function(e){return e.replace(/\d/g,function(e){return t[e]}).replace(/,/g,"،")},dayOfMonthOrdinalParse:/\d{1,2}م/,ordinal:"%dم",week:{dow:6,doy:12}})})}})}); \ No newline at end of file diff --git a/public/assets/lib/fullcalendar/locale/fi.js b/public/assets/lib/fullcalendar/locale/fi.js new file mode 100755 index 0000000..536ab77 --- /dev/null +++ b/public/assets/lib/fullcalendar/locale/fi.js @@ -0,0 +1 @@ +!function(e,u){"object"==typeof exports&&"object"==typeof module?module.exports=u(require("moment"),require("fullcalendar")):"function"==typeof define&&define.amd?define(["moment","fullcalendar"],u):"object"==typeof exports?u(require("moment"),require("fullcalendar")):u(e.moment,e.FullCalendar)}("undefined"!=typeof self?self:this,function(e,u){return function(e){function u(a){if(t[a])return t[a].exports;var n=t[a]={i:a,l:!1,exports:{}};return e[a].call(n.exports,n,n.exports,u),n.l=!0,n.exports}var t={};return u.m=e,u.c=t,u.d=function(e,t,a){u.o(e,t)||Object.defineProperty(e,t,{configurable:!1,enumerable:!0,get:a})},u.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return u.d(t,"a",t),t},u.o=function(e,u){return Object.prototype.hasOwnProperty.call(e,u)},u.p="",u(u.s=121)}({0:function(u,t){u.exports=e},1:function(e,t){e.exports=u},121:function(e,u,t){Object.defineProperty(u,"__esModule",{value:!0}),t(122);var a=t(1);a.datepickerLocale("fi","fi",{closeText:"Sulje",prevText:"«Edellinen",nextText:"Seuraava»",currentText:"Tänään",monthNames:["Tammikuu","Helmikuu","Maaliskuu","Huhtikuu","Toukokuu","Kesäkuu","Heinäkuu","Elokuu","Syyskuu","Lokakuu","Marraskuu","Joulukuu"],monthNamesShort:["Tammi","Helmi","Maalis","Huhti","Touko","Kesä","Heinä","Elo","Syys","Loka","Marras","Joulu"],dayNamesShort:["Su","Ma","Ti","Ke","To","Pe","La"],dayNames:["Sunnuntai","Maanantai","Tiistai","Keskiviikko","Torstai","Perjantai","Lauantai"],dayNamesMin:["Su","Ma","Ti","Ke","To","Pe","La"],weekHeader:"Vk",dateFormat:"d.m.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),a.locale("fi",{buttonText:{month:"Kuukausi",week:"Viikko",day:"Päivä",list:"Tapahtumat"},allDayText:"Koko päivä",eventLimitText:"lisää",noEventsMessage:"Ei näytettäviä tapahtumia"})},122:function(e,u,t){!function(e,u){u(t(0))}(0,function(e){function u(e,u,a,n){var i="";switch(a){case"s":return n?"muutaman sekunnin":"muutama sekunti";case"ss":return n?"sekunnin":"sekuntia";case"m":return n?"minuutin":"minuutti";case"mm":i=n?"minuutin":"minuuttia";break;case"h":return n?"tunnin":"tunti";case"hh":i=n?"tunnin":"tuntia";break;case"d":return n?"päivän":"päivä";case"dd":i=n?"päivän":"päivää";break;case"M":return n?"kuukauden":"kuukausi";case"MM":i=n?"kuukauden":"kuukautta";break;case"y":return n?"vuoden":"vuosi";case"yy":i=n?"vuoden":"vuotta"}return i=t(e,n)+" "+i}function t(e,u){return e<10?u?n[e]:a[e]:e}var a="nolla yksi kaksi kolme neljä viisi kuusi seitsemän kahdeksan yhdeksän".split(" "),n=["nolla","yhden","kahden","kolmen","neljän","viiden","kuuden",a[7],a[8],a[9]];return e.defineLocale("fi",{months:"tammikuu_helmikuu_maaliskuu_huhtikuu_toukokuu_kesäkuu_heinäkuu_elokuu_syyskuu_lokakuu_marraskuu_joulukuu".split("_"),monthsShort:"tammi_helmi_maalis_huhti_touko_kesä_heinä_elo_syys_loka_marras_joulu".split("_"),weekdays:"sunnuntai_maanantai_tiistai_keskiviikko_torstai_perjantai_lauantai".split("_"),weekdaysShort:"su_ma_ti_ke_to_pe_la".split("_"),weekdaysMin:"su_ma_ti_ke_to_pe_la".split("_"),longDateFormat:{LT:"HH.mm",LTS:"HH.mm.ss",L:"DD.MM.YYYY",LL:"Do MMMM[ta] YYYY",LLL:"Do MMMM[ta] YYYY, [klo] HH.mm",LLLL:"dddd, Do MMMM[ta] YYYY, [klo] HH.mm",l:"D.M.YYYY",ll:"Do MMM YYYY",lll:"Do MMM YYYY, [klo] HH.mm",llll:"ddd, Do MMM YYYY, [klo] HH.mm"},calendar:{sameDay:"[tänään] [klo] LT",nextDay:"[huomenna] [klo] LT",nextWeek:"dddd [klo] LT",lastDay:"[eilen] [klo] LT",lastWeek:"[viime] dddd[na] [klo] LT",sameElse:"L"},relativeTime:{future:"%s päästä",past:"%s sitten",s:u,ss:u,m:u,mm:u,h:u,hh:u,d:u,dd:u,M:u,MM:u,y:u,yy:u},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})})}})}); \ No newline at end of file diff --git a/public/assets/lib/fullcalendar/locale/fr-ca.js b/public/assets/lib/fullcalendar/locale/fr-ca.js new file mode 100755 index 0000000..754d664 --- /dev/null +++ b/public/assets/lib/fullcalendar/locale/fr-ca.js @@ -0,0 +1 @@ +!function(e,r){"object"==typeof exports&&"object"==typeof module?module.exports=r(require("moment"),require("fullcalendar")):"function"==typeof define&&define.amd?define(["moment","fullcalendar"],r):"object"==typeof exports?r(require("moment"),require("fullcalendar")):r(e.moment,e.FullCalendar)}("undefined"!=typeof self?self:this,function(e,r){return function(e){function r(t){if(n[t])return n[t].exports;var a=n[t]={i:t,l:!1,exports:{}};return e[t].call(a.exports,a,a.exports,r),a.l=!0,a.exports}var n={};return r.m=e,r.c=n,r.d=function(e,n,t){r.o(e,n)||Object.defineProperty(e,n,{configurable:!1,enumerable:!0,get:t})},r.n=function(e){var n=e&&e.__esModule?function(){return e.default}:function(){return e};return r.d(n,"a",n),n},r.o=function(e,r){return Object.prototype.hasOwnProperty.call(e,r)},r.p="",r(r.s=123)}({0:function(r,n){r.exports=e},1:function(e,n){e.exports=r},123:function(e,r,n){Object.defineProperty(r,"__esModule",{value:!0}),n(124);var t=n(1);t.datepickerLocale("fr-ca","fr-CA",{closeText:"Fermer",prevText:"Précédent",nextText:"Suivant",currentText:"Aujourd'hui",monthNames:["janvier","février","mars","avril","mai","juin","juillet","août","septembre","octobre","novembre","décembre"],monthNamesShort:["janv.","févr.","mars","avril","mai","juin","juil.","août","sept.","oct.","nov.","déc."],dayNames:["dimanche","lundi","mardi","mercredi","jeudi","vendredi","samedi"],dayNamesShort:["dim.","lun.","mar.","mer.","jeu.","ven.","sam."],dayNamesMin:["D","L","M","M","J","V","S"],weekHeader:"Sem.",dateFormat:"yy-mm-dd",firstDay:0,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),t.locale("fr-ca",{buttonText:{year:"Année",month:"Mois",week:"Semaine",day:"Jour",list:"Mon planning"},allDayHtml:"Toute la
journée",eventLimitText:"en plus",noEventsMessage:"Aucun événement à afficher"})},124:function(e,r,n){!function(e,r){r(n(0))}(0,function(e){return e.defineLocale("fr-ca",{months:"janvier_février_mars_avril_mai_juin_juillet_août_septembre_octobre_novembre_décembre".split("_"),monthsShort:"janv._févr._mars_avr._mai_juin_juil._août_sept._oct._nov._déc.".split("_"),monthsParseExact:!0,weekdays:"dimanche_lundi_mardi_mercredi_jeudi_vendredi_samedi".split("_"),weekdaysShort:"dim._lun._mar._mer._jeu._ven._sam.".split("_"),weekdaysMin:"di_lu_ma_me_je_ve_sa".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"YYYY-MM-DD",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[Aujourd’hui à] LT",nextDay:"[Demain à] LT",nextWeek:"dddd [à] LT",lastDay:"[Hier à] LT",lastWeek:"dddd [dernier à] LT",sameElse:"L"},relativeTime:{future:"dans %s",past:"il y a %s",s:"quelques secondes",ss:"%d secondes",m:"une minute",mm:"%d minutes",h:"une heure",hh:"%d heures",d:"un jour",dd:"%d jours",M:"un mois",MM:"%d mois",y:"un an",yy:"%d ans"},dayOfMonthOrdinalParse:/\d{1,2}(er|e)/,ordinal:function(e,r){switch(r){default:case"M":case"Q":case"D":case"DDD":case"d":return e+(1===e?"er":"e");case"w":case"W":return e+(1===e?"re":"e")}}})})}})}); \ No newline at end of file diff --git a/public/assets/lib/fullcalendar/locale/fr-ch.js b/public/assets/lib/fullcalendar/locale/fr-ch.js new file mode 100755 index 0000000..7d10374 --- /dev/null +++ b/public/assets/lib/fullcalendar/locale/fr-ch.js @@ -0,0 +1 @@ +!function(e,r){"object"==typeof exports&&"object"==typeof module?module.exports=r(require("moment"),require("fullcalendar")):"function"==typeof define&&define.amd?define(["moment","fullcalendar"],r):"object"==typeof exports?r(require("moment"),require("fullcalendar")):r(e.moment,e.FullCalendar)}("undefined"!=typeof self?self:this,function(e,r){return function(e){function r(t){if(n[t])return n[t].exports;var a=n[t]={i:t,l:!1,exports:{}};return e[t].call(a.exports,a,a.exports,r),a.l=!0,a.exports}var n={};return r.m=e,r.c=n,r.d=function(e,n,t){r.o(e,n)||Object.defineProperty(e,n,{configurable:!1,enumerable:!0,get:t})},r.n=function(e){var n=e&&e.__esModule?function(){return e.default}:function(){return e};return r.d(n,"a",n),n},r.o=function(e,r){return Object.prototype.hasOwnProperty.call(e,r)},r.p="",r(r.s=125)}({0:function(r,n){r.exports=e},1:function(e,n){e.exports=r},125:function(e,r,n){Object.defineProperty(r,"__esModule",{value:!0}),n(126);var t=n(1);t.datepickerLocale("fr-ch","fr-CH",{closeText:"Fermer",prevText:"<Préc",nextText:"Suiv>",currentText:"Courant",monthNames:["janvier","février","mars","avril","mai","juin","juillet","août","septembre","octobre","novembre","décembre"],monthNamesShort:["janv.","févr.","mars","avril","mai","juin","juil.","août","sept.","oct.","nov.","déc."],dayNames:["dimanche","lundi","mardi","mercredi","jeudi","vendredi","samedi"],dayNamesShort:["dim.","lun.","mar.","mer.","jeu.","ven.","sam."],dayNamesMin:["D","L","M","M","J","V","S"],weekHeader:"Sm",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),t.locale("fr-ch",{buttonText:{year:"Année",month:"Mois",week:"Semaine",day:"Jour",list:"Mon planning"},allDayHtml:"Toute la
journée",eventLimitText:"en plus",noEventsMessage:"Aucun événement à afficher"})},126:function(e,r,n){!function(e,r){r(n(0))}(0,function(e){return e.defineLocale("fr-ch",{months:"janvier_février_mars_avril_mai_juin_juillet_août_septembre_octobre_novembre_décembre".split("_"),monthsShort:"janv._févr._mars_avr._mai_juin_juil._août_sept._oct._nov._déc.".split("_"),monthsParseExact:!0,weekdays:"dimanche_lundi_mardi_mercredi_jeudi_vendredi_samedi".split("_"),weekdaysShort:"dim._lun._mar._mer._jeu._ven._sam.".split("_"),weekdaysMin:"di_lu_ma_me_je_ve_sa".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[Aujourd’hui à] LT",nextDay:"[Demain à] LT",nextWeek:"dddd [à] LT",lastDay:"[Hier à] LT",lastWeek:"dddd [dernier à] LT",sameElse:"L"},relativeTime:{future:"dans %s",past:"il y a %s",s:"quelques secondes",ss:"%d secondes",m:"une minute",mm:"%d minutes",h:"une heure",hh:"%d heures",d:"un jour",dd:"%d jours",M:"un mois",MM:"%d mois",y:"un an",yy:"%d ans"},dayOfMonthOrdinalParse:/\d{1,2}(er|e)/,ordinal:function(e,r){switch(r){default:case"M":case"Q":case"D":case"DDD":case"d":return e+(1===e?"er":"e");case"w":case"W":return e+(1===e?"re":"e")}},week:{dow:1,doy:4}})})}})}); \ No newline at end of file diff --git a/public/assets/lib/fullcalendar/locale/fr.js b/public/assets/lib/fullcalendar/locale/fr.js new file mode 100755 index 0000000..7cb715f --- /dev/null +++ b/public/assets/lib/fullcalendar/locale/fr.js @@ -0,0 +1 @@ +!function(e,r){"object"==typeof exports&&"object"==typeof module?module.exports=r(require("moment"),require("fullcalendar")):"function"==typeof define&&define.amd?define(["moment","fullcalendar"],r):"object"==typeof exports?r(require("moment"),require("fullcalendar")):r(e.moment,e.FullCalendar)}("undefined"!=typeof self?self:this,function(e,r){return function(e){function r(t){if(n[t])return n[t].exports;var a=n[t]={i:t,l:!1,exports:{}};return e[t].call(a.exports,a,a.exports,r),a.l=!0,a.exports}var n={};return r.m=e,r.c=n,r.d=function(e,n,t){r.o(e,n)||Object.defineProperty(e,n,{configurable:!1,enumerable:!0,get:t})},r.n=function(e){var n=e&&e.__esModule?function(){return e.default}:function(){return e};return r.d(n,"a",n),n},r.o=function(e,r){return Object.prototype.hasOwnProperty.call(e,r)},r.p="",r(r.s=127)}({0:function(r,n){r.exports=e},1:function(e,n){e.exports=r},127:function(e,r,n){Object.defineProperty(r,"__esModule",{value:!0}),n(128);var t=n(1);t.datepickerLocale("fr","fr",{closeText:"Fermer",prevText:"Précédent",nextText:"Suivant",currentText:"Aujourd'hui",monthNames:["janvier","février","mars","avril","mai","juin","juillet","août","septembre","octobre","novembre","décembre"],monthNamesShort:["janv.","févr.","mars","avr.","mai","juin","juil.","août","sept.","oct.","nov.","déc."],dayNames:["dimanche","lundi","mardi","mercredi","jeudi","vendredi","samedi"],dayNamesShort:["dim.","lun.","mar.","mer.","jeu.","ven.","sam."],dayNamesMin:["D","L","M","M","J","V","S"],weekHeader:"Sem.",dateFormat:"dd/mm/yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),t.locale("fr",{buttonText:{year:"Année",month:"Mois",week:"Semaine",day:"Jour",list:"Mon planning"},allDayHtml:"Toute la
journée",eventLimitText:"en plus",noEventsMessage:"Aucun événement à afficher"})},128:function(e,r,n){!function(e,r){r(n(0))}(0,function(e){return e.defineLocale("fr",{months:"janvier_février_mars_avril_mai_juin_juillet_août_septembre_octobre_novembre_décembre".split("_"),monthsShort:"janv._févr._mars_avr._mai_juin_juil._août_sept._oct._nov._déc.".split("_"),monthsParseExact:!0,weekdays:"dimanche_lundi_mardi_mercredi_jeudi_vendredi_samedi".split("_"),weekdaysShort:"dim._lun._mar._mer._jeu._ven._sam.".split("_"),weekdaysMin:"di_lu_ma_me_je_ve_sa".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[Aujourd’hui à] LT",nextDay:"[Demain à] LT",nextWeek:"dddd [à] LT",lastDay:"[Hier à] LT",lastWeek:"dddd [dernier à] LT",sameElse:"L"},relativeTime:{future:"dans %s",past:"il y a %s",s:"quelques secondes",ss:"%d secondes",m:"une minute",mm:"%d minutes",h:"une heure",hh:"%d heures",d:"un jour",dd:"%d jours",M:"un mois",MM:"%d mois",y:"un an",yy:"%d ans"},dayOfMonthOrdinalParse:/\d{1,2}(er|)/,ordinal:function(e,r){switch(r){case"D":return e+(1===e?"er":"");default:case"M":case"Q":case"DDD":case"d":return e+(1===e?"er":"e");case"w":case"W":return e+(1===e?"re":"e")}},week:{dow:1,doy:4}})})}})}); \ No newline at end of file diff --git a/public/assets/lib/fullcalendar/locale/gl.js b/public/assets/lib/fullcalendar/locale/gl.js new file mode 100755 index 0000000..2ce5c49 --- /dev/null +++ b/public/assets/lib/fullcalendar/locale/gl.js @@ -0,0 +1 @@ +!function(e,o){"object"==typeof exports&&"object"==typeof module?module.exports=o(require("moment"),require("fullcalendar")):"function"==typeof define&&define.amd?define(["moment","fullcalendar"],o):"object"==typeof exports?o(require("moment"),require("fullcalendar")):o(e.moment,e.FullCalendar)}("undefined"!=typeof self?self:this,function(e,o){return function(e){function o(n){if(t[n])return t[n].exports;var r=t[n]={i:n,l:!1,exports:{}};return e[n].call(r.exports,r,r.exports,o),r.l=!0,r.exports}var t={};return o.m=e,o.c=t,o.d=function(e,t,n){o.o(e,t)||Object.defineProperty(e,t,{configurable:!1,enumerable:!0,get:n})},o.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return o.d(t,"a",t),t},o.o=function(e,o){return Object.prototype.hasOwnProperty.call(e,o)},o.p="",o(o.s=129)}({0:function(o,t){o.exports=e},1:function(e,t){e.exports=o},129:function(e,o,t){Object.defineProperty(o,"__esModule",{value:!0}),t(130);var n=t(1);n.datepickerLocale("gl","gl",{closeText:"Pechar",prevText:"<Ant",nextText:"Seg>",currentText:"Hoxe",monthNames:["Xaneiro","Febreiro","Marzo","Abril","Maio","Xuño","Xullo","Agosto","Setembro","Outubro","Novembro","Decembro"],monthNamesShort:["Xan","Feb","Mar","Abr","Mai","Xuñ","Xul","Ago","Set","Out","Nov","Dec"],dayNames:["Domingo","Luns","Martes","Mércores","Xoves","Venres","Sábado"],dayNamesShort:["Dom","Lun","Mar","Mér","Xov","Ven","Sáb"],dayNamesMin:["Do","Lu","Ma","Mé","Xo","Ve","Sá"],weekHeader:"Sm",dateFormat:"dd/mm/yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),n.locale("gl",{buttonText:{month:"Mes",week:"Semana",day:"Día",list:"Axenda"},allDayHtml:"Todo
o día",eventLimitText:"máis",noEventsMessage:"Non hai eventos para amosar"})},130:function(e,o,t){!function(e,o){o(t(0))}(0,function(e){return e.defineLocale("gl",{months:"xaneiro_febreiro_marzo_abril_maio_xuño_xullo_agosto_setembro_outubro_novembro_decembro".split("_"),monthsShort:"xan._feb._mar._abr._mai._xuñ._xul._ago._set._out._nov._dec.".split("_"),monthsParseExact:!0,weekdays:"domingo_luns_martes_mércores_xoves_venres_sábado".split("_"),weekdaysShort:"dom._lun._mar._mér._xov._ven._sáb.".split("_"),weekdaysMin:"do_lu_ma_mé_xo_ve_sá".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD/MM/YYYY",LL:"D [de] MMMM [de] YYYY",LLL:"D [de] MMMM [de] YYYY H:mm",LLLL:"dddd, D [de] MMMM [de] YYYY H:mm"},calendar:{sameDay:function(){return"[hoxe "+(1!==this.hours()?"ás":"á")+"] LT"},nextDay:function(){return"[mañá "+(1!==this.hours()?"ás":"á")+"] LT"},nextWeek:function(){return"dddd ["+(1!==this.hours()?"ás":"a")+"] LT"},lastDay:function(){return"[onte "+(1!==this.hours()?"á":"a")+"] LT"},lastWeek:function(){return"[o] dddd [pasado "+(1!==this.hours()?"ás":"a")+"] LT"},sameElse:"L"},relativeTime:{future:function(e){return 0===e.indexOf("un")?"n"+e:"en "+e},past:"hai %s",s:"uns segundos",ss:"%d segundos",m:"un minuto",mm:"%d minutos",h:"unha hora",hh:"%d horas",d:"un día",dd:"%d días",M:"un mes",MM:"%d meses",y:"un ano",yy:"%d anos"},dayOfMonthOrdinalParse:/\d{1,2}º/,ordinal:"%dº",week:{dow:1,doy:4}})})}})}); \ No newline at end of file diff --git a/public/assets/lib/fullcalendar/locale/he.js b/public/assets/lib/fullcalendar/locale/he.js new file mode 100755 index 0000000..69e6e56 --- /dev/null +++ b/public/assets/lib/fullcalendar/locale/he.js @@ -0,0 +1 @@ +!function(e,t){"object"==typeof exports&&"object"==typeof module?module.exports=t(require("moment"),require("fullcalendar")):"function"==typeof define&&define.amd?define(["moment","fullcalendar"],t):"object"==typeof exports?t(require("moment"),require("fullcalendar")):t(e.moment,e.FullCalendar)}("undefined"!=typeof self?self:this,function(e,t){return function(e){function t(r){if(n[r])return n[r].exports;var o=n[r]={i:r,l:!1,exports:{}};return e[r].call(o.exports,o,o.exports,t),o.l=!0,o.exports}var n={};return t.m=e,t.c=n,t.d=function(e,n,r){t.o(e,n)||Object.defineProperty(e,n,{configurable:!1,enumerable:!0,get:r})},t.n=function(e){var n=e&&e.__esModule?function(){return e.default}:function(){return e};return t.d(n,"a",n),n},t.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},t.p="",t(t.s=131)}({0:function(t,n){t.exports=e},1:function(e,n){e.exports=t},131:function(e,t,n){Object.defineProperty(t,"__esModule",{value:!0}),n(132);var r=n(1);r.datepickerLocale("he","he",{closeText:"סגור",prevText:"<הקודם",nextText:"הבא>",currentText:"היום",monthNames:["ינואר","פברואר","מרץ","אפריל","מאי","יוני","יולי","אוגוסט","ספטמבר","אוקטובר","נובמבר","דצמבר"],monthNamesShort:["ינו","פבר","מרץ","אפר","מאי","יוני","יולי","אוג","ספט","אוק","נוב","דצמ"],dayNames:["ראשון","שני","שלישי","רביעי","חמישי","שישי","שבת"],dayNamesShort:["א'","ב'","ג'","ד'","ה'","ו'","שבת"],dayNamesMin:["א'","ב'","ג'","ד'","ה'","ו'","שבת"],weekHeader:"Wk",dateFormat:"dd/mm/yy",firstDay:0,isRTL:!0,showMonthAfterYear:!1,yearSuffix:""}),r.locale("he",{buttonText:{month:"חודש",week:"שבוע",day:"יום",list:"סדר יום"},allDayText:"כל היום",eventLimitText:"אחר",noEventsMessage:"אין אירועים להצגה",weekNumberTitle:"שבוע"})},132:function(e,t,n){!function(e,t){t(n(0))}(0,function(e){return e.defineLocale("he",{months:"ינואר_פברואר_מרץ_אפריל_מאי_יוני_יולי_אוגוסט_ספטמבר_אוקטובר_נובמבר_דצמבר".split("_"),monthsShort:"ינו׳_פבר׳_מרץ_אפר׳_מאי_יוני_יולי_אוג׳_ספט׳_אוק׳_נוב׳_דצמ׳".split("_"),weekdays:"ראשון_שני_שלישי_רביעי_חמישי_שישי_שבת".split("_"),weekdaysShort:"א׳_ב׳_ג׳_ד׳_ה׳_ו׳_ש׳".split("_"),weekdaysMin:"א_ב_ג_ד_ה_ו_ש".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D [ב]MMMM YYYY",LLL:"D [ב]MMMM YYYY HH:mm",LLLL:"dddd, D [ב]MMMM YYYY HH:mm",l:"D/M/YYYY",ll:"D MMM YYYY",lll:"D MMM YYYY HH:mm",llll:"ddd, D MMM YYYY HH:mm"},calendar:{sameDay:"[היום ב־]LT",nextDay:"[מחר ב־]LT",nextWeek:"dddd [בשעה] LT",lastDay:"[אתמול ב־]LT",lastWeek:"[ביום] dddd [האחרון בשעה] LT",sameElse:"L"},relativeTime:{future:"בעוד %s",past:"לפני %s",s:"מספר שניות",ss:"%d שניות",m:"דקה",mm:"%d דקות",h:"שעה",hh:function(e){return 2===e?"שעתיים":e+" שעות"},d:"יום",dd:function(e){return 2===e?"יומיים":e+" ימים"},M:"חודש",MM:function(e){return 2===e?"חודשיים":e+" חודשים"},y:"שנה",yy:function(e){return 2===e?"שנתיים":e%10==0&&10!==e?e+" שנה":e+" שנים"}},meridiemParse:/אחה"צ|לפנה"צ|אחרי הצהריים|לפני הצהריים|לפנות בוקר|בבוקר|בערב/i,isPM:function(e){return/^(אחה"צ|אחרי הצהריים|בערב)$/.test(e)},meridiem:function(e,t,n){return e<5?"לפנות בוקר":e<10?"בבוקר":e<12?n?'לפנה"צ':"לפני הצהריים":e<18?n?'אחה"צ':"אחרי הצהריים":"בערב"}})})}})}); \ No newline at end of file diff --git a/public/assets/lib/fullcalendar/locale/hi.js b/public/assets/lib/fullcalendar/locale/hi.js new file mode 100755 index 0000000..18227ee --- /dev/null +++ b/public/assets/lib/fullcalendar/locale/hi.js @@ -0,0 +1 @@ +!function(e,t){"object"==typeof exports&&"object"==typeof module?module.exports=t(require("moment"),require("fullcalendar")):"function"==typeof define&&define.amd?define(["moment","fullcalendar"],t):"object"==typeof exports?t(require("moment"),require("fullcalendar")):t(e.moment,e.FullCalendar)}("undefined"!=typeof self?self:this,function(e,t){return function(e){function t(r){if(n[r])return n[r].exports;var o=n[r]={i:r,l:!1,exports:{}};return e[r].call(o.exports,o,o.exports,t),o.l=!0,o.exports}var n={};return t.m=e,t.c=n,t.d=function(e,n,r){t.o(e,n)||Object.defineProperty(e,n,{configurable:!1,enumerable:!0,get:r})},t.n=function(e){var n=e&&e.__esModule?function(){return e.default}:function(){return e};return t.d(n,"a",n),n},t.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},t.p="",t(t.s=133)}({0:function(t,n){t.exports=e},1:function(e,n){e.exports=t},133:function(e,t,n){Object.defineProperty(t,"__esModule",{value:!0}),n(134);var r=n(1);r.datepickerLocale("hi","hi",{closeText:"बंद",prevText:"पिछला",nextText:"अगला",currentText:"आज",monthNames:["जनवरी ","फरवरी","मार्च","अप्रेल","मई","जून","जूलाई","अगस्त ","सितम्बर","अक्टूबर","नवम्बर","दिसम्बर"],monthNamesShort:["जन","फर","मार्च","अप्रेल","मई","जून","जूलाई","अग","सित","अक्ट","नव","दि"],dayNames:["रविवार","सोमवार","मंगलवार","बुधवार","गुरुवार","शुक्रवार","शनिवार"],dayNamesShort:["रवि","सोम","मंगल","बुध","गुरु","शुक्र","शनि"],dayNamesMin:["रवि","सोम","मंगल","बुध","गुरु","शुक्र","शनि"],weekHeader:"हफ्ता",dateFormat:"dd/mm/yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),r.locale("hi",{buttonText:{month:"महीना",week:"सप्ताह",day:"दिन",list:"कार्यसूची"},allDayText:"सभी दिन",eventLimitText:function(e){return"+अधिक "+e},noEventsMessage:"कोई घटनाओं को प्रदर्शित करने के लिए"})},134:function(e,t,n){!function(e,t){t(n(0))}(0,function(e){var t={1:"१",2:"२",3:"३",4:"४",5:"५",6:"६",7:"७",8:"८",9:"९",0:"०"},n={"१":"1","२":"2","३":"3","४":"4","५":"5","६":"6","७":"7","८":"8","९":"9","०":"0"};return e.defineLocale("hi",{months:"जनवरी_फ़रवरी_मार्च_अप्रैल_मई_जून_जुलाई_अगस्त_सितम्बर_अक्टूबर_नवम्बर_दिसम्बर".split("_"),monthsShort:"जन._फ़र._मार्च_अप्रै._मई_जून_जुल._अग._सित._अक्टू._नव._दिस.".split("_"),monthsParseExact:!0,weekdays:"रविवार_सोमवार_मंगलवार_बुधवार_गुरूवार_शुक्रवार_शनिवार".split("_"),weekdaysShort:"रवि_सोम_मंगल_बुध_गुरू_शुक्र_शनि".split("_"),weekdaysMin:"र_सो_मं_बु_गु_शु_श".split("_"),longDateFormat:{LT:"A h:mm बजे",LTS:"A h:mm:ss बजे",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY, A h:mm बजे",LLLL:"dddd, D MMMM YYYY, A h:mm बजे"},calendar:{sameDay:"[आज] LT",nextDay:"[कल] LT",nextWeek:"dddd, LT",lastDay:"[कल] LT",lastWeek:"[पिछले] dddd, LT",sameElse:"L"},relativeTime:{future:"%s में",past:"%s पहले",s:"कुछ ही क्षण",ss:"%d सेकंड",m:"एक मिनट",mm:"%d मिनट",h:"एक घंटा",hh:"%d घंटे",d:"एक दिन",dd:"%d दिन",M:"एक महीने",MM:"%d महीने",y:"एक वर्ष",yy:"%d वर्ष"},preparse:function(e){return e.replace(/[१२३४५६७८९०]/g,function(e){return n[e]})},postformat:function(e){return e.replace(/\d/g,function(e){return t[e]})},meridiemParse:/रात|सुबह|दोपहर|शाम/,meridiemHour:function(e,t){return 12===e&&(e=0),"रात"===t?e<4?e:e+12:"सुबह"===t?e:"दोपहर"===t?e>=10?e:e+12:"शाम"===t?e+12:void 0},meridiem:function(e,t,n){return e<4?"रात":e<10?"सुबह":e<17?"दोपहर":e<20?"शाम":"रात"},week:{dow:0,doy:6}})})}})}); \ No newline at end of file diff --git a/public/assets/lib/fullcalendar/locale/hr.js b/public/assets/lib/fullcalendar/locale/hr.js new file mode 100755 index 0000000..0969012 --- /dev/null +++ b/public/assets/lib/fullcalendar/locale/hr.js @@ -0,0 +1 @@ +!function(e,a){"object"==typeof exports&&"object"==typeof module?module.exports=a(require("moment"),require("fullcalendar")):"function"==typeof define&&define.amd?define(["moment","fullcalendar"],a):"object"==typeof exports?a(require("moment"),require("fullcalendar")):a(e.moment,e.FullCalendar)}("undefined"!=typeof self?self:this,function(e,a){return function(e){function a(n){if(t[n])return t[n].exports;var r=t[n]={i:n,l:!1,exports:{}};return e[n].call(r.exports,r,r.exports,a),r.l=!0,r.exports}var t={};return a.m=e,a.c=t,a.d=function(e,t,n){a.o(e,t)||Object.defineProperty(e,t,{configurable:!1,enumerable:!0,get:n})},a.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return a.d(t,"a",t),t},a.o=function(e,a){return Object.prototype.hasOwnProperty.call(e,a)},a.p="",a(a.s=135)}({0:function(a,t){a.exports=e},1:function(e,t){e.exports=a},135:function(e,a,t){Object.defineProperty(a,"__esModule",{value:!0}),t(136);var n=t(1);n.datepickerLocale("hr","hr",{closeText:"Zatvori",prevText:"<",nextText:">",currentText:"Danas",monthNames:["Siječanj","Veljača","Ožujak","Travanj","Svibanj","Lipanj","Srpanj","Kolovoz","Rujan","Listopad","Studeni","Prosinac"],monthNamesShort:["Sij","Velj","Ožu","Tra","Svi","Lip","Srp","Kol","Ruj","Lis","Stu","Pro"],dayNames:["Nedjelja","Ponedjeljak","Utorak","Srijeda","Četvrtak","Petak","Subota"],dayNamesShort:["Ned","Pon","Uto","Sri","Čet","Pet","Sub"],dayNamesMin:["Ne","Po","Ut","Sr","Če","Pe","Su"],weekHeader:"Tje",dateFormat:"dd.mm.yy.",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),n.locale("hr",{buttonText:{prev:"Prijašnji",next:"Sljedeći",month:"Mjesec",week:"Tjedan",day:"Dan",list:"Raspored"},allDayText:"Cijeli dan",eventLimitText:function(e){return"+ još "+e},noEventsMessage:"Nema događaja za prikaz"})},136:function(e,a,t){!function(e,a){a(t(0))}(0,function(e){function a(e,a,t){var n=e+" ";switch(t){case"ss":return n+=1===e?"sekunda":2===e||3===e||4===e?"sekunde":"sekundi";case"m":return a?"jedna minuta":"jedne minute";case"mm":return n+=1===e?"minuta":2===e||3===e||4===e?"minute":"minuta";case"h":return a?"jedan sat":"jednog sata";case"hh":return n+=1===e?"sat":2===e||3===e||4===e?"sata":"sati";case"dd":return n+=1===e?"dan":"dana";case"MM":return n+=1===e?"mjesec":2===e||3===e||4===e?"mjeseca":"mjeseci";case"yy":return n+=1===e?"godina":2===e||3===e||4===e?"godine":"godina"}}return e.defineLocale("hr",{months:{format:"siječnja_veljače_ožujka_travnja_svibnja_lipnja_srpnja_kolovoza_rujna_listopada_studenoga_prosinca".split("_"),standalone:"siječanj_veljača_ožujak_travanj_svibanj_lipanj_srpanj_kolovoz_rujan_listopad_studeni_prosinac".split("_")},monthsShort:"sij._velj._ožu._tra._svi._lip._srp._kol._ruj._lis._stu._pro.".split("_"),monthsParseExact:!0,weekdays:"nedjelja_ponedjeljak_utorak_srijeda_četvrtak_petak_subota".split("_"),weekdaysShort:"ned._pon._uto._sri._čet._pet._sub.".split("_"),weekdaysMin:"ne_po_ut_sr_če_pe_su".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY H:mm",LLLL:"dddd, D. MMMM YYYY H:mm"},calendar:{sameDay:"[danas u] LT",nextDay:"[sutra u] LT",nextWeek:function(){switch(this.day()){case 0:return"[u] [nedjelju] [u] LT";case 3:return"[u] [srijedu] [u] LT";case 6:return"[u] [subotu] [u] LT";case 1:case 2:case 4:case 5:return"[u] dddd [u] LT"}},lastDay:"[jučer u] LT",lastWeek:function(){switch(this.day()){case 0:case 3:return"[prošlu] dddd [u] LT";case 6:return"[prošle] [subote] [u] LT";case 1:case 2:case 4:case 5:return"[prošli] dddd [u] LT"}},sameElse:"L"},relativeTime:{future:"za %s",past:"prije %s",s:"par sekundi",ss:a,m:a,mm:a,h:a,hh:a,d:"dan",dd:a,M:"mjesec",MM:a,y:"godinu",yy:a},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:7}})})}})}); \ No newline at end of file diff --git a/public/assets/lib/fullcalendar/locale/hu.js b/public/assets/lib/fullcalendar/locale/hu.js new file mode 100755 index 0000000..256356f --- /dev/null +++ b/public/assets/lib/fullcalendar/locale/hu.js @@ -0,0 +1 @@ +!function(e,t){"object"==typeof exports&&"object"==typeof module?module.exports=t(require("moment"),require("fullcalendar")):"function"==typeof define&&define.amd?define(["moment","fullcalendar"],t):"object"==typeof exports?t(require("moment"),require("fullcalendar")):t(e.moment,e.FullCalendar)}("undefined"!=typeof self?self:this,function(e,t){return function(e){function t(n){if(r[n])return r[n].exports;var a=r[n]={i:n,l:!1,exports:{}};return e[n].call(a.exports,a,a.exports,t),a.l=!0,a.exports}var r={};return t.m=e,t.c=r,t.d=function(e,r,n){t.o(e,r)||Object.defineProperty(e,r,{configurable:!1,enumerable:!0,get:n})},t.n=function(e){var r=e&&e.__esModule?function(){return e.default}:function(){return e};return t.d(r,"a",r),r},t.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},t.p="",t(t.s=137)}({0:function(t,r){t.exports=e},1:function(e,r){e.exports=t},137:function(e,t,r){Object.defineProperty(t,"__esModule",{value:!0}),r(138);var n=r(1);n.datepickerLocale("hu","hu",{closeText:"bezár",prevText:"vissza",nextText:"előre",currentText:"ma",monthNames:["Január","Február","Március","Április","Május","Június","Július","Augusztus","Szeptember","Október","November","December"],monthNamesShort:["Jan","Feb","Már","Ápr","Máj","Jún","Júl","Aug","Szep","Okt","Nov","Dec"],dayNames:["Vasárnap","Hétfő","Kedd","Szerda","Csütörtök","Péntek","Szombat"],dayNamesShort:["Vas","Hét","Ked","Sze","Csü","Pén","Szo"],dayNamesMin:["V","H","K","Sze","Cs","P","Szo"],weekHeader:"Hét",dateFormat:"yy.mm.dd.",firstDay:1,isRTL:!1,showMonthAfterYear:!0,yearSuffix:""}),n.locale("hu",{buttonText:{month:"Hónap",week:"Hét",day:"Nap",list:"Napló"},allDayText:"Egész nap",eventLimitText:"további",noEventsMessage:"Nincs megjeleníthető események"})},138:function(e,t,r){!function(e,t){t(r(0))}(0,function(e){function t(e,t,r,n){var a=e;switch(r){case"s":return n||t?"néhány másodperc":"néhány másodperce";case"ss":return a+(n||t)?" másodperc":" másodperce";case"m":return"egy"+(n||t?" perc":" perce");case"mm":return a+(n||t?" perc":" perce");case"h":return"egy"+(n||t?" óra":" órája");case"hh":return a+(n||t?" óra":" órája");case"d":return"egy"+(n||t?" nap":" napja");case"dd":return a+(n||t?" nap":" napja");case"M":return"egy"+(n||t?" hónap":" hónapja");case"MM":return a+(n||t?" hónap":" hónapja");case"y":return"egy"+(n||t?" év":" éve");case"yy":return a+(n||t?" év":" éve")}return""}function r(e){return(e?"":"[múlt] ")+"["+n[this.day()]+"] LT[-kor]"}var n="vasárnap hétfőn kedden szerdán csütörtökön pénteken szombaton".split(" ");return e.defineLocale("hu",{months:"január_február_március_április_május_június_július_augusztus_szeptember_október_november_december".split("_"),monthsShort:"jan_feb_márc_ápr_máj_jún_júl_aug_szept_okt_nov_dec".split("_"),weekdays:"vasárnap_hétfő_kedd_szerda_csütörtök_péntek_szombat".split("_"),weekdaysShort:"vas_hét_kedd_sze_csüt_pén_szo".split("_"),weekdaysMin:"v_h_k_sze_cs_p_szo".split("_"),longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"YYYY.MM.DD.",LL:"YYYY. MMMM D.",LLL:"YYYY. MMMM D. H:mm",LLLL:"YYYY. MMMM D., dddd H:mm"},meridiemParse:/de|du/i,isPM:function(e){return"u"===e.charAt(1).toLowerCase()},meridiem:function(e,t,r){return e<12?!0===r?"de":"DE":!0===r?"du":"DU"},calendar:{sameDay:"[ma] LT[-kor]",nextDay:"[holnap] LT[-kor]",nextWeek:function(){return r.call(this,!0)},lastDay:"[tegnap] LT[-kor]",lastWeek:function(){return r.call(this,!1)},sameElse:"L"},relativeTime:{future:"%s múlva",past:"%s",s:t,ss:t,m:t,mm:t,h:t,hh:t,d:t,dd:t,M:t,MM:t,y:t,yy:t},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})})}})}); \ No newline at end of file diff --git a/public/assets/lib/fullcalendar/locale/id.js b/public/assets/lib/fullcalendar/locale/id.js new file mode 100755 index 0000000..a0170e8 --- /dev/null +++ b/public/assets/lib/fullcalendar/locale/id.js @@ -0,0 +1 @@ +!function(e,a){"object"==typeof exports&&"object"==typeof module?module.exports=a(require("moment"),require("fullcalendar")):"function"==typeof define&&define.amd?define(["moment","fullcalendar"],a):"object"==typeof exports?a(require("moment"),require("fullcalendar")):a(e.moment,e.FullCalendar)}("undefined"!=typeof self?self:this,function(e,a){return function(e){function a(n){if(t[n])return t[n].exports;var r=t[n]={i:n,l:!1,exports:{}};return e[n].call(r.exports,r,r.exports,a),r.l=!0,r.exports}var t={};return a.m=e,a.c=t,a.d=function(e,t,n){a.o(e,t)||Object.defineProperty(e,t,{configurable:!1,enumerable:!0,get:n})},a.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return a.d(t,"a",t),t},a.o=function(e,a){return Object.prototype.hasOwnProperty.call(e,a)},a.p="",a(a.s=139)}({0:function(a,t){a.exports=e},1:function(e,t){e.exports=a},139:function(e,a,t){Object.defineProperty(a,"__esModule",{value:!0}),t(140);var n=t(1);n.datepickerLocale("id","id",{closeText:"Tutup",prevText:"<mundur",nextText:"maju>",currentText:"hari ini",monthNames:["Januari","Februari","Maret","April","Mei","Juni","Juli","Agustus","September","Oktober","Nopember","Desember"],monthNamesShort:["Jan","Feb","Mar","Apr","Mei","Jun","Jul","Agus","Sep","Okt","Nop","Des"],dayNames:["Minggu","Senin","Selasa","Rabu","Kamis","Jumat","Sabtu"],dayNamesShort:["Min","Sen","Sel","Rab","kam","Jum","Sab"],dayNamesMin:["Mg","Sn","Sl","Rb","Km","jm","Sb"],weekHeader:"Mg",dateFormat:"dd/mm/yy",firstDay:0,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),n.locale("id",{buttonText:{month:"Bulan",week:"Minggu",day:"Hari",list:"Agenda"},allDayHtml:"Sehari
penuh",eventLimitText:"lebih",noEventsMessage:"Tidak ada acara untuk ditampilkan"})},140:function(e,a,t){!function(e,a){a(t(0))}(0,function(e){return e.defineLocale("id",{months:"Januari_Februari_Maret_April_Mei_Juni_Juli_Agustus_September_Oktober_November_Desember".split("_"),monthsShort:"Jan_Feb_Mar_Apr_Mei_Jun_Jul_Agt_Sep_Okt_Nov_Des".split("_"),weekdays:"Minggu_Senin_Selasa_Rabu_Kamis_Jumat_Sabtu".split("_"),weekdaysShort:"Min_Sen_Sel_Rab_Kam_Jum_Sab".split("_"),weekdaysMin:"Mg_Sn_Sl_Rb_Km_Jm_Sb".split("_"),longDateFormat:{LT:"HH.mm",LTS:"HH.mm.ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY [pukul] HH.mm",LLLL:"dddd, D MMMM YYYY [pukul] HH.mm"},meridiemParse:/pagi|siang|sore|malam/,meridiemHour:function(e,a){return 12===e&&(e=0),"pagi"===a?e:"siang"===a?e>=11?e:e+12:"sore"===a||"malam"===a?e+12:void 0},meridiem:function(e,a,t){return e<11?"pagi":e<15?"siang":e<19?"sore":"malam"},calendar:{sameDay:"[Hari ini pukul] LT",nextDay:"[Besok pukul] LT",nextWeek:"dddd [pukul] LT",lastDay:"[Kemarin pukul] LT",lastWeek:"dddd [lalu pukul] LT",sameElse:"L"},relativeTime:{future:"dalam %s",past:"%s yang lalu",s:"beberapa detik",ss:"%d detik",m:"semenit",mm:"%d menit",h:"sejam",hh:"%d jam",d:"sehari",dd:"%d hari",M:"sebulan",MM:"%d bulan",y:"setahun",yy:"%d tahun"},week:{dow:1,doy:7}})})}})}); \ No newline at end of file diff --git a/public/assets/lib/fullcalendar/locale/is.js b/public/assets/lib/fullcalendar/locale/is.js new file mode 100755 index 0000000..e5e63d7 --- /dev/null +++ b/public/assets/lib/fullcalendar/locale/is.js @@ -0,0 +1 @@ +!function(e,r){"object"==typeof exports&&"object"==typeof module?module.exports=r(require("moment"),require("fullcalendar")):"function"==typeof define&&define.amd?define(["moment","fullcalendar"],r):"object"==typeof exports?r(require("moment"),require("fullcalendar")):r(e.moment,e.FullCalendar)}("undefined"!=typeof self?self:this,function(e,r){return function(e){function r(t){if(n[t])return n[t].exports;var a=n[t]={i:t,l:!1,exports:{}};return e[t].call(a.exports,a,a.exports,r),a.l=!0,a.exports}var n={};return r.m=e,r.c=n,r.d=function(e,n,t){r.o(e,n)||Object.defineProperty(e,n,{configurable:!1,enumerable:!0,get:t})},r.n=function(e){var n=e&&e.__esModule?function(){return e.default}:function(){return e};return r.d(n,"a",n),n},r.o=function(e,r){return Object.prototype.hasOwnProperty.call(e,r)},r.p="",r(r.s=141)}({0:function(r,n){r.exports=e},1:function(e,n){e.exports=r},141:function(e,r,n){Object.defineProperty(r,"__esModule",{value:!0}),n(142);var t=n(1);t.datepickerLocale("is","is",{closeText:"Loka",prevText:"< Fyrri",nextText:"Næsti >",currentText:"Í dag",monthNames:["Janúar","Febrúar","Mars","Apríl","Maí","Júní","Júlí","Ágúst","September","Október","Nóvember","Desember"],monthNamesShort:["Jan","Feb","Mar","Apr","Maí","Jún","Júl","Ágú","Sep","Okt","Nóv","Des"],dayNames:["Sunnudagur","Mánudagur","Þriðjudagur","Miðvikudagur","Fimmtudagur","Föstudagur","Laugardagur"],dayNamesShort:["Sun","Mán","Þri","Mið","Fim","Fös","Lau"],dayNamesMin:["Su","Má","Þr","Mi","Fi","Fö","La"],weekHeader:"Vika",dateFormat:"dd.mm.yy",firstDay:0,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),t.locale("is",{buttonText:{month:"Mánuður",week:"Vika",day:"Dagur",list:"Dagskrá"},allDayHtml:"Allan
daginn",eventLimitText:"meira",noEventsMessage:"Engir viðburðir til að sýna"})},142:function(e,r,n){!function(e,r){r(n(0))}(0,function(e){function r(e){return e%100==11||e%10!=1}function n(e,n,t,a){var u=e+" ";switch(t){case"s":return n||a?"nokkrar sekúndur":"nokkrum sekúndum";case"ss":return r(e)?u+(n||a?"sekúndur":"sekúndum"):u+"sekúnda";case"m":return n?"mínúta":"mínútu";case"mm":return r(e)?u+(n||a?"mínútur":"mínútum"):n?u+"mínúta":u+"mínútu";case"hh":return r(e)?u+(n||a?"klukkustundir":"klukkustundum"):u+"klukkustund";case"d":return n?"dagur":a?"dag":"degi";case"dd":return r(e)?n?u+"dagar":u+(a?"daga":"dögum"):n?u+"dagur":u+(a?"dag":"degi");case"M":return n?"mánuður":a?"mánuð":"mánuði";case"MM":return r(e)?n?u+"mánuðir":u+(a?"mánuði":"mánuðum"):n?u+"mánuður":u+(a?"mánuð":"mánuði");case"y":return n||a?"ár":"ári";case"yy":return r(e)?u+(n||a?"ár":"árum"):u+(n||a?"ár":"ári")}}return e.defineLocale("is",{months:"janúar_febrúar_mars_apríl_maí_júní_júlí_ágúst_september_október_nóvember_desember".split("_"),monthsShort:"jan_feb_mar_apr_maí_jún_júl_ágú_sep_okt_nóv_des".split("_"),weekdays:"sunnudagur_mánudagur_þriðjudagur_miðvikudagur_fimmtudagur_föstudagur_laugardagur".split("_"),weekdaysShort:"sun_mán_þri_mið_fim_fös_lau".split("_"),weekdaysMin:"Su_Má_Þr_Mi_Fi_Fö_La".split("_"),longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY [kl.] H:mm",LLLL:"dddd, D. MMMM YYYY [kl.] H:mm"},calendar:{sameDay:"[í dag kl.] LT",nextDay:"[á morgun kl.] LT",nextWeek:"dddd [kl.] LT",lastDay:"[í gær kl.] LT",lastWeek:"[síðasta] dddd [kl.] LT",sameElse:"L"},relativeTime:{future:"eftir %s",past:"fyrir %s síðan",s:n,ss:n,m:n,mm:n,h:"klukkustund",hh:n,d:n,dd:n,M:n,MM:n,y:n,yy:n},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})})}})}); \ No newline at end of file diff --git a/public/assets/lib/fullcalendar/locale/it.js b/public/assets/lib/fullcalendar/locale/it.js new file mode 100755 index 0000000..0e3918f --- /dev/null +++ b/public/assets/lib/fullcalendar/locale/it.js @@ -0,0 +1 @@ +!function(e,t){"object"==typeof exports&&"object"==typeof module?module.exports=t(require("moment"),require("fullcalendar")):"function"==typeof define&&define.amd?define(["moment","fullcalendar"],t):"object"==typeof exports?t(require("moment"),require("fullcalendar")):t(e.moment,e.FullCalendar)}("undefined"!=typeof self?self:this,function(e,t){return function(e){function t(n){if(o[n])return o[n].exports;var r=o[n]={i:n,l:!1,exports:{}};return e[n].call(r.exports,r,r.exports,t),r.l=!0,r.exports}var o={};return t.m=e,t.c=o,t.d=function(e,o,n){t.o(e,o)||Object.defineProperty(e,o,{configurable:!1,enumerable:!0,get:n})},t.n=function(e){var o=e&&e.__esModule?function(){return e.default}:function(){return e};return t.d(o,"a",o),o},t.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},t.p="",t(t.s=143)}({0:function(t,o){t.exports=e},1:function(e,o){e.exports=t},143:function(e,t,o){Object.defineProperty(t,"__esModule",{value:!0}),o(144);var n=o(1);n.datepickerLocale("it","it",{closeText:"Chiudi",prevText:"<Prec",nextText:"Succ>",currentText:"Oggi",monthNames:["Gennaio","Febbraio","Marzo","Aprile","Maggio","Giugno","Luglio","Agosto","Settembre","Ottobre","Novembre","Dicembre"],monthNamesShort:["Gen","Feb","Mar","Apr","Mag","Giu","Lug","Ago","Set","Ott","Nov","Dic"],dayNames:["Domenica","Lunedì","Martedì","Mercoledì","Giovedì","Venerdì","Sabato"],dayNamesShort:["Dom","Lun","Mar","Mer","Gio","Ven","Sab"],dayNamesMin:["Do","Lu","Ma","Me","Gi","Ve","Sa"],weekHeader:"Sm",dateFormat:"dd/mm/yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),n.locale("it",{buttonText:{month:"Mese",week:"Settimana",day:"Giorno",list:"Agenda"},allDayHtml:"Tutto il
giorno",eventLimitText:function(e){return"+altri "+e},noEventsMessage:"Non ci sono eventi da visualizzare"})},144:function(e,t,o){!function(e,t){t(o(0))}(0,function(e){return e.defineLocale("it",{months:"gennaio_febbraio_marzo_aprile_maggio_giugno_luglio_agosto_settembre_ottobre_novembre_dicembre".split("_"),monthsShort:"gen_feb_mar_apr_mag_giu_lug_ago_set_ott_nov_dic".split("_"),weekdays:"domenica_lunedì_martedì_mercoledì_giovedì_venerdì_sabato".split("_"),weekdaysShort:"dom_lun_mar_mer_gio_ven_sab".split("_"),weekdaysMin:"do_lu_ma_me_gi_ve_sa".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[Oggi alle] LT",nextDay:"[Domani alle] LT",nextWeek:"dddd [alle] LT",lastDay:"[Ieri alle] LT",lastWeek:function(){switch(this.day()){case 0:return"[la scorsa] dddd [alle] LT";default:return"[lo scorso] dddd [alle] LT"}},sameElse:"L"},relativeTime:{future:function(e){return(/^[0-9].+$/.test(e)?"tra":"in")+" "+e},past:"%s fa",s:"alcuni secondi",ss:"%d secondi",m:"un minuto",mm:"%d minuti",h:"un'ora",hh:"%d ore",d:"un giorno",dd:"%d giorni",M:"un mese",MM:"%d mesi",y:"un anno",yy:"%d anni"},dayOfMonthOrdinalParse:/\d{1,2}º/,ordinal:"%dº",week:{dow:1,doy:4}})})}})}); \ No newline at end of file diff --git a/public/assets/lib/fullcalendar/locale/ja.js b/public/assets/lib/fullcalendar/locale/ja.js new file mode 100755 index 0000000..3d568a1 --- /dev/null +++ b/public/assets/lib/fullcalendar/locale/ja.js @@ -0,0 +1 @@ +!function(e,t){"object"==typeof exports&&"object"==typeof module?module.exports=t(require("moment"),require("fullcalendar")):"function"==typeof define&&define.amd?define(["moment","fullcalendar"],t):"object"==typeof exports?t(require("moment"),require("fullcalendar")):t(e.moment,e.FullCalendar)}("undefined"!=typeof self?self:this,function(e,t){return function(e){function t(r){if(n[r])return n[r].exports;var o=n[r]={i:r,l:!1,exports:{}};return e[r].call(o.exports,o,o.exports,t),o.l=!0,o.exports}var n={};return t.m=e,t.c=n,t.d=function(e,n,r){t.o(e,n)||Object.defineProperty(e,n,{configurable:!1,enumerable:!0,get:r})},t.n=function(e){var n=e&&e.__esModule?function(){return e.default}:function(){return e};return t.d(n,"a",n),n},t.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},t.p="",t(t.s=145)}({0:function(t,n){t.exports=e},1:function(e,n){e.exports=t},145:function(e,t,n){Object.defineProperty(t,"__esModule",{value:!0}),n(146);var r=n(1);r.datepickerLocale("ja","ja",{closeText:"閉じる",prevText:"<前",nextText:"次>",currentText:"今日",monthNames:["1月","2月","3月","4月","5月","6月","7月","8月","9月","10月","11月","12月"],monthNamesShort:["1月","2月","3月","4月","5月","6月","7月","8月","9月","10月","11月","12月"],dayNames:["日曜日","月曜日","火曜日","水曜日","木曜日","金曜日","土曜日"],dayNamesShort:["日","月","火","水","木","金","土"],dayNamesMin:["日","月","火","水","木","金","土"],weekHeader:"週",dateFormat:"yy/mm/dd",firstDay:0,isRTL:!1,showMonthAfterYear:!0,yearSuffix:"年"}),r.locale("ja",{buttonText:{month:"月",week:"週",day:"日",list:"予定リスト"},allDayText:"終日",eventLimitText:function(e){return"他 "+e+" 件"},noEventsMessage:"イベントが表示されないように"})},146:function(e,t,n){!function(e,t){t(n(0))}(0,function(e){return e.defineLocale("ja",{months:"1月_2月_3月_4月_5月_6月_7月_8月_9月_10月_11月_12月".split("_"),monthsShort:"1月_2月_3月_4月_5月_6月_7月_8月_9月_10月_11月_12月".split("_"),weekdays:"日曜日_月曜日_火曜日_水曜日_木曜日_金曜日_土曜日".split("_"),weekdaysShort:"日_月_火_水_木_金_土".split("_"),weekdaysMin:"日_月_火_水_木_金_土".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"YYYY/MM/DD",LL:"YYYY年M月D日",LLL:"YYYY年M月D日 HH:mm",LLLL:"YYYY年M月D日 HH:mm dddd",l:"YYYY/MM/DD",ll:"YYYY年M月D日",lll:"YYYY年M月D日 HH:mm",llll:"YYYY年M月D日 HH:mm dddd"},meridiemParse:/午前|午後/i,isPM:function(e){return"午後"===e},meridiem:function(e,t,n){return e<12?"午前":"午後"},calendar:{sameDay:"[今日] LT",nextDay:"[明日] LT",nextWeek:"[来週]dddd LT",lastDay:"[昨日] LT",lastWeek:"[前週]dddd LT",sameElse:"L"},dayOfMonthOrdinalParse:/\d{1,2}日/,ordinal:function(e,t){switch(t){case"d":case"D":case"DDD":return e+"日";default:return e}},relativeTime:{future:"%s後",past:"%s前",s:"数秒",ss:"%d秒",m:"1分",mm:"%d分",h:"1時間",hh:"%d時間",d:"1日",dd:"%d日",M:"1ヶ月",MM:"%dヶ月",y:"1年",yy:"%d年"}})})}})}); \ No newline at end of file diff --git a/public/assets/lib/fullcalendar/locale/ka.js b/public/assets/lib/fullcalendar/locale/ka.js new file mode 100755 index 0000000..a5135c5 --- /dev/null +++ b/public/assets/lib/fullcalendar/locale/ka.js @@ -0,0 +1 @@ +!function(e,t){"object"==typeof exports&&"object"==typeof module?module.exports=t(require("moment"),require("fullcalendar")):"function"==typeof define&&define.amd?define(["moment","fullcalendar"],t):"object"==typeof exports?t(require("moment"),require("fullcalendar")):t(e.moment,e.FullCalendar)}("undefined"!=typeof self?self:this,function(e,t){return function(e){function t(r){if(n[r])return n[r].exports;var o=n[r]={i:r,l:!1,exports:{}};return e[r].call(o.exports,o,o.exports,t),o.l=!0,o.exports}var n={};return t.m=e,t.c=n,t.d=function(e,n,r){t.o(e,n)||Object.defineProperty(e,n,{configurable:!1,enumerable:!0,get:r})},t.n=function(e){var n=e&&e.__esModule?function(){return e.default}:function(){return e};return t.d(n,"a",n),n},t.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},t.p="",t(t.s=147)}({0:function(t,n){t.exports=e},1:function(e,n){e.exports=t},147:function(e,t,n){Object.defineProperty(t,"__esModule",{value:!0}),n(148);var r=n(1);r.datepickerLocale("ka","ka",{closeText:"დახურვა",prevText:"წინა",nextText:"შემდეგი",currentText:"დღეს",monthNames:["იანვარი","თებერვალი","მარტი","აპრილი","მაისი","ივნისი","ივლისი","აგვისტო","სექტემბერი","ოქტომბერი","ნოემბერი","დეკემბერი"],monthNamesShort:["იან","თებ","მარ","აპრ","მაი","ივნ","ივლ","აგვ","სექ","ოქტ","ნოე","დეკ"],dayNames:["კვირა","ორშაბათი","სამშაბათი","ოთხშაბათი","ხუთშაბათი","პარასკევი","შაბათი"],dayNamesShort:["კვი","ორშ","სამ","ოთხ","ხუთ","პარ","შაბ"],dayNamesMin:["კვ","ორ","სა","ოთ","ხუ","პა","შა"],weekHeader:"კვ",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),r.locale("ka",{buttonText:{month:"თვე",week:"კვირა",day:"დღე",list:"დღის წესრიგი"},allDayText:"მთელი დღე",eventLimitText:function(e){return"+ კიდევ "+e},noEventsMessage:"ღონისძიებები არ არის"})},148:function(e,t,n){!function(e,t){t(n(0))}(0,function(e){return e.defineLocale("ka",{months:{standalone:"იანვარი_თებერვალი_მარტი_აპრილი_მაისი_ივნისი_ივლისი_აგვისტო_სექტემბერი_ოქტომბერი_ნოემბერი_დეკემბერი".split("_"),format:"იანვარს_თებერვალს_მარტს_აპრილის_მაისს_ივნისს_ივლისს_აგვისტს_სექტემბერს_ოქტომბერს_ნოემბერს_დეკემბერს".split("_")},monthsShort:"იან_თებ_მარ_აპრ_მაი_ივნ_ივლ_აგვ_სექ_ოქტ_ნოე_დეკ".split("_"),weekdays:{standalone:"კვირა_ორშაბათი_სამშაბათი_ოთხშაბათი_ხუთშაბათი_პარასკევი_შაბათი".split("_"),format:"კვირას_ორშაბათს_სამშაბათს_ოთხშაბათს_ხუთშაბათს_პარასკევს_შაბათს".split("_"),isFormat:/(წინა|შემდეგ)/},weekdaysShort:"კვი_ორშ_სამ_ოთხ_ხუთ_პარ_შაბ".split("_"),weekdaysMin:"კვ_ორ_სა_ოთ_ხუ_პა_შა".split("_"),longDateFormat:{LT:"h:mm A",LTS:"h:mm:ss A",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY h:mm A",LLLL:"dddd, D MMMM YYYY h:mm A"},calendar:{sameDay:"[დღეს] LT[-ზე]",nextDay:"[ხვალ] LT[-ზე]",lastDay:"[გუშინ] LT[-ზე]",nextWeek:"[შემდეგ] dddd LT[-ზე]",lastWeek:"[წინა] dddd LT-ზე",sameElse:"L"},relativeTime:{future:function(e){return/(წამი|წუთი|საათი|წელი)/.test(e)?e.replace(/ი$/,"ში"):e+"ში"},past:function(e){return/(წამი|წუთი|საათი|დღე|თვე)/.test(e)?e.replace(/(ი|ე)$/,"ის უკან"):/წელი/.test(e)?e.replace(/წელი$/,"წლის უკან"):void 0},s:"რამდენიმე წამი",ss:"%d წამი",m:"წუთი",mm:"%d წუთი",h:"საათი",hh:"%d საათი",d:"დღე",dd:"%d დღე",M:"თვე",MM:"%d თვე",y:"წელი",yy:"%d წელი"},dayOfMonthOrdinalParse:/0|1-ლი|მე-\d{1,2}|\d{1,2}-ე/,ordinal:function(e){return 0===e?e:1===e?e+"-ლი":e<20||e<=100&&e%20==0||e%100==0?"მე-"+e:e+"-ე"},week:{dow:1,doy:7}})})}})}); \ No newline at end of file diff --git a/public/assets/lib/fullcalendar/locale/kk.js b/public/assets/lib/fullcalendar/locale/kk.js new file mode 100755 index 0000000..0c75ed7 --- /dev/null +++ b/public/assets/lib/fullcalendar/locale/kk.js @@ -0,0 +1 @@ +!function(e,t){"object"==typeof exports&&"object"==typeof module?module.exports=t(require("moment"),require("fullcalendar")):"function"==typeof define&&define.amd?define(["moment","fullcalendar"],t):"object"==typeof exports?t(require("moment"),require("fullcalendar")):t(e.moment,e.FullCalendar)}("undefined"!=typeof self?self:this,function(e,t){return function(e){function t(r){if(n[r])return n[r].exports;var o=n[r]={i:r,l:!1,exports:{}};return e[r].call(o.exports,o,o.exports,t),o.l=!0,o.exports}var n={};return t.m=e,t.c=n,t.d=function(e,n,r){t.o(e,n)||Object.defineProperty(e,n,{configurable:!1,enumerable:!0,get:r})},t.n=function(e){var n=e&&e.__esModule?function(){return e.default}:function(){return e};return t.d(n,"a",n),n},t.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},t.p="",t(t.s=149)}({0:function(t,n){t.exports=e},1:function(e,n){e.exports=t},149:function(e,t,n){Object.defineProperty(t,"__esModule",{value:!0}),n(150);var r=n(1);r.datepickerLocale("kk","kk",{closeText:"Жабу",prevText:"<Алдыңғы",nextText:"Келесі>",currentText:"Бүгін",monthNames:["Қаңтар","Ақпан","Наурыз","Сәуір","Мамыр","Маусым","Шілде","Тамыз","Қыркүйек","Қазан","Қараша","Желтоқсан"],monthNamesShort:["Қаң","Ақп","Нау","Сәу","Мам","Мау","Шіл","Там","Қыр","Қаз","Қар","Жел"],dayNames:["Жексенбі","Дүйсенбі","Сейсенбі","Сәрсенбі","Бейсенбі","Жұма","Сенбі"],dayNamesShort:["жкс","дсн","ссн","срс","бсн","жма","снб"],dayNamesMin:["Жк","Дс","Сс","Ср","Бс","Жм","Сн"],weekHeader:"Не",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),r.locale("kk",{buttonText:{month:"Ай",week:"Апта",day:"Күн",list:"Күн тәртібі"},allDayText:"Күні бойы",eventLimitText:function(e){return"+ тағы "+e},noEventsMessage:"Көрсету үшін оқиғалар жоқ"})},150:function(e,t,n){!function(e,t){t(n(0))}(0,function(e){var t={0:"-ші",1:"-ші",2:"-ші",3:"-ші",4:"-ші",5:"-ші",6:"-шы",7:"-ші",8:"-ші",9:"-шы",10:"-шы",20:"-шы",30:"-шы",40:"-шы",50:"-ші",60:"-шы",70:"-ші",80:"-ші",90:"-шы",100:"-ші"};return e.defineLocale("kk",{months:"қаңтар_ақпан_наурыз_сәуір_мамыр_маусым_шілде_тамыз_қыркүйек_қазан_қараша_желтоқсан".split("_"),monthsShort:"қаң_ақп_нау_сәу_мам_мау_шіл_там_қыр_қаз_қар_жел".split("_"),weekdays:"жексенбі_дүйсенбі_сейсенбі_сәрсенбі_бейсенбі_жұма_сенбі".split("_"),weekdaysShort:"жек_дүй_сей_сәр_бей_жұм_сен".split("_"),weekdaysMin:"жк_дй_сй_ср_бй_жм_сн".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[Бүгін сағат] LT",nextDay:"[Ертең сағат] LT",nextWeek:"dddd [сағат] LT",lastDay:"[Кеше сағат] LT",lastWeek:"[Өткен аптаның] dddd [сағат] LT",sameElse:"L"},relativeTime:{future:"%s ішінде",past:"%s бұрын",s:"бірнеше секунд",ss:"%d секунд",m:"бір минут",mm:"%d минут",h:"бір сағат",hh:"%d сағат",d:"бір күн",dd:"%d күн",M:"бір ай",MM:"%d ай",y:"бір жыл",yy:"%d жыл"},dayOfMonthOrdinalParse:/\d{1,2}-(ші|шы)/,ordinal:function(e){var n=e%10,r=e>=100?100:null;return e+(t[e]||t[n]||t[r])},week:{dow:1,doy:7}})})}})}); \ No newline at end of file diff --git a/public/assets/lib/fullcalendar/locale/ko.js b/public/assets/lib/fullcalendar/locale/ko.js new file mode 100755 index 0000000..b27e860 --- /dev/null +++ b/public/assets/lib/fullcalendar/locale/ko.js @@ -0,0 +1 @@ +!function(e,t){"object"==typeof exports&&"object"==typeof module?module.exports=t(require("moment"),require("fullcalendar")):"function"==typeof define&&define.amd?define(["moment","fullcalendar"],t):"object"==typeof exports?t(require("moment"),require("fullcalendar")):t(e.moment,e.FullCalendar)}("undefined"!=typeof self?self:this,function(e,t){return function(e){function t(r){if(n[r])return n[r].exports;var o=n[r]={i:r,l:!1,exports:{}};return e[r].call(o.exports,o,o.exports,t),o.l=!0,o.exports}var n={};return t.m=e,t.c=n,t.d=function(e,n,r){t.o(e,n)||Object.defineProperty(e,n,{configurable:!1,enumerable:!0,get:r})},t.n=function(e){var n=e&&e.__esModule?function(){return e.default}:function(){return e};return t.d(n,"a",n),n},t.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},t.p="",t(t.s=151)}({0:function(t,n){t.exports=e},1:function(e,n){e.exports=t},151:function(e,t,n){Object.defineProperty(t,"__esModule",{value:!0}),n(152);var r=n(1);r.datepickerLocale("ko","ko",{closeText:"닫기",prevText:"이전달",nextText:"다음달",currentText:"오늘",monthNames:["1월","2월","3월","4월","5월","6월","7월","8월","9월","10월","11월","12월"],monthNamesShort:["1월","2월","3월","4월","5월","6월","7월","8월","9월","10월","11월","12월"],dayNames:["일요일","월요일","화요일","수요일","목요일","금요일","토요일"],dayNamesShort:["일","월","화","수","목","금","토"],dayNamesMin:["일","월","화","수","목","금","토"],weekHeader:"주",dateFormat:"yy. m. d.",firstDay:0,isRTL:!1,showMonthAfterYear:!0,yearSuffix:"년"}),r.locale("ko",{buttonText:{month:"월",week:"주",day:"일",list:"일정목록"},allDayText:"종일",eventLimitText:"개",noEventsMessage:"일정이 없습니다"})},152:function(e,t,n){!function(e,t){t(n(0))}(0,function(e){return e.defineLocale("ko",{months:"1월_2월_3월_4월_5월_6월_7월_8월_9월_10월_11월_12월".split("_"),monthsShort:"1월_2월_3월_4월_5월_6월_7월_8월_9월_10월_11월_12월".split("_"),weekdays:"일요일_월요일_화요일_수요일_목요일_금요일_토요일".split("_"),weekdaysShort:"일_월_화_수_목_금_토".split("_"),weekdaysMin:"일_월_화_수_목_금_토".split("_"),longDateFormat:{LT:"A h:mm",LTS:"A h:mm:ss",L:"YYYY.MM.DD.",LL:"YYYY년 MMMM D일",LLL:"YYYY년 MMMM D일 A h:mm",LLLL:"YYYY년 MMMM D일 dddd A h:mm",l:"YYYY.MM.DD.",ll:"YYYY년 MMMM D일",lll:"YYYY년 MMMM D일 A h:mm",llll:"YYYY년 MMMM D일 dddd A h:mm"},calendar:{sameDay:"오늘 LT",nextDay:"내일 LT",nextWeek:"dddd LT",lastDay:"어제 LT",lastWeek:"지난주 dddd LT",sameElse:"L"},relativeTime:{future:"%s 후",past:"%s 전",s:"몇 초",ss:"%d초",m:"1분",mm:"%d분",h:"한 시간",hh:"%d시간",d:"하루",dd:"%d일",M:"한 달",MM:"%d달",y:"일 년",yy:"%d년"},dayOfMonthOrdinalParse:/\d{1,2}(일|월|주)/,ordinal:function(e,t){switch(t){case"d":case"D":case"DDD":return e+"일";case"M":return e+"월";case"w":case"W":return e+"주";default:return e}},meridiemParse:/오전|오후/,isPM:function(e){return"오후"===e},meridiem:function(e,t,n){return e<12?"오전":"오후"}})})}})}); \ No newline at end of file diff --git a/public/assets/lib/fullcalendar/locale/lb.js b/public/assets/lib/fullcalendar/locale/lb.js new file mode 100755 index 0000000..fa45c5b --- /dev/null +++ b/public/assets/lib/fullcalendar/locale/lb.js @@ -0,0 +1 @@ +!function(e,n){"object"==typeof exports&&"object"==typeof module?module.exports=n(require("moment"),require("fullcalendar")):"function"==typeof define&&define.amd?define(["moment","fullcalendar"],n):"object"==typeof exports?n(require("moment"),require("fullcalendar")):n(e.moment,e.FullCalendar)}("undefined"!=typeof self?self:this,function(e,n){return function(e){function n(r){if(t[r])return t[r].exports;var o=t[r]={i:r,l:!1,exports:{}};return e[r].call(o.exports,o,o.exports,n),o.l=!0,o.exports}var t={};return n.m=e,n.c=t,n.d=function(e,t,r){n.o(e,t)||Object.defineProperty(e,t,{configurable:!1,enumerable:!0,get:r})},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,n){return Object.prototype.hasOwnProperty.call(e,n)},n.p="",n(n.s=153)}({0:function(n,t){n.exports=e},1:function(e,t){e.exports=n},153:function(e,n,t){Object.defineProperty(n,"__esModule",{value:!0}),t(154);var r=t(1);r.datepickerLocale("lb","lb",{closeText:"Fäerdeg",prevText:"Zréck",nextText:"Weider",currentText:"Haut",monthNames:["Januar","Februar","Mäerz","Abrëll","Mee","Juni","Juli","August","September","Oktober","November","Dezember"],monthNamesShort:["Jan","Feb","Mäe","Abr","Mee","Jun","Jul","Aug","Sep","Okt","Nov","Dez"],dayNames:["Sonndeg","Méindeg","Dënschdeg","Mëttwoch","Donneschdeg","Freideg","Samschdeg"],dayNamesShort:["Son","Méi","Dën","Mët","Don","Fre","Sam"],dayNamesMin:["So","Mé","Dë","Më","Do","Fr","Sa"],weekHeader:"W",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),r.locale("lb",{buttonText:{month:"Mount",week:"Woch",day:"Dag",list:"Terminiwwersiicht"},allDayText:"Ganzen Dag",eventLimitText:"méi",noEventsMessage:"Nee Evenementer ze affichéieren"})},154:function(e,n,t){!function(e,n){n(t(0))}(0,function(e){function n(e,n,t,r){var o={m:["eng Minutt","enger Minutt"],h:["eng Stonn","enger Stonn"],d:["een Dag","engem Dag"],M:["ee Mount","engem Mount"],y:["ee Joer","engem Joer"]};return n?o[t][0]:o[t][1]}function t(e){return o(e.substr(0,e.indexOf(" ")))?"a "+e:"an "+e}function r(e){return o(e.substr(0,e.indexOf(" ")))?"viru "+e:"virun "+e}function o(e){if(e=parseInt(e,10),isNaN(e))return!1;if(e<0)return!0;if(e<10)return 4<=e&&e<=7;if(e<100){var n=e%10,t=e/10;return o(0===n?t:n)}if(e<1e4){for(;e>=10;)e/=10;return o(e)}return e/=1e3,o(e)}return e.defineLocale("lb",{months:"Januar_Februar_Mäerz_Abrëll_Mee_Juni_Juli_August_September_Oktober_November_Dezember".split("_"),monthsShort:"Jan._Febr._Mrz._Abr._Mee_Jun._Jul._Aug._Sept._Okt._Nov._Dez.".split("_"),monthsParseExact:!0,weekdays:"Sonndeg_Méindeg_Dënschdeg_Mëttwoch_Donneschdeg_Freideg_Samschdeg".split("_"),weekdaysShort:"So._Mé._Dë._Më._Do._Fr._Sa.".split("_"),weekdaysMin:"So_Mé_Dë_Më_Do_Fr_Sa".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"H:mm [Auer]",LTS:"H:mm:ss [Auer]",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY H:mm [Auer]",LLLL:"dddd, D. MMMM YYYY H:mm [Auer]"},calendar:{sameDay:"[Haut um] LT",sameElse:"L",nextDay:"[Muer um] LT",nextWeek:"dddd [um] LT",lastDay:"[Gëschter um] LT",lastWeek:function(){switch(this.day()){case 2:case 4:return"[Leschten] dddd [um] LT";default:return"[Leschte] dddd [um] LT"}}},relativeTime:{future:t,past:r,s:"e puer Sekonnen",ss:"%d Sekonnen",m:n,mm:"%d Minutten",h:n,hh:"%d Stonnen",d:n,dd:"%d Deeg",M:n,MM:"%d Méint",y:n,yy:"%d Joer"},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})})}})}); \ No newline at end of file diff --git a/public/assets/lib/fullcalendar/locale/lt.js b/public/assets/lib/fullcalendar/locale/lt.js new file mode 100755 index 0000000..5dc6ccf --- /dev/null +++ b/public/assets/lib/fullcalendar/locale/lt.js @@ -0,0 +1 @@ +!function(e,i){"object"==typeof exports&&"object"==typeof module?module.exports=i(require("moment"),require("fullcalendar")):"function"==typeof define&&define.amd?define(["moment","fullcalendar"],i):"object"==typeof exports?i(require("moment"),require("fullcalendar")):i(e.moment,e.FullCalendar)}("undefined"!=typeof self?self:this,function(e,i){return function(e){function i(a){if(n[a])return n[a].exports;var t=n[a]={i:a,l:!1,exports:{}};return e[a].call(t.exports,t,t.exports,i),t.l=!0,t.exports}var n={};return i.m=e,i.c=n,i.d=function(e,n,a){i.o(e,n)||Object.defineProperty(e,n,{configurable:!1,enumerable:!0,get:a})},i.n=function(e){var n=e&&e.__esModule?function(){return e.default}:function(){return e};return i.d(n,"a",n),n},i.o=function(e,i){return Object.prototype.hasOwnProperty.call(e,i)},i.p="",i(i.s=155)}({0:function(i,n){i.exports=e},1:function(e,n){e.exports=i},155:function(e,i,n){Object.defineProperty(i,"__esModule",{value:!0}),n(156);var a=n(1);a.datepickerLocale("lt","lt",{closeText:"Uždaryti",prevText:"<Atgal",nextText:"Pirmyn>",currentText:"Šiandien",monthNames:["Sausis","Vasaris","Kovas","Balandis","Gegužė","Birželis","Liepa","Rugpjūtis","Rugsėjis","Spalis","Lapkritis","Gruodis"],monthNamesShort:["Sau","Vas","Kov","Bal","Geg","Bir","Lie","Rugp","Rugs","Spa","Lap","Gru"],dayNames:["sekmadienis","pirmadienis","antradienis","trečiadienis","ketvirtadienis","penktadienis","šeštadienis"],dayNamesShort:["sek","pir","ant","tre","ket","pen","šeš"],dayNamesMin:["Se","Pr","An","Tr","Ke","Pe","Še"],weekHeader:"SAV",dateFormat:"yy-mm-dd",firstDay:1,isRTL:!1,showMonthAfterYear:!0,yearSuffix:""}),a.locale("lt",{buttonText:{month:"Mėnuo",week:"Savaitė",day:"Diena",list:"Darbotvarkė"},allDayText:"Visą dieną",eventLimitText:"daugiau",noEventsMessage:"Nėra įvykių rodyti"})},156:function(e,i,n){!function(e,i){i(n(0))}(0,function(e){function i(e,i,n,a){return i?"kelios sekundės":a?"kelių sekundžių":"kelias sekundes"}function n(e,i,n,a){return i?t(n)[0]:a?t(n)[1]:t(n)[2]}function a(e){return e%10==0||e>10&&e<20}function t(e){return r[e].split("_")}function s(e,i,s,r){var d=e+" ";return 1===e?d+n(e,i,s[0],r):i?d+(a(e)?t(s)[1]:t(s)[0]):r?d+t(s)[1]:d+(a(e)?t(s)[1]:t(s)[2])}var r={ss:"sekundė_sekundžių_sekundes",m:"minutė_minutės_minutę",mm:"minutės_minučių_minutes",h:"valanda_valandos_valandą",hh:"valandos_valandų_valandas",d:"diena_dienos_dieną",dd:"dienos_dienų_dienas",M:"mėnuo_mėnesio_mėnesį",MM:"mėnesiai_mėnesių_mėnesius",y:"metai_metų_metus",yy:"metai_metų_metus"};return e.defineLocale("lt",{months:{format:"sausio_vasario_kovo_balandžio_gegužės_birželio_liepos_rugpjūčio_rugsėjo_spalio_lapkričio_gruodžio".split("_"),standalone:"sausis_vasaris_kovas_balandis_gegužė_birželis_liepa_rugpjūtis_rugsėjis_spalis_lapkritis_gruodis".split("_"),isFormat:/D[oD]?(\[[^\[\]]*\]|\s)+MMMM?|MMMM?(\[[^\[\]]*\]|\s)+D[oD]?/},monthsShort:"sau_vas_kov_bal_geg_bir_lie_rgp_rgs_spa_lap_grd".split("_"),weekdays:{format:"sekmadienį_pirmadienį_antradienį_trečiadienį_ketvirtadienį_penktadienį_šeštadienį".split("_"),standalone:"sekmadienis_pirmadienis_antradienis_trečiadienis_ketvirtadienis_penktadienis_šeštadienis".split("_"),isFormat:/dddd HH:mm/},weekdaysShort:"Sek_Pir_Ant_Tre_Ket_Pen_Šeš".split("_"),weekdaysMin:"S_P_A_T_K_Pn_Š".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"YYYY-MM-DD",LL:"YYYY [m.] MMMM D [d.]",LLL:"YYYY [m.] MMMM D [d.], HH:mm [val.]",LLLL:"YYYY [m.] MMMM D [d.], dddd, HH:mm [val.]",l:"YYYY-MM-DD",ll:"YYYY [m.] MMMM D [d.]",lll:"YYYY [m.] MMMM D [d.], HH:mm [val.]",llll:"YYYY [m.] MMMM D [d.], ddd, HH:mm [val.]"},calendar:{sameDay:"[Šiandien] LT",nextDay:"[Rytoj] LT",nextWeek:"dddd LT",lastDay:"[Vakar] LT",lastWeek:"[Praėjusį] dddd LT",sameElse:"L"},relativeTime:{future:"po %s",past:"prieš %s",s:i,ss:s,m:n,mm:s,h:n,hh:s,d:n,dd:s,M:n,MM:s,y:n,yy:s},dayOfMonthOrdinalParse:/\d{1,2}-oji/,ordinal:function(e){return e+"-oji"},week:{dow:1,doy:4}})})}})}); \ No newline at end of file diff --git a/public/assets/lib/fullcalendar/locale/lv.js b/public/assets/lib/fullcalendar/locale/lv.js new file mode 100755 index 0000000..b6a00e3 --- /dev/null +++ b/public/assets/lib/fullcalendar/locale/lv.js @@ -0,0 +1 @@ +!function(e,t){"object"==typeof exports&&"object"==typeof module?module.exports=t(require("moment"),require("fullcalendar")):"function"==typeof define&&define.amd?define(["moment","fullcalendar"],t):"object"==typeof exports?t(require("moment"),require("fullcalendar")):t(e.moment,e.FullCalendar)}("undefined"!=typeof self?self:this,function(e,t){return function(e){function t(s){if(n[s])return n[s].exports;var i=n[s]={i:s,l:!1,exports:{}};return e[s].call(i.exports,i,i.exports,t),i.l=!0,i.exports}var n={};return t.m=e,t.c=n,t.d=function(e,n,s){t.o(e,n)||Object.defineProperty(e,n,{configurable:!1,enumerable:!0,get:s})},t.n=function(e){var n=e&&e.__esModule?function(){return e.default}:function(){return e};return t.d(n,"a",n),n},t.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},t.p="",t(t.s=157)}({0:function(t,n){t.exports=e},1:function(e,n){e.exports=t},157:function(e,t,n){Object.defineProperty(t,"__esModule",{value:!0}),n(158);var s=n(1);s.datepickerLocale("lv","lv",{closeText:"Aizvērt",prevText:"Iepr.",nextText:"Nāk.",currentText:"Šodien",monthNames:["Janvāris","Februāris","Marts","Aprīlis","Maijs","Jūnijs","Jūlijs","Augusts","Septembris","Oktobris","Novembris","Decembris"],monthNamesShort:["Jan","Feb","Mar","Apr","Mai","Jūn","Jūl","Aug","Sep","Okt","Nov","Dec"],dayNames:["svētdiena","pirmdiena","otrdiena","trešdiena","ceturtdiena","piektdiena","sestdiena"],dayNamesShort:["svt","prm","otr","tre","ctr","pkt","sst"],dayNamesMin:["Sv","Pr","Ot","Tr","Ct","Pk","Ss"],weekHeader:"Ned.",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),s.locale("lv",{buttonText:{month:"Mēnesis",week:"Nedēļa",day:"Diena",list:"Dienas kārtība"},allDayText:"Visu dienu",eventLimitText:function(e){return"+vēl "+e},noEventsMessage:"Nav notikumu"})},158:function(e,t,n){!function(e,t){t(n(0))}(0,function(e){function t(e,t,n){return n?t%10==1&&t%100!=11?e[2]:e[3]:t%10==1&&t%100!=11?e[0]:e[1]}function n(e,n,s){return e+" "+t(a[s],e,n)}function s(e,n,s){return t(a[s],e,n)}function i(e,t){return t?"dažas sekundes":"dažām sekundēm"}var a={ss:"sekundes_sekundēm_sekunde_sekundes".split("_"),m:"minūtes_minūtēm_minūte_minūtes".split("_"),mm:"minūtes_minūtēm_minūte_minūtes".split("_"),h:"stundas_stundām_stunda_stundas".split("_"),hh:"stundas_stundām_stunda_stundas".split("_"),d:"dienas_dienām_diena_dienas".split("_"),dd:"dienas_dienām_diena_dienas".split("_"),M:"mēneša_mēnešiem_mēnesis_mēneši".split("_"),MM:"mēneša_mēnešiem_mēnesis_mēneši".split("_"),y:"gada_gadiem_gads_gadi".split("_"),yy:"gada_gadiem_gads_gadi".split("_")};return e.defineLocale("lv",{months:"janvāris_februāris_marts_aprīlis_maijs_jūnijs_jūlijs_augusts_septembris_oktobris_novembris_decembris".split("_"),monthsShort:"jan_feb_mar_apr_mai_jūn_jūl_aug_sep_okt_nov_dec".split("_"),weekdays:"svētdiena_pirmdiena_otrdiena_trešdiena_ceturtdiena_piektdiena_sestdiena".split("_"),weekdaysShort:"Sv_P_O_T_C_Pk_S".split("_"),weekdaysMin:"Sv_P_O_T_C_Pk_S".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY.",LL:"YYYY. [gada] D. MMMM",LLL:"YYYY. [gada] D. MMMM, HH:mm",LLLL:"YYYY. [gada] D. MMMM, dddd, HH:mm"},calendar:{sameDay:"[Šodien pulksten] LT",nextDay:"[Rīt pulksten] LT",nextWeek:"dddd [pulksten] LT",lastDay:"[Vakar pulksten] LT",lastWeek:"[Pagājušā] dddd [pulksten] LT",sameElse:"L"},relativeTime:{future:"pēc %s",past:"pirms %s",s:i,ss:n,m:s,mm:n,h:s,hh:n,d:s,dd:n,M:s,MM:n,y:s,yy:n},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})})}})}); \ No newline at end of file diff --git a/public/assets/lib/fullcalendar/locale/mk.js b/public/assets/lib/fullcalendar/locale/mk.js new file mode 100755 index 0000000..5d1a8d6 --- /dev/null +++ b/public/assets/lib/fullcalendar/locale/mk.js @@ -0,0 +1 @@ +!function(e,t){"object"==typeof exports&&"object"==typeof module?module.exports=t(require("moment"),require("fullcalendar")):"function"==typeof define&&define.amd?define(["moment","fullcalendar"],t):"object"==typeof exports?t(require("moment"),require("fullcalendar")):t(e.moment,e.FullCalendar)}("undefined"!=typeof self?self:this,function(e,t){return function(e){function t(r){if(n[r])return n[r].exports;var o=n[r]={i:r,l:!1,exports:{}};return e[r].call(o.exports,o,o.exports,t),o.l=!0,o.exports}var n={};return t.m=e,t.c=n,t.d=function(e,n,r){t.o(e,n)||Object.defineProperty(e,n,{configurable:!1,enumerable:!0,get:r})},t.n=function(e){var n=e&&e.__esModule?function(){return e.default}:function(){return e};return t.d(n,"a",n),n},t.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},t.p="",t(t.s=159)}({0:function(t,n){t.exports=e},1:function(e,n){e.exports=t},159:function(e,t,n){Object.defineProperty(t,"__esModule",{value:!0}),n(160);var r=n(1);r.datepickerLocale("mk","mk",{closeText:"Затвори",prevText:"<",nextText:">",currentText:"Денес",monthNames:["Јануари","Февруари","Март","Април","Мај","Јуни","Јули","Август","Септември","Октомври","Ноември","Декември"],monthNamesShort:["Јан","Фев","Мар","Апр","Мај","Јун","Јул","Авг","Сеп","Окт","Ное","Дек"],dayNames:["Недела","Понеделник","Вторник","Среда","Четврток","Петок","Сабота"],dayNamesShort:["Нед","Пон","Вто","Сре","Чет","Пет","Саб"],dayNamesMin:["Не","По","Вт","Ср","Че","Пе","Са"],weekHeader:"Сед",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),r.locale("mk",{buttonText:{month:"Месец",week:"Недела",day:"Ден",list:"График"},allDayText:"Цел ден",eventLimitText:function(e){return"+повеќе "+e},noEventsMessage:"Нема настани за прикажување"})},160:function(e,t,n){!function(e,t){t(n(0))}(0,function(e){return e.defineLocale("mk",{months:"јануари_февруари_март_април_мај_јуни_јули_август_септември_октомври_ноември_декември".split("_"),monthsShort:"јан_фев_мар_апр_мај_јун_јул_авг_сеп_окт_ное_дек".split("_"),weekdays:"недела_понеделник_вторник_среда_четврток_петок_сабота".split("_"),weekdaysShort:"нед_пон_вто_сре_чет_пет_саб".split("_"),weekdaysMin:"нe_пo_вт_ср_че_пе_сa".split("_"),longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"D.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY H:mm",LLLL:"dddd, D MMMM YYYY H:mm"},calendar:{sameDay:"[Денес во] LT",nextDay:"[Утре во] LT",nextWeek:"[Во] dddd [во] LT",lastDay:"[Вчера во] LT",lastWeek:function(){switch(this.day()){case 0:case 3:case 6:return"[Изминатата] dddd [во] LT";case 1:case 2:case 4:case 5:return"[Изминатиот] dddd [во] LT"}},sameElse:"L"},relativeTime:{future:"после %s",past:"пред %s",s:"неколку секунди",ss:"%d секунди",m:"минута",mm:"%d минути",h:"час",hh:"%d часа",d:"ден",dd:"%d дена",M:"месец",MM:"%d месеци",y:"година",yy:"%d години"},dayOfMonthOrdinalParse:/\d{1,2}-(ев|ен|ти|ви|ри|ми)/,ordinal:function(e){var t=e%10,n=e%100;return 0===e?e+"-ев":0===n?e+"-ен":n>10&&n<20?e+"-ти":1===t?e+"-ви":2===t?e+"-ри":7===t||8===t?e+"-ми":e+"-ти"},week:{dow:1,doy:7}})})}})}); \ No newline at end of file diff --git a/public/assets/lib/fullcalendar/locale/ms-my.js b/public/assets/lib/fullcalendar/locale/ms-my.js new file mode 100755 index 0000000..ac3fe0f --- /dev/null +++ b/public/assets/lib/fullcalendar/locale/ms-my.js @@ -0,0 +1 @@ +!function(e,a){"object"==typeof exports&&"object"==typeof module?module.exports=a(require("moment"),require("fullcalendar")):"function"==typeof define&&define.amd?define(["moment","fullcalendar"],a):"object"==typeof exports?a(require("moment"),require("fullcalendar")):a(e.moment,e.FullCalendar)}("undefined"!=typeof self?self:this,function(e,a){return function(e){function a(n){if(t[n])return t[n].exports;var r=t[n]={i:n,l:!1,exports:{}};return e[n].call(r.exports,r,r.exports,a),r.l=!0,r.exports}var t={};return a.m=e,a.c=t,a.d=function(e,t,n){a.o(e,t)||Object.defineProperty(e,t,{configurable:!1,enumerable:!0,get:n})},a.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return a.d(t,"a",t),t},a.o=function(e,a){return Object.prototype.hasOwnProperty.call(e,a)},a.p="",a(a.s=161)}({0:function(a,t){a.exports=e},1:function(e,t){e.exports=a},161:function(e,a,t){Object.defineProperty(a,"__esModule",{value:!0}),t(162);var n=t(1);n.datepickerLocale("ms-my","ms",{closeText:"Tutup",prevText:"<Sebelum",nextText:"Selepas>",currentText:"hari ini",monthNames:["Januari","Februari","Mac","April","Mei","Jun","Julai","Ogos","September","Oktober","November","Disember"],monthNamesShort:["Jan","Feb","Mac","Apr","Mei","Jun","Jul","Ogo","Sep","Okt","Nov","Dis"],dayNames:["Ahad","Isnin","Selasa","Rabu","Khamis","Jumaat","Sabtu"],dayNamesShort:["Aha","Isn","Sel","Rab","kha","Jum","Sab"],dayNamesMin:["Ah","Is","Se","Ra","Kh","Ju","Sa"],weekHeader:"Mg",dateFormat:"dd/mm/yy",firstDay:0,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),n.locale("ms-my",{buttonText:{month:"Bulan",week:"Minggu",day:"Hari",list:"Agenda"},allDayText:"Sepanjang hari",eventLimitText:function(e){return"masih ada "+e+" acara"},noEventsMessage:"Tiada peristiwa untuk dipaparkan"})},162:function(e,a,t){!function(e,a){a(t(0))}(0,function(e){return e.defineLocale("ms-my",{months:"Januari_Februari_Mac_April_Mei_Jun_Julai_Ogos_September_Oktober_November_Disember".split("_"),monthsShort:"Jan_Feb_Mac_Apr_Mei_Jun_Jul_Ogs_Sep_Okt_Nov_Dis".split("_"),weekdays:"Ahad_Isnin_Selasa_Rabu_Khamis_Jumaat_Sabtu".split("_"),weekdaysShort:"Ahd_Isn_Sel_Rab_Kha_Jum_Sab".split("_"),weekdaysMin:"Ah_Is_Sl_Rb_Km_Jm_Sb".split("_"),longDateFormat:{LT:"HH.mm",LTS:"HH.mm.ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY [pukul] HH.mm",LLLL:"dddd, D MMMM YYYY [pukul] HH.mm"},meridiemParse:/pagi|tengahari|petang|malam/,meridiemHour:function(e,a){return 12===e&&(e=0),"pagi"===a?e:"tengahari"===a?e>=11?e:e+12:"petang"===a||"malam"===a?e+12:void 0},meridiem:function(e,a,t){return e<11?"pagi":e<15?"tengahari":e<19?"petang":"malam"},calendar:{sameDay:"[Hari ini pukul] LT",nextDay:"[Esok pukul] LT",nextWeek:"dddd [pukul] LT",lastDay:"[Kelmarin pukul] LT",lastWeek:"dddd [lepas pukul] LT",sameElse:"L"},relativeTime:{future:"dalam %s",past:"%s yang lepas",s:"beberapa saat",ss:"%d saat",m:"seminit",mm:"%d minit",h:"sejam",hh:"%d jam",d:"sehari",dd:"%d hari",M:"sebulan",MM:"%d bulan",y:"setahun",yy:"%d tahun"},week:{dow:1,doy:7}})})}})}); \ No newline at end of file diff --git a/public/assets/lib/fullcalendar/locale/ms.js b/public/assets/lib/fullcalendar/locale/ms.js new file mode 100755 index 0000000..309ea54 --- /dev/null +++ b/public/assets/lib/fullcalendar/locale/ms.js @@ -0,0 +1 @@ +!function(e,a){"object"==typeof exports&&"object"==typeof module?module.exports=a(require("moment"),require("fullcalendar")):"function"==typeof define&&define.amd?define(["moment","fullcalendar"],a):"object"==typeof exports?a(require("moment"),require("fullcalendar")):a(e.moment,e.FullCalendar)}("undefined"!=typeof self?self:this,function(e,a){return function(e){function a(n){if(t[n])return t[n].exports;var r=t[n]={i:n,l:!1,exports:{}};return e[n].call(r.exports,r,r.exports,a),r.l=!0,r.exports}var t={};return a.m=e,a.c=t,a.d=function(e,t,n){a.o(e,t)||Object.defineProperty(e,t,{configurable:!1,enumerable:!0,get:n})},a.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return a.d(t,"a",t),t},a.o=function(e,a){return Object.prototype.hasOwnProperty.call(e,a)},a.p="",a(a.s=163)}({0:function(a,t){a.exports=e},1:function(e,t){e.exports=a},163:function(e,a,t){Object.defineProperty(a,"__esModule",{value:!0}),t(164);var n=t(1);n.datepickerLocale("ms","ms",{closeText:"Tutup",prevText:"<Sebelum",nextText:"Selepas>",currentText:"hari ini",monthNames:["Januari","Februari","Mac","April","Mei","Jun","Julai","Ogos","September","Oktober","November","Disember"],monthNamesShort:["Jan","Feb","Mac","Apr","Mei","Jun","Jul","Ogo","Sep","Okt","Nov","Dis"],dayNames:["Ahad","Isnin","Selasa","Rabu","Khamis","Jumaat","Sabtu"],dayNamesShort:["Aha","Isn","Sel","Rab","kha","Jum","Sab"],dayNamesMin:["Ah","Is","Se","Ra","Kh","Ju","Sa"],weekHeader:"Mg",dateFormat:"dd/mm/yy",firstDay:0,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),n.locale("ms",{buttonText:{month:"Bulan",week:"Minggu",day:"Hari",list:"Agenda"},allDayText:"Sepanjang hari",eventLimitText:function(e){return"masih ada "+e+" acara"},noEventsMessage:"Tiada peristiwa untuk dipaparkan"})},164:function(e,a,t){!function(e,a){a(t(0))}(0,function(e){return e.defineLocale("ms",{months:"Januari_Februari_Mac_April_Mei_Jun_Julai_Ogos_September_Oktober_November_Disember".split("_"),monthsShort:"Jan_Feb_Mac_Apr_Mei_Jun_Jul_Ogs_Sep_Okt_Nov_Dis".split("_"),weekdays:"Ahad_Isnin_Selasa_Rabu_Khamis_Jumaat_Sabtu".split("_"),weekdaysShort:"Ahd_Isn_Sel_Rab_Kha_Jum_Sab".split("_"),weekdaysMin:"Ah_Is_Sl_Rb_Km_Jm_Sb".split("_"),longDateFormat:{LT:"HH.mm",LTS:"HH.mm.ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY [pukul] HH.mm",LLLL:"dddd, D MMMM YYYY [pukul] HH.mm"},meridiemParse:/pagi|tengahari|petang|malam/,meridiemHour:function(e,a){return 12===e&&(e=0),"pagi"===a?e:"tengahari"===a?e>=11?e:e+12:"petang"===a||"malam"===a?e+12:void 0},meridiem:function(e,a,t){return e<11?"pagi":e<15?"tengahari":e<19?"petang":"malam"},calendar:{sameDay:"[Hari ini pukul] LT",nextDay:"[Esok pukul] LT",nextWeek:"dddd [pukul] LT",lastDay:"[Kelmarin pukul] LT",lastWeek:"dddd [lepas pukul] LT",sameElse:"L"},relativeTime:{future:"dalam %s",past:"%s yang lepas",s:"beberapa saat",ss:"%d saat",m:"seminit",mm:"%d minit",h:"sejam",hh:"%d jam",d:"sehari",dd:"%d hari",M:"sebulan",MM:"%d bulan",y:"setahun",yy:"%d tahun"},week:{dow:1,doy:7}})})}})}); \ No newline at end of file diff --git a/public/assets/lib/fullcalendar/locale/nb.js b/public/assets/lib/fullcalendar/locale/nb.js new file mode 100755 index 0000000..bcb625c --- /dev/null +++ b/public/assets/lib/fullcalendar/locale/nb.js @@ -0,0 +1 @@ +!function(e,t){"object"==typeof exports&&"object"==typeof module?module.exports=t(require("moment"),require("fullcalendar")):"function"==typeof define&&define.amd?define(["moment","fullcalendar"],t):"object"==typeof exports?t(require("moment"),require("fullcalendar")):t(e.moment,e.FullCalendar)}("undefined"!=typeof self?self:this,function(e,t){return function(e){function t(r){if(n[r])return n[r].exports;var a=n[r]={i:r,l:!1,exports:{}};return e[r].call(a.exports,a,a.exports,t),a.l=!0,a.exports}var n={};return t.m=e,t.c=n,t.d=function(e,n,r){t.o(e,n)||Object.defineProperty(e,n,{configurable:!1,enumerable:!0,get:r})},t.n=function(e){var n=e&&e.__esModule?function(){return e.default}:function(){return e};return t.d(n,"a",n),n},t.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},t.p="",t(t.s=165)}({0:function(t,n){t.exports=e},1:function(e,n){e.exports=t},165:function(e,t,n){Object.defineProperty(t,"__esModule",{value:!0}),n(166);var r=n(1);r.datepickerLocale("nb","nb",{closeText:"Lukk",prevText:"«Forrige",nextText:"Neste»",currentText:"I dag",monthNames:["januar","februar","mars","april","mai","juni","juli","august","september","oktober","november","desember"],monthNamesShort:["jan","feb","mar","apr","mai","jun","jul","aug","sep","okt","nov","des"],dayNamesShort:["søn","man","tir","ons","tor","fre","lør"],dayNames:["søndag","mandag","tirsdag","onsdag","torsdag","fredag","lørdag"],dayNamesMin:["sø","ma","ti","on","to","fr","lø"],weekHeader:"Uke",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),r.locale("nb",{buttonText:{month:"Måned",week:"Uke",day:"Dag",list:"Agenda"},allDayText:"Hele dagen",eventLimitText:"til",noEventsMessage:"Ingen hendelser å vise"})},166:function(e,t,n){!function(e,t){t(n(0))}(0,function(e){return e.defineLocale("nb",{months:"januar_februar_mars_april_mai_juni_juli_august_september_oktober_november_desember".split("_"),monthsShort:"jan._feb._mars_april_mai_juni_juli_aug._sep._okt._nov._des.".split("_"),monthsParseExact:!0,weekdays:"søndag_mandag_tirsdag_onsdag_torsdag_fredag_lørdag".split("_"),weekdaysShort:"sø._ma._ti._on._to._fr._lø.".split("_"),weekdaysMin:"sø_ma_ti_on_to_fr_lø".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY [kl.] HH:mm",LLLL:"dddd D. MMMM YYYY [kl.] HH:mm"},calendar:{sameDay:"[i dag kl.] LT",nextDay:"[i morgen kl.] LT",nextWeek:"dddd [kl.] LT",lastDay:"[i går kl.] LT",lastWeek:"[forrige] dddd [kl.] LT",sameElse:"L"},relativeTime:{future:"om %s",past:"%s siden",s:"noen sekunder",ss:"%d sekunder",m:"ett minutt",mm:"%d minutter",h:"en time",hh:"%d timer",d:"en dag",dd:"%d dager",M:"en måned",MM:"%d måneder",y:"ett år",yy:"%d år"},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})})}})}); \ No newline at end of file diff --git a/public/assets/lib/fullcalendar/locale/nl-be.js b/public/assets/lib/fullcalendar/locale/nl-be.js new file mode 100755 index 0000000..412cd02 --- /dev/null +++ b/public/assets/lib/fullcalendar/locale/nl-be.js @@ -0,0 +1 @@ +!function(e,n){"object"==typeof exports&&"object"==typeof module?module.exports=n(require("moment"),require("fullcalendar")):"function"==typeof define&&define.amd?define(["moment","fullcalendar"],n):"object"==typeof exports?n(require("moment"),require("fullcalendar")):n(e.moment,e.FullCalendar)}("undefined"!=typeof self?self:this,function(e,n){return function(e){function n(t){if(a[t])return a[t].exports;var r=a[t]={i:t,l:!1,exports:{}};return e[t].call(r.exports,r,r.exports,n),r.l=!0,r.exports}var a={};return n.m=e,n.c=a,n.d=function(e,a,t){n.o(e,a)||Object.defineProperty(e,a,{configurable:!1,enumerable:!0,get:t})},n.n=function(e){var a=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(a,"a",a),a},n.o=function(e,n){return Object.prototype.hasOwnProperty.call(e,n)},n.p="",n(n.s=167)}({0:function(n,a){n.exports=e},1:function(e,a){e.exports=n},167:function(e,n,a){Object.defineProperty(n,"__esModule",{value:!0}),a(168);var t=a(1);t.datepickerLocale("nl-be","nl-BE",{closeText:"Sluiten",prevText:"←",nextText:"→",currentText:"Vandaag",monthNames:["januari","februari","maart","april","mei","juni","juli","augustus","september","oktober","november","december"],monthNamesShort:["jan","feb","mrt","apr","mei","jun","jul","aug","sep","okt","nov","dec"],dayNames:["zondag","maandag","dinsdag","woensdag","donderdag","vrijdag","zaterdag"],dayNamesShort:["zon","maa","din","woe","don","vri","zat"],dayNamesMin:["zo","ma","di","wo","do","vr","za"],weekHeader:"Wk",dateFormat:"dd/mm/yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),t.locale("nl-be",{buttonText:{month:"Maand",week:"Week",day:"Dag",list:"Agenda"},allDayText:"Hele dag",eventLimitText:"extra",noEventsMessage:"Geen evenementen om te laten zien"})},168:function(e,n,a){!function(e,n){n(a(0))}(0,function(e){var n="jan._feb._mrt._apr._mei_jun._jul._aug._sep._okt._nov._dec.".split("_"),a="jan_feb_mrt_apr_mei_jun_jul_aug_sep_okt_nov_dec".split("_"),t=[/^jan/i,/^feb/i,/^maart|mrt.?$/i,/^apr/i,/^mei$/i,/^jun[i.]?$/i,/^jul[i.]?$/i,/^aug/i,/^sep/i,/^okt/i,/^nov/i,/^dec/i],r=/^(januari|februari|maart|april|mei|april|ju[nl]i|augustus|september|oktober|november|december|jan\.?|feb\.?|mrt\.?|apr\.?|ju[nl]\.?|aug\.?|sep\.?|okt\.?|nov\.?|dec\.?)/i;return e.defineLocale("nl-be",{months:"januari_februari_maart_april_mei_juni_juli_augustus_september_oktober_november_december".split("_"),monthsShort:function(e,t){return e?/-MMM-/.test(t)?a[e.month()]:n[e.month()]:n},monthsRegex:r,monthsShortRegex:r,monthsStrictRegex:/^(januari|februari|maart|mei|ju[nl]i|april|augustus|september|oktober|november|december)/i,monthsShortStrictRegex:/^(jan\.?|feb\.?|mrt\.?|apr\.?|mei|ju[nl]\.?|aug\.?|sep\.?|okt\.?|nov\.?|dec\.?)/i,monthsParse:t,longMonthsParse:t,shortMonthsParse:t,weekdays:"zondag_maandag_dinsdag_woensdag_donderdag_vrijdag_zaterdag".split("_"),weekdaysShort:"zo._ma._di._wo._do._vr._za.".split("_"),weekdaysMin:"zo_ma_di_wo_do_vr_za".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[vandaag om] LT",nextDay:"[morgen om] LT",nextWeek:"dddd [om] LT",lastDay:"[gisteren om] LT",lastWeek:"[afgelopen] dddd [om] LT",sameElse:"L"},relativeTime:{future:"over %s",past:"%s geleden",s:"een paar seconden",ss:"%d seconden",m:"één minuut",mm:"%d minuten",h:"één uur",hh:"%d uur",d:"één dag",dd:"%d dagen",M:"één maand",MM:"%d maanden",y:"één jaar",yy:"%d jaar"},dayOfMonthOrdinalParse:/\d{1,2}(ste|de)/,ordinal:function(e){return e+(1===e||8===e||e>=20?"ste":"de")},week:{dow:1,doy:4}})})}})}); \ No newline at end of file diff --git a/public/assets/lib/fullcalendar/locale/nl.js b/public/assets/lib/fullcalendar/locale/nl.js new file mode 100755 index 0000000..0acd739 --- /dev/null +++ b/public/assets/lib/fullcalendar/locale/nl.js @@ -0,0 +1 @@ +!function(e,a){"object"==typeof exports&&"object"==typeof module?module.exports=a(require("moment"),require("fullcalendar")):"function"==typeof define&&define.amd?define(["moment","fullcalendar"],a):"object"==typeof exports?a(require("moment"),require("fullcalendar")):a(e.moment,e.FullCalendar)}("undefined"!=typeof self?self:this,function(e,a){return function(e){function a(t){if(n[t])return n[t].exports;var r=n[t]={i:t,l:!1,exports:{}};return e[t].call(r.exports,r,r.exports,a),r.l=!0,r.exports}var n={};return a.m=e,a.c=n,a.d=function(e,n,t){a.o(e,n)||Object.defineProperty(e,n,{configurable:!1,enumerable:!0,get:t})},a.n=function(e){var n=e&&e.__esModule?function(){return e.default}:function(){return e};return a.d(n,"a",n),n},a.o=function(e,a){return Object.prototype.hasOwnProperty.call(e,a)},a.p="",a(a.s=169)}({0:function(a,n){a.exports=e},1:function(e,n){e.exports=a},169:function(e,a,n){Object.defineProperty(a,"__esModule",{value:!0}),n(170);var t=n(1);t.datepickerLocale("nl","nl",{closeText:"Sluiten",prevText:"←",nextText:"→",currentText:"Vandaag",monthNames:["januari","februari","maart","april","mei","juni","juli","augustus","september","oktober","november","december"],monthNamesShort:["jan","feb","mrt","apr","mei","jun","jul","aug","sep","okt","nov","dec"],dayNames:["zondag","maandag","dinsdag","woensdag","donderdag","vrijdag","zaterdag"],dayNamesShort:["zon","maa","din","woe","don","vri","zat"],dayNamesMin:["zo","ma","di","wo","do","vr","za"],weekHeader:"Wk",dateFormat:"dd-mm-yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),t.locale("nl",{buttonText:{year:"Jaar",month:"Maand",week:"Week",day:"Dag",list:"Agenda"},allDayText:"Hele dag",eventLimitText:"extra",noEventsMessage:"Geen evenementen om te laten zien"})},170:function(e,a,n){!function(e,a){a(n(0))}(0,function(e){var a="jan._feb._mrt._apr._mei_jun._jul._aug._sep._okt._nov._dec.".split("_"),n="jan_feb_mrt_apr_mei_jun_jul_aug_sep_okt_nov_dec".split("_"),t=[/^jan/i,/^feb/i,/^maart|mrt.?$/i,/^apr/i,/^mei$/i,/^jun[i.]?$/i,/^jul[i.]?$/i,/^aug/i,/^sep/i,/^okt/i,/^nov/i,/^dec/i],r=/^(januari|februari|maart|april|mei|april|ju[nl]i|augustus|september|oktober|november|december|jan\.?|feb\.?|mrt\.?|apr\.?|ju[nl]\.?|aug\.?|sep\.?|okt\.?|nov\.?|dec\.?)/i;return e.defineLocale("nl",{months:"januari_februari_maart_april_mei_juni_juli_augustus_september_oktober_november_december".split("_"),monthsShort:function(e,t){return e?/-MMM-/.test(t)?n[e.month()]:a[e.month()]:a},monthsRegex:r,monthsShortRegex:r,monthsStrictRegex:/^(januari|februari|maart|mei|ju[nl]i|april|augustus|september|oktober|november|december)/i,monthsShortStrictRegex:/^(jan\.?|feb\.?|mrt\.?|apr\.?|mei|ju[nl]\.?|aug\.?|sep\.?|okt\.?|nov\.?|dec\.?)/i,monthsParse:t,longMonthsParse:t,shortMonthsParse:t,weekdays:"zondag_maandag_dinsdag_woensdag_donderdag_vrijdag_zaterdag".split("_"),weekdaysShort:"zo._ma._di._wo._do._vr._za.".split("_"),weekdaysMin:"zo_ma_di_wo_do_vr_za".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD-MM-YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[vandaag om] LT",nextDay:"[morgen om] LT",nextWeek:"dddd [om] LT",lastDay:"[gisteren om] LT",lastWeek:"[afgelopen] dddd [om] LT",sameElse:"L"},relativeTime:{future:"over %s",past:"%s geleden",s:"een paar seconden",ss:"%d seconden",m:"één minuut",mm:"%d minuten",h:"één uur",hh:"%d uur",d:"één dag",dd:"%d dagen",M:"één maand",MM:"%d maanden",y:"één jaar",yy:"%d jaar"},dayOfMonthOrdinalParse:/\d{1,2}(ste|de)/,ordinal:function(e){return e+(1===e||8===e||e>=20?"ste":"de")},week:{dow:1,doy:4}})})}})}); \ No newline at end of file diff --git a/public/assets/lib/fullcalendar/locale/nn.js b/public/assets/lib/fullcalendar/locale/nn.js new file mode 100755 index 0000000..4887939 --- /dev/null +++ b/public/assets/lib/fullcalendar/locale/nn.js @@ -0,0 +1 @@ +!function(e,n){"object"==typeof exports&&"object"==typeof module?module.exports=n(require("moment"),require("fullcalendar")):"function"==typeof define&&define.amd?define(["moment","fullcalendar"],n):"object"==typeof exports?n(require("moment"),require("fullcalendar")):n(e.moment,e.FullCalendar)}("undefined"!=typeof self?self:this,function(e,n){return function(e){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}var t={};return n.m=e,n.c=t,n.d=function(e,t,a){n.o(e,t)||Object.defineProperty(e,t,{configurable:!1,enumerable:!0,get: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,n){return Object.prototype.hasOwnProperty.call(e,n)},n.p="",n(n.s=171)}({0:function(n,t){n.exports=e},1:function(e,t){e.exports=n},171:function(e,n,t){Object.defineProperty(n,"__esModule",{value:!0}),t(172);var a=t(1);a.datepickerLocale("nn","nn",{closeText:"Lukk",prevText:"«Førre",nextText:"Neste»",currentText:"I dag",monthNames:["januar","februar","mars","april","mai","juni","juli","august","september","oktober","november","desember"],monthNamesShort:["jan","feb","mar","apr","mai","jun","jul","aug","sep","okt","nov","des"],dayNamesShort:["sun","mån","tys","ons","tor","fre","lau"],dayNames:["sundag","måndag","tysdag","onsdag","torsdag","fredag","laurdag"],dayNamesMin:["su","må","ty","on","to","fr","la"],weekHeader:"Veke",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),a.locale("nn",{buttonText:{month:"Månad",week:"Veke",day:"Dag",list:"Agenda"},allDayText:"Heile dagen",eventLimitText:"til",noEventsMessage:"Ingen hendelser å vise"})},172:function(e,n,t){!function(e,n){n(t(0))}(0,function(e){return e.defineLocale("nn",{months:"januar_februar_mars_april_mai_juni_juli_august_september_oktober_november_desember".split("_"),monthsShort:"jan_feb_mar_apr_mai_jun_jul_aug_sep_okt_nov_des".split("_"),weekdays:"sundag_måndag_tysdag_onsdag_torsdag_fredag_laurdag".split("_"),weekdaysShort:"sun_mån_tys_ons_tor_fre_lau".split("_"),weekdaysMin:"su_må_ty_on_to_fr_lø".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY [kl.] H:mm",LLLL:"dddd D. MMMM YYYY [kl.] HH:mm"},calendar:{sameDay:"[I dag klokka] LT",nextDay:"[I morgon klokka] LT",nextWeek:"dddd [klokka] LT",lastDay:"[I går klokka] LT",lastWeek:"[Føregåande] dddd [klokka] LT",sameElse:"L"},relativeTime:{future:"om %s",past:"%s sidan",s:"nokre sekund",ss:"%d sekund",m:"eit minutt",mm:"%d minutt",h:"ein time",hh:"%d timar",d:"ein dag",dd:"%d dagar",M:"ein månad",MM:"%d månader",y:"eit år",yy:"%d år"},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})})}})}); \ No newline at end of file diff --git a/public/assets/lib/fullcalendar/locale/pl.js b/public/assets/lib/fullcalendar/locale/pl.js new file mode 100755 index 0000000..101b0dc --- /dev/null +++ b/public/assets/lib/fullcalendar/locale/pl.js @@ -0,0 +1 @@ +!function(e,t){"object"==typeof exports&&"object"==typeof module?module.exports=t(require("moment"),require("fullcalendar")):"function"==typeof define&&define.amd?define(["moment","fullcalendar"],t):"object"==typeof exports?t(require("moment"),require("fullcalendar")):t(e.moment,e.FullCalendar)}("undefined"!=typeof self?self:this,function(e,t){return function(e){function t(n){if(r[n])return r[n].exports;var i=r[n]={i:n,l:!1,exports:{}};return e[n].call(i.exports,i,i.exports,t),i.l=!0,i.exports}var r={};return t.m=e,t.c=r,t.d=function(e,r,n){t.o(e,r)||Object.defineProperty(e,r,{configurable:!1,enumerable:!0,get:n})},t.n=function(e){var r=e&&e.__esModule?function(){return e.default}:function(){return e};return t.d(r,"a",r),r},t.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},t.p="",t(t.s=173)}({0:function(t,r){t.exports=e},1:function(e,r){e.exports=t},173:function(e,t,r){Object.defineProperty(t,"__esModule",{value:!0}),r(174);var n=r(1);n.datepickerLocale("pl","pl",{closeText:"Zamknij",prevText:"<Poprzedni",nextText:"Następny>",currentText:"Dziś",monthNames:["Styczeń","Luty","Marzec","Kwiecień","Maj","Czerwiec","Lipiec","Sierpień","Wrzesień","Październik","Listopad","Grudzień"],monthNamesShort:["Sty","Lu","Mar","Kw","Maj","Cze","Lip","Sie","Wrz","Pa","Lis","Gru"],dayNames:["Niedziela","Poniedziałek","Wtorek","Środa","Czwartek","Piątek","Sobota"],dayNamesShort:["Nie","Pn","Wt","Śr","Czw","Pt","So"],dayNamesMin:["N","Pn","Wt","Śr","Cz","Pt","So"],weekHeader:"Tydz",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),n.locale("pl",{buttonText:{month:"Miesiąc",week:"Tydzień",day:"Dzień",list:"Plan dnia"},allDayText:"Cały dzień",eventLimitText:"więcej",noEventsMessage:"Brak wydarzeń do wyświetlenia"})},174:function(e,t,r){!function(e,t){t(r(0))}(0,function(e){function t(e){return e%10<5&&e%10>1&&~~(e/10)%10!=1}function r(e,r,n){var i=e+" ";switch(n){case"ss":return i+(t(e)?"sekundy":"sekund");case"m":return r?"minuta":"minutę";case"mm":return i+(t(e)?"minuty":"minut");case"h":return r?"godzina":"godzinę";case"hh":return i+(t(e)?"godziny":"godzin");case"MM":return i+(t(e)?"miesiące":"miesięcy");case"yy":return i+(t(e)?"lata":"lat")}}var n="styczeń_luty_marzec_kwiecień_maj_czerwiec_lipiec_sierpień_wrzesień_październik_listopad_grudzień".split("_"),i="stycznia_lutego_marca_kwietnia_maja_czerwca_lipca_sierpnia_września_października_listopada_grudnia".split("_");return e.defineLocale("pl",{months:function(e,t){return e?""===t?"("+i[e.month()]+"|"+n[e.month()]+")":/D MMMM/.test(t)?i[e.month()]:n[e.month()]:n},monthsShort:"sty_lut_mar_kwi_maj_cze_lip_sie_wrz_paź_lis_gru".split("_"),weekdays:"niedziela_poniedziałek_wtorek_środa_czwartek_piątek_sobota".split("_"),weekdaysShort:"ndz_pon_wt_śr_czw_pt_sob".split("_"),weekdaysMin:"Nd_Pn_Wt_Śr_Cz_Pt_So".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[Dziś o] LT",nextDay:"[Jutro o] LT",nextWeek:function(){switch(this.day()){case 0:return"[W niedzielę o] LT";case 2:return"[We wtorek o] LT";case 3:return"[W środę o] LT";case 6:return"[W sobotę o] LT";default:return"[W] dddd [o] LT"}},lastDay:"[Wczoraj o] LT",lastWeek:function(){switch(this.day()){case 0:return"[W zeszłą niedzielę o] LT";case 3:return"[W zeszłą środę o] LT";case 6:return"[W zeszłą sobotę o] LT";default:return"[W zeszły] dddd [o] LT"}},sameElse:"L"},relativeTime:{future:"za %s",past:"%s temu",s:"kilka sekund",ss:r,m:r,mm:r,h:r,hh:r,d:"1 dzień",dd:"%d dni",M:"miesiąc",MM:r,y:"rok",yy:r},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})})}})}); \ No newline at end of file diff --git a/public/assets/lib/fullcalendar/locale/pt-br.js b/public/assets/lib/fullcalendar/locale/pt-br.js new file mode 100755 index 0000000..87dfaaf --- /dev/null +++ b/public/assets/lib/fullcalendar/locale/pt-br.js @@ -0,0 +1 @@ +!function(e,t){"object"==typeof exports&&"object"==typeof module?module.exports=t(require("moment"),require("fullcalendar")):"function"==typeof define&&define.amd?define(["moment","fullcalendar"],t):"object"==typeof exports?t(require("moment"),require("fullcalendar")):t(e.moment,e.FullCalendar)}("undefined"!=typeof self?self:this,function(e,t){return function(e){function t(r){if(o[r])return o[r].exports;var a=o[r]={i:r,l:!1,exports:{}};return e[r].call(a.exports,a,a.exports,t),a.l=!0,a.exports}var o={};return t.m=e,t.c=o,t.d=function(e,o,r){t.o(e,o)||Object.defineProperty(e,o,{configurable:!1,enumerable:!0,get:r})},t.n=function(e){var o=e&&e.__esModule?function(){return e.default}:function(){return e};return t.d(o,"a",o),o},t.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},t.p="",t(t.s=175)}({0:function(t,o){t.exports=e},1:function(e,o){e.exports=t},175:function(e,t,o){Object.defineProperty(t,"__esModule",{value:!0}),o(176);var r=o(1);r.datepickerLocale("pt-br","pt-BR",{closeText:"Fechar",prevText:"<Anterior",nextText:"Próximo>",currentText:"Hoje",monthNames:["Janeiro","Fevereiro","Março","Abril","Maio","Junho","Julho","Agosto","Setembro","Outubro","Novembro","Dezembro"],monthNamesShort:["Jan","Fev","Mar","Abr","Mai","Jun","Jul","Ago","Set","Out","Nov","Dez"],dayNames:["Domingo","Segunda-feira","Terça-feira","Quarta-feira","Quinta-feira","Sexta-feira","Sábado"],dayNamesShort:["Dom","Seg","Ter","Qua","Qui","Sex","Sáb"],dayNamesMin:["Dom","Seg","Ter","Qua","Qui","Sex","Sáb"],weekHeader:"Sm",dateFormat:"dd/mm/yy",firstDay:0,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),r.locale("pt-br",{buttonText:{month:"Mês",week:"Semana",day:"Dia",list:"Compromissos"},allDayText:"dia inteiro",eventLimitText:function(e){return"mais +"+e},noEventsMessage:"Não há eventos para mostrar"})},176:function(e,t,o){!function(e,t){t(o(0))}(0,function(e){return e.defineLocale("pt-br",{months:"janeiro_fevereiro_março_abril_maio_junho_julho_agosto_setembro_outubro_novembro_dezembro".split("_"),monthsShort:"jan_fev_mar_abr_mai_jun_jul_ago_set_out_nov_dez".split("_"),weekdays:"Domingo_Segunda-feira_Terça-feira_Quarta-feira_Quinta-feira_Sexta-feira_Sábado".split("_"),weekdaysShort:"Dom_Seg_Ter_Qua_Qui_Sex_Sáb".split("_"),weekdaysMin:"Do_2ª_3ª_4ª_5ª_6ª_Sá".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D [de] MMMM [de] YYYY",LLL:"D [de] MMMM [de] YYYY [às] HH:mm",LLLL:"dddd, D [de] MMMM [de] YYYY [às] HH:mm"},calendar:{sameDay:"[Hoje às] LT",nextDay:"[Amanhã às] LT",nextWeek:"dddd [às] LT",lastDay:"[Ontem às] LT",lastWeek:function(){return 0===this.day()||6===this.day()?"[Último] dddd [às] LT":"[Última] dddd [às] LT"},sameElse:"L"},relativeTime:{future:"em %s",past:"há %s",s:"poucos segundos",ss:"%d segundos",m:"um minuto",mm:"%d minutos",h:"uma hora",hh:"%d horas",d:"um dia",dd:"%d dias",M:"um mês",MM:"%d meses",y:"um ano",yy:"%d anos"},dayOfMonthOrdinalParse:/\d{1,2}º/,ordinal:"%dº"})})}})}); \ No newline at end of file diff --git a/public/assets/lib/fullcalendar/locale/pt.js b/public/assets/lib/fullcalendar/locale/pt.js new file mode 100755 index 0000000..7fbb712 --- /dev/null +++ b/public/assets/lib/fullcalendar/locale/pt.js @@ -0,0 +1 @@ +!function(e,t){"object"==typeof exports&&"object"==typeof module?module.exports=t(require("moment"),require("fullcalendar")):"function"==typeof define&&define.amd?define(["moment","fullcalendar"],t):"object"==typeof exports?t(require("moment"),require("fullcalendar")):t(e.moment,e.FullCalendar)}("undefined"!=typeof self?self:this,function(e,t){return function(e){function t(a){if(o[a])return o[a].exports;var r=o[a]={i:a,l:!1,exports:{}};return e[a].call(r.exports,r,r.exports,t),r.l=!0,r.exports}var o={};return t.m=e,t.c=o,t.d=function(e,o,a){t.o(e,o)||Object.defineProperty(e,o,{configurable:!1,enumerable:!0,get:a})},t.n=function(e){var o=e&&e.__esModule?function(){return e.default}:function(){return e};return t.d(o,"a",o),o},t.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},t.p="",t(t.s=177)}({0:function(t,o){t.exports=e},1:function(e,o){e.exports=t},177:function(e,t,o){Object.defineProperty(t,"__esModule",{value:!0}),o(178);var a=o(1);a.datepickerLocale("pt","pt",{closeText:"Fechar",prevText:"Anterior",nextText:"Seguinte",currentText:"Hoje",monthNames:["Janeiro","Fevereiro","Março","Abril","Maio","Junho","Julho","Agosto","Setembro","Outubro","Novembro","Dezembro"],monthNamesShort:["Jan","Fev","Mar","Abr","Mai","Jun","Jul","Ago","Set","Out","Nov","Dez"],dayNames:["Domingo","Segunda-feira","Terça-feira","Quarta-feira","Quinta-feira","Sexta-feira","Sábado"],dayNamesShort:["Dom","Seg","Ter","Qua","Qui","Sex","Sáb"],dayNamesMin:["Dom","Seg","Ter","Qua","Qui","Sex","Sáb"],weekHeader:"Sem",dateFormat:"dd/mm/yy",firstDay:0,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),a.locale("pt",{buttonText:{month:"Mês",week:"Semana",day:"Dia",list:"Agenda"},allDayText:"Todo o dia",eventLimitText:"mais",noEventsMessage:"Não há eventos para mostrar"})},178:function(e,t,o){!function(e,t){t(o(0))}(0,function(e){return e.defineLocale("pt",{months:"janeiro_fevereiro_março_abril_maio_junho_julho_agosto_setembro_outubro_novembro_dezembro".split("_"),monthsShort:"jan_fev_mar_abr_mai_jun_jul_ago_set_out_nov_dez".split("_"),weekdays:"Domingo_Segunda-feira_Terça-feira_Quarta-feira_Quinta-feira_Sexta-feira_Sábado".split("_"),weekdaysShort:"Dom_Seg_Ter_Qua_Qui_Sex_Sáb".split("_"),weekdaysMin:"Do_2ª_3ª_4ª_5ª_6ª_Sá".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D [de] MMMM [de] YYYY",LLL:"D [de] MMMM [de] YYYY HH:mm",LLLL:"dddd, D [de] MMMM [de] YYYY HH:mm"},calendar:{sameDay:"[Hoje às] LT",nextDay:"[Amanhã às] LT",nextWeek:"dddd [às] LT",lastDay:"[Ontem às] LT",lastWeek:function(){return 0===this.day()||6===this.day()?"[Último] dddd [às] LT":"[Última] dddd [às] LT"},sameElse:"L"},relativeTime:{future:"em %s",past:"há %s",s:"segundos",ss:"%d segundos",m:"um minuto",mm:"%d minutos",h:"uma hora",hh:"%d horas",d:"um dia",dd:"%d dias",M:"um mês",MM:"%d meses",y:"um ano",yy:"%d anos"},dayOfMonthOrdinalParse:/\d{1,2}º/,ordinal:"%dº",week:{dow:1,doy:4}})})}})}); \ No newline at end of file diff --git a/public/assets/lib/fullcalendar/locale/ro.js b/public/assets/lib/fullcalendar/locale/ro.js new file mode 100755 index 0000000..9df8730 --- /dev/null +++ b/public/assets/lib/fullcalendar/locale/ro.js @@ -0,0 +1 @@ +!function(e,t){"object"==typeof exports&&"object"==typeof module?module.exports=t(require("moment"),require("fullcalendar")):"function"==typeof define&&define.amd?define(["moment","fullcalendar"],t):"object"==typeof exports?t(require("moment"),require("fullcalendar")):t(e.moment,e.FullCalendar)}("undefined"!=typeof self?self:this,function(e,t){return function(e){function t(i){if(n[i])return n[i].exports;var r=n[i]={i:i,l:!1,exports:{}};return e[i].call(r.exports,r,r.exports,t),r.l=!0,r.exports}var n={};return t.m=e,t.c=n,t.d=function(e,n,i){t.o(e,n)||Object.defineProperty(e,n,{configurable:!1,enumerable:!0,get:i})},t.n=function(e){var n=e&&e.__esModule?function(){return e.default}:function(){return e};return t.d(n,"a",n),n},t.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},t.p="",t(t.s=179)}({0:function(t,n){t.exports=e},1:function(e,n){e.exports=t},179:function(e,t,n){Object.defineProperty(t,"__esModule",{value:!0}),n(180);var i=n(1);i.datepickerLocale("ro","ro",{closeText:"Închide",prevText:"« Luna precedentă",nextText:"Luna următoare »",currentText:"Azi",monthNames:["Ianuarie","Februarie","Martie","Aprilie","Mai","Iunie","Iulie","August","Septembrie","Octombrie","Noiembrie","Decembrie"],monthNamesShort:["Ian","Feb","Mar","Apr","Mai","Iun","Iul","Aug","Sep","Oct","Nov","Dec"],dayNames:["Duminică","Luni","Marţi","Miercuri","Joi","Vineri","Sâmbătă"],dayNamesShort:["Dum","Lun","Mar","Mie","Joi","Vin","Sâm"],dayNamesMin:["Du","Lu","Ma","Mi","Jo","Vi","Sâ"],weekHeader:"Săpt",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),i.locale("ro",{buttonText:{prev:"precedentă",next:"următoare",month:"Lună",week:"Săptămână",day:"Zi",list:"Agendă"},allDayText:"Toată ziua",eventLimitText:function(e){return"+alte "+e},noEventsMessage:"Nu există evenimente de afișat"})},180:function(e,t,n){!function(e,t){t(n(0))}(0,function(e){function t(e,t,n){var i={ss:"secunde",mm:"minute",hh:"ore",dd:"zile",MM:"luni",yy:"ani"},r=" ";return(e%100>=20||e>=100&&e%100==0)&&(r=" de "),e+r+i[n]}return e.defineLocale("ro",{months:"ianuarie_februarie_martie_aprilie_mai_iunie_iulie_august_septembrie_octombrie_noiembrie_decembrie".split("_"),monthsShort:"ian._febr._mart._apr._mai_iun._iul._aug._sept._oct._nov._dec.".split("_"),monthsParseExact:!0,weekdays:"duminică_luni_marți_miercuri_joi_vineri_sâmbătă".split("_"),weekdaysShort:"Dum_Lun_Mar_Mie_Joi_Vin_Sâm".split("_"),weekdaysMin:"Du_Lu_Ma_Mi_Jo_Vi_Sâ".split("_"),longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY H:mm",LLLL:"dddd, D MMMM YYYY H:mm"},calendar:{sameDay:"[azi la] LT",nextDay:"[mâine la] LT",nextWeek:"dddd [la] LT",lastDay:"[ieri la] LT",lastWeek:"[fosta] dddd [la] LT",sameElse:"L"},relativeTime:{future:"peste %s",past:"%s în urmă",s:"câteva secunde",ss:t,m:"un minut",mm:t,h:"o oră",hh:t,d:"o zi",dd:t,M:"o lună",MM:t,y:"un an",yy:t},week:{dow:1,doy:7}})})}})}); \ No newline at end of file diff --git a/public/assets/lib/fullcalendar/locale/ru.js b/public/assets/lib/fullcalendar/locale/ru.js new file mode 100755 index 0000000..4cd09f4 --- /dev/null +++ b/public/assets/lib/fullcalendar/locale/ru.js @@ -0,0 +1 @@ +!function(e,t){"object"==typeof exports&&"object"==typeof module?module.exports=t(require("moment"),require("fullcalendar")):"function"==typeof define&&define.amd?define(["moment","fullcalendar"],t):"object"==typeof exports?t(require("moment"),require("fullcalendar")):t(e.moment,e.FullCalendar)}("undefined"!=typeof self?self:this,function(e,t){return function(e){function t(n){if(r[n])return r[n].exports;var s=r[n]={i:n,l:!1,exports:{}};return e[n].call(s.exports,s,s.exports,t),s.l=!0,s.exports}var r={};return t.m=e,t.c=r,t.d=function(e,r,n){t.o(e,r)||Object.defineProperty(e,r,{configurable:!1,enumerable:!0,get:n})},t.n=function(e){var r=e&&e.__esModule?function(){return e.default}:function(){return e};return t.d(r,"a",r),r},t.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},t.p="",t(t.s=181)}({0:function(t,r){t.exports=e},1:function(e,r){e.exports=t},181:function(e,t,r){Object.defineProperty(t,"__esModule",{value:!0}),r(182);var n=r(1);n.datepickerLocale("ru","ru",{closeText:"Закрыть",prevText:"<Пред",nextText:"След>",currentText:"Сегодня",monthNames:["Январь","Февраль","Март","Апрель","Май","Июнь","Июль","Август","Сентябрь","Октябрь","Ноябрь","Декабрь"],monthNamesShort:["Янв","Фев","Мар","Апр","Май","Июн","Июл","Авг","Сен","Окт","Ноя","Дек"],dayNames:["воскресенье","понедельник","вторник","среда","четверг","пятница","суббота"],dayNamesShort:["вск","пнд","втр","срд","чтв","птн","сбт"],dayNamesMin:["Вс","Пн","Вт","Ср","Чт","Пт","Сб"],weekHeader:"Нед",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),n.locale("ru",{buttonText:{month:"Месяц",week:"Неделя",day:"День",list:"Повестка дня"},allDayText:"Весь день",eventLimitText:function(e){return"+ ещё "+e},noEventsMessage:"Нет событий для отображения"})},182:function(e,t,r){!function(e,t){t(r(0))}(0,function(e){function t(e,t){var r=e.split("_");return t%10==1&&t%100!=11?r[0]:t%10>=2&&t%10<=4&&(t%100<10||t%100>=20)?r[1]:r[2]}function r(e,r,n){var s={ss:r?"секунда_секунды_секунд":"секунду_секунды_секунд",mm:r?"минута_минуты_минут":"минуту_минуты_минут",hh:"час_часа_часов",dd:"день_дня_дней",MM:"месяц_месяца_месяцев",yy:"год_года_лет"};return"m"===n?r?"минута":"минуту":e+" "+t(s[n],+e)}var n=[/^янв/i,/^фев/i,/^мар/i,/^апр/i,/^ма[йя]/i,/^июн/i,/^июл/i,/^авг/i,/^сен/i,/^окт/i,/^ноя/i,/^дек/i];return e.defineLocale("ru",{months:{format:"января_февраля_марта_апреля_мая_июня_июля_августа_сентября_октября_ноября_декабря".split("_"),standalone:"январь_февраль_март_апрель_май_июнь_июль_август_сентябрь_октябрь_ноябрь_декабрь".split("_")},monthsShort:{format:"янв._февр._мар._апр._мая_июня_июля_авг._сент._окт._нояб._дек.".split("_"),standalone:"янв._февр._март_апр._май_июнь_июль_авг._сент._окт._нояб._дек.".split("_")},weekdays:{standalone:"воскресенье_понедельник_вторник_среда_четверг_пятница_суббота".split("_"),format:"воскресенье_понедельник_вторник_среду_четверг_пятницу_субботу".split("_"),isFormat:/\[ ?[Вв] ?(?:прошлую|следующую|эту)? ?\] ?dddd/},weekdaysShort:"вс_пн_вт_ср_чт_пт_сб".split("_"),weekdaysMin:"вс_пн_вт_ср_чт_пт_сб".split("_"),monthsParse:n,longMonthsParse:n,shortMonthsParse:n,monthsRegex:/^(январ[ья]|янв\.?|феврал[ья]|февр?\.?|марта?|мар\.?|апрел[ья]|апр\.?|ма[йя]|июн[ья]|июн\.?|июл[ья]|июл\.?|августа?|авг\.?|сентябр[ья]|сент?\.?|октябр[ья]|окт\.?|ноябр[ья]|нояб?\.?|декабр[ья]|дек\.?)/i,monthsShortRegex:/^(январ[ья]|янв\.?|феврал[ья]|февр?\.?|марта?|мар\.?|апрел[ья]|апр\.?|ма[йя]|июн[ья]|июн\.?|июл[ья]|июл\.?|августа?|авг\.?|сентябр[ья]|сент?\.?|октябр[ья]|окт\.?|ноябр[ья]|нояб?\.?|декабр[ья]|дек\.?)/i,monthsStrictRegex:/^(январ[яь]|феврал[яь]|марта?|апрел[яь]|ма[яй]|июн[яь]|июл[яь]|августа?|сентябр[яь]|октябр[яь]|ноябр[яь]|декабр[яь])/i,monthsShortStrictRegex:/^(янв\.|февр?\.|мар[т.]|апр\.|ма[яй]|июн[ья.]|июл[ья.]|авг\.|сент?\.|окт\.|нояб?\.|дек\.)/i,longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY г.",LLL:"D MMMM YYYY г., H:mm",LLLL:"dddd, D MMMM YYYY г., H:mm"},calendar:{sameDay:"[Сегодня в] LT",nextDay:"[Завтра в] LT",lastDay:"[Вчера в] LT",nextWeek:function(e){if(e.week()===this.week())return 2===this.day()?"[Во] dddd [в] LT":"[В] dddd [в] LT";switch(this.day()){case 0:return"[В следующее] dddd [в] LT";case 1:case 2:case 4:return"[В следующий] dddd [в] LT";case 3:case 5:case 6:return"[В следующую] dddd [в] LT"}},lastWeek:function(e){if(e.week()===this.week())return 2===this.day()?"[Во] dddd [в] LT":"[В] dddd [в] LT";switch(this.day()){case 0:return"[В прошлое] dddd [в] LT";case 1:case 2:case 4:return"[В прошлый] dddd [в] LT";case 3:case 5:case 6:return"[В прошлую] dddd [в] LT"}},sameElse:"L"},relativeTime:{future:"через %s",past:"%s назад",s:"несколько секунд",ss:r,m:r,mm:r,h:"час",hh:r,d:"день",dd:r,M:"месяц",MM:r,y:"год",yy:r},meridiemParse:/ночи|утра|дня|вечера/i,isPM:function(e){return/^(дня|вечера)$/.test(e)},meridiem:function(e,t,r){return e<4?"ночи":e<12?"утра":e<17?"дня":"вечера"},dayOfMonthOrdinalParse:/\d{1,2}-(й|го|я)/,ordinal:function(e,t){switch(t){case"M":case"d":case"DDD":return e+"-й";case"D":return e+"-го";case"w":case"W":return e+"-я";default:return e}},week:{dow:1,doy:4}})})}})}); \ No newline at end of file diff --git a/public/assets/lib/fullcalendar/locale/sk.js b/public/assets/lib/fullcalendar/locale/sk.js new file mode 100755 index 0000000..121cdd5 --- /dev/null +++ b/public/assets/lib/fullcalendar/locale/sk.js @@ -0,0 +1 @@ +!function(e,t){"object"==typeof exports&&"object"==typeof module?module.exports=t(require("moment"),require("fullcalendar")):"function"==typeof define&&define.amd?define(["moment","fullcalendar"],t):"object"==typeof exports?t(require("moment"),require("fullcalendar")):t(e.moment,e.FullCalendar)}("undefined"!=typeof self?self:this,function(e,t){return function(e){function t(n){if(r[n])return r[n].exports;var o=r[n]={i:n,l:!1,exports:{}};return e[n].call(o.exports,o,o.exports,t),o.l=!0,o.exports}var r={};return t.m=e,t.c=r,t.d=function(e,r,n){t.o(e,r)||Object.defineProperty(e,r,{configurable:!1,enumerable:!0,get:n})},t.n=function(e){var r=e&&e.__esModule?function(){return e.default}:function(){return e};return t.d(r,"a",r),r},t.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},t.p="",t(t.s=183)}({0:function(t,r){t.exports=e},1:function(e,r){e.exports=t},183:function(e,t,r){Object.defineProperty(t,"__esModule",{value:!0}),r(184);var n=r(1);n.datepickerLocale("sk","sk",{closeText:"Zavrieť",prevText:"<Predchádzajúci",nextText:"Nasledujúci>",currentText:"Dnes",monthNames:["január","február","marec","apríl","máj","jún","júl","august","september","október","november","december"],monthNamesShort:["Jan","Feb","Mar","Apr","Máj","Jún","Júl","Aug","Sep","Okt","Nov","Dec"],dayNames:["nedeľa","pondelok","utorok","streda","štvrtok","piatok","sobota"],dayNamesShort:["Ned","Pon","Uto","Str","Štv","Pia","Sob"],dayNamesMin:["Ne","Po","Ut","St","Št","Pia","So"],weekHeader:"Ty",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),n.locale("sk",{buttonText:{month:"Mesiac",week:"Týždeň",day:"Deň",list:"Rozvrh"},allDayText:"Celý deň",eventLimitText:function(e){return"+ďalšie: "+e},noEventsMessage:"Žiadne akcie na zobrazenie"})},184:function(e,t,r){!function(e,t){t(r(0))}(0,function(e){function t(e){return e>1&&e<5}function r(e,r,n,o){var a=e+" ";switch(n){case"s":return r||o?"pár sekúnd":"pár sekundami";case"ss":return r||o?a+(t(e)?"sekundy":"sekúnd"):a+"sekundami";case"m":return r?"minúta":o?"minútu":"minútou";case"mm":return r||o?a+(t(e)?"minúty":"minút"):a+"minútami";case"h":return r?"hodina":o?"hodinu":"hodinou";case"hh":return r||o?a+(t(e)?"hodiny":"hodín"):a+"hodinami";case"d":return r||o?"deň":"dňom";case"dd":return r||o?a+(t(e)?"dni":"dní"):a+"dňami";case"M":return r||o?"mesiac":"mesiacom";case"MM":return r||o?a+(t(e)?"mesiace":"mesiacov"):a+"mesiacmi";case"y":return r||o?"rok":"rokom";case"yy":return r||o?a+(t(e)?"roky":"rokov"):a+"rokmi"}}var n="január_február_marec_apríl_máj_jún_júl_august_september_október_november_december".split("_"),o="jan_feb_mar_apr_máj_jún_júl_aug_sep_okt_nov_dec".split("_");return e.defineLocale("sk",{months:n,monthsShort:o,weekdays:"nedeľa_pondelok_utorok_streda_štvrtok_piatok_sobota".split("_"),weekdaysShort:"ne_po_ut_st_št_pi_so".split("_"),weekdaysMin:"ne_po_ut_st_št_pi_so".split("_"),longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY H:mm",LLLL:"dddd D. MMMM YYYY H:mm"},calendar:{sameDay:"[dnes o] LT",nextDay:"[zajtra o] LT",nextWeek:function(){switch(this.day()){case 0:return"[v nedeľu o] LT";case 1:case 2:return"[v] dddd [o] LT";case 3:return"[v stredu o] LT";case 4:return"[vo štvrtok o] LT";case 5:return"[v piatok o] LT";case 6:return"[v sobotu o] LT"}},lastDay:"[včera o] LT",lastWeek:function(){switch(this.day()){case 0:return"[minulú nedeľu o] LT";case 1:case 2:return"[minulý] dddd [o] LT";case 3:return"[minulú stredu o] LT";case 4:case 5:return"[minulý] dddd [o] LT";case 6:return"[minulú sobotu o] LT"}},sameElse:"L"},relativeTime:{future:"za %s",past:"pred %s",s:r,ss:r,m:r,mm:r,h:r,hh:r,d:r,dd:r,M:r,MM:r,y:r,yy:r},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})})}})}); \ No newline at end of file diff --git a/public/assets/lib/fullcalendar/locale/sl.js b/public/assets/lib/fullcalendar/locale/sl.js new file mode 100755 index 0000000..00b9208 --- /dev/null +++ b/public/assets/lib/fullcalendar/locale/sl.js @@ -0,0 +1 @@ +!function(e,n){"object"==typeof exports&&"object"==typeof module?module.exports=n(require("moment"),require("fullcalendar")):"function"==typeof define&&define.amd?define(["moment","fullcalendar"],n):"object"==typeof exports?n(require("moment"),require("fullcalendar")):n(e.moment,e.FullCalendar)}("undefined"!=typeof self?self:this,function(e,n){return function(e){function n(r){if(t[r])return t[r].exports;var a=t[r]={i:r,l:!1,exports:{}};return e[r].call(a.exports,a,a.exports,n),a.l=!0,a.exports}var t={};return n.m=e,n.c=t,n.d=function(e,t,r){n.o(e,t)||Object.defineProperty(e,t,{configurable:!1,enumerable:!0,get:r})},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,n){return Object.prototype.hasOwnProperty.call(e,n)},n.p="",n(n.s=185)}({0:function(n,t){n.exports=e},1:function(e,t){e.exports=n},185:function(e,n,t){Object.defineProperty(n,"__esModule",{value:!0}),t(186);var r=t(1);r.datepickerLocale("sl","sl",{closeText:"Zapri",prevText:"<Prejšnji",nextText:"Naslednji>",currentText:"Trenutni",monthNames:["Januar","Februar","Marec","April","Maj","Junij","Julij","Avgust","September","Oktober","November","December"],monthNamesShort:["Jan","Feb","Mar","Apr","Maj","Jun","Jul","Avg","Sep","Okt","Nov","Dec"],dayNames:["Nedelja","Ponedeljek","Torek","Sreda","Četrtek","Petek","Sobota"],dayNamesShort:["Ned","Pon","Tor","Sre","Čet","Pet","Sob"],dayNamesMin:["Ne","Po","To","Sr","Če","Pe","So"],weekHeader:"Teden",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),r.locale("sl",{buttonText:{month:"Mesec",week:"Teden",day:"Dan",list:"Dnevni red"},allDayText:"Ves dan",eventLimitText:"več",noEventsMessage:"Ni dogodkov za prikaz"})},186:function(e,n,t){!function(e,n){n(t(0))}(0,function(e){function n(e,n,t,r){var a=e+" ";switch(t){case"s":return n||r?"nekaj sekund":"nekaj sekundami";case"ss":return a+=1===e?n?"sekundo":"sekundi":2===e?n||r?"sekundi":"sekundah":e<5?n||r?"sekunde":"sekundah":"sekund";case"m":return n?"ena minuta":"eno minuto";case"mm":return a+=1===e?n?"minuta":"minuto":2===e?n||r?"minuti":"minutama":e<5?n||r?"minute":"minutami":n||r?"minut":"minutami";case"h":return n?"ena ura":"eno uro";case"hh":return a+=1===e?n?"ura":"uro":2===e?n||r?"uri":"urama":e<5?n||r?"ure":"urami":n||r?"ur":"urami";case"d":return n||r?"en dan":"enim dnem";case"dd":return a+=1===e?n||r?"dan":"dnem":2===e?n||r?"dni":"dnevoma":n||r?"dni":"dnevi";case"M":return n||r?"en mesec":"enim mesecem";case"MM":return a+=1===e?n||r?"mesec":"mesecem":2===e?n||r?"meseca":"mesecema":e<5?n||r?"mesece":"meseci":n||r?"mesecev":"meseci";case"y":return n||r?"eno leto":"enim letom";case"yy":return a+=1===e?n||r?"leto":"letom":2===e?n||r?"leti":"letoma":e<5?n||r?"leta":"leti":n||r?"let":"leti"}}return e.defineLocale("sl",{months:"januar_februar_marec_april_maj_junij_julij_avgust_september_oktober_november_december".split("_"),monthsShort:"jan._feb._mar._apr._maj._jun._jul._avg._sep._okt._nov._dec.".split("_"),monthsParseExact:!0,weekdays:"nedelja_ponedeljek_torek_sreda_četrtek_petek_sobota".split("_"),weekdaysShort:"ned._pon._tor._sre._čet._pet._sob.".split("_"),weekdaysMin:"ne_po_to_sr_če_pe_so".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY H:mm",LLLL:"dddd, D. MMMM YYYY H:mm"},calendar:{sameDay:"[danes ob] LT",nextDay:"[jutri ob] LT",nextWeek:function(){switch(this.day()){case 0:return"[v] [nedeljo] [ob] LT";case 3:return"[v] [sredo] [ob] LT";case 6:return"[v] [soboto] [ob] LT";case 1:case 2:case 4:case 5:return"[v] dddd [ob] LT"}},lastDay:"[včeraj ob] LT",lastWeek:function(){switch(this.day()){case 0:return"[prejšnjo] [nedeljo] [ob] LT";case 3:return"[prejšnjo] [sredo] [ob] LT";case 6:return"[prejšnjo] [soboto] [ob] LT";case 1:case 2:case 4:case 5:return"[prejšnji] dddd [ob] LT"}},sameElse:"L"},relativeTime:{future:"čez %s",past:"pred %s",s:n,ss:n,m:n,mm:n,h:n,hh:n,d:n,dd:n,M:n,MM:n,y:n,yy:n},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:7}})})}})}); \ No newline at end of file diff --git a/public/assets/lib/fullcalendar/locale/sq.js b/public/assets/lib/fullcalendar/locale/sq.js new file mode 100755 index 0000000..b87589d --- /dev/null +++ b/public/assets/lib/fullcalendar/locale/sq.js @@ -0,0 +1 @@ +!function(e,t){"object"==typeof exports&&"object"==typeof module?module.exports=t(require("moment"),require("fullcalendar")):"function"==typeof define&&define.amd?define(["moment","fullcalendar"],t):"object"==typeof exports?t(require("moment"),require("fullcalendar")):t(e.moment,e.FullCalendar)}("undefined"!=typeof self?self:this,function(e,t){return function(e){function t(n){if(r[n])return r[n].exports;var a=r[n]={i:n,l:!1,exports:{}};return e[n].call(a.exports,a,a.exports,t),a.l=!0,a.exports}var r={};return t.m=e,t.c=r,t.d=function(e,r,n){t.o(e,r)||Object.defineProperty(e,r,{configurable:!1,enumerable:!0,get:n})},t.n=function(e){var r=e&&e.__esModule?function(){return e.default}:function(){return e};return t.d(r,"a",r),r},t.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},t.p="",t(t.s=187)}({0:function(t,r){t.exports=e},1:function(e,r){e.exports=t},187:function(e,t,r){Object.defineProperty(t,"__esModule",{value:!0}),r(188);var n=r(1);n.datepickerLocale("sq","sq",{closeText:"mbylle",prevText:"<mbrapa",nextText:"Përpara>",currentText:"sot",monthNames:["Janar","Shkurt","Mars","Prill","Maj","Qershor","Korrik","Gusht","Shtator","Tetor","Nëntor","Dhjetor"],monthNamesShort:["Jan","Shk","Mar","Pri","Maj","Qer","Kor","Gus","Sht","Tet","Nën","Dhj"],dayNames:["E Diel","E Hënë","E Martë","E Mërkurë","E Enjte","E Premte","E Shtune"],dayNamesShort:["Di","Hë","Ma","Më","En","Pr","Sh"],dayNamesMin:["Di","Hë","Ma","Më","En","Pr","Sh"],weekHeader:"Ja",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),n.locale("sq",{buttonText:{month:"Muaj",week:"Javë",day:"Ditë",list:"Listë"},allDayHtml:"Gjithë
ditën",eventLimitText:function(e){return"+më tepër "+e},noEventsMessage:"Nuk ka evente për të shfaqur"})},188:function(e,t,r){!function(e,t){t(r(0))}(0,function(e){return e.defineLocale("sq",{months:"Janar_Shkurt_Mars_Prill_Maj_Qershor_Korrik_Gusht_Shtator_Tetor_Nëntor_Dhjetor".split("_"),monthsShort:"Jan_Shk_Mar_Pri_Maj_Qer_Kor_Gus_Sht_Tet_Nën_Dhj".split("_"),weekdays:"E Diel_E Hënë_E Martë_E Mërkurë_E Enjte_E Premte_E Shtunë".split("_"),weekdaysShort:"Die_Hën_Mar_Mër_Enj_Pre_Sht".split("_"),weekdaysMin:"D_H_Ma_Më_E_P_Sh".split("_"),weekdaysParseExact:!0,meridiemParse:/PD|MD/,isPM:function(e){return"M"===e.charAt(0)},meridiem:function(e,t,r){return e<12?"PD":"MD"},longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[Sot në] LT",nextDay:"[Nesër në] LT",nextWeek:"dddd [në] LT",lastDay:"[Dje në] LT",lastWeek:"dddd [e kaluar në] LT",sameElse:"L"},relativeTime:{future:"në %s",past:"%s më parë",s:"disa sekonda",ss:"%d sekonda",m:"një minutë",mm:"%d minuta",h:"një orë",hh:"%d orë",d:"një ditë",dd:"%d ditë",M:"një muaj",MM:"%d muaj",y:"një vit",yy:"%d vite"},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}})})}})}); \ No newline at end of file diff --git a/public/assets/lib/fullcalendar/locale/sr-cyrl.js b/public/assets/lib/fullcalendar/locale/sr-cyrl.js new file mode 100755 index 0000000..821594c --- /dev/null +++ b/public/assets/lib/fullcalendar/locale/sr-cyrl.js @@ -0,0 +1 @@ +!function(e,t){"object"==typeof exports&&"object"==typeof module?module.exports=t(require("moment"),require("fullcalendar")):"function"==typeof define&&define.amd?define(["moment","fullcalendar"],t):"object"==typeof exports?t(require("moment"),require("fullcalendar")):t(e.moment,e.FullCalendar)}("undefined"!=typeof self?self:this,function(e,t){return function(e){function t(n){if(r[n])return r[n].exports;var a=r[n]={i:n,l:!1,exports:{}};return e[n].call(a.exports,a,a.exports,t),a.l=!0,a.exports}var r={};return t.m=e,t.c=r,t.d=function(e,r,n){t.o(e,r)||Object.defineProperty(e,r,{configurable:!1,enumerable:!0,get:n})},t.n=function(e){var r=e&&e.__esModule?function(){return e.default}:function(){return e};return t.d(r,"a",r),r},t.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},t.p="",t(t.s=189)}({0:function(t,r){t.exports=e},1:function(e,r){e.exports=t},189:function(e,t,r){Object.defineProperty(t,"__esModule",{value:!0}),r(190);var n=r(1);n.datepickerLocale("sr-cyrl","sr",{closeText:"Затвори",prevText:"<",nextText:">",currentText:"Данас",monthNames:["Јануар","Фебруар","Март","Април","Мај","Јун","Јул","Август","Септембар","Октобар","Новембар","Децембар"],monthNamesShort:["Јан","Феб","Мар","Апр","Мај","Јун","Јул","Авг","Сеп","Окт","Нов","Дец"],dayNames:["Недеља","Понедељак","Уторак","Среда","Четвртак","Петак","Субота"],dayNamesShort:["Нед","Пон","Уто","Сре","Чет","Пет","Суб"],dayNamesMin:["Не","По","Ут","Ср","Че","Пе","Су"],weekHeader:"Сед",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),n.locale("sr-cyrl",{buttonText:{prev:"Претходна",next:"следећи",month:"Месец",week:"Недеља",day:"Дан",list:"Планер"},allDayText:"Цео дан",eventLimitText:function(e){return"+ још "+e},noEventsMessage:"Нема догађаја за приказ"})},190:function(e,t,r){!function(e,t){t(r(0))}(0,function(e){var t={words:{ss:["секунда","секунде","секунди"],m:["један минут","једне минуте"],mm:["минут","минуте","минута"],h:["један сат","једног сата"],hh:["сат","сата","сати"],dd:["дан","дана","дана"],MM:["месец","месеца","месеци"],yy:["година","године","година"]},correctGrammaticalCase:function(e,t){return 1===e?t[0]:e>=2&&e<=4?t[1]:t[2]},translate:function(e,r,n){var a=t.words[n];return 1===n.length?r?a[0]:a[1]:e+" "+t.correctGrammaticalCase(e,a)}};return e.defineLocale("sr-cyrl",{months:"јануар_фебруар_март_април_мај_јун_јул_август_септембар_октобар_новембар_децембар".split("_"),monthsShort:"јан._феб._мар._апр._мај_јун_јул_авг._сеп._окт._нов._дец.".split("_"),monthsParseExact:!0,weekdays:"недеља_понедељак_уторак_среда_четвртак_петак_субота".split("_"),weekdaysShort:"нед._пон._уто._сре._чет._пет._суб.".split("_"),weekdaysMin:"не_по_ут_ср_че_пе_су".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY H:mm",LLLL:"dddd, D. MMMM YYYY H:mm"},calendar:{sameDay:"[данас у] LT",nextDay:"[сутра у] LT",nextWeek:function(){switch(this.day()){case 0:return"[у] [недељу] [у] LT";case 3:return"[у] [среду] [у] LT";case 6:return"[у] [суботу] [у] LT";case 1:case 2:case 4:case 5:return"[у] dddd [у] LT"}},lastDay:"[јуче у] LT",lastWeek:function(){return["[прошле] [недеље] [у] LT","[прошлог] [понедељка] [у] LT","[прошлог] [уторка] [у] LT","[прошле] [среде] [у] LT","[прошлог] [четвртка] [у] LT","[прошлог] [петка] [у] LT","[прошле] [суботе] [у] LT"][this.day()]},sameElse:"L"},relativeTime:{future:"за %s",past:"пре %s",s:"неколико секунди",ss:t.translate,m:t.translate,mm:t.translate,h:t.translate,hh:t.translate,d:"дан",dd:t.translate,M:"месец",MM:t.translate,y:"годину",yy:t.translate},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:7}})})}})}); \ No newline at end of file diff --git a/public/assets/lib/fullcalendar/locale/sr.js b/public/assets/lib/fullcalendar/locale/sr.js new file mode 100755 index 0000000..830e14a --- /dev/null +++ b/public/assets/lib/fullcalendar/locale/sr.js @@ -0,0 +1 @@ +!function(e,t){"object"==typeof exports&&"object"==typeof module?module.exports=t(require("moment"),require("fullcalendar")):"function"==typeof define&&define.amd?define(["moment","fullcalendar"],t):"object"==typeof exports?t(require("moment"),require("fullcalendar")):t(e.moment,e.FullCalendar)}("undefined"!=typeof self?self:this,function(e,t){return function(e){function t(r){if(a[r])return a[r].exports;var n=a[r]={i:r,l:!1,exports:{}};return e[r].call(n.exports,n,n.exports,t),n.l=!0,n.exports}var a={};return t.m=e,t.c=a,t.d=function(e,a,r){t.o(e,a)||Object.defineProperty(e,a,{configurable:!1,enumerable:!0,get:r})},t.n=function(e){var a=e&&e.__esModule?function(){return e.default}:function(){return e};return t.d(a,"a",a),a},t.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},t.p="",t(t.s=191)}({0:function(t,a){t.exports=e},1:function(e,a){e.exports=t},191:function(e,t,a){Object.defineProperty(t,"__esModule",{value:!0}),a(192);var r=a(1);r.datepickerLocale("sr","sr-SR",{closeText:"Zatvori",prevText:"<",nextText:">",currentText:"Danas",monthNames:["Januar","Februar","Mart","April","Maj","Jun","Jul","Avgust","Septembar","Oktobar","Novembar","Decembar"],monthNamesShort:["Jan","Feb","Mar","Apr","Maj","Jun","Jul","Avg","Sep","Okt","Nov","Dec"],dayNames:["Nedelja","Ponedeljak","Utorak","Sreda","Četvrtak","Petak","Subota"],dayNamesShort:["Ned","Pon","Uto","Sre","Čet","Pet","Sub"],dayNamesMin:["Ne","Po","Ut","Sr","Če","Pe","Su"],weekHeader:"Sed",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),r.locale("sr",{buttonText:{prev:"Prethodna",next:"Sledeći",month:"Mеsеc",week:"Nеdеlja",day:"Dan",list:"Planеr"},allDayText:"Cеo dan",eventLimitText:function(e){return"+ još "+e},noEventsMessage:"Nеma događaja za prikaz"})},192:function(e,t,a){!function(e,t){t(a(0))}(0,function(e){var t={words:{ss:["sekunda","sekunde","sekundi"],m:["jedan minut","jedne minute"],mm:["minut","minute","minuta"],h:["jedan sat","jednog sata"],hh:["sat","sata","sati"],dd:["dan","dana","dana"],MM:["mesec","meseca","meseci"],yy:["godina","godine","godina"]},correctGrammaticalCase:function(e,t){return 1===e?t[0]:e>=2&&e<=4?t[1]:t[2]},translate:function(e,a,r){var n=t.words[r];return 1===r.length?a?n[0]:n[1]:e+" "+t.correctGrammaticalCase(e,n)}};return e.defineLocale("sr",{months:"januar_februar_mart_april_maj_jun_jul_avgust_septembar_oktobar_novembar_decembar".split("_"),monthsShort:"jan._feb._mar._apr._maj_jun_jul_avg._sep._okt._nov._dec.".split("_"),monthsParseExact:!0,weekdays:"nedelja_ponedeljak_utorak_sreda_četvrtak_petak_subota".split("_"),weekdaysShort:"ned._pon._uto._sre._čet._pet._sub.".split("_"),weekdaysMin:"ne_po_ut_sr_če_pe_su".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY H:mm",LLLL:"dddd, D. MMMM YYYY H:mm"},calendar:{sameDay:"[danas u] LT",nextDay:"[sutra u] LT",nextWeek:function(){switch(this.day()){case 0:return"[u] [nedelju] [u] LT";case 3:return"[u] [sredu] [u] LT";case 6:return"[u] [subotu] [u] LT";case 1:case 2:case 4:case 5:return"[u] dddd [u] LT"}},lastDay:"[juče u] LT",lastWeek:function(){return["[prošle] [nedelje] [u] LT","[prošlog] [ponedeljka] [u] LT","[prošlog] [utorka] [u] LT","[prošle] [srede] [u] LT","[prošlog] [četvrtka] [u] LT","[prošlog] [petka] [u] LT","[prošle] [subote] [u] LT"][this.day()]},sameElse:"L"},relativeTime:{future:"za %s",past:"pre %s",s:"nekoliko sekundi",ss:t.translate,m:t.translate,mm:t.translate,h:t.translate,hh:t.translate,d:"dan",dd:t.translate,M:"mesec",MM:t.translate,y:"godinu",yy:t.translate},dayOfMonthOrdinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:7}})})}})}); \ No newline at end of file diff --git a/public/assets/lib/fullcalendar/locale/sv.js b/public/assets/lib/fullcalendar/locale/sv.js new file mode 100755 index 0000000..a706ab7 --- /dev/null +++ b/public/assets/lib/fullcalendar/locale/sv.js @@ -0,0 +1 @@ +!function(e,r){"object"==typeof exports&&"object"==typeof module?module.exports=r(require("moment"),require("fullcalendar")):"function"==typeof define&&define.amd?define(["moment","fullcalendar"],r):"object"==typeof exports?r(require("moment"),require("fullcalendar")):r(e.moment,e.FullCalendar)}("undefined"!=typeof self?self:this,function(e,r){return function(e){function r(n){if(t[n])return t[n].exports;var a=t[n]={i:n,l:!1,exports:{}};return e[n].call(a.exports,a,a.exports,r),a.l=!0,a.exports}var t={};return r.m=e,r.c=t,r.d=function(e,t,n){r.o(e,t)||Object.defineProperty(e,t,{configurable:!1,enumerable:!0,get:n})},r.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return r.d(t,"a",t),t},r.o=function(e,r){return Object.prototype.hasOwnProperty.call(e,r)},r.p="",r(r.s=193)}({0:function(r,t){r.exports=e},1:function(e,t){e.exports=r},193:function(e,r,t){Object.defineProperty(r,"__esModule",{value:!0}),t(194);var n=t(1);n.datepickerLocale("sv","sv",{closeText:"Stäng",prevText:"«Förra",nextText:"Nästa»",currentText:"Idag",monthNames:["Januari","Februari","Mars","April","Maj","Juni","Juli","Augusti","September","Oktober","November","December"],monthNamesShort:["Jan","Feb","Mar","Apr","Maj","Jun","Jul","Aug","Sep","Okt","Nov","Dec"],dayNamesShort:["Sön","Mån","Tis","Ons","Tor","Fre","Lör"],dayNames:["Söndag","Måndag","Tisdag","Onsdag","Torsdag","Fredag","Lördag"],dayNamesMin:["Sö","Må","Ti","On","To","Fr","Lö"],weekHeader:"v. ",dateFormat:"yy-mm-dd",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),n.locale("sv",{buttonText:{month:"Månad",week:"Vecka",day:"Dag",list:"Program"},allDayText:"Heldag",eventLimitText:"till",noEventsMessage:"Inga händelser att visa"})},194:function(e,r,t){!function(e,r){r(t(0))}(0,function(e){return e.defineLocale("sv",{months:"januari_februari_mars_april_maj_juni_juli_augusti_september_oktober_november_december".split("_"),monthsShort:"jan_feb_mar_apr_maj_jun_jul_aug_sep_okt_nov_dec".split("_"),weekdays:"söndag_måndag_tisdag_onsdag_torsdag_fredag_lördag".split("_"),weekdaysShort:"sön_mån_tis_ons_tor_fre_lör".split("_"),weekdaysMin:"sö_må_ti_on_to_fr_lö".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"YYYY-MM-DD",LL:"D MMMM YYYY",LLL:"D MMMM YYYY [kl.] HH:mm",LLLL:"dddd D MMMM YYYY [kl.] HH:mm",lll:"D MMM YYYY HH:mm",llll:"ddd D MMM YYYY HH:mm"},calendar:{sameDay:"[Idag] LT",nextDay:"[Imorgon] LT",lastDay:"[Igår] LT",nextWeek:"[På] dddd LT",lastWeek:"[I] dddd[s] LT",sameElse:"L"},relativeTime:{future:"om %s",past:"för %s sedan",s:"några sekunder",ss:"%d sekunder",m:"en minut",mm:"%d minuter",h:"en timme",hh:"%d timmar",d:"en dag",dd:"%d dagar",M:"en månad",MM:"%d månader",y:"ett år",yy:"%d år"},dayOfMonthOrdinalParse:/\d{1,2}(e|a)/,ordinal:function(e){var r=e%10;return e+(1==~~(e%100/10)?"e":1===r?"a":2===r?"a":"e")},week:{dow:1,doy:4}})})}})}); \ No newline at end of file diff --git a/public/assets/lib/fullcalendar/locale/th.js b/public/assets/lib/fullcalendar/locale/th.js new file mode 100755 index 0000000..2b322ef --- /dev/null +++ b/public/assets/lib/fullcalendar/locale/th.js @@ -0,0 +1 @@ +!function(e,t){"object"==typeof exports&&"object"==typeof module?module.exports=t(require("moment"),require("fullcalendar")):"function"==typeof define&&define.amd?define(["moment","fullcalendar"],t):"object"==typeof exports?t(require("moment"),require("fullcalendar")):t(e.moment,e.FullCalendar)}("undefined"!=typeof self?self:this,function(e,t){return function(e){function t(r){if(n[r])return n[r].exports;var o=n[r]={i:r,l:!1,exports:{}};return e[r].call(o.exports,o,o.exports,t),o.l=!0,o.exports}var n={};return t.m=e,t.c=n,t.d=function(e,n,r){t.o(e,n)||Object.defineProperty(e,n,{configurable:!1,enumerable:!0,get:r})},t.n=function(e){var n=e&&e.__esModule?function(){return e.default}:function(){return e};return t.d(n,"a",n),n},t.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},t.p="",t(t.s=195)}({0:function(t,n){t.exports=e},1:function(e,n){e.exports=t},195:function(e,t,n){Object.defineProperty(t,"__esModule",{value:!0}),n(196);var r=n(1);r.datepickerLocale("th","th",{closeText:"ปิด",prevText:"« ย้อน",nextText:"ถัดไป »",currentText:"วันนี้",monthNames:["มกราคม","กุมภาพันธ์","มีนาคม","เมษายน","พฤษภาคม","มิถุนายน","กรกฎาคม","สิงหาคม","กันยายน","ตุลาคม","พฤศจิกายน","ธันวาคม"],monthNamesShort:["ม.ค.","ก.พ.","มี.ค.","เม.ย.","พ.ค.","มิ.ย.","ก.ค.","ส.ค.","ก.ย.","ต.ค.","พ.ย.","ธ.ค."],dayNames:["อาทิตย์","จันทร์","อังคาร","พุธ","พฤหัสบดี","ศุกร์","เสาร์"],dayNamesShort:["อา.","จ.","อ.","พ.","พฤ.","ศ.","ส."],dayNamesMin:["อา.","จ.","อ.","พ.","พฤ.","ศ.","ส."],weekHeader:"Wk",dateFormat:"dd/mm/yy",firstDay:0,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),r.locale("th",{buttonText:{month:"เดือน",week:"สัปดาห์",day:"วัน",list:"แผนงาน"},allDayText:"ตลอดวัน",eventLimitText:"เพิ่มเติม",noEventsMessage:"ไม่มีกิจกรรมที่จะแสดง"})},196:function(e,t,n){!function(e,t){t(n(0))}(0,function(e){return e.defineLocale("th",{months:"มกราคม_กุมภาพันธ์_มีนาคม_เมษายน_พฤษภาคม_มิถุนายน_กรกฎาคม_สิงหาคม_กันยายน_ตุลาคม_พฤศจิกายน_ธันวาคม".split("_"),monthsShort:"ม.ค._ก.พ._มี.ค._เม.ย._พ.ค._มิ.ย._ก.ค._ส.ค._ก.ย._ต.ค._พ.ย._ธ.ค.".split("_"),monthsParseExact:!0,weekdays:"อาทิตย์_จันทร์_อังคาร_พุธ_พฤหัสบดี_ศุกร์_เสาร์".split("_"),weekdaysShort:"อาทิตย์_จันทร์_อังคาร_พุธ_พฤหัส_ศุกร์_เสาร์".split("_"),weekdaysMin:"อา._จ._อ._พ._พฤ._ศ._ส.".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY เวลา H:mm",LLLL:"วันddddที่ D MMMM YYYY เวลา H:mm"},meridiemParse:/ก่อนเที่ยง|หลังเที่ยง/,isPM:function(e){return"หลังเที่ยง"===e},meridiem:function(e,t,n){return e<12?"ก่อนเที่ยง":"หลังเที่ยง"},calendar:{sameDay:"[วันนี้ เวลา] LT",nextDay:"[พรุ่งนี้ เวลา] LT",nextWeek:"dddd[หน้า เวลา] LT",lastDay:"[เมื่อวานนี้ เวลา] LT",lastWeek:"[วัน]dddd[ที่แล้ว เวลา] LT",sameElse:"L"},relativeTime:{future:"อีก %s",past:"%sที่แล้ว",s:"ไม่กี่วินาที",ss:"%d วินาที",m:"1 นาที",mm:"%d นาที",h:"1 ชั่วโมง",hh:"%d ชั่วโมง",d:"1 วัน",dd:"%d วัน",M:"1 เดือน",MM:"%d เดือน",y:"1 ปี",yy:"%d ปี"}})})}})}); \ No newline at end of file diff --git a/public/assets/lib/fullcalendar/locale/tr.js b/public/assets/lib/fullcalendar/locale/tr.js new file mode 100755 index 0000000..58d3e29 --- /dev/null +++ b/public/assets/lib/fullcalendar/locale/tr.js @@ -0,0 +1 @@ +!function(e,a){"object"==typeof exports&&"object"==typeof module?module.exports=a(require("moment"),require("fullcalendar")):"function"==typeof define&&define.amd?define(["moment","fullcalendar"],a):"object"==typeof exports?a(require("moment"),require("fullcalendar")):a(e.moment,e.FullCalendar)}("undefined"!=typeof self?self:this,function(e,a){return function(e){function a(n){if(t[n])return t[n].exports;var r=t[n]={i:n,l:!1,exports:{}};return e[n].call(r.exports,r,r.exports,a),r.l=!0,r.exports}var t={};return a.m=e,a.c=t,a.d=function(e,t,n){a.o(e,t)||Object.defineProperty(e,t,{configurable:!1,enumerable:!0,get:n})},a.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return a.d(t,"a",t),t},a.o=function(e,a){return Object.prototype.hasOwnProperty.call(e,a)},a.p="",a(a.s=197)}({0:function(a,t){a.exports=e},1:function(e,t){e.exports=a},197:function(e,a,t){Object.defineProperty(a,"__esModule",{value:!0}),t(198);var n=t(1);n.datepickerLocale("tr","tr",{closeText:"kapat",prevText:"<geri",nextText:"ileri>",currentText:"bugün",monthNames:["Ocak","Şubat","Mart","Nisan","Mayıs","Haziran","Temmuz","Ağustos","Eylül","Ekim","Kasım","Aralık"],monthNamesShort:["Oca","Şub","Mar","Nis","May","Haz","Tem","Ağu","Eyl","Eki","Kas","Ara"],dayNames:["Pazar","Pazartesi","Salı","Çarşamba","Perşembe","Cuma","Cumartesi"],dayNamesShort:["Pz","Pt","Sa","Ça","Pe","Cu","Ct"],dayNamesMin:["Pz","Pt","Sa","Ça","Pe","Cu","Ct"],weekHeader:"Hf",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),n.locale("tr",{buttonText:{next:"ileri",month:"Ay",week:"Hafta",day:"Gün",list:"Ajanda"},allDayText:"Tüm gün",eventLimitText:"daha fazla",noEventsMessage:"Herhangi bir etkinlik görüntülemek için"})},198:function(e,a,t){!function(e,a){a(t(0))}(0,function(e){var a={1:"'inci",5:"'inci",8:"'inci",70:"'inci",80:"'inci",2:"'nci",7:"'nci",20:"'nci",50:"'nci",3:"'üncü",4:"'üncü",100:"'üncü",6:"'ncı",9:"'uncu",10:"'uncu",30:"'uncu",60:"'ıncı",90:"'ıncı"};return e.defineLocale("tr",{months:"Ocak_Şubat_Mart_Nisan_Mayıs_Haziran_Temmuz_Ağustos_Eylül_Ekim_Kasım_Aralık".split("_"),monthsShort:"Oca_Şub_Mar_Nis_May_Haz_Tem_Ağu_Eyl_Eki_Kas_Ara".split("_"),weekdays:"Pazar_Pazartesi_Salı_Çarşamba_Perşembe_Cuma_Cumartesi".split("_"),weekdaysShort:"Paz_Pts_Sal_Çar_Per_Cum_Cts".split("_"),weekdaysMin:"Pz_Pt_Sa_Ça_Pe_Cu_Ct".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[bugün saat] LT",nextDay:"[yarın saat] LT",nextWeek:"[gelecek] dddd [saat] LT",lastDay:"[dün] LT",lastWeek:"[geçen] dddd [saat] LT",sameElse:"L"},relativeTime:{future:"%s sonra",past:"%s önce",s:"birkaç saniye",ss:"%d saniye",m:"bir dakika",mm:"%d dakika",h:"bir saat",hh:"%d saat",d:"bir gün",dd:"%d gün",M:"bir ay",MM:"%d ay",y:"bir yıl",yy:"%d yıl"},ordinal:function(e,t){switch(t){case"d":case"D":case"Do":case"DD":return e;default:if(0===e)return e+"'ıncı";var n=e%10,r=e%100-n,i=e>=100?100:null;return e+(a[n]||a[r]||a[i])}},week:{dow:1,doy:7}})})}})}); \ No newline at end of file diff --git a/public/assets/lib/fullcalendar/locale/uk.js b/public/assets/lib/fullcalendar/locale/uk.js new file mode 100755 index 0000000..b6651ec --- /dev/null +++ b/public/assets/lib/fullcalendar/locale/uk.js @@ -0,0 +1 @@ +!function(e,t){"object"==typeof exports&&"object"==typeof module?module.exports=t(require("moment"),require("fullcalendar")):"function"==typeof define&&define.amd?define(["moment","fullcalendar"],t):"object"==typeof exports?t(require("moment"),require("fullcalendar")):t(e.moment,e.FullCalendar)}("undefined"!=typeof self?self:this,function(e,t){return function(e){function t(r){if(n[r])return n[r].exports;var a=n[r]={i:r,l:!1,exports:{}};return e[r].call(a.exports,a,a.exports,t),a.l=!0,a.exports}var n={};return t.m=e,t.c=n,t.d=function(e,n,r){t.o(e,n)||Object.defineProperty(e,n,{configurable:!1,enumerable:!0,get:r})},t.n=function(e){var n=e&&e.__esModule?function(){return e.default}:function(){return e};return t.d(n,"a",n),n},t.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},t.p="",t(t.s=199)}({0:function(t,n){t.exports=e},1:function(e,n){e.exports=t},199:function(e,t,n){Object.defineProperty(t,"__esModule",{value:!0}),n(200);var r=n(1);r.datepickerLocale("uk","uk",{closeText:"Закрити",prevText:"<",nextText:">",currentText:"Сьогодні",monthNames:["Січень","Лютий","Березень","Квітень","Травень","Червень","Липень","Серпень","Вересень","Жовтень","Листопад","Грудень"],monthNamesShort:["Січ","Лют","Бер","Кві","Тра","Чер","Лип","Сер","Вер","Жов","Лис","Гру"],dayNames:["неділя","понеділок","вівторок","середа","четвер","п’ятниця","субота"],dayNamesShort:["нед","пнд","вів","срд","чтв","птн","сбт"],dayNamesMin:["Нд","Пн","Вт","Ср","Чт","Пт","Сб"],weekHeader:"Тиж",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),r.locale("uk",{buttonText:{month:"Місяць",week:"Тиждень",day:"День",list:"Порядок денний"},allDayText:"Увесь день",eventLimitText:function(e){return"+ще "+e+"..."},noEventsMessage:"Немає подій для відображення"})},200:function(e,t,n){!function(e,t){t(n(0))}(0,function(e){function t(e,t){var n=e.split("_");return t%10==1&&t%100!=11?n[0]:t%10>=2&&t%10<=4&&(t%100<10||t%100>=20)?n[1]:n[2]}function n(e,n,r){var a={ss:n?"секунда_секунди_секунд":"секунду_секунди_секунд",mm:n?"хвилина_хвилини_хвилин":"хвилину_хвилини_хвилин",hh:n?"година_години_годин":"годину_години_годин",dd:"день_дні_днів",MM:"місяць_місяці_місяців",yy:"рік_роки_років"};return"m"===r?n?"хвилина":"хвилину":"h"===r?n?"година":"годину":e+" "+t(a[r],+e)}function r(e,t){var n={nominative:"неділя_понеділок_вівторок_середа_четвер_п’ятниця_субота".split("_"),accusative:"неділю_понеділок_вівторок_середу_четвер_п’ятницю_суботу".split("_"),genitive:"неділі_понеділка_вівторка_середи_четверга_п’ятниці_суботи".split("_")};return e?n[/(\[[ВвУу]\]) ?dddd/.test(t)?"accusative":/\[?(?:минулої|наступної)? ?\] ?dddd/.test(t)?"genitive":"nominative"][e.day()]:n.nominative}function a(e){return function(){return e+"о"+(11===this.hours()?"б":"")+"] LT"}}return e.defineLocale("uk",{months:{format:"січня_лютого_березня_квітня_травня_червня_липня_серпня_вересня_жовтня_листопада_грудня".split("_"),standalone:"січень_лютий_березень_квітень_травень_червень_липень_серпень_вересень_жовтень_листопад_грудень".split("_")},monthsShort:"січ_лют_бер_квіт_трав_черв_лип_серп_вер_жовт_лист_груд".split("_"),weekdays:r,weekdaysShort:"нд_пн_вт_ср_чт_пт_сб".split("_"),weekdaysMin:"нд_пн_вт_ср_чт_пт_сб".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY р.",LLL:"D MMMM YYYY р., HH:mm",LLLL:"dddd, D MMMM YYYY р., HH:mm"},calendar:{sameDay:a("[Сьогодні "),nextDay:a("[Завтра "),lastDay:a("[Вчора "),nextWeek:a("[У] dddd ["),lastWeek:function(){switch(this.day()){case 0:case 3:case 5:case 6:return a("[Минулої] dddd [").call(this);case 1:case 2:case 4:return a("[Минулого] dddd [").call(this)}},sameElse:"L"},relativeTime:{future:"за %s",past:"%s тому",s:"декілька секунд",ss:n,m:n,mm:n,h:"годину",hh:n,d:"день",dd:n,M:"місяць",MM:n,y:"рік",yy:n},meridiemParse:/ночі|ранку|дня|вечора/,isPM:function(e){return/^(дня|вечора)$/.test(e)},meridiem:function(e,t,n){return e<4?"ночі":e<12?"ранку":e<17?"дня":"вечора"},dayOfMonthOrdinalParse:/\d{1,2}-(й|го)/,ordinal:function(e,t){switch(t){case"M":case"d":case"DDD":case"w":case"W":return e+"-й";case"D":return e+"-го";default:return e}},week:{dow:1,doy:7}})})}})}); \ No newline at end of file diff --git a/public/assets/lib/fullcalendar/locale/vi.js b/public/assets/lib/fullcalendar/locale/vi.js new file mode 100755 index 0000000..28e7266 --- /dev/null +++ b/public/assets/lib/fullcalendar/locale/vi.js @@ -0,0 +1 @@ +!function(t,n){"object"==typeof exports&&"object"==typeof module?module.exports=n(require("moment"),require("fullcalendar")):"function"==typeof define&&define.amd?define(["moment","fullcalendar"],n):"object"==typeof exports?n(require("moment"),require("fullcalendar")):n(t.moment,t.FullCalendar)}("undefined"!=typeof self?self:this,function(t,n){return function(t){function n(h){if(e[h])return e[h].exports;var r=e[h]={i:h,l:!1,exports:{}};return t[h].call(r.exports,r,r.exports,n),r.l=!0,r.exports}var e={};return n.m=t,n.c=e,n.d=function(t,e,h){n.o(t,e)||Object.defineProperty(t,e,{configurable:!1,enumerable:!0,get:h})},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,n){return Object.prototype.hasOwnProperty.call(t,n)},n.p="",n(n.s=201)}({0:function(n,e){n.exports=t},1:function(t,e){t.exports=n},201:function(t,n,e){Object.defineProperty(n,"__esModule",{value:!0}),e(202);var h=e(1);h.datepickerLocale("vi","vi",{closeText:"Đóng",prevText:"<Trước",nextText:"Tiếp>",currentText:"Hôm nay",monthNames:["Tháng Một","Tháng Hai","Tháng Ba","Tháng Tư","Tháng Năm","Tháng Sáu","Tháng Bảy","Tháng Tám","Tháng Chín","Tháng Mười","Tháng Mười Một","Tháng Mười Hai"],monthNamesShort:["Tháng 1","Tháng 2","Tháng 3","Tháng 4","Tháng 5","Tháng 6","Tháng 7","Tháng 8","Tháng 9","Tháng 10","Tháng 11","Tháng 12"],dayNames:["Chủ Nhật","Thứ Hai","Thứ Ba","Thứ Tư","Thứ Năm","Thứ Sáu","Thứ Bảy"],dayNamesShort:["CN","T2","T3","T4","T5","T6","T7"],dayNamesMin:["CN","T2","T3","T4","T5","T6","T7"],weekHeader:"Tu",dateFormat:"dd/mm/yy",firstDay:0,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),h.locale("vi",{buttonText:{month:"Tháng",week:"Tuần",day:"Ngày",list:"Lịch biểu"},allDayText:"Cả ngày",eventLimitText:function(t){return"+ thêm "+t},noEventsMessage:"Không có sự kiện để hiển thị"})},202:function(t,n,e){!function(t,n){n(e(0))}(0,function(t){return t.defineLocale("vi",{months:"tháng 1_tháng 2_tháng 3_tháng 4_tháng 5_tháng 6_tháng 7_tháng 8_tháng 9_tháng 10_tháng 11_tháng 12".split("_"),monthsShort:"Th01_Th02_Th03_Th04_Th05_Th06_Th07_Th08_Th09_Th10_Th11_Th12".split("_"),monthsParseExact:!0,weekdays:"chủ nhật_thứ hai_thứ ba_thứ tư_thứ năm_thứ sáu_thứ bảy".split("_"),weekdaysShort:"CN_T2_T3_T4_T5_T6_T7".split("_"),weekdaysMin:"CN_T2_T3_T4_T5_T6_T7".split("_"),weekdaysParseExact:!0,meridiemParse:/sa|ch/i,isPM:function(t){return/^ch$/i.test(t)},meridiem:function(t,n,e){return t<12?e?"sa":"SA":e?"ch":"CH"},longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM [năm] YYYY",LLL:"D MMMM [năm] YYYY HH:mm",LLLL:"dddd, D MMMM [năm] YYYY HH:mm",l:"DD/M/YYYY",ll:"D MMM YYYY",lll:"D MMM YYYY HH:mm",llll:"ddd, D MMM YYYY HH:mm"},calendar:{sameDay:"[Hôm nay lúc] LT",nextDay:"[Ngày mai lúc] LT",nextWeek:"dddd [tuần tới lúc] LT",lastDay:"[Hôm qua lúc] LT",lastWeek:"dddd [tuần rồi lúc] LT",sameElse:"L"},relativeTime:{future:"%s tới",past:"%s trước",s:"vài giây",ss:"%d giây",m:"một phút",mm:"%d phút",h:"một giờ",hh:"%d giờ",d:"một ngày",dd:"%d ngày",M:"một tháng",MM:"%d tháng",y:"một năm",yy:"%d năm"},dayOfMonthOrdinalParse:/\d{1,2}/,ordinal:function(t){return t},week:{dow:1,doy:4}})})}})}); \ No newline at end of file diff --git a/public/assets/lib/fullcalendar/locale/zh-cn.js b/public/assets/lib/fullcalendar/locale/zh-cn.js new file mode 100755 index 0000000..7252ce1 --- /dev/null +++ b/public/assets/lib/fullcalendar/locale/zh-cn.js @@ -0,0 +1 @@ +!function(e,t){"object"==typeof exports&&"object"==typeof module?module.exports=t(require("moment"),require("fullcalendar")):"function"==typeof define&&define.amd?define(["moment","fullcalendar"],t):"object"==typeof exports?t(require("moment"),require("fullcalendar")):t(e.moment,e.FullCalendar)}("undefined"!=typeof self?self:this,function(e,t){return function(e){function t(r){if(n[r])return n[r].exports;var o=n[r]={i:r,l:!1,exports:{}};return e[r].call(o.exports,o,o.exports,t),o.l=!0,o.exports}var n={};return t.m=e,t.c=n,t.d=function(e,n,r){t.o(e,n)||Object.defineProperty(e,n,{configurable:!1,enumerable:!0,get:r})},t.n=function(e){var n=e&&e.__esModule?function(){return e.default}:function(){return e};return t.d(n,"a",n),n},t.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},t.p="",t(t.s=203)}({0:function(t,n){t.exports=e},1:function(e,n){e.exports=t},203:function(e,t,n){Object.defineProperty(t,"__esModule",{value:!0}),n(204);var r=n(1);r.datepickerLocale("zh-cn","zh-CN",{closeText:"关闭",prevText:"<上月",nextText:"下月>",currentText:"今天",monthNames:["一月","二月","三月","四月","五月","六月","七月","八月","九月","十月","十一月","十二月"],monthNamesShort:["一月","二月","三月","四月","五月","六月","七月","八月","九月","十月","十一月","十二月"],dayNames:["星期日","星期一","星期二","星期三","星期四","星期五","星期六"],dayNamesShort:["周日","周一","周二","周三","周四","周五","周六"],dayNamesMin:["日","一","二","三","四","五","六"],weekHeader:"周",dateFormat:"yy-mm-dd",firstDay:1,isRTL:!1,showMonthAfterYear:!0,yearSuffix:"年"}),r.locale("zh-cn",{buttonText:{month:"月",week:"周",day:"日",list:"日程"},allDayText:"全天",eventLimitText:function(e){return"另外 "+e+" 个"},noEventsMessage:"没有事件显示"})},204:function(e,t,n){!function(e,t){t(n(0))}(0,function(e){return e.defineLocale("zh-cn",{months:"一月_二月_三月_四月_五月_六月_七月_八月_九月_十月_十一月_十二月".split("_"),monthsShort:"1月_2月_3月_4月_5月_6月_7月_8月_9月_10月_11月_12月".split("_"),weekdays:"星期日_星期一_星期二_星期三_星期四_星期五_星期六".split("_"),weekdaysShort:"周日_周一_周二_周三_周四_周五_周六".split("_"),weekdaysMin:"日_一_二_三_四_五_六".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"YYYY/MM/DD",LL:"YYYY年M月D日",LLL:"YYYY年M月D日Ah点mm分",LLLL:"YYYY年M月D日ddddAh点mm分",l:"YYYY/M/D",ll:"YYYY年M月D日",lll:"YYYY年M月D日 HH:mm",llll:"YYYY年M月D日dddd HH:mm"},meridiemParse:/凌晨|早上|上午|中午|下午|晚上/,meridiemHour:function(e,t){return 12===e&&(e=0),"凌晨"===t||"早上"===t||"上午"===t?e:"下午"===t||"晚上"===t?e+12:e>=11?e:e+12},meridiem:function(e,t,n){var r=100*e+t;return r<600?"凌晨":r<900?"早上":r<1130?"上午":r<1230?"中午":r<1800?"下午":"晚上"},calendar:{sameDay:"[今天]LT",nextDay:"[明天]LT",nextWeek:"[下]ddddLT",lastDay:"[昨天]LT",lastWeek:"[上]ddddLT",sameElse:"L"},dayOfMonthOrdinalParse:/\d{1,2}(日|月|周)/,ordinal:function(e,t){switch(t){case"d":case"D":case"DDD":return e+"日";case"M":return e+"月";case"w":case"W":return e+"周";default:return e}},relativeTime:{future:"%s内",past:"%s前",s:"几秒",ss:"%d 秒",m:"1 分钟",mm:"%d 分钟",h:"1 小时",hh:"%d 小时",d:"1 天",dd:"%d 天",M:"1 个月",MM:"%d 个月",y:"1 年",yy:"%d 年"},week:{dow:1,doy:4}})})}})}); \ No newline at end of file diff --git a/public/assets/lib/fullcalendar/locale/zh-tw.js b/public/assets/lib/fullcalendar/locale/zh-tw.js new file mode 100755 index 0000000..15f7f5f --- /dev/null +++ b/public/assets/lib/fullcalendar/locale/zh-tw.js @@ -0,0 +1 @@ +!function(e,t){"object"==typeof exports&&"object"==typeof module?module.exports=t(require("moment"),require("fullcalendar")):"function"==typeof define&&define.amd?define(["moment","fullcalendar"],t):"object"==typeof exports?t(require("moment"),require("fullcalendar")):t(e.moment,e.FullCalendar)}("undefined"!=typeof self?self:this,function(e,t){return function(e){function t(r){if(n[r])return n[r].exports;var o=n[r]={i:r,l:!1,exports:{}};return e[r].call(o.exports,o,o.exports,t),o.l=!0,o.exports}var n={};return t.m=e,t.c=n,t.d=function(e,n,r){t.o(e,n)||Object.defineProperty(e,n,{configurable:!1,enumerable:!0,get:r})},t.n=function(e){var n=e&&e.__esModule?function(){return e.default}:function(){return e};return t.d(n,"a",n),n},t.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},t.p="",t(t.s=205)}({0:function(t,n){t.exports=e},1:function(e,n){e.exports=t},205:function(e,t,n){Object.defineProperty(t,"__esModule",{value:!0}),n(206);var r=n(1);r.datepickerLocale("zh-tw","zh-TW",{closeText:"關閉",prevText:"<上月",nextText:"下月>",currentText:"今天",monthNames:["一月","二月","三月","四月","五月","六月","七月","八月","九月","十月","十一月","十二月"],monthNamesShort:["一月","二月","三月","四月","五月","六月","七月","八月","九月","十月","十一月","十二月"],dayNames:["星期日","星期一","星期二","星期三","星期四","星期五","星期六"],dayNamesShort:["周日","周一","周二","周三","周四","周五","周六"],dayNamesMin:["日","一","二","三","四","五","六"],weekHeader:"周",dateFormat:"yy/mm/dd",firstDay:1,isRTL:!1,showMonthAfterYear:!0,yearSuffix:"年"}),r.locale("zh-tw",{buttonText:{month:"月",week:"週",day:"天",list:"活動列表"},allDayText:"整天",eventLimitText:"顯示更多",noEventsMessage:"没有任何活動"})},206:function(e,t,n){!function(e,t){t(n(0))}(0,function(e){return e.defineLocale("zh-tw",{months:"一月_二月_三月_四月_五月_六月_七月_八月_九月_十月_十一月_十二月".split("_"),monthsShort:"1月_2月_3月_4月_5月_6月_7月_8月_9月_10月_11月_12月".split("_"),weekdays:"星期日_星期一_星期二_星期三_星期四_星期五_星期六".split("_"),weekdaysShort:"週日_週一_週二_週三_週四_週五_週六".split("_"),weekdaysMin:"日_一_二_三_四_五_六".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"YYYY/MM/DD",LL:"YYYY年M月D日",LLL:"YYYY年M月D日 HH:mm",LLLL:"YYYY年M月D日dddd HH:mm",l:"YYYY/M/D",ll:"YYYY年M月D日",lll:"YYYY年M月D日 HH:mm",llll:"YYYY年M月D日dddd HH:mm"},meridiemParse:/凌晨|早上|上午|中午|下午|晚上/,meridiemHour:function(e,t){return 12===e&&(e=0),"凌晨"===t||"早上"===t||"上午"===t?e:"中午"===t?e>=11?e:e+12:"下午"===t||"晚上"===t?e+12:void 0},meridiem:function(e,t,n){var r=100*e+t;return r<600?"凌晨":r<900?"早上":r<1130?"上午":r<1230?"中午":r<1800?"下午":"晚上"},calendar:{sameDay:"[今天]LT",nextDay:"[明天]LT",nextWeek:"[下]ddddLT",lastDay:"[昨天]LT",lastWeek:"[上]ddddLT",sameElse:"L"},dayOfMonthOrdinalParse:/\d{1,2}(日|月|週)/,ordinal:function(e,t){switch(t){case"d":case"D":case"DDD":return e+"日";case"M":return e+"月";case"w":case"W":return e+"週";default:return e}},relativeTime:{future:"%s內",past:"%s前",s:"幾秒",ss:"%d 秒",m:"1 分鐘",mm:"%d 分鐘",h:"1 小時",hh:"%d 小時",d:"1 天",dd:"%d 天",M:"1 個月",MM:"%d 個月",y:"1 年",yy:"%d 年"}})})}})}); \ No newline at end of file diff --git a/public/assets/lib/gmaps/gmaps.min.js b/public/assets/lib/gmaps/gmaps.min.js new file mode 100755 index 0000000..df8940c --- /dev/null +++ b/public/assets/lib/gmaps/gmaps.min.js @@ -0,0 +1,2 @@ +"use strict";!function(a,b){"object"==typeof exports?module.exports=b():"function"==typeof define&&define.amd?define(["jquery","googlemaps!"],b):a.GMaps=b()}(this,function(){var a=function(a,b){var c;if(a===b)return a;for(c in b)void 0!==b[c]&&(a[c]=b[c]);return a},b=function(a,b){var c,d=Array.prototype.slice.call(arguments,2),e=[],f=a.length;if(Array.prototype.map&&a.map===Array.prototype.map)e=Array.prototype.map.call(a,function(a){var c=d.slice(0);return c.splice(0,0,a),b.apply(this,c)});else for(c=0;f>c;c++)callback_params=d,callback_params.splice(0,0,a[c]),e.push(b.apply(this,callback_params));return e},c=function(a){var b,c=[];for(b=0;b0&&"object"==typeof a[c][0]?a[c]=f(a[c],b):a[c]=d(a[c],b));return a},g=function(a,b){var c,d=a.replace(".","");return c="jQuery"in this&&b?$("."+d,b)[0]:document.getElementsByClassName(d)[0]},h=function(a,b){var c,a=a.replace("#","");return c="jQuery"in window&&b?$("#"+a,b)[0]:document.getElementById(a)},i=function(a){var b=0,c=0;if(a.offsetParent)do b+=a.offsetLeft,c+=a.offsetTop;while(a=a.offsetParent);return[b,c]},j=function(b){var c=document,d=function(b){if("object"!=typeof window.google||!window.google.maps)return"object"==typeof window.console&&window.console.error&&console.error("Google Maps API is required. Please register the following JavaScript library https://maps.googleapis.com/maps/api/js."),function(){};if(!this)return new d(b);b.zoom=b.zoom||15,b.mapType=b.mapType||"roadmap";var e,f=function(a,b){return void 0===a?b:a},j=this,k=["bounds_changed","center_changed","click","dblclick","drag","dragend","dragstart","idle","maptypeid_changed","projection_changed","resize","tilesloaded","zoom_changed"],l=["mousemove","mouseout","mouseover"],m=["el","lat","lng","mapType","width","height","markerClusterer","enableNewStyle"],n=b.el||b.div,o=b.markerClusterer,p=google.maps.MapTypeId[b.mapType.toUpperCase()],q=new google.maps.LatLng(b.lat,b.lng),r=f(b.zoomControl,!0),s=b.zoomControlOpt||{style:"DEFAULT",position:"TOP_LEFT"},t=s.style||"DEFAULT",u=s.position||"TOP_LEFT",v=f(b.panControl,!0),w=f(b.mapTypeControl,!0),x=f(b.scaleControl,!0),y=f(b.streetViewControl,!0),z=f(z,!0),A={},B={zoom:this.zoom,center:q,mapTypeId:p},C={panControl:v,zoomControl:r,zoomControlOptions:{style:google.maps.ZoomControlStyle[t],position:google.maps.ControlPosition[u]},mapTypeControl:w,scaleControl:x,streetViewControl:y,overviewMapControl:z};if("string"==typeof b.el||"string"==typeof b.div?n.indexOf("#")>-1?this.el=h(n,b.context):this.el=g.apply(this,[n,b.context]):this.el=n,"undefined"==typeof this.el||null===this.el)throw"No element defined.";for(window.context_menu=window.context_menu||{},window.context_menu[j.el.id]={},this.controls=[],this.overlays=[],this.layers=[],this.singleLayers={},this.markers=[],this.polylines=[],this.routes=[],this.polygons=[],this.infoWindow=null,this.overlay_el=null,this.zoom=b.zoom,this.registered_events={},this.el.style.width=b.width||this.el.scrollWidth||this.el.offsetWidth,this.el.style.height=b.height||this.el.scrollHeight||this.el.offsetHeight,google.maps.visualRefresh=b.enableNewStyle,e=0;e'+f.title+""}if(h("gmaps_context_menu")){var g=h("gmaps_context_menu");g.innerHTML=c;var e,k=g.getElementsByTagName("a"),l=k.length;for(e=0;l>e;e++){var m=k[e],n=function(c){c.preventDefault(),d[this.id.replace(a+"_","")].action.apply(j,[b]),j.hideContextMenu()};google.maps.event.clearListeners(m,"click"),google.maps.event.addDomListenerOnce(m,"click",n,!1)}var o=i.apply(this,[j.el]),p=o[0]+b.pixel.x-15,q=o[1]+b.pixel.y-15;g.style.left=p+"px",g.style.top=q+"px"}};this.buildContextMenu=function(a,b){if("marker"===a){b.pixel={};var c=new google.maps.OverlayView;c.setMap(j.map),c.draw=function(){var d=c.getProjection(),e=b.marker.getPosition();b.pixel=d.fromLatLngToContainerPixel(e),D(a,b)}}else D(a,b);var d=h("gmaps_context_menu");setTimeout(function(){d.style.display="block"},0)},this.setContextMenu=function(a){window.context_menu[j.el.id][a.control]={};var b,d=c.createElement("ul");for(b in a.options)if(a.options.hasOwnProperty(b)){var e=a.options[b];window.context_menu[j.el.id][a.control][e.name]={title:e.title,action:e.action}}d.id="gmaps_context_menu",d.style.display="none",d.style.position="absolute",d.style.minWidth="100px",d.style.background="white",d.style.listStyle="none",d.style.padding="8px",d.style.boxShadow="2px 2px 6px #ccc",h("gmaps_context_menu")||c.body.appendChild(d);var f=h("gmaps_context_menu");google.maps.event.addDomListener(f,"mouseout",function(a){a.relatedTarget&&this.contains(a.relatedTarget)||window.setTimeout(function(){f.style.display="none"},400)},!1)},this.hideContextMenu=function(){var a=h("gmaps_context_menu");a&&(a.style.display="none")};var E=function(a,c){google.maps.event.addListener(a,c,function(a){void 0==a&&(a=this),b[c].apply(this,[a]),j.hideContextMenu()})};google.maps.event.addListener(this.map,"zoom_changed",this.hideContextMenu);for(var F=0;Fa;a++)"boolean"==typeof this.markers[a].visible&&this.markers[a].visible&&b.push(this.markers[a].getPosition());this.fitLatLngBounds(b)},this.fitLatLngBounds=function(a){var b,c=a.length,d=new google.maps.LatLngBounds;for(b=0;c>b;b++)d.extend(a[b]);this.map.fitBounds(d)},this.setCenter=function(a,b,c){this.map.panTo(new google.maps.LatLng(a,b)),c&&c()},this.getElement=function(){return this.el},this.zoomIn=function(a){a=a||1,this.zoom=this.map.getZoom()+a,this.map.setZoom(this.zoom)},this.zoomOut=function(a){a=a||1,this.zoom=this.map.getZoom()-a,this.map.setZoom(this.zoom)};var H,I=[];for(H in this.map)"function"!=typeof this.map[H]||this[H]||I.push(H);for(e=0;e-1){var d=this.markers[e];d.setMap(null),this.markerClusterer&&this.markerClusterer.removeMarker(d),j.fire("marker_removed",d,this)}}for(var c=0;c0&&d.paths[0].length>0&&(d.paths=c(b(d.paths,f,e)));for(var g=new google.maps.Polygon(d),h=["click","dblclick","mousedown","mousemove","mouseout","mouseover","mouseup","rightclick"],i=0;i0&&d.locations[0].length>0&&(d.locations=c(b([d.locations],f,!1)));var e=d.callback;delete d.callback;var g=new google.maps.ElevationService;if(d.path){var h={path:d.locations,samples:d.samples};g.getElevationAlongPath(h,function(a,b){e&&"function"==typeof e&&e(a,b)})}else delete d.path,delete d.samples,g.getElevationForLocations(d,function(a,b){e&&"function"==typeof e&&e(a,b)})},j.prototype.cleanRoute=j.prototype.removePolylines,j.prototype.renderRoute=function(b,c){var d,e="string"==typeof c.panel?document.getElementById(c.panel.replace("#","")):c.panel;c.panel=e,c=a({map:this.map},c),d=new google.maps.DirectionsRenderer(c),this.getRoutes({origin:b.origin,destination:b.destination,travelMode:b.travelMode,waypoints:b.waypoints,unitSystem:b.unitSystem,error:b.error,avoidHighways:b.avoidHighways,avoidTolls:b.avoidTolls,optimizeWaypoints:b.optimizeWaypoints,callback:function(a,b,c){c===google.maps.DirectionsStatus.OK&&d.setDirections(b)}})},j.prototype.drawRoute=function(a){var b=this;this.getRoutes({origin:a.origin,destination:a.destination,travelMode:a.travelMode,waypoints:a.waypoints,unitSystem:a.unitSystem,error:a.error,avoidHighways:a.avoidHighways,avoidTolls:a.avoidTolls,optimizeWaypoints:a.optimizeWaypoints,callback:function(c){if(c.length>0){var d={path:c[c.length-1].overview_path,strokeColor:a.strokeColor,strokeOpacity:a.strokeOpacity,strokeWeight:a.strokeWeight};a.hasOwnProperty("icons")&&(d.icons=a.icons),b.drawPolyline(d),a.callback&&a.callback(c[c.length-1])}}})},j.prototype.travelRoute=function(a){if(a.origin&&a.destination)this.getRoutes({origin:a.origin,destination:a.destination,travelMode:a.travelMode,waypoints:a.waypoints,unitSystem:a.unitSystem,error:a.error,callback:function(b){if(b.length>0&&a.start&&a.start(b[b.length-1]),b.length>0&&a.step){var c=b[b.length-1];if(c.legs.length>0)for(var d,e=c.legs[0].steps,f=0;d=e[f];f++)d.step_number=f,a.step(d,c.legs[0].steps.length-1)}b.length>0&&a.end&&a.end(b[b.length-1])}});else if(a.route&&a.route.legs.length>0)for(var b,c=a.route.legs[0].steps,d=0;b=c[d];d++)b.step_number=d,a.step(b)},j.prototype.drawSteppedRoute=function(a){var b=this;if(a.origin&&a.destination)this.getRoutes({origin:a.origin,destination:a.destination,travelMode:a.travelMode,waypoints:a.waypoints,error:a.error,callback:function(c){if(c.length>0&&a.start&&a.start(c[c.length-1]),c.length>0&&a.step){var d=c[c.length-1];if(d.legs.length>0)for(var e,f=d.legs[0].steps,g=0;e=f[g];g++){e.step_number=g;var h={path:e.path,strokeColor:a.strokeColor,strokeOpacity:a.strokeOpacity,strokeWeight:a.strokeWeight};a.hasOwnProperty("icons")&&(h.icons=a.icons),b.drawPolyline(h),a.step(e,d.legs[0].steps.length-1)}}c.length>0&&a.end&&a.end(c[c.length-1])}});else if(a.route&&a.route.legs.length>0)for(var c,d=a.route.legs[0].steps,e=0;c=d[e];e++){c.step_number=e;var f={path:c.path,strokeColor:a.strokeColor,strokeOpacity:a.strokeOpacity,strokeWeight:a.strokeWeight};a.hasOwnProperty("icons")&&(f.icons=a.icons),b.drawPolyline(f),a.step(c)}},j.Route=function(a){this.origin=a.origin,this.destination=a.destination,this.waypoints=a.waypoints,this.map=a.map,this.route=a.route,this.step_count=0,this.steps=this.route.legs[0].steps,this.steps_length=this.steps.length;var b={path:new google.maps.MVCArray,strokeColor:a.strokeColor,strokeOpacity:a.strokeOpacity,strokeWeight:a.strokeWeight};a.hasOwnProperty("icons")&&(b.icons=a.icons),this.polyline=this.map.drawPolyline(b).getPath()},j.Route.prototype.getRoute=function(a){var b=this;this.map.getRoutes({origin:this.origin,destination:this.destination,travelMode:a.travelMode,waypoints:this.waypoints||[],error:a.error,callback:function(){b.route=e[0],a.callback&&a.callback.call(b)}})},j.Route.prototype.back=function(){if(this.step_count>0){this.step_count--;var a=this.route.legs[0].steps[this.step_count].path;for(var b in a)a.hasOwnProperty(b)&&this.polyline.pop()}},j.Route.prototype.forward=function(){if(this.step_count0){b.markers=[];for(var c=0;c0){var d=this.polylines[0];b.polyline={},b.polyline.path=google.maps.geometry.encoding.encodePath(d.getPath()),b.polyline.strokeColor=d.strokeColor,b.polyline.strokeOpacity=d.strokeOpacity,b.polyline.strokeWeight=d.strokeWeight}return j.staticMapURL(b)},j.staticMapURL=function(a){function b(a,b){if("#"===a[0]&&(a=a.replace("#","0x"),b)){if(b=parseFloat(b),b=Math.min(1,Math.max(b,0)),0===b)return"0x00000000";b=(255*b).toString(16),1===b.length&&(b+=b),a=a.slice(0,8)+b}return a}var c,d=[],e=("file:"===location.protocol?"http:":location.protocol)+"//maps.googleapis.com/maps/api/staticmap";a.url&&(e=a.url,delete a.url),e+="?";var f=a.markers;delete a.markers,!f&&a.marker&&(f=[a.marker],delete a.marker);var g=a.styles;delete a.styles;var h=a.polyline;if(delete a.polyline,a.center)d.push("center="+a.center),delete a.center;else if(a.address)d.push("center="+a.address),delete a.address;else if(a.lat)d.push(["center=",a.lat,",",a.lng].join("")),delete a.lat,delete a.lng;else if(a.visible){var i=encodeURI(a.visible.join("|"));d.push("visible="+i)}var j=a.size;j?(j.join&&(j=j.join("x")),delete a.size):j="630x300",d.push("size="+j),a.zoom||a.zoom===!1||(a.zoom=15);var k=a.hasOwnProperty("sensor")?!!a.sensor:!0;delete a.sensor,d.push("sensor="+k);for(var l in a)a.hasOwnProperty(l)&&d.push(l+"="+a[l]);if(f)for(var m,n,o=0;c=f[o];o++){m=[],c.size&&"normal"!==c.size?(m.push("size:"+c.size),delete c.size):c.icon&&(m.push("icon:"+encodeURI(c.icon)),delete c.icon),c.color&&(m.push("color:"+c.color.replace("#","0x")),delete c.color),c.label&&(m.push("label:"+c.label[0].toUpperCase()),delete c.label),n=c.address?c.address:c.lat+","+c.lng,delete c.address,delete c.lat,delete c.lng;for(var l in c)c.hasOwnProperty(l)&&m.push(l+":"+c[l]);m.length||0===o?(m.push(n),m=m.join("|"),d.push("markers="+encodeURI(m))):(m=d.pop()+encodeURI("|"+n),d.push(m))}if(g)for(var o=0;oe;e++)for(var f=this.getPaths().getAt(e),g=f.getLength(),h=g-1,i=0;g>i;i++){var j=f.getAt(i),k=f.getAt(h);(j.lng()=a.lng()||k.lng()=a.lng())&&j.lat()+(a.lng()-j.lng())/(k.lng()-j.lng())*(k.lat()-j.lat())>>0;if(0===c)return-1;var d=0;if(arguments.length>1&&(d=Number(arguments[1]),d!=d?d=0:0!=d&&d!=1/0&&d!=-(1/0)&&(d=(d>0||-1)*Math.floor(Math.abs(d)))),d>=c)return-1;for(var e=d>=0?d:Math.max(c-Math.abs(d),0);c>e;e++)if(e in b&&b[e]===a)return e;return-1}),j}); +//# sourceMappingURL=gmaps.min.js.map \ No newline at end of file diff --git a/public/assets/lib/gmaps/jsdoc.json b/public/assets/lib/gmaps/jsdoc.json new file mode 100755 index 0000000..73a82b7 --- /dev/null +++ b/public/assets/lib/gmaps/jsdoc.json @@ -0,0 +1,17 @@ +{ + "source": { + "include": [ "./lib" ], + "includePattern": ".js$" + }, + "plugins": [ + "plugins/markdown" + ], + "markdown": { + "hardwrap": true + }, + "opts": { + "template": "node_modules/docdash", + "recurse": true, + "destination": "./docs" + } +} \ No newline at end of file diff --git a/public/assets/lib/gmaps/lib/gmaps.controls.js b/public/assets/lib/gmaps/lib/gmaps.controls.js new file mode 100755 index 0000000..5a441a3 --- /dev/null +++ b/public/assets/lib/gmaps/lib/gmaps.controls.js @@ -0,0 +1,106 @@ +GMaps.prototype.createControl = function(options) { + var control = document.createElement('div'); + + control.style.cursor = 'pointer'; + + if (options.disableDefaultStyles !== true) { + control.style.fontFamily = 'Roboto, Arial, sans-serif'; + control.style.fontSize = '11px'; + control.style.boxShadow = 'rgba(0, 0, 0, 0.298039) 0px 1px 4px -1px'; + } + + for (var option in options.style) { + control.style[option] = options.style[option]; + } + + if (options.id) { + control.id = options.id; + } + + if (options.title) { + control.title = options.title; + } + + if (options.classes) { + control.className = options.classes; + } + + if (options.content) { + if (typeof options.content === 'string') { + control.innerHTML = options.content; + } + else if (options.content instanceof HTMLElement) { + control.appendChild(options.content); + } + } + + if (options.position) { + control.position = google.maps.ControlPosition[options.position.toUpperCase()]; + } + + for (var ev in options.events) { + (function(object, name) { + google.maps.event.addDomListener(object, name, function(){ + options.events[name].apply(this, [this]); + }); + })(control, ev); + } + + control.index = 1; + + return control; +}; + +/** + * Add a custom control to the map UI. + * + * @param {object} options - The `options` object should contain: + * * `style` (object): The keys and values of this object should be valid CSS properties and values. + * * `id` (string): The HTML id for the custom control. + * * `classes` (string): A string containing all the HTML classes for the custom control. + * * `content` (string or HTML element): The content of the custom control. + * * `position` (string): Any valid [`google.maps.ControlPosition`](https://developers.google.com/maps/documentation/javascript/controls#ControlPositioning) value, in lower or upper case. + * * `events` (object): The keys of this object should be valid DOM events. The values should be functions. + * * `disableDefaultStyles` (boolean): If false, removes the default styles for the controls like font (family and size), and box shadow. + * @returns {HTMLElement} + */ +GMaps.prototype.addControl = function(options) { + var control = this.createControl(options); + + this.controls.push(control); + this.map.controls[control.position].push(control); + + return control; +}; + +/** + * Remove a control from the map. `control` should be a control returned by `addControl()`. + * + * @param {HTMLElement} control - One of the controls returned by `addControl()`. + * @returns {HTMLElement} the removed control. + */ +GMaps.prototype.removeControl = function(control) { + var position = null, + i; + + for (i = 0; i < this.controls.length; i++) { + if (this.controls[i] == control) { + position = this.controls[i].position; + this.controls.splice(i, 1); + } + } + + if (position) { + for (i = 0; i < this.map.controls.length; i++) { + var controlsForPosition = this.map.controls[control.position]; + + if (controlsForPosition.getAt(i) == control) { + controlsForPosition.removeAt(i); + + break; + } + } + } + + return control; +}; diff --git a/public/assets/lib/gmaps/lib/gmaps.core.js b/public/assets/lib/gmaps/lib/gmaps.core.js new file mode 100755 index 0000000..d882daf --- /dev/null +++ b/public/assets/lib/gmaps/lib/gmaps.core.js @@ -0,0 +1,618 @@ +var extend_object = function(obj, new_obj) { + var name; + + if (obj === new_obj) { + return obj; + } + + for (name in new_obj) { + if (new_obj[name] !== undefined) { + obj[name] = new_obj[name]; + } + } + + return obj; +}; + +var replace_object = function(obj, replace) { + var name; + + if (obj === replace) { + return obj; + } + + for (name in replace) { + if (obj[name] != undefined) { + obj[name] = replace[name]; + } + } + + return obj; +}; + +var array_map = function(array, callback) { + var original_callback_params = Array.prototype.slice.call(arguments, 2), + array_return = [], + array_length = array.length, + i; + + if (Array.prototype.map && array.map === Array.prototype.map) { + array_return = Array.prototype.map.call(array, function(item) { + var callback_params = original_callback_params.slice(0); + callback_params.splice(0, 0, item); + + return callback.apply(this, callback_params); + }); + } + else { + for (i = 0; i < array_length; i++) { + callback_params = original_callback_params; + callback_params.splice(0, 0, array[i]); + array_return.push(callback.apply(this, callback_params)); + } + } + + return array_return; +}; + +var array_flat = function(array) { + var new_array = [], + i; + + for (i = 0; i < array.length; i++) { + new_array = new_array.concat(array[i]); + } + + return new_array; +}; + +var coordsToLatLngs = function(coords, useGeoJSON) { + var first_coord = coords[0], + second_coord = coords[1]; + + if (useGeoJSON) { + first_coord = coords[1]; + second_coord = coords[0]; + } + + return new google.maps.LatLng(first_coord, second_coord); +}; + +var arrayToLatLng = function(coords, useGeoJSON) { + var i; + + for (i = 0; i < coords.length; i++) { + if (!(coords[i] instanceof google.maps.LatLng)) { + if (coords[i].length > 0 && typeof(coords[i][0]) === "object") { + coords[i] = arrayToLatLng(coords[i], useGeoJSON); + } + else { + coords[i] = coordsToLatLngs(coords[i], useGeoJSON); + } + } + } + + return coords; +}; + +var getElementsByClassName = function (class_name, context) { + var element, + _class = class_name.replace('.', ''); + + if ('jQuery' in this && context) { + element = $("." + _class, context)[0]; + } else { + element = document.getElementsByClassName(_class)[0]; + } + return element; + +}; + +var getElementById = function(id, context) { + var element, + id = id.replace('#', ''); + + if ('jQuery' in window && context) { + element = $('#' + id, context)[0]; + } else { + element = document.getElementById(id); + }; + + return element; +}; + +var findAbsolutePosition = function(obj) { + var curleft = 0, + curtop = 0; + + if (obj.offsetParent) { + do { + curleft += obj.offsetLeft; + curtop += obj.offsetTop; + } while (obj = obj.offsetParent); + } + + return [curleft, curtop]; +}; + +var GMaps = (function(global) { + "use strict"; + + var doc = document; + /** + * Creates a new GMaps instance, including a Google Maps map. + * @class GMaps + * @constructs + * @param {object} options - `options` accepts all the [MapOptions](https://developers.google.com/maps/documentation/javascript/reference#MapOptions) and [events](https://developers.google.com/maps/documentation/javascript/reference#Map) listed in the Google Maps API. Also accepts: + * * `lat` (number): Latitude of the map's center + * * `lng` (number): Longitude of the map's center + * * `el` (string or HTMLElement): container where the map will be rendered + * * `markerClusterer` (function): A function to create a marker cluster. You can use MarkerClusterer or MarkerClustererPlus. + */ + var GMaps = function(options) { + + if (!(typeof window.google === 'object' && window.google.maps)) { + if (typeof window.console === 'object' && window.console.error) { + console.error('Google Maps API is required. Please register the following JavaScript library https://maps.googleapis.com/maps/api/js.'); + } + + return function() {}; + } + + if (!this) return new GMaps(options); + + options.zoom = options.zoom || 15; + options.mapType = options.mapType || 'roadmap'; + + var valueOrDefault = function(value, defaultValue) { + return value === undefined ? defaultValue : value; + }; + + var self = this, + i, + events_that_hide_context_menu = [ + 'bounds_changed', 'center_changed', 'click', 'dblclick', 'drag', + 'dragend', 'dragstart', 'idle', 'maptypeid_changed', 'projection_changed', + 'resize', 'tilesloaded', 'zoom_changed' + ], + events_that_doesnt_hide_context_menu = ['mousemove', 'mouseout', 'mouseover'], + options_to_be_deleted = ['el', 'lat', 'lng', 'mapType', 'width', 'height', 'markerClusterer', 'enableNewStyle'], + identifier = options.el || options.div, + markerClustererFunction = options.markerClusterer, + mapType = google.maps.MapTypeId[options.mapType.toUpperCase()], + map_center = new google.maps.LatLng(options.lat, options.lng), + zoomControl = valueOrDefault(options.zoomControl, true), + zoomControlOpt = options.zoomControlOpt || { + style: 'DEFAULT', + position: 'TOP_LEFT' + }, + zoomControlStyle = zoomControlOpt.style || 'DEFAULT', + zoomControlPosition = zoomControlOpt.position || 'TOP_LEFT', + panControl = valueOrDefault(options.panControl, true), + mapTypeControl = valueOrDefault(options.mapTypeControl, true), + scaleControl = valueOrDefault(options.scaleControl, true), + streetViewControl = valueOrDefault(options.streetViewControl, true), + overviewMapControl = valueOrDefault(overviewMapControl, true), + map_options = {}, + map_base_options = { + zoom: this.zoom, + center: map_center, + mapTypeId: mapType + }, + map_controls_options = { + panControl: panControl, + zoomControl: zoomControl, + zoomControlOptions: { + style: google.maps.ZoomControlStyle[zoomControlStyle], + position: google.maps.ControlPosition[zoomControlPosition] + }, + mapTypeControl: mapTypeControl, + scaleControl: scaleControl, + streetViewControl: streetViewControl, + overviewMapControl: overviewMapControl + }; + + if (typeof(options.el) === 'string' || typeof(options.div) === 'string') { + if (identifier.indexOf("#") > -1) { + /** + * Container element + * + * @type {HTMLElement} + */ + this.el = getElementById(identifier, options.context); + } else { + this.el = getElementsByClassName.apply(this, [identifier, options.context]); + } + } else { + this.el = identifier; + } + + if (typeof(this.el) === 'undefined' || this.el === null) { + throw 'No element defined.'; + } + + window.context_menu = window.context_menu || {}; + window.context_menu[self.el.id] = {}; + + /** + * Collection of custom controls in the map UI + * + * @type {array} + */ + this.controls = []; + /** + * Collection of map's overlays + * + * @type {array} + */ + this.overlays = []; + /** + * Collection of KML/GeoRSS and FusionTable layers + * + * @type {array} + */ + this.layers = []; + /** + * Collection of data layers (See {@link GMaps#addLayer}) + * + * @type {object} + */ + this.singleLayers = {}; + /** + * Collection of map's markers + * + * @type {array} + */ + this.markers = []; + /** + * Collection of map's lines + * + * @type {array} + */ + this.polylines = []; + /** + * Collection of map's routes requested by {@link GMaps#getRoutes}, {@link GMaps#renderRoute}, {@link GMaps#drawRoute}, {@link GMaps#travelRoute} or {@link GMaps#drawSteppedRoute} + * + * @type {array} + */ + this.routes = []; + /** + * Collection of map's polygons + * + * @type {array} + */ + this.polygons = []; + this.infoWindow = null; + this.overlay_el = null; + /** + * Current map's zoom + * + * @type {number} + */ + this.zoom = options.zoom; + this.registered_events = {}; + + this.el.style.width = options.width || this.el.scrollWidth || this.el.offsetWidth; + this.el.style.height = options.height || this.el.scrollHeight || this.el.offsetHeight; + + google.maps.visualRefresh = options.enableNewStyle; + + for (i = 0; i < options_to_be_deleted.length; i++) { + delete options[options_to_be_deleted[i]]; + } + + if(options.disableDefaultUI != true) { + map_base_options = extend_object(map_base_options, map_controls_options); + } + + map_options = extend_object(map_base_options, options); + + for (i = 0; i < events_that_hide_context_menu.length; i++) { + delete map_options[events_that_hide_context_menu[i]]; + } + + for (i = 0; i < events_that_doesnt_hide_context_menu.length; i++) { + delete map_options[events_that_doesnt_hide_context_menu[i]]; + } + + /** + * Google Maps map instance + * + * @type {google.maps.Map} + */ + this.map = new google.maps.Map(this.el, map_options); + + if (markerClustererFunction) { + /** + * Marker Clusterer instance + * + * @type {object} + */ + this.markerClusterer = markerClustererFunction.apply(this, [this.map]); + } + + var buildContextMenuHTML = function(control, e) { + var html = '', + options = window.context_menu[self.el.id][control]; + + for (var i in options){ + if (options.hasOwnProperty(i)) { + var option = options[i]; + + html += '
  • ' + option.title + '
  • '; + } + } + + if (!getElementById('gmaps_context_menu')) return; + + var context_menu_element = getElementById('gmaps_context_menu'); + + context_menu_element.innerHTML = html; + + var context_menu_items = context_menu_element.getElementsByTagName('a'), + context_menu_items_count = context_menu_items.length, + i; + + for (i = 0; i < context_menu_items_count; i++) { + var context_menu_item = context_menu_items[i]; + + var assign_menu_item_action = function(ev){ + ev.preventDefault(); + + options[this.id.replace(control + '_', '')].action.apply(self, [e]); + self.hideContextMenu(); + }; + + google.maps.event.clearListeners(context_menu_item, 'click'); + google.maps.event.addDomListenerOnce(context_menu_item, 'click', assign_menu_item_action, false); + } + + var position = findAbsolutePosition.apply(this, [self.el]), + left = position[0] + e.pixel.x - 15, + top = position[1] + e.pixel.y- 15; + + context_menu_element.style.left = left + "px"; + context_menu_element.style.top = top + "px"; + + // context_menu_element.style.display = 'block'; + }; + + this.buildContextMenu = function(control, e) { + if (control === 'marker') { + e.pixel = {}; + + var overlay = new google.maps.OverlayView(); + overlay.setMap(self.map); + + overlay.draw = function() { + var projection = overlay.getProjection(), + position = e.marker.getPosition(); + + e.pixel = projection.fromLatLngToContainerPixel(position); + + buildContextMenuHTML(control, e); + }; + } + else { + buildContextMenuHTML(control, e); + } + + var context_menu_element = getElementById('gmaps_context_menu'); + + setTimeout(function() { + context_menu_element.style.display = 'block'; + }, 0); + }; + + /** + * Add a context menu for a map or a marker. + * + * @param {object} options - The `options` object should contain: + * * `control` (string): Kind of control the context menu will be attached. Can be "map" or "marker". + * * `options` (array): A collection of context menu items: + * * `title` (string): Item's title shown in the context menu. + * * `name` (string): Item's identifier. + * * `action` (function): Function triggered after selecting the context menu item. + */ + this.setContextMenu = function(options) { + window.context_menu[self.el.id][options.control] = {}; + + var i, + ul = doc.createElement('ul'); + + for (i in options.options) { + if (options.options.hasOwnProperty(i)) { + var option = options.options[i]; + + window.context_menu[self.el.id][options.control][option.name] = { + title: option.title, + action: option.action + }; + } + } + + ul.id = 'gmaps_context_menu'; + ul.style.display = 'none'; + ul.style.position = 'absolute'; + ul.style.minWidth = '100px'; + ul.style.background = 'white'; + ul.style.listStyle = 'none'; + ul.style.padding = '8px'; + ul.style.boxShadow = '2px 2px 6px #ccc'; + + if (!getElementById('gmaps_context_menu')) { + doc.body.appendChild(ul); + } + + var context_menu_element = getElementById('gmaps_context_menu'); + + google.maps.event.addDomListener(context_menu_element, 'mouseout', function(ev) { + if (!ev.relatedTarget || !this.contains(ev.relatedTarget)) { + window.setTimeout(function(){ + context_menu_element.style.display = 'none'; + }, 400); + } + }, false); + }; + + /** + * Hide the current context menu + */ + this.hideContextMenu = function() { + var context_menu_element = getElementById('gmaps_context_menu'); + + if (context_menu_element) { + context_menu_element.style.display = 'none'; + } + }; + + var setupListener = function(object, name) { + google.maps.event.addListener(object, name, function(e){ + if (e == undefined) { + e = this; + } + + options[name].apply(this, [e]); + + self.hideContextMenu(); + }); + }; + + //google.maps.event.addListener(this.map, 'idle', this.hideContextMenu); + google.maps.event.addListener(this.map, 'zoom_changed', this.hideContextMenu); + + for (var ev = 0; ev < events_that_hide_context_menu.length; ev++) { + var name = events_that_hide_context_menu[ev]; + + if (name in options) { + setupListener(this.map, name); + } + } + + for (var ev = 0; ev < events_that_doesnt_hide_context_menu.length; ev++) { + var name = events_that_doesnt_hide_context_menu[ev]; + + if (name in options) { + setupListener(this.map, name); + } + } + + google.maps.event.addListener(this.map, 'rightclick', function(e) { + if (options.rightclick) { + options.rightclick.apply(this, [e]); + } + + if(window.context_menu[self.el.id]['map'] != undefined) { + self.buildContextMenu('map', e); + } + }); + + /** + * Trigger a `resize` event, useful if you need to repaint the current map (for changes in the viewport or display / hide actions). + */ + this.refresh = function() { + google.maps.event.trigger(this.map, 'resize'); + }; + + /** + * Adjust the map zoom to include all the markers added in the map. + */ + this.fitZoom = function() { + var latLngs = [], + markers_length = this.markers.length, + i; + + for (i = 0; i < markers_length; i++) { + if(typeof(this.markers[i].visible) === 'boolean' && this.markers[i].visible) { + latLngs.push(this.markers[i].getPosition()); + } + } + + this.fitLatLngBounds(latLngs); + }; + + /** + * Adjust the map zoom to include all the coordinates in the `latLngs` array. + * + * @param {array} latLngs - Collection of `google.maps.LatLng` objects. + */ + this.fitLatLngBounds = function(latLngs) { + var total = latLngs.length, + bounds = new google.maps.LatLngBounds(), + i; + + for(i = 0; i < total; i++) { + bounds.extend(latLngs[i]); + } + + this.map.fitBounds(bounds); + }; + + /** + * Center the map using the `lat` and `lng` coordinates. + * + * @param {number} lat - Latitude of the coordinate. + * @param {number} lng - Longitude of the coordinate. + * @param {function} [callback] - Callback that will be executed after the map is centered. + */ + this.setCenter = function(lat, lng, callback) { + this.map.panTo(new google.maps.LatLng(lat, lng)); + + if (callback) { + callback(); + } + }; + + /** + * Return the HTML element container of the map. + * + * @returns {HTMLElement} the element container. + */ + this.getElement = function() { + return this.el; + }; + + /** + * Increase the map's zoom. + * + * @param {number} [magnitude] - The number of times the map will be zoomed in. + */ + this.zoomIn = function(value) { + value = value || 1; + + this.zoom = this.map.getZoom() + value; + this.map.setZoom(this.zoom); + }; + + /** + * Decrease the map's zoom. + * + * @param {number} [magnitude] - The number of times the map will be zoomed out. + */ + this.zoomOut = function(value) { + value = value || 1; + + this.zoom = this.map.getZoom() - value; + this.map.setZoom(this.zoom); + }; + + var native_methods = [], + method; + + for (method in this.map) { + if (typeof(this.map[method]) == 'function' && !this[method]) { + native_methods.push(method); + } + } + + for (i = 0; i < native_methods.length; i++) { + (function(gmaps, scope, method_name) { + gmaps[method_name] = function(){ + return scope[method_name].apply(scope, arguments); + }; + })(this, this.map, native_methods[i]); + } + }; + + return GMaps; +})(this); diff --git a/public/assets/lib/gmaps/lib/gmaps.events.js b/public/assets/lib/gmaps/lib/gmaps.events.js new file mode 100755 index 0000000..af52808 --- /dev/null +++ b/public/assets/lib/gmaps/lib/gmaps.events.js @@ -0,0 +1,65 @@ +GMaps.prototype.on = function(event_name, handler) { + return GMaps.on(event_name, this, handler); +}; + +GMaps.prototype.off = function(event_name) { + GMaps.off(event_name, this); +}; + +GMaps.prototype.once = function(event_name, handler) { + return GMaps.once(event_name, this, handler); +}; + +GMaps.custom_events = ['marker_added', 'marker_removed', 'polyline_added', 'polyline_removed', 'polygon_added', 'polygon_removed', 'geolocated', 'geolocation_failed']; + +GMaps.on = function(event_name, object, handler) { + if (GMaps.custom_events.indexOf(event_name) == -1) { + if(object instanceof GMaps) object = object.map; + return google.maps.event.addListener(object, event_name, handler); + } + else { + var registered_event = { + handler : handler, + eventName : event_name + }; + + object.registered_events[event_name] = object.registered_events[event_name] || []; + object.registered_events[event_name].push(registered_event); + + return registered_event; + } +}; + +GMaps.off = function(event_name, object) { + if (GMaps.custom_events.indexOf(event_name) == -1) { + if(object instanceof GMaps) object = object.map; + google.maps.event.clearListeners(object, event_name); + } + else { + object.registered_events[event_name] = []; + } +}; + +GMaps.once = function(event_name, object, handler) { + if (GMaps.custom_events.indexOf(event_name) == -1) { + if(object instanceof GMaps) object = object.map; + return google.maps.event.addListenerOnce(object, event_name, handler); + } +}; + +GMaps.fire = function(event_name, object, scope) { + if (GMaps.custom_events.indexOf(event_name) == -1) { + google.maps.event.trigger(object, event_name, Array.prototype.slice.apply(arguments).slice(2)); + } + else { + if(event_name in scope.registered_events) { + var firing_events = scope.registered_events[event_name]; + + for(var i = 0; i < firing_events.length; i++) { + (function(handler, scope, object) { + handler.apply(scope, [object]); + })(firing_events[i]['handler'], scope, object); + } + } + } +}; diff --git a/public/assets/lib/gmaps/lib/gmaps.geofences.js b/public/assets/lib/gmaps/lib/gmaps.geofences.js new file mode 100755 index 0000000..74797c8 --- /dev/null +++ b/public/assets/lib/gmaps/lib/gmaps.geofences.js @@ -0,0 +1,14 @@ +GMaps.prototype.checkGeofence = function(lat, lng, fence) { + return fence.containsLatLng(new google.maps.LatLng(lat, lng)); +}; + +GMaps.prototype.checkMarkerGeofence = function(marker, outside_callback) { + if (marker.fences) { + for (var i = 0, fence; fence = marker.fences[i]; i++) { + var pos = marker.getPosition(); + if (!this.checkGeofence(pos.lat(), pos.lng(), fence)) { + outside_callback(marker, fence); + } + } + } +}; diff --git a/public/assets/lib/gmaps/lib/gmaps.geometry.js b/public/assets/lib/gmaps/lib/gmaps.geometry.js new file mode 100755 index 0000000..e7cebd9 --- /dev/null +++ b/public/assets/lib/gmaps/lib/gmaps.geometry.js @@ -0,0 +1,205 @@ +GMaps.prototype.drawPolyline = function(options) { + var path = [], + points = options.path; + + if (points.length) { + if (points[0][0] === undefined) { + path = points; + } + else { + for (var i = 0, latlng; latlng = points[i]; i++) { + path.push(new google.maps.LatLng(latlng[0], latlng[1])); + } + } + } + + var polyline_options = { + map: this.map, + path: path, + strokeColor: options.strokeColor, + strokeOpacity: options.strokeOpacity, + strokeWeight: options.strokeWeight, + geodesic: options.geodesic, + clickable: true, + editable: false, + visible: true + }; + + if (options.hasOwnProperty("clickable")) { + polyline_options.clickable = options.clickable; + } + + if (options.hasOwnProperty("editable")) { + polyline_options.editable = options.editable; + } + + if (options.hasOwnProperty("icons")) { + polyline_options.icons = options.icons; + } + + if (options.hasOwnProperty("zIndex")) { + polyline_options.zIndex = options.zIndex; + } + + var polyline = new google.maps.Polyline(polyline_options); + + var polyline_events = ['click', 'dblclick', 'mousedown', 'mousemove', 'mouseout', 'mouseover', 'mouseup', 'rightclick']; + + for (var ev = 0; ev < polyline_events.length; ev++) { + (function(object, name) { + if (options[name]) { + google.maps.event.addListener(object, name, function(e){ + options[name].apply(this, [e]); + }); + } + })(polyline, polyline_events[ev]); + } + + this.polylines.push(polyline); + + GMaps.fire('polyline_added', polyline, this); + + return polyline; +}; + +GMaps.prototype.removePolyline = function(polyline) { + for (var i = 0; i < this.polylines.length; i++) { + if (this.polylines[i] === polyline) { + this.polylines[i].setMap(null); + this.polylines.splice(i, 1); + + GMaps.fire('polyline_removed', polyline, this); + + break; + } + } +}; + +GMaps.prototype.removePolylines = function() { + for (var i = 0, item; item = this.polylines[i]; i++) { + item.setMap(null); + } + + this.polylines = []; +}; + +GMaps.prototype.drawCircle = function(options) { + options = extend_object({ + map: this.map, + center: new google.maps.LatLng(options.lat, options.lng) + }, options); + + delete options.lat; + delete options.lng; + + var polygon = new google.maps.Circle(options), + polygon_events = ['click', 'dblclick', 'mousedown', 'mousemove', 'mouseout', 'mouseover', 'mouseup', 'rightclick']; + + for (var ev = 0; ev < polygon_events.length; ev++) { + (function(object, name) { + if (options[name]) { + google.maps.event.addListener(object, name, function(e){ + options[name].apply(this, [e]); + }); + } + })(polygon, polygon_events[ev]); + } + + this.polygons.push(polygon); + + return polygon; +}; + +GMaps.prototype.drawRectangle = function(options) { + options = extend_object({ + map: this.map + }, options); + + var latLngBounds = new google.maps.LatLngBounds( + new google.maps.LatLng(options.bounds[0][0], options.bounds[0][1]), + new google.maps.LatLng(options.bounds[1][0], options.bounds[1][1]) + ); + + options.bounds = latLngBounds; + + var polygon = new google.maps.Rectangle(options), + polygon_events = ['click', 'dblclick', 'mousedown', 'mousemove', 'mouseout', 'mouseover', 'mouseup', 'rightclick']; + + for (var ev = 0; ev < polygon_events.length; ev++) { + (function(object, name) { + if (options[name]) { + google.maps.event.addListener(object, name, function(e){ + options[name].apply(this, [e]); + }); + } + })(polygon, polygon_events[ev]); + } + + this.polygons.push(polygon); + + return polygon; +}; + +GMaps.prototype.drawPolygon = function(options) { + var useGeoJSON = false; + + if(options.hasOwnProperty("useGeoJSON")) { + useGeoJSON = options.useGeoJSON; + } + + delete options.useGeoJSON; + + options = extend_object({ + map: this.map + }, options); + + if (useGeoJSON == false) { + options.paths = [options.paths.slice(0)]; + } + + if (options.paths.length > 0) { + if (options.paths[0].length > 0) { + options.paths = array_flat(array_map(options.paths, arrayToLatLng, useGeoJSON)); + } + } + + var polygon = new google.maps.Polygon(options), + polygon_events = ['click', 'dblclick', 'mousedown', 'mousemove', 'mouseout', 'mouseover', 'mouseup', 'rightclick']; + + for (var ev = 0; ev < polygon_events.length; ev++) { + (function(object, name) { + if (options[name]) { + google.maps.event.addListener(object, name, function(e){ + options[name].apply(this, [e]); + }); + } + })(polygon, polygon_events[ev]); + } + + this.polygons.push(polygon); + + GMaps.fire('polygon_added', polygon, this); + + return polygon; +}; + +GMaps.prototype.removePolygon = function(polygon) { + for (var i = 0; i < this.polygons.length; i++) { + if (this.polygons[i] === polygon) { + this.polygons[i].setMap(null); + this.polygons.splice(i, 1); + + GMaps.fire('polygon_removed', polygon, this); + + break; + } + } +}; + +GMaps.prototype.removePolygons = function() { + for (var i = 0, item; item = this.polygons[i]; i++) { + item.setMap(null); + } + + this.polygons = []; +}; diff --git a/public/assets/lib/gmaps/lib/gmaps.layers.js b/public/assets/lib/gmaps/lib/gmaps.layers.js new file mode 100755 index 0000000..b8ed339 --- /dev/null +++ b/public/assets/lib/gmaps/lib/gmaps.layers.js @@ -0,0 +1,158 @@ +GMaps.prototype.getFromFusionTables = function(options) { + var events = options.events; + + delete options.events; + + var fusion_tables_options = options, + layer = new google.maps.FusionTablesLayer(fusion_tables_options); + + for (var ev in events) { + (function(object, name) { + google.maps.event.addListener(object, name, function(e) { + events[name].apply(this, [e]); + }); + })(layer, ev); + } + + this.layers.push(layer); + + return layer; +}; + +GMaps.prototype.loadFromFusionTables = function(options) { + var layer = this.getFromFusionTables(options); + layer.setMap(this.map); + + return layer; +}; + +GMaps.prototype.getFromKML = function(options) { + var url = options.url, + events = options.events; + + delete options.url; + delete options.events; + + var kml_options = options, + layer = new google.maps.KmlLayer(url, kml_options); + + for (var ev in events) { + (function(object, name) { + google.maps.event.addListener(object, name, function(e) { + events[name].apply(this, [e]); + }); + })(layer, ev); + } + + this.layers.push(layer); + + return layer; +}; + +GMaps.prototype.loadFromKML = function(options) { + var layer = this.getFromKML(options); + layer.setMap(this.map); + + return layer; +}; + +GMaps.prototype.addLayer = function(layerName, options) { + //var default_layers = ['weather', 'clouds', 'traffic', 'transit', 'bicycling', 'panoramio', 'places']; + options = options || {}; + var layer; + + switch(layerName) { + case 'weather': this.singleLayers.weather = layer = new google.maps.weather.WeatherLayer(); + break; + case 'clouds': this.singleLayers.clouds = layer = new google.maps.weather.CloudLayer(); + break; + case 'traffic': this.singleLayers.traffic = layer = new google.maps.TrafficLayer(); + break; + case 'transit': this.singleLayers.transit = layer = new google.maps.TransitLayer(); + break; + case 'bicycling': this.singleLayers.bicycling = layer = new google.maps.BicyclingLayer(); + break; + case 'panoramio': + this.singleLayers.panoramio = layer = new google.maps.panoramio.PanoramioLayer(); + layer.setTag(options.filter); + delete options.filter; + + //click event + if (options.click) { + google.maps.event.addListener(layer, 'click', function(event) { + options.click(event); + delete options.click; + }); + } + break; + case 'places': + this.singleLayers.places = layer = new google.maps.places.PlacesService(this.map); + + //search, nearbySearch, radarSearch callback, Both are the same + if (options.search || options.nearbySearch || options.radarSearch) { + var placeSearchRequest = { + bounds : options.bounds || null, + keyword : options.keyword || null, + location : options.location || null, + name : options.name || null, + radius : options.radius || null, + rankBy : options.rankBy || null, + types : options.types || null + }; + + if (options.radarSearch) { + layer.radarSearch(placeSearchRequest, options.radarSearch); + } + + if (options.search) { + layer.search(placeSearchRequest, options.search); + } + + if (options.nearbySearch) { + layer.nearbySearch(placeSearchRequest, options.nearbySearch); + } + } + + //textSearch callback + if (options.textSearch) { + var textSearchRequest = { + bounds : options.bounds || null, + location : options.location || null, + query : options.query || null, + radius : options.radius || null + }; + + layer.textSearch(textSearchRequest, options.textSearch); + } + break; + } + + if (layer !== undefined) { + if (typeof layer.setOptions == 'function') { + layer.setOptions(options); + } + if (typeof layer.setMap == 'function') { + layer.setMap(this.map); + } + + return layer; + } +}; + +GMaps.prototype.removeLayer = function(layer) { + if (typeof(layer) == "string" && this.singleLayers[layer] !== undefined) { + this.singleLayers[layer].setMap(null); + + delete this.singleLayers[layer]; + } + else { + for (var i = 0; i < this.layers.length; i++) { + if (this.layers[i] === layer) { + this.layers[i].setMap(null); + this.layers.splice(i, 1); + + break; + } + } + } +}; diff --git a/public/assets/lib/gmaps/lib/gmaps.map_types.js b/public/assets/lib/gmaps/lib/gmaps.map_types.js new file mode 100755 index 0000000..46e748a --- /dev/null +++ b/public/assets/lib/gmaps/lib/gmaps.map_types.js @@ -0,0 +1,29 @@ +GMaps.prototype.addMapType = function(mapTypeId, options) { + if (options.hasOwnProperty("getTileUrl") && typeof(options["getTileUrl"]) == "function") { + options.tileSize = options.tileSize || new google.maps.Size(256, 256); + + var mapType = new google.maps.ImageMapType(options); + + this.map.mapTypes.set(mapTypeId, mapType); + } + else { + throw "'getTileUrl' function required."; + } +}; + +GMaps.prototype.addOverlayMapType = function(options) { + if (options.hasOwnProperty("getTile") && typeof(options["getTile"]) == "function") { + var overlayMapTypeIndex = options.index; + + delete options.index; + + this.map.overlayMapTypes.insertAt(overlayMapTypeIndex, options); + } + else { + throw "'getTile' function required."; + } +}; + +GMaps.prototype.removeOverlayMapType = function(overlayMapTypeIndex) { + this.map.overlayMapTypes.removeAt(overlayMapTypeIndex); +}; diff --git a/public/assets/lib/gmaps/lib/gmaps.markers.js b/public/assets/lib/gmaps/lib/gmaps.markers.js new file mode 100755 index 0000000..7a4409c --- /dev/null +++ b/public/assets/lib/gmaps/lib/gmaps.markers.js @@ -0,0 +1,210 @@ +GMaps.prototype.createMarker = function(options) { + if (options.lat == undefined && options.lng == undefined && options.position == undefined) { + throw 'No latitude or longitude defined.'; + } + + var self = this, + details = options.details, + fences = options.fences, + outside = options.outside, + base_options = { + position: new google.maps.LatLng(options.lat, options.lng), + map: null + }, + marker_options = extend_object(base_options, options); + + delete marker_options.lat; + delete marker_options.lng; + delete marker_options.fences; + delete marker_options.outside; + + var marker = new google.maps.Marker(marker_options); + + marker.fences = fences; + + if (options.infoWindow) { + marker.infoWindow = new google.maps.InfoWindow(options.infoWindow); + + var info_window_events = ['closeclick', 'content_changed', 'domready', 'position_changed', 'zindex_changed']; + + for (var ev = 0; ev < info_window_events.length; ev++) { + (function(object, name) { + if (options.infoWindow[name]) { + google.maps.event.addListener(object, name, function(e){ + options.infoWindow[name].apply(this, [e]); + }); + } + })(marker.infoWindow, info_window_events[ev]); + } + } + + var marker_events = ['animation_changed', 'clickable_changed', 'cursor_changed', 'draggable_changed', 'flat_changed', 'icon_changed', 'position_changed', 'shadow_changed', 'shape_changed', 'title_changed', 'visible_changed', 'zindex_changed']; + + var marker_events_with_mouse = ['dblclick', 'drag', 'dragend', 'dragstart', 'mousedown', 'mouseout', 'mouseover', 'mouseup']; + + for (var ev = 0; ev < marker_events.length; ev++) { + (function(object, name) { + if (options[name]) { + google.maps.event.addListener(object, name, function(){ + options[name].apply(this, [this]); + }); + } + })(marker, marker_events[ev]); + } + + for (var ev = 0; ev < marker_events_with_mouse.length; ev++) { + (function(map, object, name) { + if (options[name]) { + google.maps.event.addListener(object, name, function(me){ + if(!me.pixel){ + me.pixel = map.getProjection().fromLatLngToPoint(me.latLng) + } + + options[name].apply(this, [me]); + }); + } + })(this.map, marker, marker_events_with_mouse[ev]); + } + + google.maps.event.addListener(marker, 'click', function() { + this.details = details; + + if (options.click) { + options.click.apply(this, [this]); + } + + if (marker.infoWindow) { + self.hideInfoWindows(); + marker.infoWindow.open(self.map, marker); + } + }); + + google.maps.event.addListener(marker, 'rightclick', function(e) { + e.marker = this; + + if (options.rightclick) { + options.rightclick.apply(this, [e]); + } + + if (window.context_menu[self.el.id]['marker'] != undefined) { + self.buildContextMenu('marker', e); + } + }); + + if (marker.fences) { + google.maps.event.addListener(marker, 'dragend', function() { + self.checkMarkerGeofence(marker, function(m, f) { + outside(m, f); + }); + }); + } + + return marker; +}; + +GMaps.prototype.addMarker = function(options) { + var marker; + if(options.hasOwnProperty('gm_accessors_')) { + // Native google.maps.Marker object + marker = options; + } + else { + if ((options.hasOwnProperty('lat') && options.hasOwnProperty('lng')) || options.position) { + marker = this.createMarker(options); + } + else { + throw 'No latitude or longitude defined.'; + } + } + + marker.setMap(this.map); + + if(this.markerClusterer) { + this.markerClusterer.addMarker(marker); + } + + this.markers.push(marker); + + GMaps.fire('marker_added', marker, this); + + return marker; +}; + +GMaps.prototype.addMarkers = function(array) { + for (var i = 0, marker; marker=array[i]; i++) { + this.addMarker(marker); + } + + return this.markers; +}; + +GMaps.prototype.hideInfoWindows = function() { + for (var i = 0, marker; marker = this.markers[i]; i++){ + if (marker.infoWindow) { + marker.infoWindow.close(); + } + } +}; + +GMaps.prototype.removeMarker = function(marker) { + for (var i = 0; i < this.markers.length; i++) { + if (this.markers[i] === marker) { + this.markers[i].setMap(null); + this.markers.splice(i, 1); + + if(this.markerClusterer) { + this.markerClusterer.removeMarker(marker); + } + + GMaps.fire('marker_removed', marker, this); + + break; + } + } + + return marker; +}; + +GMaps.prototype.removeMarkers = function (collection) { + var new_markers = []; + + if (typeof collection == 'undefined') { + for (var i = 0; i < this.markers.length; i++) { + var marker = this.markers[i]; + marker.setMap(null); + + GMaps.fire('marker_removed', marker, this); + } + + if(this.markerClusterer && this.markerClusterer.clearMarkers) { + this.markerClusterer.clearMarkers(); + } + + this.markers = new_markers; + } + else { + for (var i = 0; i < collection.length; i++) { + var index = this.markers.indexOf(collection[i]); + + if (index > -1) { + var marker = this.markers[index]; + marker.setMap(null); + + if(this.markerClusterer) { + this.markerClusterer.removeMarker(marker); + } + + GMaps.fire('marker_removed', marker, this); + } + } + + for (var i = 0; i < this.markers.length; i++) { + var marker = this.markers[i]; + if (marker.getMap() != null) { + new_markers.push(marker); + } + } + + this.markers = new_markers; + } +}; diff --git a/public/assets/lib/gmaps/lib/gmaps.native_extensions.js b/public/assets/lib/gmaps/lib/gmaps.native_extensions.js new file mode 100755 index 0000000..33e980a --- /dev/null +++ b/public/assets/lib/gmaps/lib/gmaps.native_extensions.js @@ -0,0 +1,127 @@ +if (typeof window.google === 'object' && window.google.maps) { + //========================== + // Polygon containsLatLng + // https://github.com/tparkin/Google-Maps-Point-in-Polygon + // Poygon getBounds extension - google-maps-extensions + // http://code.google.com/p/google-maps-extensions/source/browse/google.maps.Polygon.getBounds.js + if (!google.maps.Polygon.prototype.getBounds) { + google.maps.Polygon.prototype.getBounds = function(latLng) { + var bounds = new google.maps.LatLngBounds(); + var paths = this.getPaths(); + var path; + + for (var p = 0; p < paths.getLength(); p++) { + path = paths.getAt(p); + for (var i = 0; i < path.getLength(); i++) { + bounds.extend(path.getAt(i)); + } + } + + return bounds; + }; + } + + if (!google.maps.Polygon.prototype.containsLatLng) { + // Polygon containsLatLng - method to determine if a latLng is within a polygon + google.maps.Polygon.prototype.containsLatLng = function(latLng) { + // Exclude points outside of bounds as there is no way they are in the poly + var bounds = this.getBounds(); + + if (bounds !== null && !bounds.contains(latLng)) { + return false; + } + + // Raycast point in polygon method + var inPoly = false; + + var numPaths = this.getPaths().getLength(); + for (var p = 0; p < numPaths; p++) { + var path = this.getPaths().getAt(p); + var numPoints = path.getLength(); + var j = numPoints - 1; + + for (var i = 0; i < numPoints; i++) { + var vertex1 = path.getAt(i); + var vertex2 = path.getAt(j); + + if (vertex1.lng() < latLng.lng() && vertex2.lng() >= latLng.lng() || vertex2.lng() < latLng.lng() && vertex1.lng() >= latLng.lng()) { + if (vertex1.lat() + (latLng.lng() - vertex1.lng()) / (vertex2.lng() - vertex1.lng()) * (vertex2.lat() - vertex1.lat()) < latLng.lat()) { + inPoly = !inPoly; + } + } + + j = i; + } + } + + return inPoly; + }; + } + + if (!google.maps.Circle.prototype.containsLatLng) { + google.maps.Circle.prototype.containsLatLng = function(latLng) { + if (google.maps.geometry) { + return google.maps.geometry.spherical.computeDistanceBetween(this.getCenter(), latLng) <= this.getRadius(); + } + else { + return true; + } + }; + } + + google.maps.Rectangle.prototype.containsLatLng = function(latLng) { + return this.getBounds().contains(latLng); + }; + + google.maps.LatLngBounds.prototype.containsLatLng = function(latLng) { + return this.contains(latLng); + }; + + google.maps.Marker.prototype.setFences = function(fences) { + this.fences = fences; + }; + + google.maps.Marker.prototype.addFence = function(fence) { + this.fences.push(fence); + }; + + google.maps.Marker.prototype.getId = function() { + return this['__gm_id']; + }; +} + +//========================== +// Array indexOf +// https://developer.mozilla.org/en-US/docs/JavaScript/Reference/Global_Objects/Array/indexOf +if (!Array.prototype.indexOf) { + Array.prototype.indexOf = function (searchElement /*, fromIndex */ ) { + "use strict"; + if (this == null) { + throw new TypeError(); + } + var t = Object(this); + var len = t.length >>> 0; + if (len === 0) { + return -1; + } + var n = 0; + if (arguments.length > 1) { + n = Number(arguments[1]); + if (n != n) { // shortcut for verifying if it's NaN + n = 0; + } else if (n != 0 && n != Infinity && n != -Infinity) { + n = (n > 0 || -1) * Math.floor(Math.abs(n)); + } + } + if (n >= len) { + return -1; + } + var k = n >= 0 ? n : Math.max(len - Math.abs(n), 0); + for (; k < len; k++) { + if (k in t && t[k] === searchElement) { + return k; + } + } + return -1; + } +} \ No newline at end of file diff --git a/public/assets/lib/gmaps/lib/gmaps.overlays.js b/public/assets/lib/gmaps/lib/gmaps.overlays.js new file mode 100755 index 0000000..957e801 --- /dev/null +++ b/public/assets/lib/gmaps/lib/gmaps.overlays.js @@ -0,0 +1,134 @@ +GMaps.prototype.drawOverlay = function(options) { + var overlay = new google.maps.OverlayView(), + auto_show = true; + + overlay.setMap(this.map); + + if (options.auto_show != null) { + auto_show = options.auto_show; + } + + overlay.onAdd = function() { + var el = document.createElement('div'); + + el.style.borderStyle = "none"; + el.style.borderWidth = "0px"; + el.style.position = "absolute"; + el.style.zIndex = 100; + el.innerHTML = options.content; + + overlay.el = el; + + if (!options.layer) { + options.layer = 'overlayLayer'; + } + + var panes = this.getPanes(), + overlayLayer = panes[options.layer], + stop_overlay_events = ['contextmenu', 'DOMMouseScroll', 'dblclick', 'mousedown']; + + overlayLayer.appendChild(el); + + for (var ev = 0; ev < stop_overlay_events.length; ev++) { + (function(object, name) { + google.maps.event.addDomListener(object, name, function(e){ + if (navigator.userAgent.toLowerCase().indexOf('msie') != -1 && document.all) { + e.cancelBubble = true; + e.returnValue = false; + } + else { + e.stopPropagation(); + } + }); + })(el, stop_overlay_events[ev]); + } + + if (options.click) { + panes.overlayMouseTarget.appendChild(overlay.el); + google.maps.event.addDomListener(overlay.el, 'click', function() { + options.click.apply(overlay, [overlay]); + }); + } + + google.maps.event.trigger(this, 'ready'); + }; + + overlay.draw = function() { + var projection = this.getProjection(), + pixel = projection.fromLatLngToDivPixel(new google.maps.LatLng(options.lat, options.lng)); + + options.horizontalOffset = options.horizontalOffset || 0; + options.verticalOffset = options.verticalOffset || 0; + + var el = overlay.el, + content = el.children[0], + content_height = content.clientHeight, + content_width = content.clientWidth; + + switch (options.verticalAlign) { + case 'top': + el.style.top = (pixel.y - content_height + options.verticalOffset) + 'px'; + break; + default: + case 'middle': + el.style.top = (pixel.y - (content_height / 2) + options.verticalOffset) + 'px'; + break; + case 'bottom': + el.style.top = (pixel.y + options.verticalOffset) + 'px'; + break; + } + + switch (options.horizontalAlign) { + case 'left': + el.style.left = (pixel.x - content_width + options.horizontalOffset) + 'px'; + break; + default: + case 'center': + el.style.left = (pixel.x - (content_width / 2) + options.horizontalOffset) + 'px'; + break; + case 'right': + el.style.left = (pixel.x + options.horizontalOffset) + 'px'; + break; + } + + el.style.display = auto_show ? 'block' : 'none'; + + if (!auto_show) { + options.show.apply(this, [el]); + } + }; + + overlay.onRemove = function() { + var el = overlay.el; + + if (options.remove) { + options.remove.apply(this, [el]); + } + else { + overlay.el.parentNode.removeChild(overlay.el); + overlay.el = null; + } + }; + + this.overlays.push(overlay); + return overlay; +}; + +GMaps.prototype.removeOverlay = function(overlay) { + for (var i = 0; i < this.overlays.length; i++) { + if (this.overlays[i] === overlay) { + this.overlays[i].setMap(null); + this.overlays.splice(i, 1); + + break; + } + } +}; + +GMaps.prototype.removeOverlays = function() { + for (var i = 0, item; item = this.overlays[i]; i++) { + item.setMap(null); + } + + this.overlays = []; +}; diff --git a/public/assets/lib/gmaps/lib/gmaps.routes.js b/public/assets/lib/gmaps/lib/gmaps.routes.js new file mode 100755 index 0000000..e967cfc --- /dev/null +++ b/public/assets/lib/gmaps/lib/gmaps.routes.js @@ -0,0 +1,363 @@ +var travelMode, unitSystem; + +GMaps.prototype.getRoutes = function(options) { + switch (options.travelMode) { + case 'bicycling': + travelMode = google.maps.TravelMode.BICYCLING; + break; + case 'transit': + travelMode = google.maps.TravelMode.TRANSIT; + break; + case 'driving': + travelMode = google.maps.TravelMode.DRIVING; + break; + default: + travelMode = google.maps.TravelMode.WALKING; + break; + } + + if (options.unitSystem === 'imperial') { + unitSystem = google.maps.UnitSystem.IMPERIAL; + } + else { + unitSystem = google.maps.UnitSystem.METRIC; + } + + var base_options = { + avoidHighways: false, + avoidTolls: false, + optimizeWaypoints: false, + waypoints: [] + }, + request_options = extend_object(base_options, options); + + request_options.origin = /string/.test(typeof options.origin) ? options.origin : new google.maps.LatLng(options.origin[0], options.origin[1]); + request_options.destination = /string/.test(typeof options.destination) ? options.destination : new google.maps.LatLng(options.destination[0], options.destination[1]); + request_options.travelMode = travelMode; + request_options.unitSystem = unitSystem; + + delete request_options.callback; + delete request_options.error; + + var self = this, + routes = [], + service = new google.maps.DirectionsService(); + + service.route(request_options, function(result, status) { + if (status === google.maps.DirectionsStatus.OK) { + for (var r in result.routes) { + if (result.routes.hasOwnProperty(r)) { + routes.push(result.routes[r]); + } + } + + if (options.callback) { + options.callback(routes, result, status); + } + } + else { + if (options.error) { + options.error(result, status); + } + } + }); +}; + +GMaps.prototype.removeRoutes = function() { + this.routes.length = 0; +}; + +GMaps.prototype.getElevations = function(options) { + options = extend_object({ + locations: [], + path : false, + samples : 256 + }, options); + + if (options.locations.length > 0) { + if (options.locations[0].length > 0) { + options.locations = array_flat(array_map([options.locations], arrayToLatLng, false)); + } + } + + var callback = options.callback; + delete options.callback; + + var service = new google.maps.ElevationService(); + + //location request + if (!options.path) { + delete options.path; + delete options.samples; + + service.getElevationForLocations(options, function(result, status) { + if (callback && typeof(callback) === "function") { + callback(result, status); + } + }); + //path request + } else { + var pathRequest = { + path : options.locations, + samples : options.samples + }; + + service.getElevationAlongPath(pathRequest, function(result, status) { + if (callback && typeof(callback) === "function") { + callback(result, status); + } + }); + } +}; + +GMaps.prototype.cleanRoute = GMaps.prototype.removePolylines; + +GMaps.prototype.renderRoute = function(options, renderOptions) { + var self = this, + panel = ((typeof renderOptions.panel === 'string') ? document.getElementById(renderOptions.panel.replace('#', '')) : renderOptions.panel), + display; + + renderOptions.panel = panel; + renderOptions = extend_object({ + map: this.map + }, renderOptions); + display = new google.maps.DirectionsRenderer(renderOptions); + + this.getRoutes({ + origin: options.origin, + destination: options.destination, + travelMode: options.travelMode, + waypoints: options.waypoints, + unitSystem: options.unitSystem, + error: options.error, + avoidHighways: options.avoidHighways, + avoidTolls: options.avoidTolls, + optimizeWaypoints: options.optimizeWaypoints, + callback: function(routes, response, status) { + if (status === google.maps.DirectionsStatus.OK) { + display.setDirections(response); + } + } + }); +}; + +GMaps.prototype.drawRoute = function(options) { + var self = this; + + this.getRoutes({ + origin: options.origin, + destination: options.destination, + travelMode: options.travelMode, + waypoints: options.waypoints, + unitSystem: options.unitSystem, + error: options.error, + avoidHighways: options.avoidHighways, + avoidTolls: options.avoidTolls, + optimizeWaypoints: options.optimizeWaypoints, + callback: function(routes) { + if (routes.length > 0) { + var polyline_options = { + path: routes[routes.length - 1].overview_path, + strokeColor: options.strokeColor, + strokeOpacity: options.strokeOpacity, + strokeWeight: options.strokeWeight + }; + + if (options.hasOwnProperty("icons")) { + polyline_options.icons = options.icons; + } + + self.drawPolyline(polyline_options); + + if (options.callback) { + options.callback(routes[routes.length - 1]); + } + } + } + }); +}; + +GMaps.prototype.travelRoute = function(options) { + if (options.origin && options.destination) { + this.getRoutes({ + origin: options.origin, + destination: options.destination, + travelMode: options.travelMode, + waypoints : options.waypoints, + unitSystem: options.unitSystem, + error: options.error, + callback: function(e) { + //start callback + if (e.length > 0 && options.start) { + options.start(e[e.length - 1]); + } + + //step callback + if (e.length > 0 && options.step) { + var route = e[e.length - 1]; + if (route.legs.length > 0) { + var steps = route.legs[0].steps; + for (var i = 0, step; step = steps[i]; i++) { + step.step_number = i; + options.step(step, (route.legs[0].steps.length - 1)); + } + } + } + + //end callback + if (e.length > 0 && options.end) { + options.end(e[e.length - 1]); + } + } + }); + } + else if (options.route) { + if (options.route.legs.length > 0) { + var steps = options.route.legs[0].steps; + for (var i = 0, step; step = steps[i]; i++) { + step.step_number = i; + options.step(step); + } + } + } +}; + +GMaps.prototype.drawSteppedRoute = function(options) { + var self = this; + + if (options.origin && options.destination) { + this.getRoutes({ + origin: options.origin, + destination: options.destination, + travelMode: options.travelMode, + waypoints : options.waypoints, + error: options.error, + callback: function(e) { + //start callback + if (e.length > 0 && options.start) { + options.start(e[e.length - 1]); + } + + //step callback + if (e.length > 0 && options.step) { + var route = e[e.length - 1]; + if (route.legs.length > 0) { + var steps = route.legs[0].steps; + for (var i = 0, step; step = steps[i]; i++) { + step.step_number = i; + var polyline_options = { + path: step.path, + strokeColor: options.strokeColor, + strokeOpacity: options.strokeOpacity, + strokeWeight: options.strokeWeight + }; + + if (options.hasOwnProperty("icons")) { + polyline_options.icons = options.icons; + } + + self.drawPolyline(polyline_options); + options.step(step, (route.legs[0].steps.length - 1)); + } + } + } + + //end callback + if (e.length > 0 && options.end) { + options.end(e[e.length - 1]); + } + } + }); + } + else if (options.route) { + if (options.route.legs.length > 0) { + var steps = options.route.legs[0].steps; + for (var i = 0, step; step = steps[i]; i++) { + step.step_number = i; + var polyline_options = { + path: step.path, + strokeColor: options.strokeColor, + strokeOpacity: options.strokeOpacity, + strokeWeight: options.strokeWeight + }; + + if (options.hasOwnProperty("icons")) { + polyline_options.icons = options.icons; + } + + self.drawPolyline(polyline_options); + options.step(step); + } + } + } +}; + +GMaps.Route = function(options) { + this.origin = options.origin; + this.destination = options.destination; + this.waypoints = options.waypoints; + + this.map = options.map; + this.route = options.route; + this.step_count = 0; + this.steps = this.route.legs[0].steps; + this.steps_length = this.steps.length; + + var polyline_options = { + path: new google.maps.MVCArray(), + strokeColor: options.strokeColor, + strokeOpacity: options.strokeOpacity, + strokeWeight: options.strokeWeight + }; + + if (options.hasOwnProperty("icons")) { + polyline_options.icons = options.icons; + } + + this.polyline = this.map.drawPolyline(polyline_options).getPath(); +}; + +GMaps.Route.prototype.getRoute = function(options) { + var self = this; + + this.map.getRoutes({ + origin : this.origin, + destination : this.destination, + travelMode : options.travelMode, + waypoints : this.waypoints || [], + error: options.error, + callback : function() { + self.route = e[0]; + + if (options.callback) { + options.callback.call(self); + } + } + }); +}; + +GMaps.Route.prototype.back = function() { + if (this.step_count > 0) { + this.step_count--; + var path = this.route.legs[0].steps[this.step_count].path; + + for (var p in path){ + if (path.hasOwnProperty(p)){ + this.polyline.pop(); + } + } + } +}; + +GMaps.Route.prototype.forward = function() { + if (this.step_count < this.steps_length) { + var path = this.route.legs[0].steps[this.step_count].path; + + for (var p in path){ + if (path.hasOwnProperty(p)){ + this.polyline.push(path[p]); + } + } + this.step_count++; + } +}; diff --git a/public/assets/lib/gmaps/lib/gmaps.static.js b/public/assets/lib/gmaps/lib/gmaps.static.js new file mode 100755 index 0000000..e8c5b08 --- /dev/null +++ b/public/assets/lib/gmaps/lib/gmaps.static.js @@ -0,0 +1,245 @@ +GMaps.prototype.toImage = function(options) { + var options = options || {}, + static_map_options = {}; + + static_map_options['size'] = options['size'] || [this.el.clientWidth, this.el.clientHeight]; + static_map_options['lat'] = this.getCenter().lat(); + static_map_options['lng'] = this.getCenter().lng(); + + if (this.markers.length > 0) { + static_map_options['markers'] = []; + + for (var i = 0; i < this.markers.length; i++) { + static_map_options['markers'].push({ + lat: this.markers[i].getPosition().lat(), + lng: this.markers[i].getPosition().lng() + }); + } + } + + if (this.polylines.length > 0) { + var polyline = this.polylines[0]; + + static_map_options['polyline'] = {}; + static_map_options['polyline']['path'] = google.maps.geometry.encoding.encodePath(polyline.getPath()); + static_map_options['polyline']['strokeColor'] = polyline.strokeColor + static_map_options['polyline']['strokeOpacity'] = polyline.strokeOpacity + static_map_options['polyline']['strokeWeight'] = polyline.strokeWeight + } + + return GMaps.staticMapURL(static_map_options); +}; + +GMaps.staticMapURL = function(options){ + var parameters = [], + data, + static_root = (location.protocol === 'file:' ? 'http:' : location.protocol ) + '//maps.googleapis.com/maps/api/staticmap'; + + if (options.url) { + static_root = options.url; + delete options.url; + } + + static_root += '?'; + + var markers = options.markers; + + delete options.markers; + + if (!markers && options.marker) { + markers = [options.marker]; + delete options.marker; + } + + var styles = options.styles; + + delete options.styles; + + var polyline = options.polyline; + delete options.polyline; + + /** Map options **/ + if (options.center) { + parameters.push('center=' + options.center); + delete options.center; + } + else if (options.address) { + parameters.push('center=' + options.address); + delete options.address; + } + else if (options.lat) { + parameters.push(['center=', options.lat, ',', options.lng].join('')); + delete options.lat; + delete options.lng; + } + else if (options.visible) { + var visible = encodeURI(options.visible.join('|')); + parameters.push('visible=' + visible); + } + + var size = options.size; + if (size) { + if (size.join) { + size = size.join('x'); + } + delete options.size; + } + else { + size = '630x300'; + } + parameters.push('size=' + size); + + if (!options.zoom && options.zoom !== false) { + options.zoom = 15; + } + + var sensor = options.hasOwnProperty('sensor') ? !!options.sensor : true; + delete options.sensor; + parameters.push('sensor=' + sensor); + + for (var param in options) { + if (options.hasOwnProperty(param)) { + parameters.push(param + '=' + options[param]); + } + } + + /** Markers **/ + if (markers) { + var marker, loc; + + for (var i = 0; data = markers[i]; i++) { + marker = []; + + if (data.size && data.size !== 'normal') { + marker.push('size:' + data.size); + delete data.size; + } + else if (data.icon) { + marker.push('icon:' + encodeURI(data.icon)); + delete data.icon; + } + + if (data.color) { + marker.push('color:' + data.color.replace('#', '0x')); + delete data.color; + } + + if (data.label) { + marker.push('label:' + data.label[0].toUpperCase()); + delete data.label; + } + + loc = (data.address ? data.address : data.lat + ',' + data.lng); + delete data.address; + delete data.lat; + delete data.lng; + + for(var param in data){ + if (data.hasOwnProperty(param)) { + marker.push(param + ':' + data[param]); + } + } + + if (marker.length || i === 0) { + marker.push(loc); + marker = marker.join('|'); + parameters.push('markers=' + encodeURI(marker)); + } + // New marker without styles + else { + marker = parameters.pop() + encodeURI('|' + loc); + parameters.push(marker); + } + } + } + + /** Map Styles **/ + if (styles) { + for (var i = 0; i < styles.length; i++) { + var styleRule = []; + if (styles[i].featureType){ + styleRule.push('feature:' + styles[i].featureType.toLowerCase()); + } + + if (styles[i].elementType) { + styleRule.push('element:' + styles[i].elementType.toLowerCase()); + } + + for (var j = 0; j < styles[i].stylers.length; j++) { + for (var p in styles[i].stylers[j]) { + var ruleArg = styles[i].stylers[j][p]; + if (p == 'hue' || p == 'color') { + ruleArg = '0x' + ruleArg.substring(1); + } + styleRule.push(p + ':' + ruleArg); + } + } + + var rule = styleRule.join('|'); + if (rule != '') { + parameters.push('style=' + rule); + } + } + } + + /** Polylines **/ + function parseColor(color, opacity) { + if (color[0] === '#'){ + color = color.replace('#', '0x'); + + if (opacity) { + opacity = parseFloat(opacity); + opacity = Math.min(1, Math.max(opacity, 0)); + if (opacity === 0) { + return '0x00000000'; + } + opacity = (opacity * 255).toString(16); + if (opacity.length === 1) { + opacity += opacity; + } + + color = color.slice(0,8) + opacity; + } + } + return color; + } + + if (polyline) { + data = polyline; + polyline = []; + + if (data.strokeWeight) { + polyline.push('weight:' + parseInt(data.strokeWeight, 10)); + } + + if (data.strokeColor) { + var color = parseColor(data.strokeColor, data.strokeOpacity); + polyline.push('color:' + color); + } + + if (data.fillColor) { + var fillcolor = parseColor(data.fillColor, data.fillOpacity); + polyline.push('fillcolor:' + fillcolor); + } + + var path = data.path; + if (path.join) { + for (var j=0, pos; pos=path[j]; j++) { + polyline.push(pos.join(',')); + } + } + else { + polyline.push('enc:' + path); + } + + polyline = polyline.join('|'); + parameters.push('path=' + encodeURI(polyline)); + } + + /** Retina support **/ + var dpi = window.devicePixelRatio || 1; + parameters.push('scale=' + dpi); + + parameters = parameters.join('&'); + return static_root + parameters; +}; diff --git a/public/assets/lib/gmaps/lib/gmaps.streetview.js b/public/assets/lib/gmaps/lib/gmaps.streetview.js new file mode 100755 index 0000000..fd1fa12 --- /dev/null +++ b/public/assets/lib/gmaps/lib/gmaps.streetview.js @@ -0,0 +1,44 @@ +GMaps.prototype.createPanorama = function(streetview_options) { + if (!streetview_options.hasOwnProperty('lat') || !streetview_options.hasOwnProperty('lng')) { + streetview_options.lat = this.getCenter().lat(); + streetview_options.lng = this.getCenter().lng(); + } + + this.panorama = GMaps.createPanorama(streetview_options); + + this.map.setStreetView(this.panorama); + + return this.panorama; +}; + +GMaps.createPanorama = function(options) { + var el = getElementById(options.el, options.context); + + options.position = new google.maps.LatLng(options.lat, options.lng); + + delete options.el; + delete options.context; + delete options.lat; + delete options.lng; + + var streetview_events = ['closeclick', 'links_changed', 'pano_changed', 'position_changed', 'pov_changed', 'resize', 'visible_changed'], + streetview_options = extend_object({visible : true}, options); + + for (var i = 0; i < streetview_events.length; i++) { + delete streetview_options[streetview_events[i]]; + } + + var panorama = new google.maps.StreetViewPanorama(el, streetview_options); + + for (var i = 0; i < streetview_events.length; i++) { + (function(object, name) { + if (options[name]) { + google.maps.event.addListener(object, name, function(){ + options[name].apply(this); + }); + } + })(panorama, streetview_events[i]); + } + + return panorama; +}; diff --git a/public/assets/lib/gmaps/lib/gmaps.styles.js b/public/assets/lib/gmaps/lib/gmaps.styles.js new file mode 100755 index 0000000..db06b45 --- /dev/null +++ b/public/assets/lib/gmaps/lib/gmaps.styles.js @@ -0,0 +1,9 @@ +GMaps.prototype.addStyle = function(options) { + var styledMapType = new google.maps.StyledMapType(options.styles, { name: options.styledMapName }); + + this.map.mapTypes.set(options.mapTypeId, styledMapType); +}; + +GMaps.prototype.setStyle = function(mapTypeId) { + this.map.setMapTypeId(mapTypeId); +}; diff --git a/public/assets/lib/gmaps/lib/gmaps.utils.js b/public/assets/lib/gmaps/lib/gmaps.utils.js new file mode 100755 index 0000000..6655363 --- /dev/null +++ b/public/assets/lib/gmaps/lib/gmaps.utils.js @@ -0,0 +1,42 @@ +GMaps.geolocate = function(options) { + var complete_callback = options.always || options.complete; + + if (navigator.geolocation) { + navigator.geolocation.getCurrentPosition(function(position) { + options.success(position); + + if (complete_callback) { + complete_callback(); + } + }, function(error) { + options.error(error); + + if (complete_callback) { + complete_callback(); + } + }, options.options); + } + else { + options.not_supported(); + + if (complete_callback) { + complete_callback(); + } + } +}; + +GMaps.geocode = function(options) { + this.geocoder = new google.maps.Geocoder(); + var callback = options.callback; + if (options.hasOwnProperty('lat') && options.hasOwnProperty('lng')) { + options.latLng = new google.maps.LatLng(options.lat, options.lng); + } + + delete options.lat; + delete options.lng; + delete options.callback; + + this.geocoder.geocode(options, function(results, status) { + callback(results, status); + }); +}; diff --git a/public/assets/lib/gmaps/umd.hbs b/public/assets/lib/gmaps/umd.hbs new file mode 100755 index 0000000..949adc8 --- /dev/null +++ b/public/assets/lib/gmaps/umd.hbs @@ -0,0 +1,19 @@ +"use strict"; +(function(root, factory) { + if(typeof exports === 'object') { + module.exports = factory({{{cjsDependencies}}}); + } + else if(typeof define === 'function' && define.amd) { + define({{#if amdModuleId}}'{{amdModuleId}}', {{/if}}[{{{amdDependencies}}}], factory); + } + else { + root.{{globalAlias}} = factory({{{globalDependencies}}}); + } + + +}(this, function({{dependencies}}) { + +{{{code}}} + +return {{objectToExport}}; +})); diff --git a/public/assets/lib/ion-rangeslider/css/ion.rangeSlider.css b/public/assets/lib/ion-rangeslider/css/ion.rangeSlider.css new file mode 100755 index 0000000..68fd119 --- /dev/null +++ b/public/assets/lib/ion-rangeslider/css/ion.rangeSlider.css @@ -0,0 +1,150 @@ +/* Ion.RangeSlider +// css version 2.0.3 +// © 2013-2014 Denis Ineshin | IonDen.com +// ===================================================================================================================*/ + +/* ===================================================================================================================== +// RangeSlider */ + +.irs { + position: relative; display: block; + -webkit-touch-callout: none; + -webkit-user-select: none; + -khtml-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; +} + .irs-line { + position: relative; display: block; + overflow: hidden; + outline: none !important; + } + .irs-line-left, .irs-line-mid, .irs-line-right { + position: absolute; display: block; + top: 0; + } + .irs-line-left { + left: 0; width: 11%; + } + .irs-line-mid { + left: 9%; width: 82%; + } + .irs-line-right { + right: 0; width: 11%; + } + + .irs-bar { + position: absolute; display: block; + left: 0; width: 0; + } + .irs-bar-edge { + position: absolute; display: block; + top: 0; left: 0; + } + + .irs-shadow { + position: absolute; display: none; + left: 0; width: 0; + } + + .irs-slider { + position: absolute; display: block; + cursor: default; + z-index: 1; + } + .irs-slider.single { + + } + .irs-slider.from { + + } + .irs-slider.to { + + } + .irs-slider.type_last { + z-index: 2; + } + + .irs-min { + position: absolute; display: block; + left: 0; + cursor: default; + } + .irs-max { + position: absolute; display: block; + right: 0; + cursor: default; + } + + .irs-from, .irs-to, .irs-single { + position: absolute; display: block; + top: 0; left: 0; + cursor: default; + white-space: nowrap; + } + +.irs-grid { + position: absolute; display: none; + bottom: 0; left: 0; + width: 100%; height: 20px; +} +.irs-with-grid .irs-grid { + display: block; +} + .irs-grid-pol { + position: absolute; + top: 0; left: 0; + width: 1px; height: 8px; + background: #000; + } + .irs-grid-pol.small { + height: 4px; + } + .irs-grid-text { + position: absolute; + bottom: 0; left: 0; + white-space: nowrap; + text-align: center; + font-size: 9px; line-height: 9px; + padding: 0 3px; + color: #000; + } + +.irs-disable-mask { + position: absolute; display: block; + top: 0; left: -1%; + width: 102%; height: 100%; + cursor: default; + background: rgba(0,0,0,0.0); + z-index: 2; +} +.lt-ie9 .irs-disable-mask { + background: #000; + filter: alpha(opacity=0); + cursor: not-allowed; +} + +.irs-disabled { + opacity: 0.4; +} + + +.irs-hidden-input { + position: absolute !important; + display: block !important; + top: 0 !important; + left: 0 !important; + width: 0 !important; + height: 0 !important; + font-size: 0 !important; + line-height: 0 !important; + padding: 0 !important; + margin: 0 !important; + overflow: hidden; + outline: none !important; + z-index: -9999 !important; + background: none !important; + border-style: solid !important; + border-color: transparent !important; +} diff --git a/public/assets/lib/ion-rangeslider/css/ion.rangeSlider.skinFlat.css b/public/assets/lib/ion-rangeslider/css/ion.rangeSlider.skinFlat.css new file mode 100755 index 0000000..166314e --- /dev/null +++ b/public/assets/lib/ion-rangeslider/css/ion.rangeSlider.skinFlat.css @@ -0,0 +1,106 @@ +/* Ion.RangeSlider, Flat UI Skin +// css version 2.0.3 +// © Denis Ineshin, 2014 https://github.com/IonDen +// ===================================================================================================================*/ + +/* ===================================================================================================================== +// Skin details */ + +.irs-line-mid, +.irs-line-left, +.irs-line-right, +.irs-bar, +.irs-bar-edge, +.irs-slider { + background: url(../img/sprite-skin-flat.png) repeat-x; +} + +.irs { + height: 40px; +} +.irs-with-grid { + height: 60px; +} +.irs-line { + height: 12px; top: 25px; +} + .irs-line-left { + height: 12px; + background-position: 0 -30px; + } + .irs-line-mid { + height: 12px; + background-position: 0 0; + } + .irs-line-right { + height: 12px; + background-position: 100% -30px; + } + +.irs-bar { + height: 12px; top: 25px; + background-position: 0 -60px; +} + .irs-bar-edge { + top: 25px; + height: 12px; width: 9px; + background-position: 0 -90px; + } + +.irs-shadow { + height: 3px; top: 34px; + background: #000; + opacity: 0.25; +} +.lt-ie9 .irs-shadow { + filter: alpha(opacity=25); +} + +.irs-slider { + width: 16px; height: 18px; + top: 22px; + background-position: 0 -120px; +} +.irs-slider.state_hover, .irs-slider:hover { + background-position: 0 -150px; +} + +.irs-min, .irs-max { + color: #999; + font-size: 10px; line-height: 1.333; + text-shadow: none; + top: 0; padding: 1px 3px; + background: #e1e4e9; + -moz-border-radius: 4px; + border-radius: 4px; +} + +.irs-from, .irs-to, .irs-single { + color: #fff; + font-size: 10px; line-height: 1.333; + text-shadow: none; + padding: 1px 5px; + background: #ed5565; + -moz-border-radius: 4px; + border-radius: 4px; +} +.irs-from:after, .irs-to:after, .irs-single:after { + position: absolute; display: block; content: ""; + bottom: -6px; left: 50%; + width: 0; height: 0; + margin-left: -3px; + overflow: hidden; + border: 3px solid transparent; + border-top-color: #ed5565; +} + + +.irs-grid-pol { + background: #e1e4e9; +} +.irs-grid-text { + color: #999; +} + +.irs-disabled { +} diff --git a/public/assets/lib/ion-rangeslider/css/ion.rangeSlider.skinHTML5.css b/public/assets/lib/ion-rangeslider/css/ion.rangeSlider.skinHTML5.css new file mode 100755 index 0000000..740d429 --- /dev/null +++ b/public/assets/lib/ion-rangeslider/css/ion.rangeSlider.skinHTML5.css @@ -0,0 +1,124 @@ +/* Ion.RangeSlider, Simple Skin +// css version 2.0.3 +// © Denis Ineshin, 2014 https://github.com/IonDen +// © guybowden, 2014 https://github.com/guybowden +// ===================================================================================================================*/ + +/* ===================================================================================================================== +// Skin details */ + +.irs { + height: 55px; +} +.irs-with-grid { + height: 75px; +} +.irs-line { + height: 10px; top: 33px; + background: #EEE; + background: linear-gradient(to bottom, #DDD -50%, #FFF 150%); /* W3C */ + border: 1px solid #CCC; + border-radius: 16px; + -moz-border-radius: 16px; +} + .irs-line-left { + height: 8px; + } + .irs-line-mid { + height: 8px; + } + .irs-line-right { + height: 8px; + } + +.irs-bar { + height: 10px; top: 33px; + border-top: 1px solid #428bca; + border-bottom: 1px solid #428bca; + background: #428bca; + background: linear-gradient(to top, rgba(66,139,202,1) 0%,rgba(127,195,232,1) 100%); /* W3C */ +} + .irs-bar-edge { + height: 10px; top: 33px; + width: 14px; + border: 1px solid #428bca; + border-right: 0; + background: #428bca; + background: linear-gradient(to top, rgba(66,139,202,1) 0%,rgba(127,195,232,1) 100%); /* W3C */ + border-radius: 16px 0 0 16px; + -moz-border-radius: 16px 0 0 16px; + } + +.irs-shadow { + height: 2px; top: 38px; + background: #000; + opacity: 0.3; + border-radius: 5px; + -moz-border-radius: 5px; +} +.lt-ie9 .irs-shadow { + filter: alpha(opacity=30); +} + +.irs-slider { + top: 25px; + width: 27px; height: 27px; + border: 1px solid #AAA; + background: #DDD; + background: linear-gradient(to bottom, rgba(255,255,255,1) 0%,rgba(220,220,220,1) 20%,rgba(255,255,255,1) 100%); /* W3C */ + border-radius: 27px; + -moz-border-radius: 27px; + box-shadow: 1px 1px 3px rgba(0,0,0,0.3); + cursor: pointer; +} + +.irs-slider.state_hover, .irs-slider:hover { + background: #FFF; +} + +.irs-min, .irs-max { + color: #333; + font-size: 12px; line-height: 1.333; + text-shadow: none; + top: 0; + padding: 1px 5px; + background: rgba(0,0,0,0.1); + border-radius: 3px; + -moz-border-radius: 3px; +} + +.lt-ie9 .irs-min, .lt-ie9 .irs-max { + background: #ccc; +} + +.irs-from, .irs-to, .irs-single { + color: #fff; + font-size: 14px; line-height: 1.333; + text-shadow: none; + padding: 1px 5px; + background: #428bca; + border-radius: 3px; + -moz-border-radius: 3px; +} +.lt-ie9 .irs-from, .lt-ie9 .irs-to, .lt-ie9 .irs-single { + background: #999; +} + +.irs-grid { + height: 27px; +} +.irs-grid-pol { + opacity: 0.5; + background: #428bca; +} +.irs-grid-pol.small { + background: #999; +} + +.irs-grid-text { + bottom: 5px; + color: #99a4ac; +} + +.irs-disabled { +} diff --git a/public/assets/lib/ion-rangeslider/css/ion.rangeSlider.skinModern.css b/public/assets/lib/ion-rangeslider/css/ion.rangeSlider.skinModern.css new file mode 100755 index 0000000..13009c1 --- /dev/null +++ b/public/assets/lib/ion-rangeslider/css/ion.rangeSlider.skinModern.css @@ -0,0 +1,116 @@ +/* Ion.RangeSlider, Modern Skin +// css version 2.0.3 +// © Denis Ineshin, 2014 https://github.com/IonDen +// ===================================================================================================================*/ + +/* ===================================================================================================================== +// Skin details */ + +.irs-line-mid, +.irs-line-left, +.irs-line-right, +.irs-bar, +.irs-bar-edge, +.irs-slider { + background: url(../img/sprite-skin-modern.png) repeat-x; +} + +.irs { + height: 50px; +} +.irs-with-grid { + height: 70px; +} +.irs-line { + height: 6px; top: 25px; +} + .irs-line-left { + height: 6px; + background-position: 0 -30px; + } + .irs-line-mid { + height: 6px; + background-position: 0 0; + } + .irs-line-right { + height: 6px; + background-position: 100% -30px; + } + +.irs-bar { + height: 6px; top: 25px; + background-position: 0 -60px; +} + .irs-bar-edge { + top: 25px; + height: 6px; width: 6px; + background-position: 0 -90px; + } + +.irs-shadow { + height: 5px; top: 25px; + background: #000; + opacity: 0.25; +} +.lt-ie9 .irs-shadow { + filter: alpha(opacity=25); +} + +.irs-slider { + width: 11px; height: 18px; + top: 31px; + background-position: 0 -120px; +} +.irs-slider.state_hover, .irs-slider:hover { + background-position: 0 -150px; +} + +.irs-min, .irs-max { + color: #999; + font-size: 10px; line-height: 1.333; + text-shadow: none; + top: 0; padding: 1px 3px; + background: #e1e4e9; + -moz-border-radius: 4px; + border-radius: 4px; +} + +.irs-from, .irs-to, .irs-single { + color: #fff; + font-size: 10px; line-height: 1.333; + text-shadow: none; + padding: 1px 5px; + background: #20b426; + -moz-border-radius: 4px; + border-radius: 4px; +} +.irs-from:after, .irs-to:after, .irs-single:after { + position: absolute; display: block; content: ""; + bottom: -6px; left: 50%; + width: 0; height: 0; + margin-left: -3px; + overflow: hidden; + border: 3px solid transparent; + border-top-color: #20b426; +} + +.irs-grid { + height: 34px; +} +.irs-grid-pol { + background: #c0c0c0; +} +.irs-grid-text { + bottom: 12px; + color: #c0c0c0; +} + +.irs-disable-mask { + +} +.irs-disabled { + +} +.lt-ie9 .irs-disabled { + +} diff --git a/public/assets/lib/ion-rangeslider/css/ion.rangeSlider.skinNice.css b/public/assets/lib/ion-rangeslider/css/ion.rangeSlider.skinNice.css new file mode 100755 index 0000000..57b20d1 --- /dev/null +++ b/public/assets/lib/ion-rangeslider/css/ion.rangeSlider.skinNice.css @@ -0,0 +1,102 @@ +/* Ion.RangeSlider, Nice Skin +// css version 2.0.3 +// © Denis Ineshin, 2014 https://github.com/IonDen +// ===================================================================================================================*/ + +/* ===================================================================================================================== +// Skin details */ + +.irs-line-mid, +.irs-line-left, +.irs-line-right, +.irs-bar, +.irs-bar-edge, +.irs-slider { + background: url(../img/sprite-skin-nice.png) repeat-x; +} + +.irs { + height: 40px; +} +.irs-with-grid { + height: 60px; +} +.irs-line { + height: 8px; top: 25px; +} + .irs-line-left { + height: 8px; + background-position: 0 -30px; + } + .irs-line-mid { + height: 8px; + background-position: 0 0; + } + .irs-line-right { + height: 8px; + background-position: 100% -30px; + } + +.irs-bar { + height: 8px; top: 25px; + background-position: 0 -60px; +} + .irs-bar-edge { + top: 25px; + height: 8px; width: 11px; + background-position: 0 -90px; + } + +.irs-shadow { + height: 1px; top: 34px; + background: #000; + opacity: 0.15; +} +.lt-ie9 .irs-shadow { + filter: alpha(opacity=15); +} + +.irs-slider { + width: 22px; height: 22px; + top: 17px; + background-position: 0 -120px; +} +.irs-slider.state_hover, .irs-slider:hover { + background-position: 0 -150px; +} + +.irs-min, .irs-max { + color: #999; + font-size: 10px; line-height: 1.333; + text-shadow: none; + top: 0; padding: 1px 3px; + background: rgba(0,0,0,0.1); + -moz-border-radius: 3px; + border-radius: 3px; +} +.lt-ie9 .irs-min, .lt-ie9 .irs-max { + background: #ccc; +} + +.irs-from, .irs-to, .irs-single { + color: #fff; + font-size: 10px; line-height: 1.333; + text-shadow: none; + padding: 1px 5px; + background: rgba(0,0,0,0.3); + -moz-border-radius: 3px; + border-radius: 3px; +} +.lt-ie9 .irs-from, .lt-ie9 .irs-to, .lt-ie9 .irs-single { + background: #999; +} + +.irs-grid-pol { + background: #99a4ac; +} +.irs-grid-text { + color: #99a4ac; +} + +.irs-disabled { +} diff --git a/public/assets/lib/ion-rangeslider/css/ion.rangeSlider.skinSimple.css b/public/assets/lib/ion-rangeslider/css/ion.rangeSlider.skinSimple.css new file mode 100755 index 0000000..34fc7e2 --- /dev/null +++ b/public/assets/lib/ion-rangeslider/css/ion.rangeSlider.skinSimple.css @@ -0,0 +1,102 @@ +/* Ion.RangeSlider, Simple Skin +// css version 2.0.3 +// © Denis Ineshin, 2014 https://github.com/IonDen +// ===================================================================================================================*/ + +/* ===================================================================================================================== +// Skin details */ + +.irs-line-mid, +.irs-line-left, +.irs-line-right, +.irs-bar, +.irs-bar-edge, +.irs-slider { + background: url(../img/sprite-skin-simple.png) repeat-x; +} + +.irs { + height: 40px; +} +.irs-with-grid { + height: 60px; +} +.irs-line { + height: 6px; top: 25px; +} + .irs-line-left { + height: 6px; + background-position: 0 -30px; + } + .irs-line-mid { + height: 6px; + background-position: 0 0; + } + .irs-line-right { + height: 6px; + background-position: 100% -30px; + } + +.irs-bar { + height: 6px; top: 25px; + background-position: 0 -60px; +} + .irs-bar-edge { + top: 25px; + height: 6px; width: 7px; + background-position: 0 -90px; + } + +.irs-shadow { + height: 1px; top: 34px; + background: #000; + opacity: 0.75; +} +.lt-ie9 .irs-shadow { + filter: alpha(opacity=75); +} + +.irs-slider { + width: 8px; height: 15px; + top: 21px; + background-position: 0 -120px; +} +.irs-slider.state_hover, .irs-slider:hover { + background-position: 0 -150px; +} + +.irs-min, .irs-max { + color: #c0c0c0; + font-size: 10px; line-height: 1.333; + text-shadow: none; + top: 0; padding: 1px 3px; + background: rgba(0,0,0,0.1); + -moz-border-radius: 3px; + border-radius: 3px; +} +.lt-ie9 .irs-min, .lt-ie9 .irs-max { + background: #3654b0; +} + +.irs-from, .irs-to, .irs-single { + color: #000; + font-size: 10px; line-height: 1.333; + text-shadow: none; + padding: 1px 5px; + background: rgba(255,255,255,0.8); + -moz-border-radius: 3px; + border-radius: 3px; +} +.lt-ie9 .irs-from, .lt-ie9 .irs-to, .lt-ie9 .irs-single { + background: #d8dff3; +} + +.irs-grid-pol { + background: #777; +} +.irs-grid-text { + color: #e0e0e0; +} + +.irs-disabled { +} diff --git a/public/assets/lib/ion-rangeslider/css/normalize.css b/public/assets/lib/ion-rangeslider/css/normalize.css new file mode 100755 index 0000000..46f646a --- /dev/null +++ b/public/assets/lib/ion-rangeslider/css/normalize.css @@ -0,0 +1,427 @@ +/*! normalize.css v3.0.2 | MIT License | git.io/normalize */ + +/** + * 1. Set default font family to sans-serif. + * 2. Prevent iOS text size adjust after orientation change, without disabling + * user zoom. + */ + +html { + font-family: sans-serif; /* 1 */ + -ms-text-size-adjust: 100%; /* 2 */ + -webkit-text-size-adjust: 100%; /* 2 */ +} + +/** + * Remove default margin. + */ + +body { + margin: 0; +} + +/* HTML5 display definitions + ========================================================================== */ + +/** + * Correct `block` display not defined for any HTML5 element in IE 8/9. + * Correct `block` display not defined for `details` or `summary` in IE 10/11 + * and Firefox. + * Correct `block` display not defined for `main` in IE 11. + */ + +article, +aside, +details, +figcaption, +figure, +footer, +header, +hgroup, +main, +menu, +nav, +section, +summary { + display: block; +} + +/** + * 1. Correct `inline-block` display not defined in IE 8/9. + * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera. + */ + +audio, +canvas, +progress, +video { + display: inline-block; /* 1 */ + vertical-align: baseline; /* 2 */ +} + +/** + * Prevent modern browsers from displaying `audio` without controls. + * Remove excess height in iOS 5 devices. + */ + +audio:not([controls]) { + display: none; + height: 0; +} + +/** + * Address `[hidden]` styling not present in IE 8/9/10. + * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22. + */ + +[hidden], +template { + display: none; +} + +/* Links + ========================================================================== */ + +/** + * Remove the gray background color from active links in IE 10. + */ + +a { + background-color: transparent; +} + +/** + * Improve readability when focused and also mouse hovered in all browsers. + */ + +a:active, +a:hover { + outline: 0; +} + +/* Text-level semantics + ========================================================================== */ + +/** + * Address styling not present in IE 8/9/10/11, Safari, and Chrome. + */ + +abbr[title] { + border-bottom: 1px dotted; +} + +/** + * Address style set to `bolder` in Firefox 4+, Safari, and Chrome. + */ + +b, +strong { + font-weight: bold; +} + +/** + * Address styling not present in Safari and Chrome. + */ + +dfn { + font-style: italic; +} + +/** + * Address variable `h1` font-size and margin within `section` and `article` + * contexts in Firefox 4+, Safari, and Chrome. + */ + +h1 { + font-size: 2em; + margin: 0.67em 0; +} + +/** + * Address styling not present in IE 8/9. + */ + +mark { + background: #ff0; + color: #000; +} + +/** + * Address inconsistent and variable font size in all browsers. + */ + +small { + font-size: 80%; +} + +/** + * Prevent `sub` and `sup` affecting `line-height` in all browsers. + */ + +sub, +sup { + font-size: 75%; + line-height: 0; + position: relative; + vertical-align: baseline; +} + +sup { + top: -0.5em; +} + +sub { + bottom: -0.25em; +} + +/* Embedded content + ========================================================================== */ + +/** + * Remove border when inside `a` element in IE 8/9/10. + */ + +img { + border: 0; +} + +/** + * Correct overflow not hidden in IE 9/10/11. + */ + +svg:not(:root) { + overflow: hidden; +} + +/* Grouping content + ========================================================================== */ + +/** + * Address margin not present in IE 8/9 and Safari. + */ + +figure { + margin: 1em 40px; +} + +/** + * Address differences between Firefox and other browsers. + */ + +hr { + -moz-box-sizing: content-box; + box-sizing: content-box; + height: 0; +} + +/** + * Contain overflow in all browsers. + */ + +pre { + overflow: auto; +} + +/** + * Address odd `em`-unit font size rendering in all browsers. + */ + +code, +kbd, +pre, +samp { + font-family: monospace, monospace; + font-size: 1em; +} + +/* Forms + ========================================================================== */ + +/** + * Known limitation: by default, Chrome and Safari on OS X allow very limited + * styling of `select`, unless a `border` property is set. + */ + +/** + * 1. Correct color not being inherited. + * Known issue: affects color of disabled elements. + * 2. Correct font properties not being inherited. + * 3. Address margins set differently in Firefox 4+, Safari, and Chrome. + */ + +button, +input, +optgroup, +select, +textarea { + color: inherit; /* 1 */ + font: inherit; /* 2 */ + margin: 0; /* 3 */ +} + +/** + * Address `overflow` set to `hidden` in IE 8/9/10/11. + */ + +button { + overflow: visible; +} + +/** + * Address inconsistent `text-transform` inheritance for `button` and `select`. + * All other form control elements do not inherit `text-transform` values. + * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera. + * Correct `select` style inheritance in Firefox. + */ + +button, +select { + text-transform: none; +} + +/** + * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio` + * and `video` controls. + * 2. Correct inability to style clickable `input` types in iOS. + * 3. Improve usability and consistency of cursor style between image-type + * `input` and others. + */ + +button, +html input[type="button"], /* 1 */ +input[type="reset"], +input[type="submit"] { + -webkit-appearance: button; /* 2 */ + cursor: pointer; /* 3 */ +} + +/** + * Re-set default cursor for disabled elements. + */ + +button[disabled], +html input[disabled] { + cursor: default; +} + +/** + * Remove inner padding and border in Firefox 4+. + */ + +button::-moz-focus-inner, +input::-moz-focus-inner { + border: 0; + padding: 0; +} + +/** + * Address Firefox 4+ setting `line-height` on `input` using `!important` in + * the UA stylesheet. + */ + +input { + line-height: normal; +} + +/** + * It's recommended that you don't attempt to style these elements. + * Firefox's implementation doesn't respect box-sizing, padding, or width. + * + * 1. Address box sizing set to `content-box` in IE 8/9/10. + * 2. Remove excess padding in IE 8/9/10. + */ + +input[type="checkbox"], +input[type="radio"] { + box-sizing: border-box; /* 1 */ + padding: 0; /* 2 */ +} + +/** + * Fix the cursor style for Chrome's increment/decrement buttons. For certain + * `font-size` values of the `input`, it causes the cursor style of the + * decrement button to change from `default` to `text`. + */ + +input[type="number"]::-webkit-inner-spin-button, +input[type="number"]::-webkit-outer-spin-button { + height: auto; +} + +/** + * 1. Address `appearance` set to `searchfield` in Safari and Chrome. + * 2. Address `box-sizing` set to `border-box` in Safari and Chrome + * (include `-moz` to future-proof). + */ + +input[type="search"] { + -webkit-appearance: textfield; /* 1 */ + -moz-box-sizing: content-box; + -webkit-box-sizing: content-box; /* 2 */ + box-sizing: content-box; +} + +/** + * Remove inner padding and search cancel button in Safari and Chrome on OS X. + * Safari (but not Chrome) clips the cancel button when the search input has + * padding (and `textfield` appearance). + */ + +input[type="search"]::-webkit-search-cancel-button, +input[type="search"]::-webkit-search-decoration { + -webkit-appearance: none; +} + +/** + * Define consistent border, margin, and padding. + */ + +fieldset { + border: 1px solid #c0c0c0; + margin: 0 2px; + padding: 0.35em 0.625em 0.75em; +} + +/** + * 1. Correct `color` not being inherited in IE 8/9/10/11. + * 2. Remove padding so people aren't caught out if they zero out fieldsets. + */ + +legend { + border: 0; /* 1 */ + padding: 0; /* 2 */ +} + +/** + * Remove default vertical scrollbar in IE 8/9/10/11. + */ + +textarea { + overflow: auto; +} + +/** + * Don't inherit the `font-weight` (applied by a rule above). + * NOTE: the default cannot safely be changed in Chrome and Safari on OS X. + */ + +optgroup { + font-weight: bold; +} + +/* Tables + ========================================================================== */ + +/** + * Remove most spacing between table cells. + */ + +table { + border-collapse: collapse; + border-spacing: 0; +} + +td, +th { + padding: 0; +} diff --git a/public/assets/lib/ion-rangeslider/img/sprite-skin-flat.png b/public/assets/lib/ion-rangeslider/img/sprite-skin-flat.png new file mode 100755 index 0000000..0f11c7c Binary files /dev/null and b/public/assets/lib/ion-rangeslider/img/sprite-skin-flat.png differ diff --git a/public/assets/lib/ion-rangeslider/img/sprite-skin-modern.png b/public/assets/lib/ion-rangeslider/img/sprite-skin-modern.png new file mode 100755 index 0000000..c9060f2 Binary files /dev/null and b/public/assets/lib/ion-rangeslider/img/sprite-skin-modern.png differ diff --git a/public/assets/lib/ion-rangeslider/img/sprite-skin-nice.png b/public/assets/lib/ion-rangeslider/img/sprite-skin-nice.png new file mode 100755 index 0000000..9b0a4bc Binary files /dev/null and b/public/assets/lib/ion-rangeslider/img/sprite-skin-nice.png differ diff --git a/public/assets/lib/ion-rangeslider/img/sprite-skin-simple.png b/public/assets/lib/ion-rangeslider/img/sprite-skin-simple.png new file mode 100755 index 0000000..0dc5e68 Binary files /dev/null and b/public/assets/lib/ion-rangeslider/img/sprite-skin-simple.png differ diff --git a/public/assets/lib/ion-rangeslider/js/ion.rangeSlider.min.js b/public/assets/lib/ion-rangeslider/js/ion.rangeSlider.min.js new file mode 100755 index 0000000..9844323 --- /dev/null +++ b/public/assets/lib/ion-rangeslider/js/ion.rangeSlider.min.js @@ -0,0 +1,81 @@ +// Ion.RangeSlider | version 2.2.0 | https://github.com/IonDen/ion.rangeSlider +;(function(f){"function"===typeof define&&define.amd?define(["jquery"],function(n){return f(n,document,window,navigator)}):"object"===typeof exports?f(require("jquery"),document,window,navigator):f(jQuery,document,window,navigator)})(function(f,n,k,r,p){var t=0,m=function(){var a=r.userAgent,b=/msie\s\d+/i;return 0a)?(f("html").addClass("lt-ie9"),!0):!1}();Function.prototype.bind||(Function.prototype.bind=function(a){var b=this,d=[].slice;if("function"!= +typeof b)throw new TypeError;var c=d.call(arguments,1),e=function(){if(this instanceof e){var g=function(){};g.prototype=b.prototype;var g=new g,l=b.apply(g,c.concat(d.call(arguments)));return Object(l)===l?l:g}return b.apply(a,c.concat(d.call(arguments)))};return e});Array.prototype.indexOf||(Array.prototype.indexOf=function(a,b){if(null==this)throw new TypeError('"this" is null or not defined');var d=Object(this),c=d.length>>>0;if(0===c)return-1;var e=+b||0;Infinity===Math.abs(e)&&(e=0);if(e>=c)return-1; +for(e=Math.max(0<=e?e:c-Math.abs(e),0);e!",c[0]);c={type:c.data("type"),min:c.data("min"),max:c.data("max"),from:c.data("from"),to:c.data("to"),step:c.data("step"), +min_interval:c.data("minInterval"),max_interval:c.data("maxInterval"),drag_interval:c.data("dragInterval"),values:c.data("values"),from_fixed:c.data("fromFixed"),from_min:c.data("fromMin"),from_max:c.data("fromMax"),from_shadow:c.data("fromShadow"),to_fixed:c.data("toFixed"),to_min:c.data("toMin"),to_max:c.data("toMax"),to_shadow:c.data("toShadow"),prettify_enabled:c.data("prettifyEnabled"),prettify_separator:c.data("prettifySeparator"),force_edges:c.data("forceEdges"),keyboard:c.data("keyboard"), +grid:c.data("grid"),grid_margin:c.data("gridMargin"),grid_num:c.data("gridNum"),grid_snap:c.data("gridSnap"),hide_min_max:c.data("hideMinMax"),hide_from_to:c.data("hideFromTo"),prefix:c.data("prefix"),postfix:c.data("postfix"),max_postfix:c.data("maxPostfix"),decorate_both:c.data("decorateBoth"),values_separator:c.data("valuesSeparator"),input_values_separator:c.data("inputValuesSeparator"),disable:c.data("disable"),block:c.data("block"),extra_classes:c.data("extraClasses")};c.values=c.values&&c.values.split(","); +for(e in c)c.hasOwnProperty(e)&&(c[e]!==p&&""!==c[e]||delete c[e]);a!==p&&""!==a&&(a=a.split(c.input_values_separator||b.input_values_separator||";"),a[0]&&a[0]==+a[0]&&(a[0]=+a[0]),a[1]&&a[1]==+a[1]&&(a[1]=+a[1]),b&&b.values&&b.values.length?(d.from=a[0]&&b.values.indexOf(a[0]),d.to=a[1]&&b.values.indexOf(a[1])):(d.from=a[0]&&+a[0],d.to=a[1]&&+a[1]));f.extend(d,b);f.extend(d,c);this.options=d;this.update_check={};this.validate();this.result={input:this.$cache.input,slider:null,min:this.options.min, +max:this.options.max,from:this.options.from,from_percent:0,from_value:null,to:this.options.to,to_percent:0,to_value:null};this.init()};q.prototype={init:function(a){this.no_diapason=!1;this.coords.p_step=this.convertToPercent(this.options.step,!0);this.target="base";this.toggleInput();this.append();this.setMinMax();a?(this.force_redraw=!0,this.calc(!0),this.callOnUpdate()):(this.force_redraw=!0,this.calc(!0),this.callOnStart());this.updateScene()},append:function(){this.$cache.input.before('');this.$cache.input.prop("readonly",!0);this.$cache.cont=this.$cache.input.prev();this.result.slider=this.$cache.cont;this.$cache.cont.html('01000'); +this.$cache.rs=this.$cache.cont.find(".irs");this.$cache.min=this.$cache.cont.find(".irs-min");this.$cache.max=this.$cache.cont.find(".irs-max");this.$cache.from=this.$cache.cont.find(".irs-from");this.$cache.to=this.$cache.cont.find(".irs-to");this.$cache.single=this.$cache.cont.find(".irs-single");this.$cache.bar=this.$cache.cont.find(".irs-bar");this.$cache.line=this.$cache.cont.find(".irs-line");this.$cache.grid=this.$cache.cont.find(".irs-grid");"single"===this.options.type?(this.$cache.cont.append(''), +this.$cache.edge=this.$cache.cont.find(".irs-bar-edge"),this.$cache.s_single=this.$cache.cont.find(".single"),this.$cache.from[0].style.visibility="hidden",this.$cache.to[0].style.visibility="hidden",this.$cache.shad_single=this.$cache.cont.find(".shadow-single")):(this.$cache.cont.append(''),this.$cache.s_from=this.$cache.cont.find(".from"), +this.$cache.s_to=this.$cache.cont.find(".to"),this.$cache.shad_from=this.$cache.cont.find(".shadow-from"),this.$cache.shad_to=this.$cache.cont.find(".shadow-to"),this.setTopHandler());this.options.hide_from_to&&(this.$cache.from[0].style.display="none",this.$cache.to[0].style.display="none",this.$cache.single[0].style.display="none");this.appendGrid();this.options.disable?(this.appendDisableMask(),this.$cache.input[0].disabled=!0):(this.$cache.input[0].disabled=!1,this.removeDisableMask(),this.bindEvents()); +this.options.disable||(this.options.block?this.appendDisableMask():this.removeDisableMask());this.options.drag_interval&&(this.$cache.bar[0].style.cursor="ew-resize")},setTopHandler:function(){var a=this.options.max,b=this.options.to;this.options.from>this.options.min&&b===a?this.$cache.s_from.addClass("type_last"):b');this.$cache.cont.addClass("irs-disabled")},removeDisableMask:function(){this.$cache.cont.remove(".irs-disable-mask");this.$cache.cont.removeClass("irs-disabled")},remove:function(){this.$cache.cont.remove();this.$cache.cont= +null;this.$cache.line.off("keydown.irs_"+this.plugin_count);this.$cache.body.off("touchmove.irs_"+this.plugin_count);this.$cache.body.off("mousemove.irs_"+this.plugin_count);this.$cache.win.off("touchend.irs_"+this.plugin_count);this.$cache.win.off("mouseup.irs_"+this.plugin_count);m&&(this.$cache.body.off("mouseup.irs_"+this.plugin_count),this.$cache.body.off("mouseleave.irs_"+this.plugin_count));this.$cache.grid_labels=[];this.coords.big=[];this.coords.big_w=[];this.coords.big_p=[];this.coords.big_x= +[];cancelAnimationFrame(this.raf_id)},bindEvents:function(){if(!this.no_diapason){this.$cache.body.on("touchmove.irs_"+this.plugin_count,this.pointerMove.bind(this));this.$cache.body.on("mousemove.irs_"+this.plugin_count,this.pointerMove.bind(this));this.$cache.win.on("touchend.irs_"+this.plugin_count,this.pointerUp.bind(this));this.$cache.win.on("mouseup.irs_"+this.plugin_count,this.pointerUp.bind(this));this.$cache.line.on("touchstart.irs_"+this.plugin_count,this.pointerClick.bind(this,"click")); +this.$cache.line.on("mousedown.irs_"+this.plugin_count,this.pointerClick.bind(this,"click"));this.$cache.line.on("focus.irs_"+this.plugin_count,this.pointerFocus.bind(this));this.options.drag_interval&&"double"===this.options.type?(this.$cache.bar.on("touchstart.irs_"+this.plugin_count,this.pointerDown.bind(this,"both")),this.$cache.bar.on("mousedown.irs_"+this.plugin_count,this.pointerDown.bind(this,"both"))):(this.$cache.bar.on("touchstart.irs_"+this.plugin_count,this.pointerClick.bind(this,"click")), +this.$cache.bar.on("mousedown.irs_"+this.plugin_count,this.pointerClick.bind(this,"click")));"single"===this.options.type?(this.$cache.single.on("touchstart.irs_"+this.plugin_count,this.pointerDown.bind(this,"single")),this.$cache.s_single.on("touchstart.irs_"+this.plugin_count,this.pointerDown.bind(this,"single")),this.$cache.shad_single.on("touchstart.irs_"+this.plugin_count,this.pointerClick.bind(this,"click")),this.$cache.single.on("mousedown.irs_"+this.plugin_count,this.pointerDown.bind(this, +"single")),this.$cache.s_single.on("mousedown.irs_"+this.plugin_count,this.pointerDown.bind(this,"single")),this.$cache.edge.on("mousedown.irs_"+this.plugin_count,this.pointerClick.bind(this,"click")),this.$cache.shad_single.on("mousedown.irs_"+this.plugin_count,this.pointerClick.bind(this,"click"))):(this.$cache.single.on("touchstart.irs_"+this.plugin_count,this.pointerDown.bind(this,null)),this.$cache.single.on("mousedown.irs_"+this.plugin_count,this.pointerDown.bind(this,null)),this.$cache.from.on("touchstart.irs_"+ +this.plugin_count,this.pointerDown.bind(this,"from")),this.$cache.s_from.on("touchstart.irs_"+this.plugin_count,this.pointerDown.bind(this,"from")),this.$cache.to.on("touchstart.irs_"+this.plugin_count,this.pointerDown.bind(this,"to")),this.$cache.s_to.on("touchstart.irs_"+this.plugin_count,this.pointerDown.bind(this,"to")),this.$cache.shad_from.on("touchstart.irs_"+this.plugin_count,this.pointerClick.bind(this,"click")),this.$cache.shad_to.on("touchstart.irs_"+this.plugin_count,this.pointerClick.bind(this, +"click")),this.$cache.from.on("mousedown.irs_"+this.plugin_count,this.pointerDown.bind(this,"from")),this.$cache.s_from.on("mousedown.irs_"+this.plugin_count,this.pointerDown.bind(this,"from")),this.$cache.to.on("mousedown.irs_"+this.plugin_count,this.pointerDown.bind(this,"to")),this.$cache.s_to.on("mousedown.irs_"+this.plugin_count,this.pointerDown.bind(this,"to")),this.$cache.shad_from.on("mousedown.irs_"+this.plugin_count,this.pointerClick.bind(this,"click")),this.$cache.shad_to.on("mousedown.irs_"+ +this.plugin_count,this.pointerClick.bind(this,"click")));if(this.options.keyboard)this.$cache.line.on("keydown.irs_"+this.plugin_count,this.key.bind(this,"keyboard"));m&&(this.$cache.body.on("mouseup.irs_"+this.plugin_count,this.pointerUp.bind(this)),this.$cache.body.on("mouseleave.irs_"+this.plugin_count,this.pointerUp.bind(this)))}},pointerFocus:function(a){if(!this.target){var b="single"===this.options.type?this.$cache.single:this.$cache.from;a=b.offset().left;a+=b.width()/2-1;this.pointerClick("single", +{preventDefault:function(){},pageX:a})}},pointerMove:function(a){this.dragging&&(this.coords.x_pointer=(a.pageX||a.originalEvent.touches&&a.originalEvent.touches[0].pageX)-this.coords.x_gap,this.calc())},pointerUp:function(a){this.current_plugin===this.plugin_count&&this.is_active&&(this.is_active=!1,this.$cache.cont.find(".state_hover").removeClass("state_hover"),this.force_redraw=!0,m&&f("*").prop("unselectable",!1),this.updateScene(),this.restoreOriginalMinInterval(),(f.contains(this.$cache.cont[0], +a.target)||this.dragging)&&this.callOnFinish(),this.dragging=!1)},pointerDown:function(a,b){b.preventDefault();var d=b.pageX||b.originalEvent.touches&&b.originalEvent.touches[0].pageX;2!==b.button&&("both"===a&&this.setTempMinInterval(),a||(a=this.target||"from"),this.current_plugin=this.plugin_count,this.target=a,this.dragging=this.is_active=!0,this.coords.x_gap=this.$cache.rs.offset().left,this.coords.x_pointer=d-this.coords.x_gap,this.calcPointerPercent(),this.changeLevel(a),m&&f("*").prop("unselectable", +!0),this.$cache.line.trigger("focus"),this.updateScene())},pointerClick:function(a,b){b.preventDefault();var d=b.pageX||b.originalEvent.touches&&b.originalEvent.touches[0].pageX;2!==b.button&&(this.current_plugin=this.plugin_count,this.target=a,this.is_click=!0,this.coords.x_gap=this.$cache.rs.offset().left,this.coords.x_pointer=+(d-this.coords.x_gap).toFixed(),this.force_redraw=!0,this.calc(),this.$cache.line.trigger("focus"))},key:function(a,b){if(!(this.current_plugin!==this.plugin_count||b.altKey|| +b.ctrlKey||b.shiftKey||b.metaKey)){switch(b.which){case 83:case 65:case 40:case 37:b.preventDefault();this.moveByKey(!1);break;case 87:case 68:case 38:case 39:b.preventDefault(),this.moveByKey(!0)}return!0}},moveByKey:function(a){var b=this.coords.p_pointer,d=(this.options.max-this.options.min)/100,d=this.options.step/d;this.coords.x_pointer=this.toFixed(this.coords.w_rs/100*(a?b+d:b-d));this.is_key=!0;this.calc()},setMinMax:function(){if(this.options)if(this.options.hide_min_max)this.$cache.min[0].style.display= +"none",this.$cache.max[0].style.display="none";else{if(this.options.values.length)this.$cache.min.html(this.decorate(this.options.p_values[this.options.min])),this.$cache.max.html(this.decorate(this.options.p_values[this.options.max]));else{var a=this._prettify(this.options.min),b=this._prettify(this.options.max);this.result.min_pretty=a;this.result.max_pretty=b;this.$cache.min.html(this.decorate(a,this.options.min));this.$cache.max.html(this.decorate(b,this.options.max))}this.labels.w_min=this.$cache.min.outerWidth(!1); +this.labels.w_max=this.$cache.max.outerWidth(!1)}},setTempMinInterval:function(){var a=this.result.to-this.result.from;null===this.old_min_interval&&(this.old_min_interval=this.options.min_interval);this.options.min_interval=a},restoreOriginalMinInterval:function(){null!==this.old_min_interval&&(this.options.min_interval=this.old_min_interval,this.old_min_interval=null)},calc:function(a){if(this.options){this.calc_count++;if(10===this.calc_count||a)this.calc_count=0,this.coords.w_rs=this.$cache.rs.outerWidth(!1), +this.calcHandlePercent();if(this.coords.w_rs){this.calcPointerPercent();a=this.getHandleX();"both"===this.target&&(this.coords.p_gap=0,a=this.getHandleX());"click"===this.target&&(this.coords.p_gap=this.coords.p_handle/2,a=this.getHandleX(),this.target=this.options.drag_interval?"both_one":this.chooseHandle(a));switch(this.target){case "base":var b=(this.options.max-this.options.min)/100;a=(this.result.from-this.options.min)/b;b=(this.result.to-this.options.min)/b;this.coords.p_single_real=this.toFixed(a); +this.coords.p_from_real=this.toFixed(a);this.coords.p_to_real=this.toFixed(b);this.coords.p_single_real=this.checkDiapason(this.coords.p_single_real,this.options.from_min,this.options.from_max);this.coords.p_from_real=this.checkDiapason(this.coords.p_from_real,this.options.from_min,this.options.from_max);this.coords.p_to_real=this.checkDiapason(this.coords.p_to_real,this.options.to_min,this.options.to_max);this.coords.p_single_fake=this.convertToFakePercent(this.coords.p_single_real);this.coords.p_from_fake= +this.convertToFakePercent(this.coords.p_from_real);this.coords.p_to_fake=this.convertToFakePercent(this.coords.p_to_real);this.target=null;break;case "single":if(this.options.from_fixed)break;this.coords.p_single_real=this.convertToRealPercent(a);this.coords.p_single_real=this.calcWithStep(this.coords.p_single_real);this.coords.p_single_real=this.checkDiapason(this.coords.p_single_real,this.options.from_min,this.options.from_max);this.coords.p_single_fake=this.convertToFakePercent(this.coords.p_single_real); +break;case "from":if(this.options.from_fixed)break;this.coords.p_from_real=this.convertToRealPercent(a);this.coords.p_from_real=this.calcWithStep(this.coords.p_from_real);this.coords.p_from_real>this.coords.p_to_real&&(this.coords.p_from_real=this.coords.p_to_real);this.coords.p_from_real=this.checkDiapason(this.coords.p_from_real,this.options.from_min,this.options.from_max);this.coords.p_from_real=this.checkMinInterval(this.coords.p_from_real,this.coords.p_to_real,"from");this.coords.p_from_real= +this.checkMaxInterval(this.coords.p_from_real,this.coords.p_to_real,"from");this.coords.p_from_fake=this.convertToFakePercent(this.coords.p_from_real);break;case "to":if(this.options.to_fixed)break;this.coords.p_to_real=this.convertToRealPercent(a);this.coords.p_to_real=this.calcWithStep(this.coords.p_to_real);this.coords.p_to_realb&&(b=0,d=b+a);100this.coords.x_pointer||isNaN(this.coords.x_pointer)?this.coords.x_pointer= +0:this.coords.x_pointer>this.coords.w_rs&&(this.coords.x_pointer=this.coords.w_rs),this.coords.p_pointer=this.toFixed(this.coords.x_pointer/this.coords.w_rs*100)):this.coords.p_pointer=0},convertToRealPercent:function(a){return a/(100-this.coords.p_handle)*100},convertToFakePercent:function(a){return a/100*(100-this.coords.p_handle)},getHandleX:function(){var a=100-this.coords.p_handle,b=this.toFixed(this.coords.p_pointer-this.coords.p_gap);0>b?b=0:b>a&&(b=a);return b},calcHandlePercent:function(){this.coords.w_handle= +"single"===this.options.type?this.$cache.s_single.outerWidth(!1):this.$cache.s_from.outerWidth(!1);this.coords.p_handle=this.toFixed(this.coords.w_handle/this.coords.w_rs*100)},chooseHandle:function(a){return"single"===this.options.type?"single":a>=this.coords.p_from_real+(this.coords.p_to_real-this.coords.p_from_real)/2?this.options.to_fixed?"from":"to":this.options.from_fixed?"to":"from"},calcMinMax:function(){this.coords.w_rs&&(this.labels.p_min=this.labels.w_min/this.coords.w_rs*100,this.labels.p_max= +this.labels.w_max/this.coords.w_rs*100)},calcLabels:function(){this.coords.w_rs&&!this.options.hide_from_to&&("single"===this.options.type?(this.labels.w_single=this.$cache.single.outerWidth(!1),this.labels.p_single_fake=this.labels.w_single/this.coords.w_rs*100,this.labels.p_single_left=this.coords.p_single_fake+this.coords.p_handle/2-this.labels.p_single_fake/2):(this.labels.w_from=this.$cache.from.outerWidth(!1),this.labels.p_from_fake=this.labels.w_from/this.coords.w_rs*100,this.labels.p_from_left= +this.coords.p_from_fake+this.coords.p_handle/2-this.labels.p_from_fake/2,this.labels.p_from_left=this.toFixed(this.labels.p_from_left),this.labels.p_from_left=this.checkEdges(this.labels.p_from_left,this.labels.p_from_fake),this.labels.w_to=this.$cache.to.outerWidth(!1),this.labels.p_to_fake=this.labels.w_to/this.coords.w_rs*100,this.labels.p_to_left=this.coords.p_to_fake+this.coords.p_handle/2-this.labels.p_to_fake/2,this.labels.p_to_left=this.toFixed(this.labels.p_to_left),this.labels.p_to_left= +this.checkEdges(this.labels.p_to_left,this.labels.p_to_fake),this.labels.w_single=this.$cache.single.outerWidth(!1),this.labels.p_single_fake=this.labels.w_single/this.coords.w_rs*100,this.labels.p_single_left=(this.labels.p_from_left+this.labels.p_to_left+this.labels.p_to_fake)/2-this.labels.p_single_fake/2,this.labels.p_single_left=this.toFixed(this.labels.p_single_left)),this.labels.p_single_left=this.checkEdges(this.labels.p_single_left,this.labels.p_single_fake))},updateScene:function(){this.raf_id&& +(cancelAnimationFrame(this.raf_id),this.raf_id=null);clearTimeout(this.update_tm);this.update_tm=null;this.options&&(this.drawHandles(),this.is_active?this.raf_id=requestAnimationFrame(this.updateScene.bind(this)):this.update_tm=setTimeout(this.updateScene.bind(this),300))},drawHandles:function(){this.coords.w_rs=this.$cache.rs.outerWidth(!1);if(this.coords.w_rs){this.coords.w_rs!==this.coords.w_rs_old&&(this.target="base",this.is_resize=!0);if(this.coords.w_rs!==this.coords.w_rs_old||this.force_redraw)this.setMinMax(), +this.calc(!0),this.drawLabels(),this.options.grid&&(this.calcGridMargin(),this.calcGridLabels()),this.force_redraw=!0,this.coords.w_rs_old=this.coords.w_rs,this.drawShadow();if(this.coords.w_rs&&(this.dragging||this.force_redraw||this.is_key)){if(this.old_from!==this.result.from||this.old_to!==this.result.to||this.force_redraw||this.is_key){this.drawLabels();this.$cache.bar[0].style.left=this.coords.p_bar_x+"%";this.$cache.bar[0].style.width=this.coords.p_bar_w+"%";if("single"===this.options.type)this.$cache.s_single[0].style.left= +this.coords.p_single_fake+"%";else{this.$cache.s_from[0].style.left=this.coords.p_from_fake+"%";this.$cache.s_to[0].style.left=this.coords.p_to_fake+"%";if(this.old_from!==this.result.from||this.force_redraw)this.$cache.from[0].style.left=this.labels.p_from_left+"%";if(this.old_to!==this.result.to||this.force_redraw)this.$cache.to[0].style.left=this.labels.p_to_left+"%"}this.$cache.single[0].style.left=this.labels.p_single_left+"%";this.writeToInput();this.old_from===this.result.from&&this.old_to=== +this.result.to||this.is_start||(this.$cache.input.trigger("change"),this.$cache.input.trigger("input"));this.old_from=this.result.from;this.old_to=this.result.to;this.is_resize||this.is_update||this.is_start||this.is_finish||this.callOnChange();if(this.is_key||this.is_click)this.is_click=this.is_key=!1,this.callOnFinish();this.is_finish=this.is_resize=this.is_update=!1}this.force_redraw=this.is_click=this.is_key=this.is_start=!1}}},drawLabels:function(){if(this.options){var a=this.options.values.length, +b=this.options.p_values;if(!this.options.hide_from_to)if("single"===this.options.type){if(a)a=this.decorate(b[this.result.from]);else{var d=this._prettify(this.result.from);a=this.decorate(d,this.result.from)}this.$cache.single.html(a);this.calcLabels();this.$cache.min[0].style.visibility=this.labels.p_single_left100-this.labels.p_max-1?"hidden":"visible"}else{a?(this.options.decorate_both? +(a=this.decorate(b[this.result.from]),a+=this.options.values_separator,a+=this.decorate(b[this.result.to])):a=this.decorate(b[this.result.from]+this.options.values_separator+b[this.result.to]),d=this.decorate(b[this.result.from]),b=this.decorate(b[this.result.to])):(d=this._prettify(this.result.from),b=this._prettify(this.result.to),this.options.decorate_both?(a=this.decorate(d,this.result.from),a+=this.options.values_separator,a+=this.decorate(b,this.result.to)):a=this.decorate(d+this.options.values_separator+ +b,this.result.to),d=this.decorate(d,this.result.from),b=this.decorate(b,this.result.to));this.$cache.single.html(a);this.$cache.from.html(d);this.$cache.to.html(b);this.calcLabels();a=Math.min(this.labels.p_single_left,this.labels.p_from_left);d=this.labels.p_single_left+this.labels.p_single_fake;var b=this.labels.p_to_left+this.labels.p_to_fake,c=Math.max(d,b);this.labels.p_from_left+this.labels.p_from_fake>=this.labels.p_to_left?(this.$cache.from[0].style.visibility="hidden",this.$cache.to[0].style.visibility= +"hidden",this.$cache.single[0].style.visibility="visible",this.result.from===this.result.to?("from"===this.target?this.$cache.from[0].style.visibility="visible":"to"===this.target?this.$cache.to[0].style.visibility="visible":this.target||(this.$cache.from[0].style.visibility="visible"),this.$cache.single[0].style.visibility="hidden",c=b):(this.$cache.from[0].style.visibility="hidden",this.$cache.to[0].style.visibility="hidden",this.$cache.single[0].style.visibility="visible",c=Math.max(d,b))):(this.$cache.from[0].style.visibility= +"visible",this.$cache.to[0].style.visibility="visible",this.$cache.single[0].style.visibility="hidden");this.$cache.min[0].style.visibility=a100-this.labels.p_max-1?"hidden":"visible"}}},drawShadow:function(){var a=this.options,b=this.$cache,d="number"===typeof a.from_min&&!isNaN(a.from_min),c="number"===typeof a.from_max&&!isNaN(a.from_max),e="number"===typeof a.to_min&&!isNaN(a.to_min),g="number"===typeof a.to_max&&!isNaN(a.to_max); +"single"===a.type?a.from_shadow&&(d||c)?(d=this.convertToPercent(d?a.from_min:a.min),c=this.convertToPercent(c?a.from_max:a.max)-d,d=this.toFixed(d-this.coords.p_handle/100*d),c=this.toFixed(c-this.coords.p_handle/100*c),d+=this.coords.p_handle/2,b.shad_single[0].style.display="block",b.shad_single[0].style.left=d+"%",b.shad_single[0].style.width=c+"%"):b.shad_single[0].style.display="none":(a.from_shadow&&(d||c)?(d=this.convertToPercent(d?a.from_min:a.min),c=this.convertToPercent(c?a.from_max:a.max)- +d,d=this.toFixed(d-this.coords.p_handle/100*d),c=this.toFixed(c-this.coords.p_handle/100*c),d+=this.coords.p_handle/2,b.shad_from[0].style.display="block",b.shad_from[0].style.left=d+"%",b.shad_from[0].style.width=c+"%"):b.shad_from[0].style.display="none",a.to_shadow&&(e||g)?(e=this.convertToPercent(e?a.to_min:a.min),a=this.convertToPercent(g?a.to_max:a.max)-e,e=this.toFixed(e-this.coords.p_handle/100*e),a=this.toFixed(a-this.coords.p_handle/100*a),e+=this.coords.p_handle/2,b.shad_to[0].style.display= +"block",b.shad_to[0].style.left=e+"%",b.shad_to[0].style.width=a+"%"):b.shad_to[0].style.display="none")},writeToInput:function(){"single"===this.options.type?(this.options.values.length?this.$cache.input.prop("value",this.result.from_value):this.$cache.input.prop("value",this.result.from),this.$cache.input.data("from",this.result.from)):(this.options.values.length?this.$cache.input.prop("value",this.result.from_value+this.options.input_values_separator+this.result.to_value):this.$cache.input.prop("value", +this.result.from+this.options.input_values_separator+this.result.to),this.$cache.input.data("from",this.result.from),this.$cache.input.data("to",this.result.to))},callOnStart:function(){this.writeToInput();if(this.options.onStart&&"function"===typeof this.options.onStart)if(this.options.scope)this.options.onStart.call(this.options.scope,this.result);else this.options.onStart(this.result)},callOnChange:function(){this.writeToInput();if(this.options.onChange&&"function"===typeof this.options.onChange)if(this.options.scope)this.options.onChange.call(this.options.scope, +this.result);else this.options.onChange(this.result)},callOnFinish:function(){this.writeToInput();if(this.options.onFinish&&"function"===typeof this.options.onFinish)if(this.options.scope)this.options.onFinish.call(this.options.scope,this.result);else this.options.onFinish(this.result)},callOnUpdate:function(){this.writeToInput();if(this.options.onUpdate&&"function"===typeof this.options.onUpdate)if(this.options.scope)this.options.onUpdate.call(this.options.scope,this.result);else this.options.onUpdate(this.result)}, +toggleInput:function(){this.$cache.input.toggleClass("irs-hidden-input");this.has_tab_index?this.$cache.input.prop("tabindex",-1):this.$cache.input.removeProp("tabindex");this.has_tab_index=!this.has_tab_index},convertToPercent:function(a,b){var d=this.options.max-this.options.min;return d?this.toFixed((b?a:a-this.options.min)/(d/100)):(this.no_diapason=!0,0)},convertToValue:function(a){var b=this.options.min,d=this.options.max,c=b.toString().split(".")[1],e=d.toString().split(".")[1],g,l,f=0,h=0; +if(0===a)return this.options.min;if(100===a)return this.options.max;c&&(f=g=c.length);e&&(f=l=e.length);g&&l&&(f=g>=l?g:l);0>b&&(h=Math.abs(b),b=+(b+h).toFixed(f),d=+(d+h).toFixed(f));a=(d-b)/100*a+b;(b=this.options.step.toString().split(".")[1])?a=+a.toFixed(b.length):(a/=this.options.step,a*=this.options.step,a=+a.toFixed(0));h&&(a-=h);h=b?+a.toFixed(b.length):this.toFixed(a);hthis.options.max&&(h=this.options.max);return h},calcWithStep:function(a){var b= +Math.round(a/this.coords.p_step)*this.coords.p_step;100c.max_interval&&(a=b-c.max_interval):a-b>c.max_interval&&(a=b+c.max_interval);return this.convertToPercent(a)},checkDiapason:function(a,b,d){a=this.convertToValue(a);var c=this.options;"number"!==typeof b&&(b=c.min);"number"!==typeof d&&(d=c.max);ad&&(a=d);return this.convertToPercent(a)},toFixed:function(a){a=a.toFixed(20);return+a},_prettify:function(a){return this.options.prettify_enabled?this.options.prettify&&"function"===typeof this.options.prettify?this.options.prettify(a): +this.prettify(a):a},prettify:function(a){return a.toString().replace(/(\d{1,3}(?=(?:\d\d\d)+(?!\d)))/g,"$1"+this.options.prettify_separator)},checkEdges:function(a,b){if(!this.options.force_edges)return this.toFixed(a);0>a?a=0:a>100-b&&(a=100-b);return this.toFixed(a)},validate:function(){var a=this.options,b=this.result,d=a.values,c=d.length,e;"string"===typeof a.min&&(a.min=+a.min);"string"===typeof a.max&&(a.max=+a.max);"string"===typeof a.from&&(a.from=+a.from);"string"===typeof a.to&&(a.to=+a.to); +"string"===typeof a.step&&(a.step=+a.step);"string"===typeof a.from_min&&(a.from_min=+a.from_min);"string"===typeof a.from_max&&(a.from_max=+a.from_max);"string"===typeof a.to_min&&(a.to_min=+a.to_min);"string"===typeof a.to_max&&(a.to_max=+a.to_max);"string"===typeof a.grid_num&&(a.grid_num=+a.grid_num);a.maxa.max&&(a.from=a.max)):(a.froma.max&&(a.from=a.max),a.toa.max&&(a.to=a.max),this.update_check.from&&(this.update_check.from!==a.from&&a.from>a.to&&(a.from=a.to),this.update_check.to!==a.to&&a.toa.to&&(a.from=a.to),a.toa.step)a.step=1;"number"===typeof a.from_min&&a.froma.from_max&&(a.from=a.from_max);"number"===typeof a.to_min&&a.toa.to_max&&(a.to=a.to_max);if(b){b.min!==a.min&&(b.min=a.min);b.max!==a.max&&(b.max=a.max);if(b.fromb.max)b.from=a.from;if(b.tob.max)b.to=a.to}if("number"!==typeof a.min_interval||isNaN(a.min_interval)|| +!a.min_interval||0>a.min_interval)a.min_interval=0;if("number"!==typeof a.max_interval||isNaN(a.max_interval)||!a.max_interval||0>a.max_interval)a.max_interval=0;a.min_interval&&a.min_interval>a.max-a.min&&(a.min_interval=a.max-a.min);a.max_interval&&a.max_interval>a.max-a.min&&(a.max_interval=a.max-a.min)},decorate:function(a,b){var d="",c=this.options;c.prefix&&(d+=c.prefix);d+=a;c.max_postfix&&(c.values.length&&a===c.p_values[c.max]?(d+=c.max_postfix,c.postfix&&(d+=" ")):b===c.max&&(d+=c.max_postfix, +c.postfix&&(d+=" ")));c.postfix&&(d+=c.postfix);return d},updateFrom:function(){this.result.from=this.options.from;this.result.from_percent=this.convertToPercent(this.result.from);this.result.from_pretty=this._prettify(this.result.from);this.options.values&&(this.result.from_value=this.options.values[this.result.from])},updateTo:function(){this.result.to=this.options.to;this.result.to_percent=this.convertToPercent(this.result.to);this.result.to_pretty=this._prettify(this.result.to);this.options.values&& +(this.result.to_value=this.options.values[this.result.to])},updateResult:function(){this.result.min=this.options.min;this.result.max=this.options.max;this.updateFrom();this.updateTo()},appendGrid:function(){if(this.options.grid){var a=this.options,b;var d=a.max-a.min;var c=a.grid_num,e=4,g="";this.calcGridMargin();if(a.grid_snap)if(50'}g+='';b=this.convertToValue(h);b=a.values.length?a.p_values[b]:this._prettify(b);g+=''+b+""}this.coords.big_num=Math.ceil(c+1);this.$cache.cont.addClass("irs-with-grid"); +this.$cache.grid.html(g);this.cacheGridLabels()}},cacheGridLabels:function(){var a,b=this.coords.big_num;for(a=0;a100+this.coords.grid_gap&&(d[c-1]=100+this.coords.grid_gap,b[c-1]=this.toFixed(d[c-1]-this.coords.big_p[c-1]),this.coords.big_x[c-1]=this.toFixed(this.coords.big_p[c-1]-this.coords.grid_gap)));this.calcGridCollision(2, +b,d);this.calcGridCollision(4,b,d);for(a=0;a=e)break;var f=this.$cache.grid_labels[g][0];f.style.visibility=d[c]<=b[g]?"visible":"hidden"}},calcGridMargin:function(){this.options.grid_margin&&(this.coords.w_rs=this.$cache.rs.outerWidth(!1),this.coords.w_rs&&(this.coords.w_handle= +"single"===this.options.type?this.$cache.s_single.outerWidth(!1):this.$cache.s_from.outerWidth(!1),this.coords.p_handle=this.toFixed(this.coords.w_handle/this.coords.w_rs*100),this.coords.grid_gap=this.toFixed(this.coords.p_handle/2-.1),this.$cache.grid[0].style.width=this.toFixed(100-this.coords.p_handle)+"%",this.$cache.grid[0].style.left=this.coords.grid_gap+"%"))},update:function(a){this.input&&(this.is_update=!0,this.options.from=this.result.from,this.options.to=this.result.to,this.update_check.from= +this.result.from,this.update_check.to=this.result.to,this.options=f.extend(this.options,a),this.validate(),this.updateResult(a),this.toggleInput(),this.remove(),this.init(!0))},reset:function(){this.input&&(this.updateResult(),this.update())},destroy:function(){this.input&&(this.toggleInput(),this.$cache.input.prop("readonly",!1),f.data(this.input,"ionRangeSlider",null),this.remove(),this.options=this.input=null)}};f.fn.ionRangeSlider=function(a){return this.each(function(){f.data(this,"ionRangeSlider")|| +f.data(this,"ionRangeSlider",new q(this,a,t++))})};(function(){for(var a=0,b=["ms","moz","webkit","o"],d=0;d + + + + Ionicons Cheatsheet + + + + + +
    +
    +

    Ionicons Cheatsheet, 318 icons

    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + Icon Name + + iOS + + Material Design +
    + add + + + + + + +
    + add-circle + + + + + + +
    + add-circle-outline + + + + + + +
    + airplane + + + + + + +
    + alarm + + + + + + +
    + albums + + + + + + +
    + alert + + + + + + +
    + american-football + + + + + + +
    + analytics + + + + + + +
    + aperture + + + + + + +
    + apps + + + + + + +
    + appstore + + + + + + +
    + archive + + + + + + +
    + arrow-back + + + + + + +
    + arrow-down + + + + + + +
    + arrow-dropdown + + + + + + +
    + arrow-dropdown-circle + + + + + + +
    + arrow-dropleft + + + + + + +
    + arrow-dropleft-circle + + + + + + +
    + arrow-dropright + + + + + + +
    + arrow-dropright-circle + + + + + + +
    + arrow-dropup + + + + + + +
    + arrow-dropup-circle + + + + + + +
    + arrow-forward + + + + + + +
    + arrow-round-back + + + + + + +
    + arrow-round-down + + + + + + +
    + arrow-round-forward + + + + + + +
    + arrow-round-up + + + + + + +
    + arrow-up + + + + + + +
    + at + + + + + + +
    + attach + + + + + + +
    + backspace + + + + + + +
    + barcode + + + + + + +
    + baseball + + + + + + +
    + basket + + + + + + +
    + basketball + + + + + + +
    + battery-charging + + + + + + +
    + battery-dead + + + + + + +
    + battery-full + + + + + + +
    + beaker + + + + + + +
    + bed + + + + + + +
    + beer + + + + + + +
    + bicycle + + + + + + +
    + bluetooth + + + + + + +
    + boat + + + + + + +
    + body + + + + + + +
    + bonfire + + + + + + +
    + book + + + + + + +
    + bookmark + + + + + + +
    + bookmarks + + + + + + +
    + bowtie + + + + + + +
    + briefcase + + + + + + +
    + browsers + + + + + + +
    + brush + + + + + + +
    + bug + + + + + + +
    + build + + + + + + +
    + bulb + + + + + + +
    + bus + + + + + + +
    + business + + + + + + +
    + cafe + + + + + + +
    + calculator + + + + + + +
    + calendar + + + + + + +
    + call + + + + + + +
    + camera + + + + + + +
    + car + + + + + + +
    + card + + + + + + +
    + cart + + + + + + +
    + cash + + + + + + +
    + cellular + + + + + + +
    + chatboxes + + + + + + +
    + chatbubbles + + + + + + +
    + checkbox + + + + + + +
    + checkbox-outline + + + + + + +
    + checkmark + + + + + + +
    + checkmark-circle + + + + + + +
    + checkmark-circle-outline + + + + + + +
    + clipboard + + + + + + +
    + clock + + + + + + +
    + close + + + + + + +
    + close-circle + + + + + + +
    + close-circle-outline + + + + + + +
    + cloud + + + + + + +
    + cloud-circle + + + + + + +
    + cloud-done + + + + + + +
    + cloud-download + + + + + + +
    + cloud-outline + + + + + + +
    + cloud-upload + + + + + + +
    + cloudy + + + + + + +
    + cloudy-night + + + + + + +
    + code + + + + + + +
    + code-download + + + + + + +
    + code-working + + + + + + +
    + cog + + + + + + +
    + color-fill + + + + + + +
    + color-filter + + + + + + +
    + color-palette + + + + + + +
    + color-wand + + + + + + +
    + compass + + + + + + +
    + construct + + + + + + +
    + contact + + + + + + +
    + contacts + + + + + + +
    + contract + + + + + + +
    + contrast + + + + + + +
    + copy + + + + + + +
    + create + + + + + + +
    + crop + + + + + + +
    + cube + + + + + + +
    + cut + + + + + + +
    + desktop + + + + + + +
    + disc + + + + + + +
    + document + + + + + + +
    + done-all + + + + + + +
    + download + + + + + + +
    + easel + + + + + + +
    + egg + + + + + + +
    + exit + + + + + + +
    + expand + + + + + + +
    + eye + + + + + + +
    + eye-off + + + + + + +
    + fastforward + + + + + + +
    + female + + + + + + +
    + filing + + + + + + +
    + film + + + + + + +
    + finger-print + + + + + + +
    + fitness + + + + + + +
    + flag + + + + + + +
    + flame + + + + + + +
    + flash + + + + + + +
    + flash-off + + + + + + +
    + flashlight + + + + + + +
    + flask + + + + + + +
    + flower + + + + + + +
    + folder + + + + + + +
    + folder-open + + + + + + +
    + football + + + + + + +
    + funnel + + + + + + +
    + gift + + + + + + +
    + git-branch + + + + + + +
    + git-commit + + + + + + +
    + git-compare + + + + + + +
    + git-merge + + + + + + +
    + git-network + + + + + + +
    + git-pull-request + + + + + + +
    + glasses + + + + + + +
    + globe + + + + + + +
    + grid + + + + + + +
    + hammer + + + + + + +
    + hand + + + + + + +
    + happy + + + + + + +
    + headset + + + + + + +
    + heart + + + + + + +
    + heart-dislike + + + + + + +
    + heart-empty + + + + + + +
    + heart-half + + + + + + +
    + help + + + + + + +
    + help-buoy + + + + + + +
    + help-circle + + + + + + +
    + help-circle-outline + + + + + + +
    + home + + + + + + +
    + hourglass + + + + + + +
    + ice-cream + + + + + + +
    + image + + + + + + +
    + images + + + + + + +
    + infinite + + + + + + +
    + information + + + + + + +
    + information-circle + + + + + + +
    + information-circle-outline + + + + + + +
    + jet + + + + + + +
    + journal + + + + + + +
    + key + + + + + + +
    + keypad + + + + + + +
    + laptop + + + + + + +
    + leaf + + + + + + +
    + link + + + + + + +
    + list + + + + + + +
    + list-box + + + + + + +
    + locate + + + + + + +
    + lock + + + + + + +
    + log-in + + + + + + +
    + log-out + + + + + + +
    + magnet + + + + + + +
    + mail + + + + + + +
    + mail-open + + + + + + +
    + mail-unread + + + + + + +
    + male + + + + + + +
    + man + + + + + + +
    + map + + + + + + +
    + medal + + + + + + +
    + medical + + + + + + +
    + medkit + + + + + + +
    + megaphone + + + + + + +
    + menu + + + + + + +
    + mic + + + + + + +
    + mic-off + + + + + + +
    + microphone + + + + + + +
    + moon + + + + + + +
    + more + + + + + + +
    + move + + + + + + +
    + musical-note + + + + + + +
    + musical-notes + + + + + + +
    + navigate + + + + + + +
    + notifications + + + + + + +
    + notifications-off + + + + + + +
    + notifications-outline + + + + + + +
    + nuclear + + + + + + +
    + nutrition + + + + + + +
    + open + + + + + + +
    + options + + + + + + +
    + outlet + + + + + + +
    + paper + + + + + + +
    + paper-plane + + + + + + +
    + partly-sunny + + + + + + +
    + pause + + + + + + +
    + paw + + + + + + +
    + people + + + + + + +
    + person + + + + + + +
    + person-add + + + + + + +
    + phone-landscape + + + + + + +
    + phone-portrait + + + + + + +
    + photos + + + + + + +
    + pie + + + + + + +
    + pin + + + + + + +
    + pint + + + + + + +
    + pizza + + + + + + +
    + planet + + + + + + +
    + play + + + + + + +
    + play-circle + + + + + + +
    + podium + + + + + + +
    + power + + + + + + +
    + pricetag + + + + + + +
    + pricetags + + + + + + +
    + print + + + + + + +
    + pulse + + + + + + +
    + qr-scanner + + + + + + +
    + quote + + + + + + +
    + radio + + + + + + +
    + radio-button-off + + + + + + +
    + radio-button-on + + + + + + +
    + rainy + + + + + + +
    + recording + + + + + + +
    + redo + + + + + + +
    + refresh + + + + + + +
    + refresh-circle + + + + + + +
    + remove + + + + + + +
    + remove-circle + + + + + + +
    + remove-circle-outline + + + + + + +
    + reorder + + + + + + +
    + repeat + + + + + + +
    + resize + + + + + + +
    + restaurant + + + + + + +
    + return-left + + + + + + +
    + return-right + + + + + + +
    + reverse-camera + + + + + + +
    + rewind + + + + + + +
    + ribbon + + + + + + +
    + rocket + + + + + + +
    + rose + + + + + + +
    + sad + + + + + + +
    + save + + + + + + +
    + school + + + + + + +
    + search + + + + + + +
    + send + + + + + + +
    + settings + + + + + + +
    + share + + + + + + +
    + share-alt + + + + + + +
    + shirt + + + + + + +
    + shuffle + + + + + + +
    + skip-backward + + + + + + +
    + skip-forward + + + + + + +
    + snow + + + + + + +
    + speedometer + + + + + + +
    + square + + + + + + +
    + square-outline + + + + + + +
    + star + + + + + + +
    + star-half + + + + + + +
    + star-outline + + + + + + +
    + stats + + + + + + +
    + stopwatch + + + + + + +
    + subway + + + + + + +
    + sunny + + + + + + +
    + swap + + + + + + +
    + switch + + + + + + +
    + sync + + + + + + +
    + tablet-landscape + + + + + + +
    + tablet-portrait + + + + + + +
    + tennisball + + + + + + +
    + text + + + + + + +
    + thermometer + + + + + + +
    + thumbs-down + + + + + + +
    + thumbs-up + + + + + + +
    + thunderstorm + + + + + + +
    + time + + + + + + +
    + timer + + + + + + +
    + today + + + + + + +
    + train + + + + + + +
    + transgender + + + + + + +
    + trash + + + + + + +
    + trending-down + + + + + + +
    + trending-up + + + + + + +
    + trophy + + + + + + +
    + tv + + + + + + +
    + umbrella + + + + + + +
    + undo + + + + + + +
    + unlock + + + + + + +
    + videocam + + + + + + +
    + volume-high + + + + + + +
    + volume-low + + + + + + +
    + volume-mute + + + + + + +
    + volume-off + + + + + + +
    + walk + + + + + + +
    + wallet + + + + + + +
    + warning + + + + + + +
    + watch + + + + + + +
    + water + + + + + + +
    + wifi + + + + + + +
    + wine + + + + + + +
    + woman + + + + + + +
    + +
    + + diff --git a/public/assets/lib/ionicons/collection/collection-manifest.json b/public/assets/lib/ionicons/collection/collection-manifest.json new file mode 100755 index 0000000..e809dca --- /dev/null +++ b/public/assets/lib/ionicons/collection/collection-manifest.json @@ -0,0 +1,119 @@ +{ + "components": [ + { + "tag": "ion-icon", + "dependencies": [], + "componentClass": "Icon", + "componentPath": "icon/icon.js", + "styles": { + "$": { + "stylePaths": [ + "icon/icon.css" + ] + } + }, + "assetPaths": [ + "icon/svg" + ], + "props": [ + { + "name": "ariaLabel", + "type": "String", + "mutable": true, + "attr": "aria-label" + }, + { + "name": "color", + "type": "String", + "attr": "color" + }, + { + "name": "icon", + "type": "String", + "attr": "icon", + "watch": [ + "loadIcon" + ] + }, + { + "name": "ios", + "type": "String", + "attr": "ios" + }, + { + "name": "lazy", + "type": "Boolean", + "attr": "lazy" + }, + { + "name": "md", + "type": "String", + "attr": "md" + }, + { + "name": "mode", + "type": "String", + "attr": "mode" + }, + { + "name": "name", + "type": "String", + "attr": "name", + "watch": [ + "loadIcon" + ] + }, + { + "name": "size", + "type": "String", + "attr": "size" + }, + { + "name": "src", + "type": "String", + "attr": "src", + "watch": [ + "loadIcon" + ] + } + ], + "states": [ + { + "name": "isVisible" + }, + { + "name": "svgContent" + } + ], + "context": [ + { + "name": "isServer", + "id": "isServer" + }, + { + "name": "resourcesUrl", + "id": "resourcesUrl" + }, + { + "name": "doc", + "id": "document" + }, + { + "name": "win", + "id": "window" + } + ], + "hostElement": { + "name": "el" + }, + "shadow": true + } + ], + "collections": [], + "compiler": { + "name": "@stencil/core", + "version": "0.10.10", + "typescriptVersion": "2.9.2" + }, + "bundles": [] +} \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/icon.css b/public/assets/lib/ionicons/collection/icon/icon.css new file mode 100755 index 0000000..28669b9 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/icon.css @@ -0,0 +1,74 @@ +:host { + display: inline-block; + + width: 1em; + height: 1em; + + contain: strict; + + box-sizing: content-box !important; +} + +:host(.ion-color) { + color: var(--ion-color-base) !important; +} + +:host(.icon-small) { + font-size: var(--ion-icon-size-small, 18px) !important; +} + +:host(.icon-large){ + font-size: var(--ion-icon-size-large, 32px) !important; +} + +.icon-inner, +svg { + display: block; + + height: 100%; + width: 100%; +} + +svg { + fill: currentColor; + stroke: currentColor; +} + +/* Set iOS Icon Colors */ +/* ------------------- */ + +:host(.ion-color-primary) { + --ion-color-base: var(--ion-color-primary, #3880ff); +} + +:host(.ion-color-secondary) { + --ion-color-base: var(--ion-color-secondary, #0cd1e8); +} + +:host(.ion-color-tertiary) { + --ion-color-base: var(--ion-color-tertiary, #f4a942); +} + +:host(.ion-color-success) { + --ion-color-base: var(--ion-color-success, #10dc60); +} + +:host(.ion-color-warning) { + --ion-color-base: var(--ion-color-warning, #ffce00); +} + +:host(.ion-color-danger) { + --ion-color-base: var(--ion-color-danger, #f14141); +} + +:host(.ion-color-light) { + --ion-color-base: var(--ion-color-light, #f4f5f8); +} + +:host(.ion-color-medium) { + --ion-color-base: var(--ion-color-medium, #989aa2); +} + +:host(.ion-color-dark) { + --ion-color-base: var(--ion-color-dark, #222428); +} diff --git a/public/assets/lib/ionicons/collection/icon/icon.js b/public/assets/lib/ionicons/collection/icon/icon.js new file mode 100755 index 0000000..7aa07e6 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/icon.js @@ -0,0 +1,282 @@ +export class Icon { + constructor() { + this.isVisible = false; + /** + * If enabled, ion-icon will be loaded lazily when it's visible in the viewport. + * Default, `true`. + */ + this.lazy = true; + } + componentWillLoad() { + // purposely do not return the promise here because loading + // the svg file should not hold up loading the app + // only load the svg if it's visible + this.waitUntilVisible(this.el, '50px', () => { + this.isVisible = true; + this.loadIcon(); + }); + } + componentDidUnload() { + if (this.io) { + this.io.disconnect(); + this.io = undefined; + } + } + waitUntilVisible(el, rootMargin, cb) { + if (this.lazy && this.win && this.win.IntersectionObserver) { + const io = this.io = new this.win.IntersectionObserver((data) => { + if (data[0].isIntersecting) { + io.disconnect(); + this.io = undefined; + cb(); + } + }, { rootMargin }); + io.observe(el); + } + else { + // browser doesn't support IntersectionObserver + // so just fallback to always show it + cb(); + } + } + loadIcon() { + if (!this.isServer && this.isVisible) { + const url = this.getUrl(); + if (url) { + getSvgContent(url).then(svgContent => { + this.svgContent = validateContent(this.doc, svgContent, this.el['s-sc']); + }); + } + } + if (!this.ariaLabel) { + const name = getName(this.name, this.mode, this.ios, this.md); + // user did not provide a label + // come up with the label based on the icon name + if (name) { + this.ariaLabel = name + .replace('ios-', '') + .replace('md-', '') + .replace(/\-/g, ' '); + } + } + } + getUrl() { + let url = getSrc(this.src); + if (url) { + return url; + } + url = getName(this.name, this.mode, this.ios, this.md); + if (url) { + return this.getNamedUrl(url); + } + url = getSrc(this.icon); + if (url) { + return url; + } + url = getName(this.icon, this.mode, this.ios, this.md); + if (url) { + return this.getNamedUrl(url); + } + return null; + } + getNamedUrl(name) { + return `${this.resourcesUrl}svg/${name}.svg`; + } + hostData() { + return { + 'role': 'img', + class: Object.assign({}, createColorClasses(this.color), { [`icon-${this.size}`]: !!this.size }) + }; + } + render() { + if (!this.isServer && this.svgContent) { + // we've already loaded up this svg at one point + // and the svg content we've loaded and assigned checks out + // render this svg!! + return h("div", { class: "icon-inner", innerHTML: this.svgContent }); + } + // actively requesting the svg + // or it's an SSR render + // so let's just render an empty div for now + return h("div", { class: "icon-inner" }); + } + static get is() { return "ion-icon"; } + static get encapsulation() { return "shadow"; } + static get properties() { return { + "ariaLabel": { + "type": String, + "attr": "aria-label", + "reflectToAttr": true, + "mutable": true + }, + "color": { + "type": String, + "attr": "color" + }, + "doc": { + "context": "document" + }, + "el": { + "elementRef": true + }, + "icon": { + "type": String, + "attr": "icon", + "watchCallbacks": ["loadIcon"] + }, + "ios": { + "type": String, + "attr": "ios" + }, + "isServer": { + "context": "isServer" + }, + "isVisible": { + "state": true + }, + "lazy": { + "type": Boolean, + "attr": "lazy" + }, + "md": { + "type": String, + "attr": "md" + }, + "mode": { + "type": String, + "attr": "mode" + }, + "name": { + "type": String, + "attr": "name", + "watchCallbacks": ["loadIcon"] + }, + "resourcesUrl": { + "context": "resourcesUrl" + }, + "size": { + "type": String, + "attr": "size" + }, + "src": { + "type": String, + "attr": "src", + "watchCallbacks": ["loadIcon"] + }, + "svgContent": { + "state": true + }, + "win": { + "context": "window" + } + }; } + static get style() { return "/**style-placeholder:ion-icon:**/"; } +} +const requests = new Map(); +function getSvgContent(url) { + // see if we already have a request for this url + let req = requests.get(url); + if (!req) { + // we don't already have a request + req = fetch(url, { cache: 'force-cache' }).then(rsp => { + if (rsp.ok) { + return rsp.text(); + } + return Promise.resolve(null); + }); + // cache for the same requests + requests.set(url, req); + } + return req; +} +export function getName(name, mode, ios, md) { + // default to "md" if somehow the mode wasn't set + mode = (mode || 'md').toLowerCase(); + // if an icon was passed in using the ios or md attributes + // set the iconName to whatever was passed in + if (ios && mode === 'ios') { + name = ios.toLowerCase(); + } + else if (md && mode === 'md') { + name = md.toLowerCase(); + } + else if (name) { + name = name.toLowerCase(); + if (!/^md-|^ios-|^logo-/.test(name)) { + // this does not have one of the defaults + // so lets auto add in the mode prefix for them + name = `${mode}-${name}`; + } + } + if (typeof name !== 'string' || name.trim() === '') { + return null; + } + // only allow alpha characters and dash + const invalidChars = name.replace(/[a-z]|-|\d/gi, ''); + if (invalidChars !== '') { + return null; + } + return name; +} +export function getSrc(src) { + if (typeof src === 'string') { + src = src.trim(); + if (src.length > 0 && /(\/|\.)/.test(src)) { + return src; + } + } + return null; +} +function validateContent(document, svgContent, scopeId) { + if (svgContent) { + const frag = document.createDocumentFragment(); + const div = document.createElement('div'); + div.innerHTML = svgContent; + frag.appendChild(div); + // setup this way to ensure it works on our buddy IE + for (let i = div.childNodes.length - 1; i >= 0; i--) { + if (div.childNodes[i].nodeName.toLowerCase() !== 'svg') { + div.removeChild(div.childNodes[i]); + } + } + // must only have 1 root element + const svgElm = div.firstElementChild; + if (svgElm && svgElm.nodeName.toLowerCase() === 'svg') { + if (scopeId) { + svgElm.setAttribute(scopeId, ''); + } + // root element must be an svg + // lets double check we've got valid elements + // do not allow scripts + if (isValid(svgElm)) { + return div.innerHTML; + } + } + } + return ''; +} +export function isValid(elm) { + if (elm.nodeType === 1) { + if (elm.nodeName.toLowerCase() === 'script') { + return false; + } + for (var i = 0; i < elm.attributes.length; i++) { + let val = elm.attributes[i].value; + if (typeof val === 'string' && val.toLowerCase().indexOf('on') === 0) { + return false; + } + } + for (i = 0; i < elm.childNodes.length; i++) { + if (!isValid(elm.childNodes[i])) { + return false; + } + } + } + return true; +} +function createColorClasses(color) { + return (color) ? { + 'ion-color': true, + [`ion-color-${color}`]: true + } : null; +} diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-add-circle-outline.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-add-circle-outline.svg new file mode 100755 index 0000000..c131f77 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-add-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-add-circle.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-add-circle.svg new file mode 100755 index 0000000..11bda99 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-add-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-add.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-add.svg new file mode 100755 index 0000000..a5bed0d --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-add.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-airplane.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-airplane.svg new file mode 100755 index 0000000..92a1718 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-airplane.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-alarm.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-alarm.svg new file mode 100755 index 0000000..d3fbe81 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-alarm.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-albums.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-albums.svg new file mode 100755 index 0000000..134189f --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-albums.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-alert.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-alert.svg new file mode 100755 index 0000000..55dcb52 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-alert.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-american-football.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-american-football.svg new file mode 100755 index 0000000..aa76149 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-american-football.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-analytics.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-analytics.svg new file mode 100755 index 0000000..69dd11e --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-analytics.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-aperture.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-aperture.svg new file mode 100755 index 0000000..7a5f18a --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-aperture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-apps.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-apps.svg new file mode 100755 index 0000000..576d29d --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-apps.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-appstore.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-appstore.svg new file mode 100755 index 0000000..f78e7fb --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-appstore.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-archive.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-archive.svg new file mode 100755 index 0000000..3359d36 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-archive.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-arrow-back.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-arrow-back.svg new file mode 100755 index 0000000..7ed23a9 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-arrow-back.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-arrow-down.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-arrow-down.svg new file mode 100755 index 0000000..61576d7 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-arrow-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-arrow-dropdown-circle.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-arrow-dropdown-circle.svg new file mode 100755 index 0000000..741c983 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-arrow-dropdown-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-arrow-dropdown.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-arrow-dropdown.svg new file mode 100755 index 0000000..dcdfdfe --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-arrow-dropdown.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-arrow-dropleft-circle.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-arrow-dropleft-circle.svg new file mode 100755 index 0000000..e05f601 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-arrow-dropleft-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-arrow-dropleft.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-arrow-dropleft.svg new file mode 100755 index 0000000..3dfcac4 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-arrow-dropleft.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-arrow-dropright-circle.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-arrow-dropright-circle.svg new file mode 100755 index 0000000..2d3c190 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-arrow-dropright-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-arrow-dropright.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-arrow-dropright.svg new file mode 100755 index 0000000..010f9e6 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-arrow-dropright.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-arrow-dropup-circle.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-arrow-dropup-circle.svg new file mode 100755 index 0000000..1eb32f7 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-arrow-dropup-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-arrow-dropup.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-arrow-dropup.svg new file mode 100755 index 0000000..b34be92 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-arrow-dropup.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-arrow-forward.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-arrow-forward.svg new file mode 100755 index 0000000..a822315 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-arrow-forward.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-arrow-round-back.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-arrow-round-back.svg new file mode 100755 index 0000000..87e4da7 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-arrow-round-back.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-arrow-round-down.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-arrow-round-down.svg new file mode 100755 index 0000000..c25cb46 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-arrow-round-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-arrow-round-forward.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-arrow-round-forward.svg new file mode 100755 index 0000000..6d064f4 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-arrow-round-forward.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-arrow-round-up.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-arrow-round-up.svg new file mode 100755 index 0000000..49c427f --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-arrow-round-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-arrow-up.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-arrow-up.svg new file mode 100755 index 0000000..08641ae --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-arrow-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-at.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-at.svg new file mode 100755 index 0000000..7753a97 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-at.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-attach.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-attach.svg new file mode 100755 index 0000000..066e97b --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-attach.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-backspace.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-backspace.svg new file mode 100755 index 0000000..ad507d3 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-backspace.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-barcode.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-barcode.svg new file mode 100755 index 0000000..65b23b0 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-barcode.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-baseball.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-baseball.svg new file mode 100755 index 0000000..0b15215 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-baseball.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-basket.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-basket.svg new file mode 100755 index 0000000..5c09d4e --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-basket.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-basketball.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-basketball.svg new file mode 100755 index 0000000..224274a --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-basketball.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-battery-charging.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-battery-charging.svg new file mode 100755 index 0000000..b4f83c8 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-battery-charging.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-battery-dead.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-battery-dead.svg new file mode 100755 index 0000000..4d6fc40 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-battery-dead.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-battery-full.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-battery-full.svg new file mode 100755 index 0000000..7d38316 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-battery-full.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-beaker.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-beaker.svg new file mode 100755 index 0000000..08c2fbe --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-beaker.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-bed.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-bed.svg new file mode 100755 index 0000000..1e71d6f --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-bed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-beer.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-beer.svg new file mode 100755 index 0000000..674960f --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-beer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-bicycle.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-bicycle.svg new file mode 100755 index 0000000..de83ebf --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-bicycle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-bluetooth.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-bluetooth.svg new file mode 100755 index 0000000..62d5ffe --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-bluetooth.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-boat.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-boat.svg new file mode 100755 index 0000000..c1f3a8f --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-boat.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-body.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-body.svg new file mode 100755 index 0000000..e2042b9 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-body.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-bonfire.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-bonfire.svg new file mode 100755 index 0000000..0764908 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-bonfire.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-book.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-book.svg new file mode 100755 index 0000000..759fbab --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-book.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-bookmark.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-bookmark.svg new file mode 100755 index 0000000..660cdf0 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-bookmark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-bookmarks.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-bookmarks.svg new file mode 100755 index 0000000..144db59 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-bookmarks.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-bowtie.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-bowtie.svg new file mode 100755 index 0000000..c5ac4a7 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-bowtie.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-briefcase.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-briefcase.svg new file mode 100755 index 0000000..c50170f --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-briefcase.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-browsers.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-browsers.svg new file mode 100755 index 0000000..2965d98 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-browsers.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-brush.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-brush.svg new file mode 100755 index 0000000..a735ed6 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-brush.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-bug.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-bug.svg new file mode 100755 index 0000000..8b3c94e --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-bug.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-build.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-build.svg new file mode 100755 index 0000000..771a9e6 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-build.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-bulb.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-bulb.svg new file mode 100755 index 0000000..b87500a --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-bulb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-bus.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-bus.svg new file mode 100755 index 0000000..b940f4c --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-bus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-business.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-business.svg new file mode 100755 index 0000000..3385cdf --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-business.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-cafe.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-cafe.svg new file mode 100755 index 0000000..01456a4 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-cafe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-calculator.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-calculator.svg new file mode 100755 index 0000000..27d594d --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-calculator.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-calendar.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-calendar.svg new file mode 100755 index 0000000..63681be --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-calendar.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-call.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-call.svg new file mode 100755 index 0000000..c7a99dd --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-call.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-camera.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-camera.svg new file mode 100755 index 0000000..3aeb0d8 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-camera.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-car.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-car.svg new file mode 100755 index 0000000..e703fbe --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-car.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-card.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-card.svg new file mode 100755 index 0000000..1390e0f --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-card.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-cart.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-cart.svg new file mode 100755 index 0000000..d2827b0 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-cart.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-cash.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-cash.svg new file mode 100755 index 0000000..1311f38 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-cash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-cellular.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-cellular.svg new file mode 100755 index 0000000..c7d0f9f --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-cellular.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-chatboxes.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-chatboxes.svg new file mode 100755 index 0000000..11fb734 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-chatboxes.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-chatbubbles.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-chatbubbles.svg new file mode 100755 index 0000000..54c0bf5 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-chatbubbles.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-checkbox-outline.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-checkbox-outline.svg new file mode 100755 index 0000000..abc8378 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-checkbox-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-checkbox.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-checkbox.svg new file mode 100755 index 0000000..d1687a0 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-checkbox.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-checkmark-circle-outline.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-checkmark-circle-outline.svg new file mode 100755 index 0000000..6f9326f --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-checkmark-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-checkmark-circle.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-checkmark-circle.svg new file mode 100755 index 0000000..20e6fcc --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-checkmark-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-checkmark.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-checkmark.svg new file mode 100755 index 0000000..c61aa04 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-checkmark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-clipboard.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-clipboard.svg new file mode 100755 index 0000000..5135fba --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-clipboard.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-clock.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-clock.svg new file mode 100755 index 0000000..3860e94 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-clock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-close-circle-outline.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-close-circle-outline.svg new file mode 100755 index 0000000..c288c19 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-close-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-close-circle.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-close-circle.svg new file mode 100755 index 0000000..d495180 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-close-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-close.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-close.svg new file mode 100755 index 0000000..5f62c99 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-close.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-cloud-circle.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-cloud-circle.svg new file mode 100755 index 0000000..fe3dfce --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-cloud-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-cloud-done.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-cloud-done.svg new file mode 100755 index 0000000..f9d64d3 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-cloud-done.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-cloud-download.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-cloud-download.svg new file mode 100755 index 0000000..8938739 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-cloud-download.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-cloud-outline.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-cloud-outline.svg new file mode 100755 index 0000000..1951a5c --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-cloud-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-cloud-upload.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-cloud-upload.svg new file mode 100755 index 0000000..f089ecd --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-cloud-upload.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-cloud.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-cloud.svg new file mode 100755 index 0000000..083d9db --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-cloud.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-cloudy-night.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-cloudy-night.svg new file mode 100755 index 0000000..ecbd8ed --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-cloudy-night.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-cloudy.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-cloudy.svg new file mode 100755 index 0000000..9865008 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-cloudy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-code-download.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-code-download.svg new file mode 100755 index 0000000..42b41ba --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-code-download.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-code-working.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-code-working.svg new file mode 100755 index 0000000..8bb9ada --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-code-working.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-code.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-code.svg new file mode 100755 index 0000000..ecb946d --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-code.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-cog.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-cog.svg new file mode 100755 index 0000000..f5f71fc --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-cog.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-color-fill.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-color-fill.svg new file mode 100755 index 0000000..76ca096 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-color-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-color-filter.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-color-filter.svg new file mode 100755 index 0000000..0f4ea41 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-color-filter.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-color-palette.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-color-palette.svg new file mode 100755 index 0000000..613ccc3 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-color-palette.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-color-wand.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-color-wand.svg new file mode 100755 index 0000000..da3de6a --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-color-wand.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-compass.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-compass.svg new file mode 100755 index 0000000..9686fc6 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-compass.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-construct.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-construct.svg new file mode 100755 index 0000000..ec421ee --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-construct.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-contact.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-contact.svg new file mode 100755 index 0000000..50a2c95 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-contact.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-contacts.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-contacts.svg new file mode 100755 index 0000000..a1a1b71 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-contacts.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-contract.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-contract.svg new file mode 100755 index 0000000..293176e --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-contract.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-contrast.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-contrast.svg new file mode 100755 index 0000000..d591047 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-contrast.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-copy.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-copy.svg new file mode 100755 index 0000000..0956897 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-copy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-create.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-create.svg new file mode 100755 index 0000000..6104993 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-create.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-crop.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-crop.svg new file mode 100755 index 0000000..905fed2 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-crop.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-cube.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-cube.svg new file mode 100755 index 0000000..1ae3808 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-cube.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-cut.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-cut.svg new file mode 100755 index 0000000..44568d0 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-cut.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-desktop.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-desktop.svg new file mode 100755 index 0000000..ab02b19 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-desktop.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-disc.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-disc.svg new file mode 100755 index 0000000..7e49199 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-disc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-document.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-document.svg new file mode 100755 index 0000000..fb3237a --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-document.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-done-all.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-done-all.svg new file mode 100755 index 0000000..58d765c --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-done-all.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-download.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-download.svg new file mode 100755 index 0000000..9023e7d --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-download.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-easel.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-easel.svg new file mode 100755 index 0000000..bed13dd --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-easel.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-egg.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-egg.svg new file mode 100755 index 0000000..7d11267 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-egg.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-exit.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-exit.svg new file mode 100755 index 0000000..c3fa887 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-exit.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-expand.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-expand.svg new file mode 100755 index 0000000..d0c7b19 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-expand.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-eye-off.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-eye-off.svg new file mode 100755 index 0000000..e73da8e --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-eye-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-eye.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-eye.svg new file mode 100755 index 0000000..5533529 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-eye.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-fastforward.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-fastforward.svg new file mode 100755 index 0000000..9ee1827 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-fastforward.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-female.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-female.svg new file mode 100755 index 0000000..54f7b92 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-female.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-filing.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-filing.svg new file mode 100755 index 0000000..ea721c1 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-filing.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-film.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-film.svg new file mode 100755 index 0000000..86cd2b8 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-film.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-finger-print.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-finger-print.svg new file mode 100755 index 0000000..697f4f2 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-finger-print.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-fitness.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-fitness.svg new file mode 100755 index 0000000..f1802eb --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-fitness.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-flag.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-flag.svg new file mode 100755 index 0000000..d6a02f9 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-flag.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-flame.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-flame.svg new file mode 100755 index 0000000..2e4524c --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-flame.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-flash-off.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-flash-off.svg new file mode 100755 index 0000000..1cddba7 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-flash-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-flash.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-flash.svg new file mode 100755 index 0000000..6cc6290 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-flash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-flashlight.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-flashlight.svg new file mode 100755 index 0000000..258d80f --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-flashlight.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-flask.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-flask.svg new file mode 100755 index 0000000..6f2dee3 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-flask.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-flower.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-flower.svg new file mode 100755 index 0000000..ee76010 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-flower.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-folder-open.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-folder-open.svg new file mode 100755 index 0000000..912539b --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-folder-open.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-folder.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-folder.svg new file mode 100755 index 0000000..628441b --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-folder.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-football.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-football.svg new file mode 100755 index 0000000..e32b6d9 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-football.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-funnel.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-funnel.svg new file mode 100755 index 0000000..d6692a6 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-funnel.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-gift.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-gift.svg new file mode 100755 index 0000000..5956415 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-gift.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-git-branch.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-git-branch.svg new file mode 100755 index 0000000..2631ab4 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-git-branch.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-git-commit.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-git-commit.svg new file mode 100755 index 0000000..79cbd6b --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-git-commit.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-git-compare.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-git-compare.svg new file mode 100755 index 0000000..bc1a394 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-git-compare.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-git-merge.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-git-merge.svg new file mode 100755 index 0000000..c3f95c2 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-git-merge.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-git-network.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-git-network.svg new file mode 100755 index 0000000..f265506 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-git-network.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-git-pull-request.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-git-pull-request.svg new file mode 100755 index 0000000..25338b7 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-git-pull-request.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-glasses.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-glasses.svg new file mode 100755 index 0000000..b9b641a --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-glasses.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-globe.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-globe.svg new file mode 100755 index 0000000..2b64a6e --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-globe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-grid.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-grid.svg new file mode 100755 index 0000000..1060187 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-grid.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-hammer.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-hammer.svg new file mode 100755 index 0000000..656b5a2 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-hammer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-hand.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-hand.svg new file mode 100755 index 0000000..3310dc1 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-hand.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-happy.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-happy.svg new file mode 100755 index 0000000..e447437 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-happy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-headset.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-headset.svg new file mode 100755 index 0000000..b16de8e --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-headset.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-heart-dislike.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-heart-dislike.svg new file mode 100755 index 0000000..58f54fb --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-heart-dislike.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-heart-empty.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-heart-empty.svg new file mode 100755 index 0000000..c14d0d9 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-heart-empty.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-heart-half.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-heart-half.svg new file mode 100755 index 0000000..cb01381 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-heart-half.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-heart.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-heart.svg new file mode 100755 index 0000000..b890a67 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-heart.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-help-buoy.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-help-buoy.svg new file mode 100755 index 0000000..2933efb --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-help-buoy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-help-circle-outline.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-help-circle-outline.svg new file mode 100755 index 0000000..7587f83 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-help-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-help-circle.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-help-circle.svg new file mode 100755 index 0000000..6f7b114 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-help-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-help.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-help.svg new file mode 100755 index 0000000..88065b3 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-help.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-home.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-home.svg new file mode 100755 index 0000000..aab2080 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-home.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-hourglass.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-hourglass.svg new file mode 100755 index 0000000..5065d80 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-hourglass.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-ice-cream.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-ice-cream.svg new file mode 100755 index 0000000..5abeb02 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-ice-cream.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-image.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-image.svg new file mode 100755 index 0000000..adc6840 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-image.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-images.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-images.svg new file mode 100755 index 0000000..39f2e38 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-images.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-infinite.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-infinite.svg new file mode 100755 index 0000000..fb54408 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-infinite.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-information-circle-outline.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-information-circle-outline.svg new file mode 100755 index 0000000..10a794c --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-information-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-information-circle.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-information-circle.svg new file mode 100755 index 0000000..f7fb292 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-information-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-information.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-information.svg new file mode 100755 index 0000000..31a3528 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-information.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-jet.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-jet.svg new file mode 100755 index 0000000..9c9d5ff --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-jet.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-journal.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-journal.svg new file mode 100755 index 0000000..5e698fd --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-journal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-key.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-key.svg new file mode 100755 index 0000000..c0420e7 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-key.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-keypad.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-keypad.svg new file mode 100755 index 0000000..7991d61 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-keypad.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-laptop.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-laptop.svg new file mode 100755 index 0000000..bfb360b --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-laptop.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-leaf.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-leaf.svg new file mode 100755 index 0000000..813fe86 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-leaf.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-link.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-link.svg new file mode 100755 index 0000000..a0c14bc --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-link.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-list-box.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-list-box.svg new file mode 100755 index 0000000..78eeb84 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-list-box.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-list.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-list.svg new file mode 100755 index 0000000..46de590 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-list.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-locate.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-locate.svg new file mode 100755 index 0000000..fcbd77e --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-locate.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-lock.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-lock.svg new file mode 100755 index 0000000..c3646bd --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-lock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-log-in.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-log-in.svg new file mode 100755 index 0000000..6944782 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-log-in.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-log-out.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-log-out.svg new file mode 100755 index 0000000..92a380f --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-log-out.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-magnet.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-magnet.svg new file mode 100755 index 0000000..0358666 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-magnet.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-mail-open.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-mail-open.svg new file mode 100755 index 0000000..5ea25ed --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-mail-open.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-mail-unread.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-mail-unread.svg new file mode 100755 index 0000000..3ab87e6 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-mail-unread.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-mail.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-mail.svg new file mode 100755 index 0000000..baeed04 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-mail.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-male.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-male.svg new file mode 100755 index 0000000..ea82cf6 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-male.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-man.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-man.svg new file mode 100755 index 0000000..1c30cc4 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-man.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-map.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-map.svg new file mode 100755 index 0000000..4f69e45 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-map.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-medal.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-medal.svg new file mode 100755 index 0000000..1a472cc --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-medal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-medical.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-medical.svg new file mode 100755 index 0000000..4f23397 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-medical.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-medkit.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-medkit.svg new file mode 100755 index 0000000..69d9f92 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-medkit.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-megaphone.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-megaphone.svg new file mode 100755 index 0000000..5e370d8 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-megaphone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-menu.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-menu.svg new file mode 100755 index 0000000..1b005ed --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-menu.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-mic-off.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-mic-off.svg new file mode 100755 index 0000000..6148d3e --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-mic-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-mic.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-mic.svg new file mode 100755 index 0000000..319dca8 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-mic.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-microphone.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-microphone.svg new file mode 100755 index 0000000..c108ad8 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-microphone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-moon.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-moon.svg new file mode 100755 index 0000000..56e26a6 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-moon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-more.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-more.svg new file mode 100755 index 0000000..b34de47 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-more.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-move.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-move.svg new file mode 100755 index 0000000..1f78523 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-move.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-musical-note.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-musical-note.svg new file mode 100755 index 0000000..13e42c8 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-musical-note.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-musical-notes.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-musical-notes.svg new file mode 100755 index 0000000..aba0726 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-musical-notes.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-navigate.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-navigate.svg new file mode 100755 index 0000000..7859b5d --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-navigate.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-notifications-off.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-notifications-off.svg new file mode 100755 index 0000000..6fd6b26 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-notifications-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-notifications-outline.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-notifications-outline.svg new file mode 100755 index 0000000..13e2ce4 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-notifications-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-notifications.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-notifications.svg new file mode 100755 index 0000000..398b684 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-notifications.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-nuclear.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-nuclear.svg new file mode 100755 index 0000000..62a0cb8 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-nuclear.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-nutrition.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-nutrition.svg new file mode 100755 index 0000000..d710358 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-nutrition.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-open.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-open.svg new file mode 100755 index 0000000..f713027 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-open.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-options.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-options.svg new file mode 100755 index 0000000..448ba83 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-options.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-outlet.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-outlet.svg new file mode 100755 index 0000000..dd8ec17 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-outlet.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-paper-plane.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-paper-plane.svg new file mode 100755 index 0000000..e9a3ad1 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-paper-plane.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-paper.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-paper.svg new file mode 100755 index 0000000..9017fc4 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-paper.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-partly-sunny.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-partly-sunny.svg new file mode 100755 index 0000000..3b28809 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-partly-sunny.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-pause.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-pause.svg new file mode 100755 index 0000000..b110aff --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-pause.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-paw.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-paw.svg new file mode 100755 index 0000000..3eee81d --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-paw.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-people.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-people.svg new file mode 100755 index 0000000..ae6c4cd --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-people.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-person-add.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-person-add.svg new file mode 100755 index 0000000..f125ba4 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-person-add.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-person.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-person.svg new file mode 100755 index 0000000..49824c6 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-person.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-phone-landscape.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-phone-landscape.svg new file mode 100755 index 0000000..6794eb5 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-phone-landscape.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-phone-portrait.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-phone-portrait.svg new file mode 100755 index 0000000..4f8a6a1 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-phone-portrait.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-photos.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-photos.svg new file mode 100755 index 0000000..462d0f0 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-photos.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-pie.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-pie.svg new file mode 100755 index 0000000..48eadb9 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-pie.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-pin.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-pin.svg new file mode 100755 index 0000000..5afa889 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-pin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-pint.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-pint.svg new file mode 100755 index 0000000..e8a8287 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-pint.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-pizza.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-pizza.svg new file mode 100755 index 0000000..09d375c --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-pizza.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-planet.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-planet.svg new file mode 100755 index 0000000..eead09f --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-planet.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-play-circle.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-play-circle.svg new file mode 100755 index 0000000..894d0b4 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-play-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-play.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-play.svg new file mode 100755 index 0000000..d0f0110 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-play.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-podium.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-podium.svg new file mode 100755 index 0000000..8624a51 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-podium.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-power.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-power.svg new file mode 100755 index 0000000..48debf3 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-power.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-pricetag.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-pricetag.svg new file mode 100755 index 0000000..63edb7b --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-pricetag.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-pricetags.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-pricetags.svg new file mode 100755 index 0000000..c8fc420 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-pricetags.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-print.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-print.svg new file mode 100755 index 0000000..61f3814 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-print.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-pulse.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-pulse.svg new file mode 100755 index 0000000..6663e77 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-pulse.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-qr-scanner.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-qr-scanner.svg new file mode 100755 index 0000000..ab1a51e --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-qr-scanner.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-quote.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-quote.svg new file mode 100755 index 0000000..9a4327e --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-quote.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-radio-button-off.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-radio-button-off.svg new file mode 100755 index 0000000..7a3dc70 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-radio-button-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-radio-button-on.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-radio-button-on.svg new file mode 100755 index 0000000..b0b138d --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-radio-button-on.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-radio.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-radio.svg new file mode 100755 index 0000000..be95087 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-radio.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-rainy.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-rainy.svg new file mode 100755 index 0000000..d34352a --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-rainy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-recording.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-recording.svg new file mode 100755 index 0000000..d1aec0f --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-recording.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-redo.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-redo.svg new file mode 100755 index 0000000..a1fa5dc --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-redo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-refresh-circle.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-refresh-circle.svg new file mode 100755 index 0000000..538de23 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-refresh-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-refresh.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-refresh.svg new file mode 100755 index 0000000..af1c931 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-refresh.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-remove-circle-outline.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-remove-circle-outline.svg new file mode 100755 index 0000000..0e62fc8 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-remove-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-remove-circle.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-remove-circle.svg new file mode 100755 index 0000000..e8234ed --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-remove-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-remove.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-remove.svg new file mode 100755 index 0000000..e25ce1a --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-remove.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-reorder.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-reorder.svg new file mode 100755 index 0000000..c3f0686 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-reorder.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-repeat.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-repeat.svg new file mode 100755 index 0000000..6e13b51 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-repeat.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-resize.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-resize.svg new file mode 100755 index 0000000..fc79155 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-resize.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-restaurant.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-restaurant.svg new file mode 100755 index 0000000..bb7172d --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-restaurant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-return-left.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-return-left.svg new file mode 100755 index 0000000..3decff9 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-return-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-return-right.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-return-right.svg new file mode 100755 index 0000000..9a26661 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-return-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-reverse-camera.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-reverse-camera.svg new file mode 100755 index 0000000..3b7fedd --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-reverse-camera.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-rewind.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-rewind.svg new file mode 100755 index 0000000..5a2e44a --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-rewind.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-ribbon.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-ribbon.svg new file mode 100755 index 0000000..58a98b5 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-ribbon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-rocket.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-rocket.svg new file mode 100755 index 0000000..45d70af --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-rocket.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-rose.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-rose.svg new file mode 100755 index 0000000..ff49bd4 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-rose.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-sad.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-sad.svg new file mode 100755 index 0000000..a87f3fa --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-sad.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-save.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-save.svg new file mode 100755 index 0000000..eb3421b --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-save.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-school.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-school.svg new file mode 100755 index 0000000..e0f7d5e --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-school.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-search.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-search.svg new file mode 100755 index 0000000..08e3142 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-search.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-send.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-send.svg new file mode 100755 index 0000000..1f2c1ba --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-send.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-settings.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-settings.svg new file mode 100755 index 0000000..7542495 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-settings.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-share-alt.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-share-alt.svg new file mode 100755 index 0000000..dda0a5f --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-share-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-share.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-share.svg new file mode 100755 index 0000000..2eff09f --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-share.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-shirt.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-shirt.svg new file mode 100755 index 0000000..a9c9f66 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-shirt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-shuffle.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-shuffle.svg new file mode 100755 index 0000000..ffcdc62 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-shuffle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-skip-backward.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-skip-backward.svg new file mode 100755 index 0000000..363de6c --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-skip-backward.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-skip-forward.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-skip-forward.svg new file mode 100755 index 0000000..e478834 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-skip-forward.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-snow.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-snow.svg new file mode 100755 index 0000000..ccf1161 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-snow.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-speedometer.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-speedometer.svg new file mode 100755 index 0000000..d16c4ff --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-speedometer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-square-outline.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-square-outline.svg new file mode 100755 index 0000000..60e38a2 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-square-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-square.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-square.svg new file mode 100755 index 0000000..ad89728 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-star-half.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-star-half.svg new file mode 100755 index 0000000..9a953e0 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-star-half.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-star-outline.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-star-outline.svg new file mode 100755 index 0000000..241e4d0 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-star-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-star.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-star.svg new file mode 100755 index 0000000..b190c67 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-star.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-stats.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-stats.svg new file mode 100755 index 0000000..0abb9c2 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-stats.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-stopwatch.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-stopwatch.svg new file mode 100755 index 0000000..5cbfb9e --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-stopwatch.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-subway.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-subway.svg new file mode 100755 index 0000000..af4a476 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-subway.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-sunny.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-sunny.svg new file mode 100755 index 0000000..a585aff --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-sunny.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-swap.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-swap.svg new file mode 100755 index 0000000..b602db7 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-swap.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-switch.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-switch.svg new file mode 100755 index 0000000..f161e6a --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-switch.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-sync.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-sync.svg new file mode 100755 index 0000000..be31138 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-sync.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-tablet-landscape.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-tablet-landscape.svg new file mode 100755 index 0000000..9ecd3a8 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-tablet-landscape.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-tablet-portrait.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-tablet-portrait.svg new file mode 100755 index 0000000..64de392 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-tablet-portrait.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-tennisball.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-tennisball.svg new file mode 100755 index 0000000..acf0197 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-tennisball.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-text.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-text.svg new file mode 100755 index 0000000..7c228d9 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-text.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-thermometer.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-thermometer.svg new file mode 100755 index 0000000..044e4ac --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-thermometer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-thumbs-down.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-thumbs-down.svg new file mode 100755 index 0000000..4203869 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-thumbs-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-thumbs-up.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-thumbs-up.svg new file mode 100755 index 0000000..8e7b615 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-thumbs-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-thunderstorm.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-thunderstorm.svg new file mode 100755 index 0000000..2001589 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-thunderstorm.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-time.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-time.svg new file mode 100755 index 0000000..90aeb21 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-time.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-timer.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-timer.svg new file mode 100755 index 0000000..b2110a7 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-timer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-today.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-today.svg new file mode 100755 index 0000000..0e60ac4 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-today.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-train.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-train.svg new file mode 100755 index 0000000..fb560c8 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-train.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-transgender.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-transgender.svg new file mode 100755 index 0000000..3116f70 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-transgender.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-trash.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-trash.svg new file mode 100755 index 0000000..7b5fc1b --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-trash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-trending-down.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-trending-down.svg new file mode 100755 index 0000000..81a86b1 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-trending-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-trending-up.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-trending-up.svg new file mode 100755 index 0000000..504e5ae --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-trending-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-trophy.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-trophy.svg new file mode 100755 index 0000000..4ca2c59 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-trophy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-tv.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-tv.svg new file mode 100755 index 0000000..b0a11b5 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-tv.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-umbrella.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-umbrella.svg new file mode 100755 index 0000000..9f44701 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-umbrella.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-undo.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-undo.svg new file mode 100755 index 0000000..69ada1f --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-undo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-unlock.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-unlock.svg new file mode 100755 index 0000000..589905c --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-unlock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-videocam.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-videocam.svg new file mode 100755 index 0000000..4902c46 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-videocam.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-volume-high.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-volume-high.svg new file mode 100755 index 0000000..4c592aa --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-volume-high.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-volume-low.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-volume-low.svg new file mode 100755 index 0000000..3d35049 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-volume-low.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-volume-mute.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-volume-mute.svg new file mode 100755 index 0000000..a8195dc --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-volume-mute.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-volume-off.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-volume-off.svg new file mode 100755 index 0000000..8dc405b --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-volume-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-walk.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-walk.svg new file mode 100755 index 0000000..4ca44ee --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-walk.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-wallet.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-wallet.svg new file mode 100755 index 0000000..ae2d84d --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-wallet.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-warning.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-warning.svg new file mode 100755 index 0000000..693460a --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-warning.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-watch.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-watch.svg new file mode 100755 index 0000000..95e755f --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-watch.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-water.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-water.svg new file mode 100755 index 0000000..b5c5b88 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-water.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-wifi.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-wifi.svg new file mode 100755 index 0000000..bb4b1a7 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-wifi.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-wine.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-wine.svg new file mode 100755 index 0000000..8dff790 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-wine.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/ios-woman.svg b/public/assets/lib/ionicons/collection/icon/svg/ios-woman.svg new file mode 100755 index 0000000..be998ed --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/ios-woman.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/logo-android.svg b/public/assets/lib/ionicons/collection/icon/svg/logo-android.svg new file mode 100755 index 0000000..4d8da82 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/logo-android.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/logo-angular.svg b/public/assets/lib/ionicons/collection/icon/svg/logo-angular.svg new file mode 100755 index 0000000..78b721c --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/logo-angular.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/logo-apple.svg b/public/assets/lib/ionicons/collection/icon/svg/logo-apple.svg new file mode 100755 index 0000000..4e2d15f --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/logo-apple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/logo-bitbucket.svg b/public/assets/lib/ionicons/collection/icon/svg/logo-bitbucket.svg new file mode 100755 index 0000000..7a829ad --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/logo-bitbucket.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/logo-bitcoin.svg b/public/assets/lib/ionicons/collection/icon/svg/logo-bitcoin.svg new file mode 100755 index 0000000..4ff0d36 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/logo-bitcoin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/logo-buffer.svg b/public/assets/lib/ionicons/collection/icon/svg/logo-buffer.svg new file mode 100755 index 0000000..28627e8 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/logo-buffer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/logo-chrome.svg b/public/assets/lib/ionicons/collection/icon/svg/logo-chrome.svg new file mode 100755 index 0000000..46f267c --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/logo-chrome.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/logo-closed-captioning.svg b/public/assets/lib/ionicons/collection/icon/svg/logo-closed-captioning.svg new file mode 100755 index 0000000..0eb6e33 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/logo-closed-captioning.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/logo-codepen.svg b/public/assets/lib/ionicons/collection/icon/svg/logo-codepen.svg new file mode 100755 index 0000000..7e27fac --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/logo-codepen.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/logo-css3.svg b/public/assets/lib/ionicons/collection/icon/svg/logo-css3.svg new file mode 100755 index 0000000..789b469 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/logo-css3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/logo-designernews.svg b/public/assets/lib/ionicons/collection/icon/svg/logo-designernews.svg new file mode 100755 index 0000000..1cc24ef --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/logo-designernews.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/logo-dribbble.svg b/public/assets/lib/ionicons/collection/icon/svg/logo-dribbble.svg new file mode 100755 index 0000000..f8d5361 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/logo-dribbble.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/logo-dropbox.svg b/public/assets/lib/ionicons/collection/icon/svg/logo-dropbox.svg new file mode 100755 index 0000000..564e2b5 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/logo-dropbox.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/logo-euro.svg b/public/assets/lib/ionicons/collection/icon/svg/logo-euro.svg new file mode 100755 index 0000000..ec93afa --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/logo-euro.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/logo-facebook.svg b/public/assets/lib/ionicons/collection/icon/svg/logo-facebook.svg new file mode 100755 index 0000000..f3366f0 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/logo-facebook.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/logo-flickr.svg b/public/assets/lib/ionicons/collection/icon/svg/logo-flickr.svg new file mode 100755 index 0000000..e97b179 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/logo-flickr.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/logo-foursquare.svg b/public/assets/lib/ionicons/collection/icon/svg/logo-foursquare.svg new file mode 100755 index 0000000..ce3aff3 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/logo-foursquare.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/logo-freebsd-devil.svg b/public/assets/lib/ionicons/collection/icon/svg/logo-freebsd-devil.svg new file mode 100755 index 0000000..0aa045d --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/logo-freebsd-devil.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/logo-game-controller-a.svg b/public/assets/lib/ionicons/collection/icon/svg/logo-game-controller-a.svg new file mode 100755 index 0000000..6a9eda4 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/logo-game-controller-a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/logo-game-controller-b.svg b/public/assets/lib/ionicons/collection/icon/svg/logo-game-controller-b.svg new file mode 100755 index 0000000..054ed35 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/logo-game-controller-b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/logo-github.svg b/public/assets/lib/ionicons/collection/icon/svg/logo-github.svg new file mode 100755 index 0000000..7078569 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/logo-github.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/logo-google.svg b/public/assets/lib/ionicons/collection/icon/svg/logo-google.svg new file mode 100755 index 0000000..62fdb5a --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/logo-google.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/logo-googleplus.svg b/public/assets/lib/ionicons/collection/icon/svg/logo-googleplus.svg new file mode 100755 index 0000000..fad4987 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/logo-googleplus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/logo-hackernews.svg b/public/assets/lib/ionicons/collection/icon/svg/logo-hackernews.svg new file mode 100755 index 0000000..22d0b4d --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/logo-hackernews.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/logo-html5.svg b/public/assets/lib/ionicons/collection/icon/svg/logo-html5.svg new file mode 100755 index 0000000..aaa471c --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/logo-html5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/logo-instagram.svg b/public/assets/lib/ionicons/collection/icon/svg/logo-instagram.svg new file mode 100755 index 0000000..1f8448c --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/logo-instagram.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/logo-ionic.svg b/public/assets/lib/ionicons/collection/icon/svg/logo-ionic.svg new file mode 100755 index 0000000..2267dc8 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/logo-ionic.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/logo-ionitron.svg b/public/assets/lib/ionicons/collection/icon/svg/logo-ionitron.svg new file mode 100755 index 0000000..7d96a7b --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/logo-ionitron.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/logo-javascript.svg b/public/assets/lib/ionicons/collection/icon/svg/logo-javascript.svg new file mode 100755 index 0000000..1eaca16 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/logo-javascript.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/logo-linkedin.svg b/public/assets/lib/ionicons/collection/icon/svg/logo-linkedin.svg new file mode 100755 index 0000000..1d1193f --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/logo-linkedin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/logo-markdown.svg b/public/assets/lib/ionicons/collection/icon/svg/logo-markdown.svg new file mode 100755 index 0000000..b9880e7 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/logo-markdown.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/logo-model-s.svg b/public/assets/lib/ionicons/collection/icon/svg/logo-model-s.svg new file mode 100755 index 0000000..65401da --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/logo-model-s.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/logo-no-smoking.svg b/public/assets/lib/ionicons/collection/icon/svg/logo-no-smoking.svg new file mode 100755 index 0000000..bf99aad --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/logo-no-smoking.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/logo-nodejs.svg b/public/assets/lib/ionicons/collection/icon/svg/logo-nodejs.svg new file mode 100755 index 0000000..f796e5d --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/logo-nodejs.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/logo-npm.svg b/public/assets/lib/ionicons/collection/icon/svg/logo-npm.svg new file mode 100755 index 0000000..bb0ed3d --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/logo-npm.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/logo-octocat.svg b/public/assets/lib/ionicons/collection/icon/svg/logo-octocat.svg new file mode 100755 index 0000000..89788f6 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/logo-octocat.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/logo-pinterest.svg b/public/assets/lib/ionicons/collection/icon/svg/logo-pinterest.svg new file mode 100755 index 0000000..47ee181 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/logo-pinterest.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/logo-playstation.svg b/public/assets/lib/ionicons/collection/icon/svg/logo-playstation.svg new file mode 100755 index 0000000..819fcf4 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/logo-playstation.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/logo-polymer.svg b/public/assets/lib/ionicons/collection/icon/svg/logo-polymer.svg new file mode 100755 index 0000000..e7d0dd6 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/logo-polymer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/logo-python.svg b/public/assets/lib/ionicons/collection/icon/svg/logo-python.svg new file mode 100755 index 0000000..ad45530 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/logo-python.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/logo-reddit.svg b/public/assets/lib/ionicons/collection/icon/svg/logo-reddit.svg new file mode 100755 index 0000000..cdc2db7 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/logo-reddit.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/logo-rss.svg b/public/assets/lib/ionicons/collection/icon/svg/logo-rss.svg new file mode 100755 index 0000000..0a9a9cd --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/logo-rss.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/logo-sass.svg b/public/assets/lib/ionicons/collection/icon/svg/logo-sass.svg new file mode 100755 index 0000000..30082e9 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/logo-sass.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/logo-skype.svg b/public/assets/lib/ionicons/collection/icon/svg/logo-skype.svg new file mode 100755 index 0000000..e119d18 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/logo-skype.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/logo-slack.svg b/public/assets/lib/ionicons/collection/icon/svg/logo-slack.svg new file mode 100755 index 0000000..e5187a4 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/logo-slack.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/logo-snapchat.svg b/public/assets/lib/ionicons/collection/icon/svg/logo-snapchat.svg new file mode 100755 index 0000000..90f9b4e --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/logo-snapchat.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/logo-steam.svg b/public/assets/lib/ionicons/collection/icon/svg/logo-steam.svg new file mode 100755 index 0000000..c6e8195 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/logo-steam.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/logo-tumblr.svg b/public/assets/lib/ionicons/collection/icon/svg/logo-tumblr.svg new file mode 100755 index 0000000..c249ad6 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/logo-tumblr.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/logo-tux.svg b/public/assets/lib/ionicons/collection/icon/svg/logo-tux.svg new file mode 100755 index 0000000..a80cc3f --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/logo-tux.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/logo-twitch.svg b/public/assets/lib/ionicons/collection/icon/svg/logo-twitch.svg new file mode 100755 index 0000000..259225a --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/logo-twitch.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/logo-twitter.svg b/public/assets/lib/ionicons/collection/icon/svg/logo-twitter.svg new file mode 100755 index 0000000..50a3c35 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/logo-twitter.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/logo-usd.svg b/public/assets/lib/ionicons/collection/icon/svg/logo-usd.svg new file mode 100755 index 0000000..a6507e4 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/logo-usd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/logo-vimeo.svg b/public/assets/lib/ionicons/collection/icon/svg/logo-vimeo.svg new file mode 100755 index 0000000..91f6992 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/logo-vimeo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/logo-vk.svg b/public/assets/lib/ionicons/collection/icon/svg/logo-vk.svg new file mode 100755 index 0000000..6202093 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/logo-vk.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/logo-whatsapp.svg b/public/assets/lib/ionicons/collection/icon/svg/logo-whatsapp.svg new file mode 100755 index 0000000..270774d --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/logo-whatsapp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/logo-windows.svg b/public/assets/lib/ionicons/collection/icon/svg/logo-windows.svg new file mode 100755 index 0000000..1c66e95 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/logo-windows.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/logo-wordpress.svg b/public/assets/lib/ionicons/collection/icon/svg/logo-wordpress.svg new file mode 100755 index 0000000..af460ce --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/logo-wordpress.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/logo-xbox.svg b/public/assets/lib/ionicons/collection/icon/svg/logo-xbox.svg new file mode 100755 index 0000000..6f7f942 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/logo-xbox.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/logo-xing.svg b/public/assets/lib/ionicons/collection/icon/svg/logo-xing.svg new file mode 100755 index 0000000..2aa1146 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/logo-xing.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/logo-yahoo.svg b/public/assets/lib/ionicons/collection/icon/svg/logo-yahoo.svg new file mode 100755 index 0000000..3b29a9a --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/logo-yahoo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/logo-yen.svg b/public/assets/lib/ionicons/collection/icon/svg/logo-yen.svg new file mode 100755 index 0000000..8e35349 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/logo-yen.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/logo-youtube.svg b/public/assets/lib/ionicons/collection/icon/svg/logo-youtube.svg new file mode 100755 index 0000000..3440999 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/logo-youtube.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-add-circle-outline.svg b/public/assets/lib/ionicons/collection/icon/svg/md-add-circle-outline.svg new file mode 100755 index 0000000..f9eb075 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-add-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-add-circle.svg b/public/assets/lib/ionicons/collection/icon/svg/md-add-circle.svg new file mode 100755 index 0000000..d74e8ca --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-add-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-add.svg b/public/assets/lib/ionicons/collection/icon/svg/md-add.svg new file mode 100755 index 0000000..00ffc63 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-add.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-airplane.svg b/public/assets/lib/ionicons/collection/icon/svg/md-airplane.svg new file mode 100755 index 0000000..1b13a6c --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-airplane.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-alarm.svg b/public/assets/lib/ionicons/collection/icon/svg/md-alarm.svg new file mode 100755 index 0000000..fb62135 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-alarm.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-albums.svg b/public/assets/lib/ionicons/collection/icon/svg/md-albums.svg new file mode 100755 index 0000000..6c5b630 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-albums.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-alert.svg b/public/assets/lib/ionicons/collection/icon/svg/md-alert.svg new file mode 100755 index 0000000..70bf707 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-alert.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-american-football.svg b/public/assets/lib/ionicons/collection/icon/svg/md-american-football.svg new file mode 100755 index 0000000..a80db1a --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-american-football.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-analytics.svg b/public/assets/lib/ionicons/collection/icon/svg/md-analytics.svg new file mode 100755 index 0000000..f5a9d39 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-analytics.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-aperture.svg b/public/assets/lib/ionicons/collection/icon/svg/md-aperture.svg new file mode 100755 index 0000000..ce53eb4 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-aperture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-apps.svg b/public/assets/lib/ionicons/collection/icon/svg/md-apps.svg new file mode 100755 index 0000000..ae1d4bd --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-apps.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-appstore.svg b/public/assets/lib/ionicons/collection/icon/svg/md-appstore.svg new file mode 100755 index 0000000..6ecd144 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-appstore.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-archive.svg b/public/assets/lib/ionicons/collection/icon/svg/md-archive.svg new file mode 100755 index 0000000..c4a5341 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-archive.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-arrow-back.svg b/public/assets/lib/ionicons/collection/icon/svg/md-arrow-back.svg new file mode 100755 index 0000000..3647bff --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-arrow-back.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-arrow-down.svg b/public/assets/lib/ionicons/collection/icon/svg/md-arrow-down.svg new file mode 100755 index 0000000..1dd60b8 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-arrow-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-arrow-dropdown-circle.svg b/public/assets/lib/ionicons/collection/icon/svg/md-arrow-dropdown-circle.svg new file mode 100755 index 0000000..7e61ac3 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-arrow-dropdown-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-arrow-dropdown.svg b/public/assets/lib/ionicons/collection/icon/svg/md-arrow-dropdown.svg new file mode 100755 index 0000000..a2207e0 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-arrow-dropdown.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-arrow-dropleft-circle.svg b/public/assets/lib/ionicons/collection/icon/svg/md-arrow-dropleft-circle.svg new file mode 100755 index 0000000..8d2a19e --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-arrow-dropleft-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-arrow-dropleft.svg b/public/assets/lib/ionicons/collection/icon/svg/md-arrow-dropleft.svg new file mode 100755 index 0000000..282843d --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-arrow-dropleft.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-arrow-dropright-circle.svg b/public/assets/lib/ionicons/collection/icon/svg/md-arrow-dropright-circle.svg new file mode 100755 index 0000000..2822030 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-arrow-dropright-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-arrow-dropright.svg b/public/assets/lib/ionicons/collection/icon/svg/md-arrow-dropright.svg new file mode 100755 index 0000000..d0881ba --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-arrow-dropright.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-arrow-dropup-circle.svg b/public/assets/lib/ionicons/collection/icon/svg/md-arrow-dropup-circle.svg new file mode 100755 index 0000000..eea2302 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-arrow-dropup-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-arrow-dropup.svg b/public/assets/lib/ionicons/collection/icon/svg/md-arrow-dropup.svg new file mode 100755 index 0000000..5eb7fd4 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-arrow-dropup.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-arrow-forward.svg b/public/assets/lib/ionicons/collection/icon/svg/md-arrow-forward.svg new file mode 100755 index 0000000..f56a75f --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-arrow-forward.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-arrow-round-back.svg b/public/assets/lib/ionicons/collection/icon/svg/md-arrow-round-back.svg new file mode 100755 index 0000000..4a7063f --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-arrow-round-back.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-arrow-round-down.svg b/public/assets/lib/ionicons/collection/icon/svg/md-arrow-round-down.svg new file mode 100755 index 0000000..acf2acf --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-arrow-round-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-arrow-round-forward.svg b/public/assets/lib/ionicons/collection/icon/svg/md-arrow-round-forward.svg new file mode 100755 index 0000000..357258b --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-arrow-round-forward.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-arrow-round-up.svg b/public/assets/lib/ionicons/collection/icon/svg/md-arrow-round-up.svg new file mode 100755 index 0000000..1128a65 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-arrow-round-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-arrow-up.svg b/public/assets/lib/ionicons/collection/icon/svg/md-arrow-up.svg new file mode 100755 index 0000000..59a2852 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-arrow-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-at.svg b/public/assets/lib/ionicons/collection/icon/svg/md-at.svg new file mode 100755 index 0000000..c51b738 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-at.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-attach.svg b/public/assets/lib/ionicons/collection/icon/svg/md-attach.svg new file mode 100755 index 0000000..10c1673 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-attach.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-backspace.svg b/public/assets/lib/ionicons/collection/icon/svg/md-backspace.svg new file mode 100755 index 0000000..4817cca --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-backspace.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-barcode.svg b/public/assets/lib/ionicons/collection/icon/svg/md-barcode.svg new file mode 100755 index 0000000..00b16bf --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-barcode.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-baseball.svg b/public/assets/lib/ionicons/collection/icon/svg/md-baseball.svg new file mode 100755 index 0000000..172bd4c --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-baseball.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-basket.svg b/public/assets/lib/ionicons/collection/icon/svg/md-basket.svg new file mode 100755 index 0000000..6535217 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-basket.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-basketball.svg b/public/assets/lib/ionicons/collection/icon/svg/md-basketball.svg new file mode 100755 index 0000000..297ceb7 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-basketball.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-battery-charging.svg b/public/assets/lib/ionicons/collection/icon/svg/md-battery-charging.svg new file mode 100755 index 0000000..bdc34a9 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-battery-charging.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-battery-dead.svg b/public/assets/lib/ionicons/collection/icon/svg/md-battery-dead.svg new file mode 100755 index 0000000..3aa8649 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-battery-dead.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-battery-full.svg b/public/assets/lib/ionicons/collection/icon/svg/md-battery-full.svg new file mode 100755 index 0000000..b5d8cec --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-battery-full.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-beaker.svg b/public/assets/lib/ionicons/collection/icon/svg/md-beaker.svg new file mode 100755 index 0000000..52a794a --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-beaker.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-bed.svg b/public/assets/lib/ionicons/collection/icon/svg/md-bed.svg new file mode 100755 index 0000000..797a26b --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-bed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-beer.svg b/public/assets/lib/ionicons/collection/icon/svg/md-beer.svg new file mode 100755 index 0000000..82b64c9 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-beer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-bicycle.svg b/public/assets/lib/ionicons/collection/icon/svg/md-bicycle.svg new file mode 100755 index 0000000..2118780 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-bicycle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-bluetooth.svg b/public/assets/lib/ionicons/collection/icon/svg/md-bluetooth.svg new file mode 100755 index 0000000..d58a0a4 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-bluetooth.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-boat.svg b/public/assets/lib/ionicons/collection/icon/svg/md-boat.svg new file mode 100755 index 0000000..461bf6e --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-boat.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-body.svg b/public/assets/lib/ionicons/collection/icon/svg/md-body.svg new file mode 100755 index 0000000..585f289 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-body.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-bonfire.svg b/public/assets/lib/ionicons/collection/icon/svg/md-bonfire.svg new file mode 100755 index 0000000..711da71 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-bonfire.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-book.svg b/public/assets/lib/ionicons/collection/icon/svg/md-book.svg new file mode 100755 index 0000000..be087b8 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-book.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-bookmark.svg b/public/assets/lib/ionicons/collection/icon/svg/md-bookmark.svg new file mode 100755 index 0000000..805c8bb --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-bookmark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-bookmarks.svg b/public/assets/lib/ionicons/collection/icon/svg/md-bookmarks.svg new file mode 100755 index 0000000..430cfe3 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-bookmarks.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-bowtie.svg b/public/assets/lib/ionicons/collection/icon/svg/md-bowtie.svg new file mode 100755 index 0000000..08ee73f --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-bowtie.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-briefcase.svg b/public/assets/lib/ionicons/collection/icon/svg/md-briefcase.svg new file mode 100755 index 0000000..da8d0c3 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-briefcase.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-browsers.svg b/public/assets/lib/ionicons/collection/icon/svg/md-browsers.svg new file mode 100755 index 0000000..00e6c98 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-browsers.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-brush.svg b/public/assets/lib/ionicons/collection/icon/svg/md-brush.svg new file mode 100755 index 0000000..1e85afa --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-brush.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-bug.svg b/public/assets/lib/ionicons/collection/icon/svg/md-bug.svg new file mode 100755 index 0000000..5ed28c2 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-bug.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-build.svg b/public/assets/lib/ionicons/collection/icon/svg/md-build.svg new file mode 100755 index 0000000..c0a715a --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-build.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-bulb.svg b/public/assets/lib/ionicons/collection/icon/svg/md-bulb.svg new file mode 100755 index 0000000..343cf2e --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-bulb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-bus.svg b/public/assets/lib/ionicons/collection/icon/svg/md-bus.svg new file mode 100755 index 0000000..51c29b2 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-bus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-business.svg b/public/assets/lib/ionicons/collection/icon/svg/md-business.svg new file mode 100755 index 0000000..bb95489 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-business.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-cafe.svg b/public/assets/lib/ionicons/collection/icon/svg/md-cafe.svg new file mode 100755 index 0000000..d474b06 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-cafe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-calculator.svg b/public/assets/lib/ionicons/collection/icon/svg/md-calculator.svg new file mode 100755 index 0000000..0fa81b3 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-calculator.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-calendar.svg b/public/assets/lib/ionicons/collection/icon/svg/md-calendar.svg new file mode 100755 index 0000000..f0f2aa6 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-calendar.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-call.svg b/public/assets/lib/ionicons/collection/icon/svg/md-call.svg new file mode 100755 index 0000000..894e31e --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-call.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-camera.svg b/public/assets/lib/ionicons/collection/icon/svg/md-camera.svg new file mode 100755 index 0000000..1c87350 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-camera.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-car.svg b/public/assets/lib/ionicons/collection/icon/svg/md-car.svg new file mode 100755 index 0000000..e6765a9 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-car.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-card.svg b/public/assets/lib/ionicons/collection/icon/svg/md-card.svg new file mode 100755 index 0000000..5a70c43 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-card.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-cart.svg b/public/assets/lib/ionicons/collection/icon/svg/md-cart.svg new file mode 100755 index 0000000..cf9ca7f --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-cart.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-cash.svg b/public/assets/lib/ionicons/collection/icon/svg/md-cash.svg new file mode 100755 index 0000000..471d2bd --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-cash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-cellular.svg b/public/assets/lib/ionicons/collection/icon/svg/md-cellular.svg new file mode 100755 index 0000000..051fe00 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-cellular.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-chatboxes.svg b/public/assets/lib/ionicons/collection/icon/svg/md-chatboxes.svg new file mode 100755 index 0000000..fddc128 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-chatboxes.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-chatbubbles.svg b/public/assets/lib/ionicons/collection/icon/svg/md-chatbubbles.svg new file mode 100755 index 0000000..47bf6f5 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-chatbubbles.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-checkbox-outline.svg b/public/assets/lib/ionicons/collection/icon/svg/md-checkbox-outline.svg new file mode 100755 index 0000000..7cf97f1 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-checkbox-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-checkbox.svg b/public/assets/lib/ionicons/collection/icon/svg/md-checkbox.svg new file mode 100755 index 0000000..d827c8a --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-checkbox.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-checkmark-circle-outline.svg b/public/assets/lib/ionicons/collection/icon/svg/md-checkmark-circle-outline.svg new file mode 100755 index 0000000..4e40c88 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-checkmark-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-checkmark-circle.svg b/public/assets/lib/ionicons/collection/icon/svg/md-checkmark-circle.svg new file mode 100755 index 0000000..4437260 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-checkmark-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-checkmark.svg b/public/assets/lib/ionicons/collection/icon/svg/md-checkmark.svg new file mode 100755 index 0000000..a8161a3 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-checkmark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-clipboard.svg b/public/assets/lib/ionicons/collection/icon/svg/md-clipboard.svg new file mode 100755 index 0000000..2779592 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-clipboard.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-clock.svg b/public/assets/lib/ionicons/collection/icon/svg/md-clock.svg new file mode 100755 index 0000000..952c4ec --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-clock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-close-circle-outline.svg b/public/assets/lib/ionicons/collection/icon/svg/md-close-circle-outline.svg new file mode 100755 index 0000000..df518c5 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-close-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-close-circle.svg b/public/assets/lib/ionicons/collection/icon/svg/md-close-circle.svg new file mode 100755 index 0000000..9fde939 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-close-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-close.svg b/public/assets/lib/ionicons/collection/icon/svg/md-close.svg new file mode 100755 index 0000000..62a2e2c --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-close.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-cloud-circle.svg b/public/assets/lib/ionicons/collection/icon/svg/md-cloud-circle.svg new file mode 100755 index 0000000..9a5a254 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-cloud-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-cloud-done.svg b/public/assets/lib/ionicons/collection/icon/svg/md-cloud-done.svg new file mode 100755 index 0000000..e989d85 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-cloud-done.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-cloud-download.svg b/public/assets/lib/ionicons/collection/icon/svg/md-cloud-download.svg new file mode 100755 index 0000000..5818298 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-cloud-download.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-cloud-outline.svg b/public/assets/lib/ionicons/collection/icon/svg/md-cloud-outline.svg new file mode 100755 index 0000000..2a354e2 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-cloud-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-cloud-upload.svg b/public/assets/lib/ionicons/collection/icon/svg/md-cloud-upload.svg new file mode 100755 index 0000000..a1620ba --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-cloud-upload.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-cloud.svg b/public/assets/lib/ionicons/collection/icon/svg/md-cloud.svg new file mode 100755 index 0000000..573be58 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-cloud.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-cloudy-night.svg b/public/assets/lib/ionicons/collection/icon/svg/md-cloudy-night.svg new file mode 100755 index 0000000..9e55fc5 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-cloudy-night.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-cloudy.svg b/public/assets/lib/ionicons/collection/icon/svg/md-cloudy.svg new file mode 100755 index 0000000..f4497aa --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-cloudy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-code-download.svg b/public/assets/lib/ionicons/collection/icon/svg/md-code-download.svg new file mode 100755 index 0000000..763b06e --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-code-download.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-code-working.svg b/public/assets/lib/ionicons/collection/icon/svg/md-code-working.svg new file mode 100755 index 0000000..727162d --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-code-working.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-code.svg b/public/assets/lib/ionicons/collection/icon/svg/md-code.svg new file mode 100755 index 0000000..ab8b70e --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-code.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-cog.svg b/public/assets/lib/ionicons/collection/icon/svg/md-cog.svg new file mode 100755 index 0000000..6d5047a --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-cog.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-color-fill.svg b/public/assets/lib/ionicons/collection/icon/svg/md-color-fill.svg new file mode 100755 index 0000000..b895f3d --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-color-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-color-filter.svg b/public/assets/lib/ionicons/collection/icon/svg/md-color-filter.svg new file mode 100755 index 0000000..f981cd7 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-color-filter.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-color-palette.svg b/public/assets/lib/ionicons/collection/icon/svg/md-color-palette.svg new file mode 100755 index 0000000..97269b5 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-color-palette.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-color-wand.svg b/public/assets/lib/ionicons/collection/icon/svg/md-color-wand.svg new file mode 100755 index 0000000..7d7be8f --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-color-wand.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-compass.svg b/public/assets/lib/ionicons/collection/icon/svg/md-compass.svg new file mode 100755 index 0000000..ed85822 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-compass.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-construct.svg b/public/assets/lib/ionicons/collection/icon/svg/md-construct.svg new file mode 100755 index 0000000..62bd342 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-construct.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-contact.svg b/public/assets/lib/ionicons/collection/icon/svg/md-contact.svg new file mode 100755 index 0000000..7313751 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-contact.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-contacts.svg b/public/assets/lib/ionicons/collection/icon/svg/md-contacts.svg new file mode 100755 index 0000000..0f541ed --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-contacts.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-contract.svg b/public/assets/lib/ionicons/collection/icon/svg/md-contract.svg new file mode 100755 index 0000000..3f5d7ea --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-contract.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-contrast.svg b/public/assets/lib/ionicons/collection/icon/svg/md-contrast.svg new file mode 100755 index 0000000..70297b7 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-contrast.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-copy.svg b/public/assets/lib/ionicons/collection/icon/svg/md-copy.svg new file mode 100755 index 0000000..1ad4952 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-copy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-create.svg b/public/assets/lib/ionicons/collection/icon/svg/md-create.svg new file mode 100755 index 0000000..f7e8611 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-create.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-crop.svg b/public/assets/lib/ionicons/collection/icon/svg/md-crop.svg new file mode 100755 index 0000000..bd379ab --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-crop.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-cube.svg b/public/assets/lib/ionicons/collection/icon/svg/md-cube.svg new file mode 100755 index 0000000..a16bc50 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-cube.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-cut.svg b/public/assets/lib/ionicons/collection/icon/svg/md-cut.svg new file mode 100755 index 0000000..e1dbdcb --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-cut.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-desktop.svg b/public/assets/lib/ionicons/collection/icon/svg/md-desktop.svg new file mode 100755 index 0000000..4b95c82 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-desktop.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-disc.svg b/public/assets/lib/ionicons/collection/icon/svg/md-disc.svg new file mode 100755 index 0000000..c844337 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-disc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-document.svg b/public/assets/lib/ionicons/collection/icon/svg/md-document.svg new file mode 100755 index 0000000..5fdf6b6 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-document.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-done-all.svg b/public/assets/lib/ionicons/collection/icon/svg/md-done-all.svg new file mode 100755 index 0000000..af67fcb --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-done-all.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-download.svg b/public/assets/lib/ionicons/collection/icon/svg/md-download.svg new file mode 100755 index 0000000..c760c2d --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-download.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-easel.svg b/public/assets/lib/ionicons/collection/icon/svg/md-easel.svg new file mode 100755 index 0000000..982c3a0 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-easel.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-egg.svg b/public/assets/lib/ionicons/collection/icon/svg/md-egg.svg new file mode 100755 index 0000000..decf599 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-egg.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-exit.svg b/public/assets/lib/ionicons/collection/icon/svg/md-exit.svg new file mode 100755 index 0000000..bc3460b --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-exit.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-expand.svg b/public/assets/lib/ionicons/collection/icon/svg/md-expand.svg new file mode 100755 index 0000000..2d28ba2 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-expand.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-eye-off.svg b/public/assets/lib/ionicons/collection/icon/svg/md-eye-off.svg new file mode 100755 index 0000000..43825d2 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-eye-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-eye.svg b/public/assets/lib/ionicons/collection/icon/svg/md-eye.svg new file mode 100755 index 0000000..fb42350 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-eye.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-fastforward.svg b/public/assets/lib/ionicons/collection/icon/svg/md-fastforward.svg new file mode 100755 index 0000000..9deeb44 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-fastforward.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-female.svg b/public/assets/lib/ionicons/collection/icon/svg/md-female.svg new file mode 100755 index 0000000..d6b6822 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-female.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-filing.svg b/public/assets/lib/ionicons/collection/icon/svg/md-filing.svg new file mode 100755 index 0000000..341e8ff --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-filing.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-film.svg b/public/assets/lib/ionicons/collection/icon/svg/md-film.svg new file mode 100755 index 0000000..df1919b --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-film.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-finger-print.svg b/public/assets/lib/ionicons/collection/icon/svg/md-finger-print.svg new file mode 100755 index 0000000..a94c9d6 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-finger-print.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-fitness.svg b/public/assets/lib/ionicons/collection/icon/svg/md-fitness.svg new file mode 100755 index 0000000..b8618b4 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-fitness.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-flag.svg b/public/assets/lib/ionicons/collection/icon/svg/md-flag.svg new file mode 100755 index 0000000..bc77583 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-flag.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-flame.svg b/public/assets/lib/ionicons/collection/icon/svg/md-flame.svg new file mode 100755 index 0000000..002e087 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-flame.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-flash-off.svg b/public/assets/lib/ionicons/collection/icon/svg/md-flash-off.svg new file mode 100755 index 0000000..12e7fc8 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-flash-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-flash.svg b/public/assets/lib/ionicons/collection/icon/svg/md-flash.svg new file mode 100755 index 0000000..da94434 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-flash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-flashlight.svg b/public/assets/lib/ionicons/collection/icon/svg/md-flashlight.svg new file mode 100755 index 0000000..3431dfa --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-flashlight.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-flask.svg b/public/assets/lib/ionicons/collection/icon/svg/md-flask.svg new file mode 100755 index 0000000..6f09ff8 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-flask.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-flower.svg b/public/assets/lib/ionicons/collection/icon/svg/md-flower.svg new file mode 100755 index 0000000..06f22d4 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-flower.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-folder-open.svg b/public/assets/lib/ionicons/collection/icon/svg/md-folder-open.svg new file mode 100755 index 0000000..28b01a8 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-folder-open.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-folder.svg b/public/assets/lib/ionicons/collection/icon/svg/md-folder.svg new file mode 100755 index 0000000..6db3699 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-folder.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-football.svg b/public/assets/lib/ionicons/collection/icon/svg/md-football.svg new file mode 100755 index 0000000..47293cf --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-football.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-funnel.svg b/public/assets/lib/ionicons/collection/icon/svg/md-funnel.svg new file mode 100755 index 0000000..0c598d7 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-funnel.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-gift.svg b/public/assets/lib/ionicons/collection/icon/svg/md-gift.svg new file mode 100755 index 0000000..c214e61 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-gift.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-git-branch.svg b/public/assets/lib/ionicons/collection/icon/svg/md-git-branch.svg new file mode 100755 index 0000000..65b210e --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-git-branch.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-git-commit.svg b/public/assets/lib/ionicons/collection/icon/svg/md-git-commit.svg new file mode 100755 index 0000000..2e21d77 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-git-commit.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-git-compare.svg b/public/assets/lib/ionicons/collection/icon/svg/md-git-compare.svg new file mode 100755 index 0000000..a660cbc --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-git-compare.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-git-merge.svg b/public/assets/lib/ionicons/collection/icon/svg/md-git-merge.svg new file mode 100755 index 0000000..238d88d --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-git-merge.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-git-network.svg b/public/assets/lib/ionicons/collection/icon/svg/md-git-network.svg new file mode 100755 index 0000000..d8f5fc7 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-git-network.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-git-pull-request.svg b/public/assets/lib/ionicons/collection/icon/svg/md-git-pull-request.svg new file mode 100755 index 0000000..3bb2161 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-git-pull-request.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-glasses.svg b/public/assets/lib/ionicons/collection/icon/svg/md-glasses.svg new file mode 100755 index 0000000..6aa1f6d --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-glasses.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-globe.svg b/public/assets/lib/ionicons/collection/icon/svg/md-globe.svg new file mode 100755 index 0000000..72f247b --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-globe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-grid.svg b/public/assets/lib/ionicons/collection/icon/svg/md-grid.svg new file mode 100755 index 0000000..ea1563d --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-grid.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-hammer.svg b/public/assets/lib/ionicons/collection/icon/svg/md-hammer.svg new file mode 100755 index 0000000..f4742e7 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-hammer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-hand.svg b/public/assets/lib/ionicons/collection/icon/svg/md-hand.svg new file mode 100755 index 0000000..1d9d5f0 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-hand.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-happy.svg b/public/assets/lib/ionicons/collection/icon/svg/md-happy.svg new file mode 100755 index 0000000..cb88a80 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-happy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-headset.svg b/public/assets/lib/ionicons/collection/icon/svg/md-headset.svg new file mode 100755 index 0000000..a13a2e9 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-headset.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-heart-dislike.svg b/public/assets/lib/ionicons/collection/icon/svg/md-heart-dislike.svg new file mode 100755 index 0000000..630414c --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-heart-dislike.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-heart-empty.svg b/public/assets/lib/ionicons/collection/icon/svg/md-heart-empty.svg new file mode 100755 index 0000000..dd8c164 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-heart-empty.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-heart-half.svg b/public/assets/lib/ionicons/collection/icon/svg/md-heart-half.svg new file mode 100755 index 0000000..279d32a --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-heart-half.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-heart.svg b/public/assets/lib/ionicons/collection/icon/svg/md-heart.svg new file mode 100755 index 0000000..cb049a8 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-heart.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-help-buoy.svg b/public/assets/lib/ionicons/collection/icon/svg/md-help-buoy.svg new file mode 100755 index 0000000..903abcb --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-help-buoy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-help-circle-outline.svg b/public/assets/lib/ionicons/collection/icon/svg/md-help-circle-outline.svg new file mode 100755 index 0000000..744df13 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-help-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-help-circle.svg b/public/assets/lib/ionicons/collection/icon/svg/md-help-circle.svg new file mode 100755 index 0000000..61ada93 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-help-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-help.svg b/public/assets/lib/ionicons/collection/icon/svg/md-help.svg new file mode 100755 index 0000000..d9cac00 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-help.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-home.svg b/public/assets/lib/ionicons/collection/icon/svg/md-home.svg new file mode 100755 index 0000000..ac6302f --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-home.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-hourglass.svg b/public/assets/lib/ionicons/collection/icon/svg/md-hourglass.svg new file mode 100755 index 0000000..fce2faf --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-hourglass.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-ice-cream.svg b/public/assets/lib/ionicons/collection/icon/svg/md-ice-cream.svg new file mode 100755 index 0000000..4de64f9 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-ice-cream.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-image.svg b/public/assets/lib/ionicons/collection/icon/svg/md-image.svg new file mode 100755 index 0000000..97dc805 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-image.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-images.svg b/public/assets/lib/ionicons/collection/icon/svg/md-images.svg new file mode 100755 index 0000000..d78752f --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-images.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-infinite.svg b/public/assets/lib/ionicons/collection/icon/svg/md-infinite.svg new file mode 100755 index 0000000..be0af3b --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-infinite.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-information-circle-outline.svg b/public/assets/lib/ionicons/collection/icon/svg/md-information-circle-outline.svg new file mode 100755 index 0000000..01c631e --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-information-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-information-circle.svg b/public/assets/lib/ionicons/collection/icon/svg/md-information-circle.svg new file mode 100755 index 0000000..ea00a95 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-information-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-information.svg b/public/assets/lib/ionicons/collection/icon/svg/md-information.svg new file mode 100755 index 0000000..69cc2d3 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-information.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-jet.svg b/public/assets/lib/ionicons/collection/icon/svg/md-jet.svg new file mode 100755 index 0000000..9557e45 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-jet.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-journal.svg b/public/assets/lib/ionicons/collection/icon/svg/md-journal.svg new file mode 100755 index 0000000..0c7e5ea --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-journal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-key.svg b/public/assets/lib/ionicons/collection/icon/svg/md-key.svg new file mode 100755 index 0000000..125b48d --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-key.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-keypad.svg b/public/assets/lib/ionicons/collection/icon/svg/md-keypad.svg new file mode 100755 index 0000000..4969b1c --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-keypad.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-laptop.svg b/public/assets/lib/ionicons/collection/icon/svg/md-laptop.svg new file mode 100755 index 0000000..7f7e466 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-laptop.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-leaf.svg b/public/assets/lib/ionicons/collection/icon/svg/md-leaf.svg new file mode 100755 index 0000000..faa2235 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-leaf.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-link.svg b/public/assets/lib/ionicons/collection/icon/svg/md-link.svg new file mode 100755 index 0000000..399a1d9 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-link.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-list-box.svg b/public/assets/lib/ionicons/collection/icon/svg/md-list-box.svg new file mode 100755 index 0000000..ad44a0d --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-list-box.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-list.svg b/public/assets/lib/ionicons/collection/icon/svg/md-list.svg new file mode 100755 index 0000000..b939cbb --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-list.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-locate.svg b/public/assets/lib/ionicons/collection/icon/svg/md-locate.svg new file mode 100755 index 0000000..a39064e --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-locate.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-lock.svg b/public/assets/lib/ionicons/collection/icon/svg/md-lock.svg new file mode 100755 index 0000000..0751d0e --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-lock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-log-in.svg b/public/assets/lib/ionicons/collection/icon/svg/md-log-in.svg new file mode 100755 index 0000000..0252a53 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-log-in.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-log-out.svg b/public/assets/lib/ionicons/collection/icon/svg/md-log-out.svg new file mode 100755 index 0000000..9c5bfa6 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-log-out.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-magnet.svg b/public/assets/lib/ionicons/collection/icon/svg/md-magnet.svg new file mode 100755 index 0000000..a7a8fc7 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-magnet.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-mail-open.svg b/public/assets/lib/ionicons/collection/icon/svg/md-mail-open.svg new file mode 100755 index 0000000..16155b6 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-mail-open.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-mail-unread.svg b/public/assets/lib/ionicons/collection/icon/svg/md-mail-unread.svg new file mode 100755 index 0000000..944133e --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-mail-unread.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-mail.svg b/public/assets/lib/ionicons/collection/icon/svg/md-mail.svg new file mode 100755 index 0000000..a146cfc --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-mail.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-male.svg b/public/assets/lib/ionicons/collection/icon/svg/md-male.svg new file mode 100755 index 0000000..777f7ba --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-male.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-man.svg b/public/assets/lib/ionicons/collection/icon/svg/md-man.svg new file mode 100755 index 0000000..4cec2ab --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-man.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-map.svg b/public/assets/lib/ionicons/collection/icon/svg/md-map.svg new file mode 100755 index 0000000..4e0b4e8 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-map.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-medal.svg b/public/assets/lib/ionicons/collection/icon/svg/md-medal.svg new file mode 100755 index 0000000..ec2fd3b --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-medal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-medical.svg b/public/assets/lib/ionicons/collection/icon/svg/md-medical.svg new file mode 100755 index 0000000..24b7aa1 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-medical.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-medkit.svg b/public/assets/lib/ionicons/collection/icon/svg/md-medkit.svg new file mode 100755 index 0000000..1318374 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-medkit.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-megaphone.svg b/public/assets/lib/ionicons/collection/icon/svg/md-megaphone.svg new file mode 100755 index 0000000..f7c7932 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-megaphone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-menu.svg b/public/assets/lib/ionicons/collection/icon/svg/md-menu.svg new file mode 100755 index 0000000..30a009c --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-menu.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-mic-off.svg b/public/assets/lib/ionicons/collection/icon/svg/md-mic-off.svg new file mode 100755 index 0000000..9ed494e --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-mic-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-mic.svg b/public/assets/lib/ionicons/collection/icon/svg/md-mic.svg new file mode 100755 index 0000000..c370e2b --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-mic.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-microphone.svg b/public/assets/lib/ionicons/collection/icon/svg/md-microphone.svg new file mode 100755 index 0000000..77c5cbf --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-microphone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-moon.svg b/public/assets/lib/ionicons/collection/icon/svg/md-moon.svg new file mode 100755 index 0000000..38acf12 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-moon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-more.svg b/public/assets/lib/ionicons/collection/icon/svg/md-more.svg new file mode 100755 index 0000000..6ebfc41 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-more.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-move.svg b/public/assets/lib/ionicons/collection/icon/svg/md-move.svg new file mode 100755 index 0000000..16ba270 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-move.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-musical-note.svg b/public/assets/lib/ionicons/collection/icon/svg/md-musical-note.svg new file mode 100755 index 0000000..a3227db --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-musical-note.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-musical-notes.svg b/public/assets/lib/ionicons/collection/icon/svg/md-musical-notes.svg new file mode 100755 index 0000000..ecfed3a --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-musical-notes.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-navigate.svg b/public/assets/lib/ionicons/collection/icon/svg/md-navigate.svg new file mode 100755 index 0000000..ee249ce --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-navigate.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-notifications-off.svg b/public/assets/lib/ionicons/collection/icon/svg/md-notifications-off.svg new file mode 100755 index 0000000..31e9fd3 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-notifications-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-notifications-outline.svg b/public/assets/lib/ionicons/collection/icon/svg/md-notifications-outline.svg new file mode 100755 index 0000000..320990c --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-notifications-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-notifications.svg b/public/assets/lib/ionicons/collection/icon/svg/md-notifications.svg new file mode 100755 index 0000000..1710d02 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-notifications.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-nuclear.svg b/public/assets/lib/ionicons/collection/icon/svg/md-nuclear.svg new file mode 100755 index 0000000..f645777 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-nuclear.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-nutrition.svg b/public/assets/lib/ionicons/collection/icon/svg/md-nutrition.svg new file mode 100755 index 0000000..54e1df9 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-nutrition.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-open.svg b/public/assets/lib/ionicons/collection/icon/svg/md-open.svg new file mode 100755 index 0000000..8277ad9 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-open.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-options.svg b/public/assets/lib/ionicons/collection/icon/svg/md-options.svg new file mode 100755 index 0000000..47a9bca --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-options.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-outlet.svg b/public/assets/lib/ionicons/collection/icon/svg/md-outlet.svg new file mode 100755 index 0000000..2599120 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-outlet.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-paper-plane.svg b/public/assets/lib/ionicons/collection/icon/svg/md-paper-plane.svg new file mode 100755 index 0000000..6b0dae2 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-paper-plane.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-paper.svg b/public/assets/lib/ionicons/collection/icon/svg/md-paper.svg new file mode 100755 index 0000000..69d23bb --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-paper.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-partly-sunny.svg b/public/assets/lib/ionicons/collection/icon/svg/md-partly-sunny.svg new file mode 100755 index 0000000..5bb5fa2 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-partly-sunny.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-pause.svg b/public/assets/lib/ionicons/collection/icon/svg/md-pause.svg new file mode 100755 index 0000000..48baa51 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-pause.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-paw.svg b/public/assets/lib/ionicons/collection/icon/svg/md-paw.svg new file mode 100755 index 0000000..eef3263 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-paw.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-people.svg b/public/assets/lib/ionicons/collection/icon/svg/md-people.svg new file mode 100755 index 0000000..88cd072 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-people.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-person-add.svg b/public/assets/lib/ionicons/collection/icon/svg/md-person-add.svg new file mode 100755 index 0000000..992971c --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-person-add.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-person.svg b/public/assets/lib/ionicons/collection/icon/svg/md-person.svg new file mode 100755 index 0000000..cf00860 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-person.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-phone-landscape.svg b/public/assets/lib/ionicons/collection/icon/svg/md-phone-landscape.svg new file mode 100755 index 0000000..16ded88 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-phone-landscape.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-phone-portrait.svg b/public/assets/lib/ionicons/collection/icon/svg/md-phone-portrait.svg new file mode 100755 index 0000000..c28400f --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-phone-portrait.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-photos.svg b/public/assets/lib/ionicons/collection/icon/svg/md-photos.svg new file mode 100755 index 0000000..ce2831c --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-photos.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-pie.svg b/public/assets/lib/ionicons/collection/icon/svg/md-pie.svg new file mode 100755 index 0000000..bc5892b --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-pie.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-pin.svg b/public/assets/lib/ionicons/collection/icon/svg/md-pin.svg new file mode 100755 index 0000000..bdbe064 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-pin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-pint.svg b/public/assets/lib/ionicons/collection/icon/svg/md-pint.svg new file mode 100755 index 0000000..26135fb --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-pint.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-pizza.svg b/public/assets/lib/ionicons/collection/icon/svg/md-pizza.svg new file mode 100755 index 0000000..4290815 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-pizza.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-planet.svg b/public/assets/lib/ionicons/collection/icon/svg/md-planet.svg new file mode 100755 index 0000000..dbce976 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-planet.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-play-circle.svg b/public/assets/lib/ionicons/collection/icon/svg/md-play-circle.svg new file mode 100755 index 0000000..ff8963e --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-play-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-play.svg b/public/assets/lib/ionicons/collection/icon/svg/md-play.svg new file mode 100755 index 0000000..9ef742f --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-play.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-podium.svg b/public/assets/lib/ionicons/collection/icon/svg/md-podium.svg new file mode 100755 index 0000000..5ed7038 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-podium.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-power.svg b/public/assets/lib/ionicons/collection/icon/svg/md-power.svg new file mode 100755 index 0000000..669872d --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-power.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-pricetag.svg b/public/assets/lib/ionicons/collection/icon/svg/md-pricetag.svg new file mode 100755 index 0000000..fc8b0c4 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-pricetag.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-pricetags.svg b/public/assets/lib/ionicons/collection/icon/svg/md-pricetags.svg new file mode 100755 index 0000000..442ac99 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-pricetags.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-print.svg b/public/assets/lib/ionicons/collection/icon/svg/md-print.svg new file mode 100755 index 0000000..caea61c --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-print.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-pulse.svg b/public/assets/lib/ionicons/collection/icon/svg/md-pulse.svg new file mode 100755 index 0000000..a8f592d --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-pulse.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-qr-scanner.svg b/public/assets/lib/ionicons/collection/icon/svg/md-qr-scanner.svg new file mode 100755 index 0000000..f18169f --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-qr-scanner.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-quote.svg b/public/assets/lib/ionicons/collection/icon/svg/md-quote.svg new file mode 100755 index 0000000..18999c9 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-quote.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-radio-button-off.svg b/public/assets/lib/ionicons/collection/icon/svg/md-radio-button-off.svg new file mode 100755 index 0000000..8be080f --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-radio-button-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-radio-button-on.svg b/public/assets/lib/ionicons/collection/icon/svg/md-radio-button-on.svg new file mode 100755 index 0000000..e566909 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-radio-button-on.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-radio.svg b/public/assets/lib/ionicons/collection/icon/svg/md-radio.svg new file mode 100755 index 0000000..b5e81bf --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-radio.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-rainy.svg b/public/assets/lib/ionicons/collection/icon/svg/md-rainy.svg new file mode 100755 index 0000000..8d95ca8 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-rainy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-recording.svg b/public/assets/lib/ionicons/collection/icon/svg/md-recording.svg new file mode 100755 index 0000000..c48ae97 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-recording.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-redo.svg b/public/assets/lib/ionicons/collection/icon/svg/md-redo.svg new file mode 100755 index 0000000..2520616 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-redo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-refresh-circle.svg b/public/assets/lib/ionicons/collection/icon/svg/md-refresh-circle.svg new file mode 100755 index 0000000..254370d --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-refresh-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-refresh.svg b/public/assets/lib/ionicons/collection/icon/svg/md-refresh.svg new file mode 100755 index 0000000..714b88c --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-refresh.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-remove-circle-outline.svg b/public/assets/lib/ionicons/collection/icon/svg/md-remove-circle-outline.svg new file mode 100755 index 0000000..95868b5 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-remove-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-remove-circle.svg b/public/assets/lib/ionicons/collection/icon/svg/md-remove-circle.svg new file mode 100755 index 0000000..2af49ef --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-remove-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-remove.svg b/public/assets/lib/ionicons/collection/icon/svg/md-remove.svg new file mode 100755 index 0000000..d359763 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-remove.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-reorder.svg b/public/assets/lib/ionicons/collection/icon/svg/md-reorder.svg new file mode 100755 index 0000000..480fabc --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-reorder.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-repeat.svg b/public/assets/lib/ionicons/collection/icon/svg/md-repeat.svg new file mode 100755 index 0000000..3d14a1d --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-repeat.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-resize.svg b/public/assets/lib/ionicons/collection/icon/svg/md-resize.svg new file mode 100755 index 0000000..b9e27de --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-resize.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-restaurant.svg b/public/assets/lib/ionicons/collection/icon/svg/md-restaurant.svg new file mode 100755 index 0000000..3ce9eee --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-restaurant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-return-left.svg b/public/assets/lib/ionicons/collection/icon/svg/md-return-left.svg new file mode 100755 index 0000000..c6f1aee --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-return-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-return-right.svg b/public/assets/lib/ionicons/collection/icon/svg/md-return-right.svg new file mode 100755 index 0000000..c9ec959 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-return-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-reverse-camera.svg b/public/assets/lib/ionicons/collection/icon/svg/md-reverse-camera.svg new file mode 100755 index 0000000..f1f5533 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-reverse-camera.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-rewind.svg b/public/assets/lib/ionicons/collection/icon/svg/md-rewind.svg new file mode 100755 index 0000000..8e27b18 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-rewind.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-ribbon.svg b/public/assets/lib/ionicons/collection/icon/svg/md-ribbon.svg new file mode 100755 index 0000000..74d16b6 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-ribbon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-rocket.svg b/public/assets/lib/ionicons/collection/icon/svg/md-rocket.svg new file mode 100755 index 0000000..07dbfec --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-rocket.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-rose.svg b/public/assets/lib/ionicons/collection/icon/svg/md-rose.svg new file mode 100755 index 0000000..a8e1955 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-rose.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-sad.svg b/public/assets/lib/ionicons/collection/icon/svg/md-sad.svg new file mode 100755 index 0000000..7815239 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-sad.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-save.svg b/public/assets/lib/ionicons/collection/icon/svg/md-save.svg new file mode 100755 index 0000000..3926b0a --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-save.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-school.svg b/public/assets/lib/ionicons/collection/icon/svg/md-school.svg new file mode 100755 index 0000000..fa4f023 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-school.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-search.svg b/public/assets/lib/ionicons/collection/icon/svg/md-search.svg new file mode 100755 index 0000000..dff874a --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-search.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-send.svg b/public/assets/lib/ionicons/collection/icon/svg/md-send.svg new file mode 100755 index 0000000..0bd525c --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-send.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-settings.svg b/public/assets/lib/ionicons/collection/icon/svg/md-settings.svg new file mode 100755 index 0000000..0df80e9 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-settings.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-share-alt.svg b/public/assets/lib/ionicons/collection/icon/svg/md-share-alt.svg new file mode 100755 index 0000000..72d3cbe --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-share-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-share.svg b/public/assets/lib/ionicons/collection/icon/svg/md-share.svg new file mode 100755 index 0000000..ae94b98 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-share.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-shirt.svg b/public/assets/lib/ionicons/collection/icon/svg/md-shirt.svg new file mode 100755 index 0000000..4805f91 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-shirt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-shuffle.svg b/public/assets/lib/ionicons/collection/icon/svg/md-shuffle.svg new file mode 100755 index 0000000..1a3491e --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-shuffle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-skip-backward.svg b/public/assets/lib/ionicons/collection/icon/svg/md-skip-backward.svg new file mode 100755 index 0000000..7d29031 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-skip-backward.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-skip-forward.svg b/public/assets/lib/ionicons/collection/icon/svg/md-skip-forward.svg new file mode 100755 index 0000000..a847f69 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-skip-forward.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-snow.svg b/public/assets/lib/ionicons/collection/icon/svg/md-snow.svg new file mode 100755 index 0000000..70494a5 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-snow.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-speedometer.svg b/public/assets/lib/ionicons/collection/icon/svg/md-speedometer.svg new file mode 100755 index 0000000..f8c5702 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-speedometer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-square-outline.svg b/public/assets/lib/ionicons/collection/icon/svg/md-square-outline.svg new file mode 100755 index 0000000..911dce2 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-square-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-square.svg b/public/assets/lib/ionicons/collection/icon/svg/md-square.svg new file mode 100755 index 0000000..3a4587b --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-star-half.svg b/public/assets/lib/ionicons/collection/icon/svg/md-star-half.svg new file mode 100755 index 0000000..4dee2dd --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-star-half.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-star-outline.svg b/public/assets/lib/ionicons/collection/icon/svg/md-star-outline.svg new file mode 100755 index 0000000..79a6adb --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-star-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-star.svg b/public/assets/lib/ionicons/collection/icon/svg/md-star.svg new file mode 100755 index 0000000..1eba524 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-star.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-stats.svg b/public/assets/lib/ionicons/collection/icon/svg/md-stats.svg new file mode 100755 index 0000000..c5a648f --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-stats.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-stopwatch.svg b/public/assets/lib/ionicons/collection/icon/svg/md-stopwatch.svg new file mode 100755 index 0000000..0d0c6a2 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-stopwatch.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-subway.svg b/public/assets/lib/ionicons/collection/icon/svg/md-subway.svg new file mode 100755 index 0000000..b68622b --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-subway.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-sunny.svg b/public/assets/lib/ionicons/collection/icon/svg/md-sunny.svg new file mode 100755 index 0000000..2de1bf5 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-sunny.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-swap.svg b/public/assets/lib/ionicons/collection/icon/svg/md-swap.svg new file mode 100755 index 0000000..a6a6979 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-swap.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-switch.svg b/public/assets/lib/ionicons/collection/icon/svg/md-switch.svg new file mode 100755 index 0000000..dd50b19 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-switch.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-sync.svg b/public/assets/lib/ionicons/collection/icon/svg/md-sync.svg new file mode 100755 index 0000000..b477d94 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-sync.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-tablet-landscape.svg b/public/assets/lib/ionicons/collection/icon/svg/md-tablet-landscape.svg new file mode 100755 index 0000000..01d7d94 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-tablet-landscape.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-tablet-portrait.svg b/public/assets/lib/ionicons/collection/icon/svg/md-tablet-portrait.svg new file mode 100755 index 0000000..e454705 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-tablet-portrait.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-tennisball.svg b/public/assets/lib/ionicons/collection/icon/svg/md-tennisball.svg new file mode 100755 index 0000000..170e529 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-tennisball.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-text.svg b/public/assets/lib/ionicons/collection/icon/svg/md-text.svg new file mode 100755 index 0000000..760d081 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-text.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-thermometer.svg b/public/assets/lib/ionicons/collection/icon/svg/md-thermometer.svg new file mode 100755 index 0000000..993bb7b --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-thermometer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-thumbs-down.svg b/public/assets/lib/ionicons/collection/icon/svg/md-thumbs-down.svg new file mode 100755 index 0000000..8e057c4 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-thumbs-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-thumbs-up.svg b/public/assets/lib/ionicons/collection/icon/svg/md-thumbs-up.svg new file mode 100755 index 0000000..f042167 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-thumbs-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-thunderstorm.svg b/public/assets/lib/ionicons/collection/icon/svg/md-thunderstorm.svg new file mode 100755 index 0000000..d1e0127 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-thunderstorm.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-time.svg b/public/assets/lib/ionicons/collection/icon/svg/md-time.svg new file mode 100755 index 0000000..e87dc25 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-time.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-timer.svg b/public/assets/lib/ionicons/collection/icon/svg/md-timer.svg new file mode 100755 index 0000000..714c012 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-timer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-today.svg b/public/assets/lib/ionicons/collection/icon/svg/md-today.svg new file mode 100755 index 0000000..59d0a16 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-today.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-train.svg b/public/assets/lib/ionicons/collection/icon/svg/md-train.svg new file mode 100755 index 0000000..da6146e --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-train.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-transgender.svg b/public/assets/lib/ionicons/collection/icon/svg/md-transgender.svg new file mode 100755 index 0000000..e945ea6 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-transgender.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-trash.svg b/public/assets/lib/ionicons/collection/icon/svg/md-trash.svg new file mode 100755 index 0000000..d7da9e1 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-trash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-trending-down.svg b/public/assets/lib/ionicons/collection/icon/svg/md-trending-down.svg new file mode 100755 index 0000000..4e3e81f --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-trending-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-trending-up.svg b/public/assets/lib/ionicons/collection/icon/svg/md-trending-up.svg new file mode 100755 index 0000000..1f0daba --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-trending-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-trophy.svg b/public/assets/lib/ionicons/collection/icon/svg/md-trophy.svg new file mode 100755 index 0000000..f24c027 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-trophy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-tv.svg b/public/assets/lib/ionicons/collection/icon/svg/md-tv.svg new file mode 100755 index 0000000..12e69de --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-tv.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-umbrella.svg b/public/assets/lib/ionicons/collection/icon/svg/md-umbrella.svg new file mode 100755 index 0000000..f4ff127 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-umbrella.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-undo.svg b/public/assets/lib/ionicons/collection/icon/svg/md-undo.svg new file mode 100755 index 0000000..4569f59 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-undo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-unlock.svg b/public/assets/lib/ionicons/collection/icon/svg/md-unlock.svg new file mode 100755 index 0000000..56176db --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-unlock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-videocam.svg b/public/assets/lib/ionicons/collection/icon/svg/md-videocam.svg new file mode 100755 index 0000000..cef0bca --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-videocam.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-volume-high.svg b/public/assets/lib/ionicons/collection/icon/svg/md-volume-high.svg new file mode 100755 index 0000000..c7a0aa2 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-volume-high.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-volume-low.svg b/public/assets/lib/ionicons/collection/icon/svg/md-volume-low.svg new file mode 100755 index 0000000..dcbb1a0 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-volume-low.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-volume-mute.svg b/public/assets/lib/ionicons/collection/icon/svg/md-volume-mute.svg new file mode 100755 index 0000000..8479b8d --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-volume-mute.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-volume-off.svg b/public/assets/lib/ionicons/collection/icon/svg/md-volume-off.svg new file mode 100755 index 0000000..c018c12 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-volume-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-walk.svg b/public/assets/lib/ionicons/collection/icon/svg/md-walk.svg new file mode 100755 index 0000000..f1563fb --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-walk.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-wallet.svg b/public/assets/lib/ionicons/collection/icon/svg/md-wallet.svg new file mode 100755 index 0000000..77e7167 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-wallet.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-warning.svg b/public/assets/lib/ionicons/collection/icon/svg/md-warning.svg new file mode 100755 index 0000000..cb421e6 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-warning.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-watch.svg b/public/assets/lib/ionicons/collection/icon/svg/md-watch.svg new file mode 100755 index 0000000..ca1d30b --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-watch.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-water.svg b/public/assets/lib/ionicons/collection/icon/svg/md-water.svg new file mode 100755 index 0000000..1706720 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-water.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-wifi.svg b/public/assets/lib/ionicons/collection/icon/svg/md-wifi.svg new file mode 100755 index 0000000..3f982d8 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-wifi.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-wine.svg b/public/assets/lib/ionicons/collection/icon/svg/md-wine.svg new file mode 100755 index 0000000..0f6d08e --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-wine.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/icon/svg/md-woman.svg b/public/assets/lib/ionicons/collection/icon/svg/md-woman.svg new file mode 100755 index 0000000..d3ef287 --- /dev/null +++ b/public/assets/lib/ionicons/collection/icon/svg/md-woman.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/collection/interface.js b/public/assets/lib/ionicons/collection/interface.js new file mode 100755 index 0000000..e69de29 diff --git a/public/assets/lib/ionicons/css/ionicons-core.min.css b/public/assets/lib/ionicons/css/ionicons-core.min.css new file mode 100755 index 0000000..ee04e16 --- /dev/null +++ b/public/assets/lib/ionicons/css/ionicons-core.min.css @@ -0,0 +1,11 @@ +/*! + Ionicons, v4.2.5 + Created by Ben Sperry for the Ionic Framework, http://ionicons.com/ + https://twitter.com/benjsperry https://twitter.com/ionicframework + MIT License: https://github.com/driftyco/ionicons + + Android-style icons originally built by Google’s + Material Design Icons: https://github.com/google/material-design-icons + used under CC BY http://creativecommons.org/licenses/by/4.0/ + Modified icons to fit ionicon’s grid from original. +*/.ion-ios-add:before{content:"\f102"}.ion-ios-add-circle:before{content:"\f101"}.ion-ios-add-circle-outline:before{content:"\f100"}.ion-ios-airplane:before{content:"\f137"}.ion-ios-alarm:before{content:"\f3c8"}.ion-ios-albums:before{content:"\f3ca"}.ion-ios-alert:before{content:"\f104"}.ion-ios-american-football:before{content:"\f106"}.ion-ios-analytics:before{content:"\f3ce"}.ion-ios-aperture:before{content:"\f108"}.ion-ios-apps:before{content:"\f10a"}.ion-ios-appstore:before{content:"\f10c"}.ion-ios-archive:before{content:"\f10e"}.ion-ios-arrow-back:before{content:"\f3cf"}.ion-ios-arrow-down:before{content:"\f3d0"}.ion-ios-arrow-dropdown:before{content:"\f110"}.ion-ios-arrow-dropdown-circle:before{content:"\f125"}.ion-ios-arrow-dropleft:before{content:"\f112"}.ion-ios-arrow-dropleft-circle:before{content:"\f129"}.ion-ios-arrow-dropright:before{content:"\f114"}.ion-ios-arrow-dropright-circle:before{content:"\f12b"}.ion-ios-arrow-dropup:before{content:"\f116"}.ion-ios-arrow-dropup-circle:before{content:"\f12d"}.ion-ios-arrow-forward:before{content:"\f3d1"}.ion-ios-arrow-round-back:before{content:"\f117"}.ion-ios-arrow-round-down:before{content:"\f118"}.ion-ios-arrow-round-forward:before{content:"\f119"}.ion-ios-arrow-round-up:before{content:"\f11a"}.ion-ios-arrow-up:before{content:"\f3d8"}.ion-ios-at:before{content:"\f3da"}.ion-ios-attach:before{content:"\f11b"}.ion-ios-backspace:before{content:"\f11d"}.ion-ios-barcode:before{content:"\f3dc"}.ion-ios-baseball:before{content:"\f3de"}.ion-ios-basket:before{content:"\f11f"}.ion-ios-basketball:before{content:"\f3e0"}.ion-ios-battery-charging:before{content:"\f120"}.ion-ios-battery-dead:before{content:"\f121"}.ion-ios-battery-full:before{content:"\f122"}.ion-ios-beaker:before{content:"\f124"}.ion-ios-bed:before{content:"\f139"}.ion-ios-beer:before{content:"\f126"}.ion-ios-bicycle:before{content:"\f127"}.ion-ios-bluetooth:before{content:"\f128"}.ion-ios-boat:before{content:"\f12a"}.ion-ios-body:before{content:"\f3e4"}.ion-ios-bonfire:before{content:"\f12c"}.ion-ios-book:before{content:"\f3e8"}.ion-ios-bookmark:before{content:"\f12e"}.ion-ios-bookmarks:before{content:"\f3ea"}.ion-ios-bowtie:before{content:"\f130"}.ion-ios-briefcase:before{content:"\f3ee"}.ion-ios-browsers:before{content:"\f3f0"}.ion-ios-brush:before{content:"\f132"}.ion-ios-bug:before{content:"\f134"}.ion-ios-build:before{content:"\f136"}.ion-ios-bulb:before{content:"\f138"}.ion-ios-bus:before{content:"\f13a"}.ion-ios-business:before{content:"\f1a3"}.ion-ios-cafe:before{content:"\f13c"}.ion-ios-calculator:before{content:"\f3f2"}.ion-ios-calendar:before{content:"\f3f4"}.ion-ios-call:before{content:"\f13e"}.ion-ios-camera:before{content:"\f3f6"}.ion-ios-car:before{content:"\f140"}.ion-ios-card:before{content:"\f142"}.ion-ios-cart:before{content:"\f3f8"}.ion-ios-cash:before{content:"\f144"}.ion-ios-cellular:before{content:"\f13d"}.ion-ios-chatboxes:before{content:"\f3fa"}.ion-ios-chatbubbles:before{content:"\f146"}.ion-ios-checkbox:before{content:"\f148"}.ion-ios-checkbox-outline:before{content:"\f147"}.ion-ios-checkmark:before{content:"\f3ff"}.ion-ios-checkmark-circle:before{content:"\f14a"}.ion-ios-checkmark-circle-outline:before{content:"\f149"}.ion-ios-clipboard:before{content:"\f14c"}.ion-ios-clock:before{content:"\f403"}.ion-ios-close:before{content:"\f406"}.ion-ios-close-circle:before{content:"\f14e"}.ion-ios-close-circle-outline:before{content:"\f14d"}.ion-ios-cloud:before{content:"\f40c"}.ion-ios-cloud-circle:before{content:"\f152"}.ion-ios-cloud-done:before{content:"\f154"}.ion-ios-cloud-download:before{content:"\f408"}.ion-ios-cloud-outline:before{content:"\f409"}.ion-ios-cloud-upload:before{content:"\f40b"}.ion-ios-cloudy:before{content:"\f410"}.ion-ios-cloudy-night:before{content:"\f40e"}.ion-ios-code:before{content:"\f157"}.ion-ios-code-download:before{content:"\f155"}.ion-ios-code-working:before{content:"\f156"}.ion-ios-cog:before{content:"\f412"}.ion-ios-color-fill:before{content:"\f159"}.ion-ios-color-filter:before{content:"\f414"}.ion-ios-color-palette:before{content:"\f15b"}.ion-ios-color-wand:before{content:"\f416"}.ion-ios-compass:before{content:"\f15d"}.ion-ios-construct:before{content:"\f15f"}.ion-ios-contact:before{content:"\f41a"}.ion-ios-contacts:before{content:"\f161"}.ion-ios-contract:before{content:"\f162"}.ion-ios-contrast:before{content:"\f163"}.ion-ios-copy:before{content:"\f41c"}.ion-ios-create:before{content:"\f165"}.ion-ios-crop:before{content:"\f41e"}.ion-ios-cube:before{content:"\f168"}.ion-ios-cut:before{content:"\f16a"}.ion-ios-desktop:before{content:"\f16c"}.ion-ios-disc:before{content:"\f16e"}.ion-ios-document:before{content:"\f170"}.ion-ios-done-all:before{content:"\f171"}.ion-ios-download:before{content:"\f420"}.ion-ios-easel:before{content:"\f173"}.ion-ios-egg:before{content:"\f175"}.ion-ios-exit:before{content:"\f177"}.ion-ios-expand:before{content:"\f178"}.ion-ios-eye:before{content:"\f425"}.ion-ios-eye-off:before{content:"\f17a"}.ion-ios-fastforward:before{content:"\f427"}.ion-ios-female:before{content:"\f17b"}.ion-ios-filing:before{content:"\f429"}.ion-ios-film:before{content:"\f42b"}.ion-ios-finger-print:before{content:"\f17c"}.ion-ios-fitness:before{content:"\f1ab"}.ion-ios-flag:before{content:"\f42d"}.ion-ios-flame:before{content:"\f42f"}.ion-ios-flash:before{content:"\f17e"}.ion-ios-flash-off:before{content:"\f12f"}.ion-ios-flashlight:before{content:"\f141"}.ion-ios-flask:before{content:"\f431"}.ion-ios-flower:before{content:"\f433"}.ion-ios-folder:before{content:"\f435"}.ion-ios-folder-open:before{content:"\f180"}.ion-ios-football:before{content:"\f437"}.ion-ios-funnel:before{content:"\f182"}.ion-ios-gift:before{content:"\f191"}.ion-ios-git-branch:before{content:"\f183"}.ion-ios-git-commit:before{content:"\f184"}.ion-ios-git-compare:before{content:"\f185"}.ion-ios-git-merge:before{content:"\f186"}.ion-ios-git-network:before{content:"\f187"}.ion-ios-git-pull-request:before{content:"\f188"}.ion-ios-glasses:before{content:"\f43f"}.ion-ios-globe:before{content:"\f18a"}.ion-ios-grid:before{content:"\f18c"}.ion-ios-hammer:before{content:"\f18e"}.ion-ios-hand:before{content:"\f190"}.ion-ios-happy:before{content:"\f192"}.ion-ios-headset:before{content:"\f194"}.ion-ios-heart:before{content:"\f443"}.ion-ios-heart-dislike:before{content:"\f13f"}.ion-ios-heart-empty:before{content:"\f19b"}.ion-ios-heart-half:before{content:"\f19d"}.ion-ios-help:before{content:"\f446"}.ion-ios-help-buoy:before{content:"\f196"}.ion-ios-help-circle:before{content:"\f198"}.ion-ios-help-circle-outline:before{content:"\f197"}.ion-ios-home:before{content:"\f448"}.ion-ios-hourglass:before{content:"\f103"}.ion-ios-ice-cream:before{content:"\f19a"}.ion-ios-image:before{content:"\f19c"}.ion-ios-images:before{content:"\f19e"}.ion-ios-infinite:before{content:"\f44a"}.ion-ios-information:before{content:"\f44d"}.ion-ios-information-circle:before{content:"\f1a0"}.ion-ios-information-circle-outline:before{content:"\f19f"}.ion-ios-jet:before{content:"\f1a5"}.ion-ios-journal:before{content:"\f189"}.ion-ios-key:before{content:"\f1a7"}.ion-ios-keypad:before{content:"\f450"}.ion-ios-laptop:before{content:"\f1a8"}.ion-ios-leaf:before{content:"\f1aa"}.ion-ios-link:before{content:"\f22a"}.ion-ios-list:before{content:"\f454"}.ion-ios-list-box:before{content:"\f143"}.ion-ios-locate:before{content:"\f1ae"}.ion-ios-lock:before{content:"\f1b0"}.ion-ios-log-in:before{content:"\f1b1"}.ion-ios-log-out:before{content:"\f1b2"}.ion-ios-magnet:before{content:"\f1b4"}.ion-ios-mail:before{content:"\f1b8"}.ion-ios-mail-open:before{content:"\f1b6"}.ion-ios-mail-unread:before{content:"\f145"}.ion-ios-male:before{content:"\f1b9"}.ion-ios-man:before{content:"\f1bb"}.ion-ios-map:before{content:"\f1bd"}.ion-ios-medal:before{content:"\f1bf"}.ion-ios-medical:before{content:"\f45c"}.ion-ios-medkit:before{content:"\f45e"}.ion-ios-megaphone:before{content:"\f1c1"}.ion-ios-menu:before{content:"\f1c3"}.ion-ios-mic:before{content:"\f461"}.ion-ios-mic-off:before{content:"\f45f"}.ion-ios-microphone:before{content:"\f1c6"}.ion-ios-moon:before{content:"\f468"}.ion-ios-more:before{content:"\f1c8"}.ion-ios-move:before{content:"\f1cb"}.ion-ios-musical-note:before{content:"\f46b"}.ion-ios-musical-notes:before{content:"\f46c"}.ion-ios-navigate:before{content:"\f46e"}.ion-ios-notifications:before{content:"\f1d3"}.ion-ios-notifications-off:before{content:"\f1d1"}.ion-ios-notifications-outline:before{content:"\f133"}.ion-ios-nuclear:before{content:"\f1d5"}.ion-ios-nutrition:before{content:"\f470"}.ion-ios-open:before{content:"\f1d7"}.ion-ios-options:before{content:"\f1d9"}.ion-ios-outlet:before{content:"\f1db"}.ion-ios-paper:before{content:"\f472"}.ion-ios-paper-plane:before{content:"\f1dd"}.ion-ios-partly-sunny:before{content:"\f1df"}.ion-ios-pause:before{content:"\f478"}.ion-ios-paw:before{content:"\f47a"}.ion-ios-people:before{content:"\f47c"}.ion-ios-person:before{content:"\f47e"}.ion-ios-person-add:before{content:"\f1e1"}.ion-ios-phone-landscape:before{content:"\f1e2"}.ion-ios-phone-portrait:before{content:"\f1e3"}.ion-ios-photos:before{content:"\f482"}.ion-ios-pie:before{content:"\f484"}.ion-ios-pin:before{content:"\f1e5"}.ion-ios-pint:before{content:"\f486"}.ion-ios-pizza:before{content:"\f1e7"}.ion-ios-planet:before{content:"\f1eb"}.ion-ios-play:before{content:"\f488"}.ion-ios-play-circle:before{content:"\f113"}.ion-ios-podium:before{content:"\f1ed"}.ion-ios-power:before{content:"\f1ef"}.ion-ios-pricetag:before{content:"\f48d"}.ion-ios-pricetags:before{content:"\f48f"}.ion-ios-print:before{content:"\f1f1"}.ion-ios-pulse:before{content:"\f493"}.ion-ios-qr-scanner:before{content:"\f1f3"}.ion-ios-quote:before{content:"\f1f5"}.ion-ios-radio:before{content:"\f1f9"}.ion-ios-radio-button-off:before{content:"\f1f6"}.ion-ios-radio-button-on:before{content:"\f1f7"}.ion-ios-rainy:before{content:"\f495"}.ion-ios-recording:before{content:"\f497"}.ion-ios-redo:before{content:"\f499"}.ion-ios-refresh:before{content:"\f49c"}.ion-ios-refresh-circle:before{content:"\f135"}.ion-ios-remove:before{content:"\f1fc"}.ion-ios-remove-circle:before{content:"\f1fb"}.ion-ios-remove-circle-outline:before{content:"\f1fa"}.ion-ios-reorder:before{content:"\f1fd"}.ion-ios-repeat:before{content:"\f1fe"}.ion-ios-resize:before{content:"\f1ff"}.ion-ios-restaurant:before{content:"\f201"}.ion-ios-return-left:before{content:"\f202"}.ion-ios-return-right:before{content:"\f203"}.ion-ios-reverse-camera:before{content:"\f49f"}.ion-ios-rewind:before{content:"\f4a1"}.ion-ios-ribbon:before{content:"\f205"}.ion-ios-rocket:before{content:"\f14b"}.ion-ios-rose:before{content:"\f4a3"}.ion-ios-sad:before{content:"\f207"}.ion-ios-save:before{content:"\f1a6"}.ion-ios-school:before{content:"\f209"}.ion-ios-search:before{content:"\f4a5"}.ion-ios-send:before{content:"\f20c"}.ion-ios-settings:before{content:"\f4a7"}.ion-ios-share:before{content:"\f211"}.ion-ios-share-alt:before{content:"\f20f"}.ion-ios-shirt:before{content:"\f213"}.ion-ios-shuffle:before{content:"\f4a9"}.ion-ios-skip-backward:before{content:"\f215"}.ion-ios-skip-forward:before{content:"\f217"}.ion-ios-snow:before{content:"\f218"}.ion-ios-speedometer:before{content:"\f4b0"}.ion-ios-square:before{content:"\f21a"}.ion-ios-square-outline:before{content:"\f15c"}.ion-ios-star:before{content:"\f4b3"}.ion-ios-star-half:before{content:"\f4b1"}.ion-ios-star-outline:before{content:"\f4b2"}.ion-ios-stats:before{content:"\f21c"}.ion-ios-stopwatch:before{content:"\f4b5"}.ion-ios-subway:before{content:"\f21e"}.ion-ios-sunny:before{content:"\f4b7"}.ion-ios-swap:before{content:"\f21f"}.ion-ios-switch:before{content:"\f221"}.ion-ios-sync:before{content:"\f222"}.ion-ios-tablet-landscape:before{content:"\f223"}.ion-ios-tablet-portrait:before{content:"\f24e"}.ion-ios-tennisball:before{content:"\f4bb"}.ion-ios-text:before{content:"\f250"}.ion-ios-thermometer:before{content:"\f252"}.ion-ios-thumbs-down:before{content:"\f254"}.ion-ios-thumbs-up:before{content:"\f256"}.ion-ios-thunderstorm:before{content:"\f4bd"}.ion-ios-time:before{content:"\f4bf"}.ion-ios-timer:before{content:"\f4c1"}.ion-ios-today:before{content:"\f14f"}.ion-ios-train:before{content:"\f258"}.ion-ios-transgender:before{content:"\f259"}.ion-ios-trash:before{content:"\f4c5"}.ion-ios-trending-down:before{content:"\f25a"}.ion-ios-trending-up:before{content:"\f25b"}.ion-ios-trophy:before{content:"\f25d"}.ion-ios-tv:before{content:"\f115"}.ion-ios-umbrella:before{content:"\f25f"}.ion-ios-undo:before{content:"\f4c7"}.ion-ios-unlock:before{content:"\f261"}.ion-ios-videocam:before{content:"\f4cd"}.ion-ios-volume-high:before{content:"\f11c"}.ion-ios-volume-low:before{content:"\f11e"}.ion-ios-volume-mute:before{content:"\f263"}.ion-ios-volume-off:before{content:"\f264"}.ion-ios-walk:before{content:"\f266"}.ion-ios-wallet:before{content:"\f18b"}.ion-ios-warning:before{content:"\f268"}.ion-ios-watch:before{content:"\f269"}.ion-ios-water:before{content:"\f26b"}.ion-ios-wifi:before{content:"\f26d"}.ion-ios-wine:before{content:"\f26f"}.ion-ios-woman:before{content:"\f271"}.ion-logo-android:before{content:"\f225"}.ion-logo-angular:before{content:"\f227"}.ion-logo-apple:before{content:"\f229"}.ion-logo-bitbucket:before{content:"\f193"}.ion-logo-bitcoin:before{content:"\f22b"}.ion-logo-buffer:before{content:"\f22d"}.ion-logo-chrome:before{content:"\f22f"}.ion-logo-closed-captioning:before{content:"\f105"}.ion-logo-codepen:before{content:"\f230"}.ion-logo-css3:before{content:"\f231"}.ion-logo-designernews:before{content:"\f232"}.ion-logo-dribbble:before{content:"\f233"}.ion-logo-dropbox:before{content:"\f234"}.ion-logo-euro:before{content:"\f235"}.ion-logo-facebook:before{content:"\f236"}.ion-logo-flickr:before{content:"\f107"}.ion-logo-foursquare:before{content:"\f237"}.ion-logo-freebsd-devil:before{content:"\f238"}.ion-logo-game-controller-a:before{content:"\f13b"}.ion-logo-game-controller-b:before{content:"\f181"}.ion-logo-github:before{content:"\f239"}.ion-logo-google:before{content:"\f23a"}.ion-logo-googleplus:before{content:"\f23b"}.ion-logo-hackernews:before{content:"\f23c"}.ion-logo-html5:before{content:"\f23d"}.ion-logo-instagram:before{content:"\f23e"}.ion-logo-ionic:before{content:"\f150"}.ion-logo-ionitron:before{content:"\f151"}.ion-logo-javascript:before{content:"\f23f"}.ion-logo-linkedin:before{content:"\f240"}.ion-logo-markdown:before{content:"\f241"}.ion-logo-model-s:before{content:"\f153"}.ion-logo-no-smoking:before{content:"\f109"}.ion-logo-nodejs:before{content:"\f242"}.ion-logo-npm:before{content:"\f195"}.ion-logo-octocat:before{content:"\f243"}.ion-logo-pinterest:before{content:"\f244"}.ion-logo-playstation:before{content:"\f245"}.ion-logo-polymer:before{content:"\f15e"}.ion-logo-python:before{content:"\f246"}.ion-logo-reddit:before{content:"\f247"}.ion-logo-rss:before{content:"\f248"}.ion-logo-sass:before{content:"\f249"}.ion-logo-skype:before{content:"\f24a"}.ion-logo-slack:before{content:"\f10b"}.ion-logo-snapchat:before{content:"\f24b"}.ion-logo-steam:before{content:"\f24c"}.ion-logo-tumblr:before{content:"\f24d"}.ion-logo-tux:before{content:"\f2ae"}.ion-logo-twitch:before{content:"\f2af"}.ion-logo-twitter:before{content:"\f2b0"}.ion-logo-usd:before{content:"\f2b1"}.ion-logo-vimeo:before{content:"\f2c4"}.ion-logo-vk:before{content:"\f10d"}.ion-logo-whatsapp:before{content:"\f2c5"}.ion-logo-windows:before{content:"\f32f"}.ion-logo-wordpress:before{content:"\f330"}.ion-logo-xbox:before{content:"\f34c"}.ion-logo-xing:before{content:"\f10f"}.ion-logo-yahoo:before{content:"\f34d"}.ion-logo-yen:before{content:"\f34e"}.ion-logo-youtube:before{content:"\f34f"}.ion-md-add:before{content:"\f273"}.ion-md-add-circle:before{content:"\f272"}.ion-md-add-circle-outline:before{content:"\f158"}.ion-md-airplane:before{content:"\f15a"}.ion-md-alarm:before{content:"\f274"}.ion-md-albums:before{content:"\f275"}.ion-md-alert:before{content:"\f276"}.ion-md-american-football:before{content:"\f277"}.ion-md-analytics:before{content:"\f278"}.ion-md-aperture:before{content:"\f279"}.ion-md-apps:before{content:"\f27a"}.ion-md-appstore:before{content:"\f27b"}.ion-md-archive:before{content:"\f27c"}.ion-md-arrow-back:before{content:"\f27d"}.ion-md-arrow-down:before{content:"\f27e"}.ion-md-arrow-dropdown:before{content:"\f280"}.ion-md-arrow-dropdown-circle:before{content:"\f27f"}.ion-md-arrow-dropleft:before{content:"\f282"}.ion-md-arrow-dropleft-circle:before{content:"\f281"}.ion-md-arrow-dropright:before{content:"\f284"}.ion-md-arrow-dropright-circle:before{content:"\f283"}.ion-md-arrow-dropup:before{content:"\f286"}.ion-md-arrow-dropup-circle:before{content:"\f285"}.ion-md-arrow-forward:before{content:"\f287"}.ion-md-arrow-round-back:before{content:"\f288"}.ion-md-arrow-round-down:before{content:"\f289"}.ion-md-arrow-round-forward:before{content:"\f28a"}.ion-md-arrow-round-up:before{content:"\f28b"}.ion-md-arrow-up:before{content:"\f28c"}.ion-md-at:before{content:"\f28d"}.ion-md-attach:before{content:"\f28e"}.ion-md-backspace:before{content:"\f28f"}.ion-md-barcode:before{content:"\f290"}.ion-md-baseball:before{content:"\f291"}.ion-md-basket:before{content:"\f292"}.ion-md-basketball:before{content:"\f293"}.ion-md-battery-charging:before{content:"\f294"}.ion-md-battery-dead:before{content:"\f295"}.ion-md-battery-full:before{content:"\f296"}.ion-md-beaker:before{content:"\f297"}.ion-md-bed:before{content:"\f160"}.ion-md-beer:before{content:"\f298"}.ion-md-bicycle:before{content:"\f299"}.ion-md-bluetooth:before{content:"\f29a"}.ion-md-boat:before{content:"\f29b"}.ion-md-body:before{content:"\f29c"}.ion-md-bonfire:before{content:"\f29d"}.ion-md-book:before{content:"\f29e"}.ion-md-bookmark:before{content:"\f29f"}.ion-md-bookmarks:before{content:"\f2a0"}.ion-md-bowtie:before{content:"\f2a1"}.ion-md-briefcase:before{content:"\f2a2"}.ion-md-browsers:before{content:"\f2a3"}.ion-md-brush:before{content:"\f2a4"}.ion-md-bug:before{content:"\f2a5"}.ion-md-build:before{content:"\f2a6"}.ion-md-bulb:before{content:"\f2a7"}.ion-md-bus:before{content:"\f2a8"}.ion-md-business:before{content:"\f1a4"}.ion-md-cafe:before{content:"\f2a9"}.ion-md-calculator:before{content:"\f2aa"}.ion-md-calendar:before{content:"\f2ab"}.ion-md-call:before{content:"\f2ac"}.ion-md-camera:before{content:"\f2ad"}.ion-md-car:before{content:"\f2b2"}.ion-md-card:before{content:"\f2b3"}.ion-md-cart:before{content:"\f2b4"}.ion-md-cash:before{content:"\f2b5"}.ion-md-cellular:before{content:"\f164"}.ion-md-chatboxes:before{content:"\f2b6"}.ion-md-chatbubbles:before{content:"\f2b7"}.ion-md-checkbox:before{content:"\f2b9"}.ion-md-checkbox-outline:before{content:"\f2b8"}.ion-md-checkmark:before{content:"\f2bc"}.ion-md-checkmark-circle:before{content:"\f2bb"}.ion-md-checkmark-circle-outline:before{content:"\f2ba"}.ion-md-clipboard:before{content:"\f2bd"}.ion-md-clock:before{content:"\f2be"}.ion-md-close:before{content:"\f2c0"}.ion-md-close-circle:before{content:"\f2bf"}.ion-md-close-circle-outline:before{content:"\f166"}.ion-md-cloud:before{content:"\f2c9"}.ion-md-cloud-circle:before{content:"\f2c2"}.ion-md-cloud-done:before{content:"\f2c3"}.ion-md-cloud-download:before{content:"\f2c6"}.ion-md-cloud-outline:before{content:"\f2c7"}.ion-md-cloud-upload:before{content:"\f2c8"}.ion-md-cloudy:before{content:"\f2cb"}.ion-md-cloudy-night:before{content:"\f2ca"}.ion-md-code:before{content:"\f2ce"}.ion-md-code-download:before{content:"\f2cc"}.ion-md-code-working:before{content:"\f2cd"}.ion-md-cog:before{content:"\f2cf"}.ion-md-color-fill:before{content:"\f2d0"}.ion-md-color-filter:before{content:"\f2d1"}.ion-md-color-palette:before{content:"\f2d2"}.ion-md-color-wand:before{content:"\f2d3"}.ion-md-compass:before{content:"\f2d4"}.ion-md-construct:before{content:"\f2d5"}.ion-md-contact:before{content:"\f2d6"}.ion-md-contacts:before{content:"\f2d7"}.ion-md-contract:before{content:"\f2d8"}.ion-md-contrast:before{content:"\f2d9"}.ion-md-copy:before{content:"\f2da"}.ion-md-create:before{content:"\f2db"}.ion-md-crop:before{content:"\f2dc"}.ion-md-cube:before{content:"\f2dd"}.ion-md-cut:before{content:"\f2de"}.ion-md-desktop:before{content:"\f2df"}.ion-md-disc:before{content:"\f2e0"}.ion-md-document:before{content:"\f2e1"}.ion-md-done-all:before{content:"\f2e2"}.ion-md-download:before{content:"\f2e3"}.ion-md-easel:before{content:"\f2e4"}.ion-md-egg:before{content:"\f2e5"}.ion-md-exit:before{content:"\f2e6"}.ion-md-expand:before{content:"\f2e7"}.ion-md-eye:before{content:"\f2e9"}.ion-md-eye-off:before{content:"\f2e8"}.ion-md-fastforward:before{content:"\f2ea"}.ion-md-female:before{content:"\f2eb"}.ion-md-filing:before{content:"\f2ec"}.ion-md-film:before{content:"\f2ed"}.ion-md-finger-print:before{content:"\f2ee"}.ion-md-fitness:before{content:"\f1ac"}.ion-md-flag:before{content:"\f2ef"}.ion-md-flame:before{content:"\f2f0"}.ion-md-flash:before{content:"\f2f1"}.ion-md-flash-off:before{content:"\f169"}.ion-md-flashlight:before{content:"\f16b"}.ion-md-flask:before{content:"\f2f2"}.ion-md-flower:before{content:"\f2f3"}.ion-md-folder:before{content:"\f2f5"}.ion-md-folder-open:before{content:"\f2f4"}.ion-md-football:before{content:"\f2f6"}.ion-md-funnel:before{content:"\f2f7"}.ion-md-gift:before{content:"\f199"}.ion-md-git-branch:before{content:"\f2fa"}.ion-md-git-commit:before{content:"\f2fb"}.ion-md-git-compare:before{content:"\f2fc"}.ion-md-git-merge:before{content:"\f2fd"}.ion-md-git-network:before{content:"\f2fe"}.ion-md-git-pull-request:before{content:"\f2ff"}.ion-md-glasses:before{content:"\f300"}.ion-md-globe:before{content:"\f301"}.ion-md-grid:before{content:"\f302"}.ion-md-hammer:before{content:"\f303"}.ion-md-hand:before{content:"\f304"}.ion-md-happy:before{content:"\f305"}.ion-md-headset:before{content:"\f306"}.ion-md-heart:before{content:"\f308"}.ion-md-heart-dislike:before{content:"\f167"}.ion-md-heart-empty:before{content:"\f1a1"}.ion-md-heart-half:before{content:"\f1a2"}.ion-md-help:before{content:"\f30b"}.ion-md-help-buoy:before{content:"\f309"}.ion-md-help-circle:before{content:"\f30a"}.ion-md-help-circle-outline:before{content:"\f16d"}.ion-md-home:before{content:"\f30c"}.ion-md-hourglass:before{content:"\f111"}.ion-md-ice-cream:before{content:"\f30d"}.ion-md-image:before{content:"\f30e"}.ion-md-images:before{content:"\f30f"}.ion-md-infinite:before{content:"\f310"}.ion-md-information:before{content:"\f312"}.ion-md-information-circle:before{content:"\f311"}.ion-md-information-circle-outline:before{content:"\f16f"}.ion-md-jet:before{content:"\f315"}.ion-md-journal:before{content:"\f18d"}.ion-md-key:before{content:"\f316"}.ion-md-keypad:before{content:"\f317"}.ion-md-laptop:before{content:"\f318"}.ion-md-leaf:before{content:"\f319"}.ion-md-link:before{content:"\f22e"}.ion-md-list:before{content:"\f31b"}.ion-md-list-box:before{content:"\f31a"}.ion-md-locate:before{content:"\f31c"}.ion-md-lock:before{content:"\f31d"}.ion-md-log-in:before{content:"\f31e"}.ion-md-log-out:before{content:"\f31f"}.ion-md-magnet:before{content:"\f320"}.ion-md-mail:before{content:"\f322"}.ion-md-mail-open:before{content:"\f321"}.ion-md-mail-unread:before{content:"\f172"}.ion-md-male:before{content:"\f323"}.ion-md-man:before{content:"\f324"}.ion-md-map:before{content:"\f325"}.ion-md-medal:before{content:"\f326"}.ion-md-medical:before{content:"\f327"}.ion-md-medkit:before{content:"\f328"}.ion-md-megaphone:before{content:"\f329"}.ion-md-menu:before{content:"\f32a"}.ion-md-mic:before{content:"\f32c"}.ion-md-mic-off:before{content:"\f32b"}.ion-md-microphone:before{content:"\f32d"}.ion-md-moon:before{content:"\f32e"}.ion-md-more:before{content:"\f1c9"}.ion-md-move:before{content:"\f331"}.ion-md-musical-note:before{content:"\f332"}.ion-md-musical-notes:before{content:"\f333"}.ion-md-navigate:before{content:"\f334"}.ion-md-notifications:before{content:"\f338"}.ion-md-notifications-off:before{content:"\f336"}.ion-md-notifications-outline:before{content:"\f337"}.ion-md-nuclear:before{content:"\f339"}.ion-md-nutrition:before{content:"\f33a"}.ion-md-open:before{content:"\f33b"}.ion-md-options:before{content:"\f33c"}.ion-md-outlet:before{content:"\f33d"}.ion-md-paper:before{content:"\f33f"}.ion-md-paper-plane:before{content:"\f33e"}.ion-md-partly-sunny:before{content:"\f340"}.ion-md-pause:before{content:"\f341"}.ion-md-paw:before{content:"\f342"}.ion-md-people:before{content:"\f343"}.ion-md-person:before{content:"\f345"}.ion-md-person-add:before{content:"\f344"}.ion-md-phone-landscape:before{content:"\f346"}.ion-md-phone-portrait:before{content:"\f347"}.ion-md-photos:before{content:"\f348"}.ion-md-pie:before{content:"\f349"}.ion-md-pin:before{content:"\f34a"}.ion-md-pint:before{content:"\f34b"}.ion-md-pizza:before{content:"\f354"}.ion-md-planet:before{content:"\f356"}.ion-md-play:before{content:"\f357"}.ion-md-play-circle:before{content:"\f174"}.ion-md-podium:before{content:"\f358"}.ion-md-power:before{content:"\f359"}.ion-md-pricetag:before{content:"\f35a"}.ion-md-pricetags:before{content:"\f35b"}.ion-md-print:before{content:"\f35c"}.ion-md-pulse:before{content:"\f35d"}.ion-md-qr-scanner:before{content:"\f35e"}.ion-md-quote:before{content:"\f35f"}.ion-md-radio:before{content:"\f362"}.ion-md-radio-button-off:before{content:"\f360"}.ion-md-radio-button-on:before{content:"\f361"}.ion-md-rainy:before{content:"\f363"}.ion-md-recording:before{content:"\f364"}.ion-md-redo:before{content:"\f365"}.ion-md-refresh:before{content:"\f366"}.ion-md-refresh-circle:before{content:"\f228"}.ion-md-remove:before{content:"\f368"}.ion-md-remove-circle:before{content:"\f367"}.ion-md-remove-circle-outline:before{content:"\f176"}.ion-md-reorder:before{content:"\f369"}.ion-md-repeat:before{content:"\f36a"}.ion-md-resize:before{content:"\f36b"}.ion-md-restaurant:before{content:"\f36c"}.ion-md-return-left:before{content:"\f36d"}.ion-md-return-right:before{content:"\f36e"}.ion-md-reverse-camera:before{content:"\f36f"}.ion-md-rewind:before{content:"\f370"}.ion-md-ribbon:before{content:"\f371"}.ion-md-rocket:before{content:"\f179"}.ion-md-rose:before{content:"\f372"}.ion-md-sad:before{content:"\f373"}.ion-md-save:before{content:"\f1a9"}.ion-md-school:before{content:"\f374"}.ion-md-search:before{content:"\f375"}.ion-md-send:before{content:"\f376"}.ion-md-settings:before{content:"\f377"}.ion-md-share:before{content:"\f379"}.ion-md-share-alt:before{content:"\f378"}.ion-md-shirt:before{content:"\f37a"}.ion-md-shuffle:before{content:"\f37b"}.ion-md-skip-backward:before{content:"\f37c"}.ion-md-skip-forward:before{content:"\f37d"}.ion-md-snow:before{content:"\f37e"}.ion-md-speedometer:before{content:"\f37f"}.ion-md-square:before{content:"\f381"}.ion-md-square-outline:before{content:"\f380"}.ion-md-star:before{content:"\f384"}.ion-md-star-half:before{content:"\f382"}.ion-md-star-outline:before{content:"\f383"}.ion-md-stats:before{content:"\f385"}.ion-md-stopwatch:before{content:"\f386"}.ion-md-subway:before{content:"\f387"}.ion-md-sunny:before{content:"\f388"}.ion-md-swap:before{content:"\f389"}.ion-md-switch:before{content:"\f38a"}.ion-md-sync:before{content:"\f38b"}.ion-md-tablet-landscape:before{content:"\f38c"}.ion-md-tablet-portrait:before{content:"\f38d"}.ion-md-tennisball:before{content:"\f38e"}.ion-md-text:before{content:"\f38f"}.ion-md-thermometer:before{content:"\f390"}.ion-md-thumbs-down:before{content:"\f391"}.ion-md-thumbs-up:before{content:"\f392"}.ion-md-thunderstorm:before{content:"\f393"}.ion-md-time:before{content:"\f394"}.ion-md-timer:before{content:"\f395"}.ion-md-today:before{content:"\f17d"}.ion-md-train:before{content:"\f396"}.ion-md-transgender:before{content:"\f397"}.ion-md-trash:before{content:"\f398"}.ion-md-trending-down:before{content:"\f399"}.ion-md-trending-up:before{content:"\f39a"}.ion-md-trophy:before{content:"\f39b"}.ion-md-tv:before{content:"\f17f"}.ion-md-umbrella:before{content:"\f39c"}.ion-md-undo:before{content:"\f39d"}.ion-md-unlock:before{content:"\f39e"}.ion-md-videocam:before{content:"\f39f"}.ion-md-volume-high:before{content:"\f123"}.ion-md-volume-low:before{content:"\f131"}.ion-md-volume-mute:before{content:"\f3a1"}.ion-md-volume-off:before{content:"\f3a2"}.ion-md-walk:before{content:"\f3a4"}.ion-md-wallet:before{content:"\f18f"}.ion-md-warning:before{content:"\f3a5"}.ion-md-watch:before{content:"\f3a6"}.ion-md-water:before{content:"\f3a7"}.ion-md-wifi:before{content:"\f3a8"}.ion-md-wine:before{content:"\f3a9"}.ion-md-woman:before{content:"\f3aa"} diff --git a/public/assets/lib/ionicons/css/ionicons.min.css b/public/assets/lib/ionicons/css/ionicons.min.css new file mode 100755 index 0000000..82babe0 --- /dev/null +++ b/public/assets/lib/ionicons/css/ionicons.min.css @@ -0,0 +1,11 @@ +/*! + Ionicons, v4.2.5 + Created by Ben Sperry for the Ionic Framework, http://ionicons.com/ + https://twitter.com/benjsperry https://twitter.com/ionicframework + MIT License: https://github.com/driftyco/ionicons + + Android-style icons originally built by Google’s + Material Design Icons: https://github.com/google/material-design-icons + used under CC BY http://creativecommons.org/licenses/by/4.0/ + Modified icons to fit ionicon’s grid from original. +*/@font-face{font-family:"Ionicons";src:url("../fonts/ionicons.eot?v=4.2.5");src:url("../fonts/ionicons.eot?v=4.2.5#iefix") format("embedded-opentype"),url("../fonts/ionicons.woff2?v=4.2.5") format("woff2"),url("../fonts/ionicons.woff?v=4.2.5") format("woff"),url("../fonts/ionicons.ttf?v=4.2.5") format("truetype"),url("../fonts/ionicons.svg?v=4.2.5#Ionicons") format("svg");font-weight:normal;font-style:normal}.ion,.ionicons,.ion-ios-add:before,.ion-ios-add-circle:before,.ion-ios-add-circle-outline:before,.ion-ios-airplane:before,.ion-ios-alarm:before,.ion-ios-albums:before,.ion-ios-alert:before,.ion-ios-american-football:before,.ion-ios-analytics:before,.ion-ios-aperture:before,.ion-ios-apps:before,.ion-ios-appstore:before,.ion-ios-archive:before,.ion-ios-arrow-back:before,.ion-ios-arrow-down:before,.ion-ios-arrow-dropdown:before,.ion-ios-arrow-dropdown-circle:before,.ion-ios-arrow-dropleft:before,.ion-ios-arrow-dropleft-circle:before,.ion-ios-arrow-dropright:before,.ion-ios-arrow-dropright-circle:before,.ion-ios-arrow-dropup:before,.ion-ios-arrow-dropup-circle:before,.ion-ios-arrow-forward:before,.ion-ios-arrow-round-back:before,.ion-ios-arrow-round-down:before,.ion-ios-arrow-round-forward:before,.ion-ios-arrow-round-up:before,.ion-ios-arrow-up:before,.ion-ios-at:before,.ion-ios-attach:before,.ion-ios-backspace:before,.ion-ios-barcode:before,.ion-ios-baseball:before,.ion-ios-basket:before,.ion-ios-basketball:before,.ion-ios-battery-charging:before,.ion-ios-battery-dead:before,.ion-ios-battery-full:before,.ion-ios-beaker:before,.ion-ios-bed:before,.ion-ios-beer:before,.ion-ios-bicycle:before,.ion-ios-bluetooth:before,.ion-ios-boat:before,.ion-ios-body:before,.ion-ios-bonfire:before,.ion-ios-book:before,.ion-ios-bookmark:before,.ion-ios-bookmarks:before,.ion-ios-bowtie:before,.ion-ios-briefcase:before,.ion-ios-browsers:before,.ion-ios-brush:before,.ion-ios-bug:before,.ion-ios-build:before,.ion-ios-bulb:before,.ion-ios-bus:before,.ion-ios-business:before,.ion-ios-cafe:before,.ion-ios-calculator:before,.ion-ios-calendar:before,.ion-ios-call:before,.ion-ios-camera:before,.ion-ios-car:before,.ion-ios-card:before,.ion-ios-cart:before,.ion-ios-cash:before,.ion-ios-cellular:before,.ion-ios-chatboxes:before,.ion-ios-chatbubbles:before,.ion-ios-checkbox:before,.ion-ios-checkbox-outline:before,.ion-ios-checkmark:before,.ion-ios-checkmark-circle:before,.ion-ios-checkmark-circle-outline:before,.ion-ios-clipboard:before,.ion-ios-clock:before,.ion-ios-close:before,.ion-ios-close-circle:before,.ion-ios-close-circle-outline:before,.ion-ios-cloud:before,.ion-ios-cloud-circle:before,.ion-ios-cloud-done:before,.ion-ios-cloud-download:before,.ion-ios-cloud-outline:before,.ion-ios-cloud-upload:before,.ion-ios-cloudy:before,.ion-ios-cloudy-night:before,.ion-ios-code:before,.ion-ios-code-download:before,.ion-ios-code-working:before,.ion-ios-cog:before,.ion-ios-color-fill:before,.ion-ios-color-filter:before,.ion-ios-color-palette:before,.ion-ios-color-wand:before,.ion-ios-compass:before,.ion-ios-construct:before,.ion-ios-contact:before,.ion-ios-contacts:before,.ion-ios-contract:before,.ion-ios-contrast:before,.ion-ios-copy:before,.ion-ios-create:before,.ion-ios-crop:before,.ion-ios-cube:before,.ion-ios-cut:before,.ion-ios-desktop:before,.ion-ios-disc:before,.ion-ios-document:before,.ion-ios-done-all:before,.ion-ios-download:before,.ion-ios-easel:before,.ion-ios-egg:before,.ion-ios-exit:before,.ion-ios-expand:before,.ion-ios-eye:before,.ion-ios-eye-off:before,.ion-ios-fastforward:before,.ion-ios-female:before,.ion-ios-filing:before,.ion-ios-film:before,.ion-ios-finger-print:before,.ion-ios-fitness:before,.ion-ios-flag:before,.ion-ios-flame:before,.ion-ios-flash:before,.ion-ios-flash-off:before,.ion-ios-flashlight:before,.ion-ios-flask:before,.ion-ios-flower:before,.ion-ios-folder:before,.ion-ios-folder-open:before,.ion-ios-football:before,.ion-ios-funnel:before,.ion-ios-gift:before,.ion-ios-git-branch:before,.ion-ios-git-commit:before,.ion-ios-git-compare:before,.ion-ios-git-merge:before,.ion-ios-git-network:before,.ion-ios-git-pull-request:before,.ion-ios-glasses:before,.ion-ios-globe:before,.ion-ios-grid:before,.ion-ios-hammer:before,.ion-ios-hand:before,.ion-ios-happy:before,.ion-ios-headset:before,.ion-ios-heart:before,.ion-ios-heart-dislike:before,.ion-ios-heart-empty:before,.ion-ios-heart-half:before,.ion-ios-help:before,.ion-ios-help-buoy:before,.ion-ios-help-circle:before,.ion-ios-help-circle-outline:before,.ion-ios-home:before,.ion-ios-hourglass:before,.ion-ios-ice-cream:before,.ion-ios-image:before,.ion-ios-images:before,.ion-ios-infinite:before,.ion-ios-information:before,.ion-ios-information-circle:before,.ion-ios-information-circle-outline:before,.ion-ios-jet:before,.ion-ios-journal:before,.ion-ios-key:before,.ion-ios-keypad:before,.ion-ios-laptop:before,.ion-ios-leaf:before,.ion-ios-link:before,.ion-ios-list:before,.ion-ios-list-box:before,.ion-ios-locate:before,.ion-ios-lock:before,.ion-ios-log-in:before,.ion-ios-log-out:before,.ion-ios-magnet:before,.ion-ios-mail:before,.ion-ios-mail-open:before,.ion-ios-mail-unread:before,.ion-ios-male:before,.ion-ios-man:before,.ion-ios-map:before,.ion-ios-medal:before,.ion-ios-medical:before,.ion-ios-medkit:before,.ion-ios-megaphone:before,.ion-ios-menu:before,.ion-ios-mic:before,.ion-ios-mic-off:before,.ion-ios-microphone:before,.ion-ios-moon:before,.ion-ios-more:before,.ion-ios-move:before,.ion-ios-musical-note:before,.ion-ios-musical-notes:before,.ion-ios-navigate:before,.ion-ios-notifications:before,.ion-ios-notifications-off:before,.ion-ios-notifications-outline:before,.ion-ios-nuclear:before,.ion-ios-nutrition:before,.ion-ios-open:before,.ion-ios-options:before,.ion-ios-outlet:before,.ion-ios-paper:before,.ion-ios-paper-plane:before,.ion-ios-partly-sunny:before,.ion-ios-pause:before,.ion-ios-paw:before,.ion-ios-people:before,.ion-ios-person:before,.ion-ios-person-add:before,.ion-ios-phone-landscape:before,.ion-ios-phone-portrait:before,.ion-ios-photos:before,.ion-ios-pie:before,.ion-ios-pin:before,.ion-ios-pint:before,.ion-ios-pizza:before,.ion-ios-planet:before,.ion-ios-play:before,.ion-ios-play-circle:before,.ion-ios-podium:before,.ion-ios-power:before,.ion-ios-pricetag:before,.ion-ios-pricetags:before,.ion-ios-print:before,.ion-ios-pulse:before,.ion-ios-qr-scanner:before,.ion-ios-quote:before,.ion-ios-radio:before,.ion-ios-radio-button-off:before,.ion-ios-radio-button-on:before,.ion-ios-rainy:before,.ion-ios-recording:before,.ion-ios-redo:before,.ion-ios-refresh:before,.ion-ios-refresh-circle:before,.ion-ios-remove:before,.ion-ios-remove-circle:before,.ion-ios-remove-circle-outline:before,.ion-ios-reorder:before,.ion-ios-repeat:before,.ion-ios-resize:before,.ion-ios-restaurant:before,.ion-ios-return-left:before,.ion-ios-return-right:before,.ion-ios-reverse-camera:before,.ion-ios-rewind:before,.ion-ios-ribbon:before,.ion-ios-rocket:before,.ion-ios-rose:before,.ion-ios-sad:before,.ion-ios-save:before,.ion-ios-school:before,.ion-ios-search:before,.ion-ios-send:before,.ion-ios-settings:before,.ion-ios-share:before,.ion-ios-share-alt:before,.ion-ios-shirt:before,.ion-ios-shuffle:before,.ion-ios-skip-backward:before,.ion-ios-skip-forward:before,.ion-ios-snow:before,.ion-ios-speedometer:before,.ion-ios-square:before,.ion-ios-square-outline:before,.ion-ios-star:before,.ion-ios-star-half:before,.ion-ios-star-outline:before,.ion-ios-stats:before,.ion-ios-stopwatch:before,.ion-ios-subway:before,.ion-ios-sunny:before,.ion-ios-swap:before,.ion-ios-switch:before,.ion-ios-sync:before,.ion-ios-tablet-landscape:before,.ion-ios-tablet-portrait:before,.ion-ios-tennisball:before,.ion-ios-text:before,.ion-ios-thermometer:before,.ion-ios-thumbs-down:before,.ion-ios-thumbs-up:before,.ion-ios-thunderstorm:before,.ion-ios-time:before,.ion-ios-timer:before,.ion-ios-today:before,.ion-ios-train:before,.ion-ios-transgender:before,.ion-ios-trash:before,.ion-ios-trending-down:before,.ion-ios-trending-up:before,.ion-ios-trophy:before,.ion-ios-tv:before,.ion-ios-umbrella:before,.ion-ios-undo:before,.ion-ios-unlock:before,.ion-ios-videocam:before,.ion-ios-volume-high:before,.ion-ios-volume-low:before,.ion-ios-volume-mute:before,.ion-ios-volume-off:before,.ion-ios-walk:before,.ion-ios-wallet:before,.ion-ios-warning:before,.ion-ios-watch:before,.ion-ios-water:before,.ion-ios-wifi:before,.ion-ios-wine:before,.ion-ios-woman:before,.ion-logo-android:before,.ion-logo-angular:before,.ion-logo-apple:before,.ion-logo-bitbucket:before,.ion-logo-bitcoin:before,.ion-logo-buffer:before,.ion-logo-chrome:before,.ion-logo-closed-captioning:before,.ion-logo-codepen:before,.ion-logo-css3:before,.ion-logo-designernews:before,.ion-logo-dribbble:before,.ion-logo-dropbox:before,.ion-logo-euro:before,.ion-logo-facebook:before,.ion-logo-flickr:before,.ion-logo-foursquare:before,.ion-logo-freebsd-devil:before,.ion-logo-game-controller-a:before,.ion-logo-game-controller-b:before,.ion-logo-github:before,.ion-logo-google:before,.ion-logo-googleplus:before,.ion-logo-hackernews:before,.ion-logo-html5:before,.ion-logo-instagram:before,.ion-logo-ionic:before,.ion-logo-ionitron:before,.ion-logo-javascript:before,.ion-logo-linkedin:before,.ion-logo-markdown:before,.ion-logo-model-s:before,.ion-logo-no-smoking:before,.ion-logo-nodejs:before,.ion-logo-npm:before,.ion-logo-octocat:before,.ion-logo-pinterest:before,.ion-logo-playstation:before,.ion-logo-polymer:before,.ion-logo-python:before,.ion-logo-reddit:before,.ion-logo-rss:before,.ion-logo-sass:before,.ion-logo-skype:before,.ion-logo-slack:before,.ion-logo-snapchat:before,.ion-logo-steam:before,.ion-logo-tumblr:before,.ion-logo-tux:before,.ion-logo-twitch:before,.ion-logo-twitter:before,.ion-logo-usd:before,.ion-logo-vimeo:before,.ion-logo-vk:before,.ion-logo-whatsapp:before,.ion-logo-windows:before,.ion-logo-wordpress:before,.ion-logo-xbox:before,.ion-logo-xing:before,.ion-logo-yahoo:before,.ion-logo-yen:before,.ion-logo-youtube:before,.ion-md-add:before,.ion-md-add-circle:before,.ion-md-add-circle-outline:before,.ion-md-airplane:before,.ion-md-alarm:before,.ion-md-albums:before,.ion-md-alert:before,.ion-md-american-football:before,.ion-md-analytics:before,.ion-md-aperture:before,.ion-md-apps:before,.ion-md-appstore:before,.ion-md-archive:before,.ion-md-arrow-back:before,.ion-md-arrow-down:before,.ion-md-arrow-dropdown:before,.ion-md-arrow-dropdown-circle:before,.ion-md-arrow-dropleft:before,.ion-md-arrow-dropleft-circle:before,.ion-md-arrow-dropright:before,.ion-md-arrow-dropright-circle:before,.ion-md-arrow-dropup:before,.ion-md-arrow-dropup-circle:before,.ion-md-arrow-forward:before,.ion-md-arrow-round-back:before,.ion-md-arrow-round-down:before,.ion-md-arrow-round-forward:before,.ion-md-arrow-round-up:before,.ion-md-arrow-up:before,.ion-md-at:before,.ion-md-attach:before,.ion-md-backspace:before,.ion-md-barcode:before,.ion-md-baseball:before,.ion-md-basket:before,.ion-md-basketball:before,.ion-md-battery-charging:before,.ion-md-battery-dead:before,.ion-md-battery-full:before,.ion-md-beaker:before,.ion-md-bed:before,.ion-md-beer:before,.ion-md-bicycle:before,.ion-md-bluetooth:before,.ion-md-boat:before,.ion-md-body:before,.ion-md-bonfire:before,.ion-md-book:before,.ion-md-bookmark:before,.ion-md-bookmarks:before,.ion-md-bowtie:before,.ion-md-briefcase:before,.ion-md-browsers:before,.ion-md-brush:before,.ion-md-bug:before,.ion-md-build:before,.ion-md-bulb:before,.ion-md-bus:before,.ion-md-business:before,.ion-md-cafe:before,.ion-md-calculator:before,.ion-md-calendar:before,.ion-md-call:before,.ion-md-camera:before,.ion-md-car:before,.ion-md-card:before,.ion-md-cart:before,.ion-md-cash:before,.ion-md-cellular:before,.ion-md-chatboxes:before,.ion-md-chatbubbles:before,.ion-md-checkbox:before,.ion-md-checkbox-outline:before,.ion-md-checkmark:before,.ion-md-checkmark-circle:before,.ion-md-checkmark-circle-outline:before,.ion-md-clipboard:before,.ion-md-clock:before,.ion-md-close:before,.ion-md-close-circle:before,.ion-md-close-circle-outline:before,.ion-md-cloud:before,.ion-md-cloud-circle:before,.ion-md-cloud-done:before,.ion-md-cloud-download:before,.ion-md-cloud-outline:before,.ion-md-cloud-upload:before,.ion-md-cloudy:before,.ion-md-cloudy-night:before,.ion-md-code:before,.ion-md-code-download:before,.ion-md-code-working:before,.ion-md-cog:before,.ion-md-color-fill:before,.ion-md-color-filter:before,.ion-md-color-palette:before,.ion-md-color-wand:before,.ion-md-compass:before,.ion-md-construct:before,.ion-md-contact:before,.ion-md-contacts:before,.ion-md-contract:before,.ion-md-contrast:before,.ion-md-copy:before,.ion-md-create:before,.ion-md-crop:before,.ion-md-cube:before,.ion-md-cut:before,.ion-md-desktop:before,.ion-md-disc:before,.ion-md-document:before,.ion-md-done-all:before,.ion-md-download:before,.ion-md-easel:before,.ion-md-egg:before,.ion-md-exit:before,.ion-md-expand:before,.ion-md-eye:before,.ion-md-eye-off:before,.ion-md-fastforward:before,.ion-md-female:before,.ion-md-filing:before,.ion-md-film:before,.ion-md-finger-print:before,.ion-md-fitness:before,.ion-md-flag:before,.ion-md-flame:before,.ion-md-flash:before,.ion-md-flash-off:before,.ion-md-flashlight:before,.ion-md-flask:before,.ion-md-flower:before,.ion-md-folder:before,.ion-md-folder-open:before,.ion-md-football:before,.ion-md-funnel:before,.ion-md-gift:before,.ion-md-git-branch:before,.ion-md-git-commit:before,.ion-md-git-compare:before,.ion-md-git-merge:before,.ion-md-git-network:before,.ion-md-git-pull-request:before,.ion-md-glasses:before,.ion-md-globe:before,.ion-md-grid:before,.ion-md-hammer:before,.ion-md-hand:before,.ion-md-happy:before,.ion-md-headset:before,.ion-md-heart:before,.ion-md-heart-dislike:before,.ion-md-heart-empty:before,.ion-md-heart-half:before,.ion-md-help:before,.ion-md-help-buoy:before,.ion-md-help-circle:before,.ion-md-help-circle-outline:before,.ion-md-home:before,.ion-md-hourglass:before,.ion-md-ice-cream:before,.ion-md-image:before,.ion-md-images:before,.ion-md-infinite:before,.ion-md-information:before,.ion-md-information-circle:before,.ion-md-information-circle-outline:before,.ion-md-jet:before,.ion-md-journal:before,.ion-md-key:before,.ion-md-keypad:before,.ion-md-laptop:before,.ion-md-leaf:before,.ion-md-link:before,.ion-md-list:before,.ion-md-list-box:before,.ion-md-locate:before,.ion-md-lock:before,.ion-md-log-in:before,.ion-md-log-out:before,.ion-md-magnet:before,.ion-md-mail:before,.ion-md-mail-open:before,.ion-md-mail-unread:before,.ion-md-male:before,.ion-md-man:before,.ion-md-map:before,.ion-md-medal:before,.ion-md-medical:before,.ion-md-medkit:before,.ion-md-megaphone:before,.ion-md-menu:before,.ion-md-mic:before,.ion-md-mic-off:before,.ion-md-microphone:before,.ion-md-moon:before,.ion-md-more:before,.ion-md-move:before,.ion-md-musical-note:before,.ion-md-musical-notes:before,.ion-md-navigate:before,.ion-md-notifications:before,.ion-md-notifications-off:before,.ion-md-notifications-outline:before,.ion-md-nuclear:before,.ion-md-nutrition:before,.ion-md-open:before,.ion-md-options:before,.ion-md-outlet:before,.ion-md-paper:before,.ion-md-paper-plane:before,.ion-md-partly-sunny:before,.ion-md-pause:before,.ion-md-paw:before,.ion-md-people:before,.ion-md-person:before,.ion-md-person-add:before,.ion-md-phone-landscape:before,.ion-md-phone-portrait:before,.ion-md-photos:before,.ion-md-pie:before,.ion-md-pin:before,.ion-md-pint:before,.ion-md-pizza:before,.ion-md-planet:before,.ion-md-play:before,.ion-md-play-circle:before,.ion-md-podium:before,.ion-md-power:before,.ion-md-pricetag:before,.ion-md-pricetags:before,.ion-md-print:before,.ion-md-pulse:before,.ion-md-qr-scanner:before,.ion-md-quote:before,.ion-md-radio:before,.ion-md-radio-button-off:before,.ion-md-radio-button-on:before,.ion-md-rainy:before,.ion-md-recording:before,.ion-md-redo:before,.ion-md-refresh:before,.ion-md-refresh-circle:before,.ion-md-remove:before,.ion-md-remove-circle:before,.ion-md-remove-circle-outline:before,.ion-md-reorder:before,.ion-md-repeat:before,.ion-md-resize:before,.ion-md-restaurant:before,.ion-md-return-left:before,.ion-md-return-right:before,.ion-md-reverse-camera:before,.ion-md-rewind:before,.ion-md-ribbon:before,.ion-md-rocket:before,.ion-md-rose:before,.ion-md-sad:before,.ion-md-save:before,.ion-md-school:before,.ion-md-search:before,.ion-md-send:before,.ion-md-settings:before,.ion-md-share:before,.ion-md-share-alt:before,.ion-md-shirt:before,.ion-md-shuffle:before,.ion-md-skip-backward:before,.ion-md-skip-forward:before,.ion-md-snow:before,.ion-md-speedometer:before,.ion-md-square:before,.ion-md-square-outline:before,.ion-md-star:before,.ion-md-star-half:before,.ion-md-star-outline:before,.ion-md-stats:before,.ion-md-stopwatch:before,.ion-md-subway:before,.ion-md-sunny:before,.ion-md-swap:before,.ion-md-switch:before,.ion-md-sync:before,.ion-md-tablet-landscape:before,.ion-md-tablet-portrait:before,.ion-md-tennisball:before,.ion-md-text:before,.ion-md-thermometer:before,.ion-md-thumbs-down:before,.ion-md-thumbs-up:before,.ion-md-thunderstorm:before,.ion-md-time:before,.ion-md-timer:before,.ion-md-today:before,.ion-md-train:before,.ion-md-transgender:before,.ion-md-trash:before,.ion-md-trending-down:before,.ion-md-trending-up:before,.ion-md-trophy:before,.ion-md-tv:before,.ion-md-umbrella:before,.ion-md-undo:before,.ion-md-unlock:before,.ion-md-videocam:before,.ion-md-volume-high:before,.ion-md-volume-low:before,.ion-md-volume-mute:before,.ion-md-volume-off:before,.ion-md-walk:before,.ion-md-wallet:before,.ion-md-warning:before,.ion-md-watch:before,.ion-md-water:before,.ion-md-wifi:before,.ion-md-wine:before,.ion-md-woman:before{display:inline-block;font-family:"Ionicons";speak:none;font-style:normal;font-weight:normal;font-variant:normal;text-transform:none;text-rendering:auto;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.ion-ios-add:before{content:"\f102"}.ion-ios-add-circle:before{content:"\f101"}.ion-ios-add-circle-outline:before{content:"\f100"}.ion-ios-airplane:before{content:"\f137"}.ion-ios-alarm:before{content:"\f3c8"}.ion-ios-albums:before{content:"\f3ca"}.ion-ios-alert:before{content:"\f104"}.ion-ios-american-football:before{content:"\f106"}.ion-ios-analytics:before{content:"\f3ce"}.ion-ios-aperture:before{content:"\f108"}.ion-ios-apps:before{content:"\f10a"}.ion-ios-appstore:before{content:"\f10c"}.ion-ios-archive:before{content:"\f10e"}.ion-ios-arrow-back:before{content:"\f3cf"}.ion-ios-arrow-down:before{content:"\f3d0"}.ion-ios-arrow-dropdown:before{content:"\f110"}.ion-ios-arrow-dropdown-circle:before{content:"\f125"}.ion-ios-arrow-dropleft:before{content:"\f112"}.ion-ios-arrow-dropleft-circle:before{content:"\f129"}.ion-ios-arrow-dropright:before{content:"\f114"}.ion-ios-arrow-dropright-circle:before{content:"\f12b"}.ion-ios-arrow-dropup:before{content:"\f116"}.ion-ios-arrow-dropup-circle:before{content:"\f12d"}.ion-ios-arrow-forward:before{content:"\f3d1"}.ion-ios-arrow-round-back:before{content:"\f117"}.ion-ios-arrow-round-down:before{content:"\f118"}.ion-ios-arrow-round-forward:before{content:"\f119"}.ion-ios-arrow-round-up:before{content:"\f11a"}.ion-ios-arrow-up:before{content:"\f3d8"}.ion-ios-at:before{content:"\f3da"}.ion-ios-attach:before{content:"\f11b"}.ion-ios-backspace:before{content:"\f11d"}.ion-ios-barcode:before{content:"\f3dc"}.ion-ios-baseball:before{content:"\f3de"}.ion-ios-basket:before{content:"\f11f"}.ion-ios-basketball:before{content:"\f3e0"}.ion-ios-battery-charging:before{content:"\f120"}.ion-ios-battery-dead:before{content:"\f121"}.ion-ios-battery-full:before{content:"\f122"}.ion-ios-beaker:before{content:"\f124"}.ion-ios-bed:before{content:"\f139"}.ion-ios-beer:before{content:"\f126"}.ion-ios-bicycle:before{content:"\f127"}.ion-ios-bluetooth:before{content:"\f128"}.ion-ios-boat:before{content:"\f12a"}.ion-ios-body:before{content:"\f3e4"}.ion-ios-bonfire:before{content:"\f12c"}.ion-ios-book:before{content:"\f3e8"}.ion-ios-bookmark:before{content:"\f12e"}.ion-ios-bookmarks:before{content:"\f3ea"}.ion-ios-bowtie:before{content:"\f130"}.ion-ios-briefcase:before{content:"\f3ee"}.ion-ios-browsers:before{content:"\f3f0"}.ion-ios-brush:before{content:"\f132"}.ion-ios-bug:before{content:"\f134"}.ion-ios-build:before{content:"\f136"}.ion-ios-bulb:before{content:"\f138"}.ion-ios-bus:before{content:"\f13a"}.ion-ios-business:before{content:"\f1a3"}.ion-ios-cafe:before{content:"\f13c"}.ion-ios-calculator:before{content:"\f3f2"}.ion-ios-calendar:before{content:"\f3f4"}.ion-ios-call:before{content:"\f13e"}.ion-ios-camera:before{content:"\f3f6"}.ion-ios-car:before{content:"\f140"}.ion-ios-card:before{content:"\f142"}.ion-ios-cart:before{content:"\f3f8"}.ion-ios-cash:before{content:"\f144"}.ion-ios-cellular:before{content:"\f13d"}.ion-ios-chatboxes:before{content:"\f3fa"}.ion-ios-chatbubbles:before{content:"\f146"}.ion-ios-checkbox:before{content:"\f148"}.ion-ios-checkbox-outline:before{content:"\f147"}.ion-ios-checkmark:before{content:"\f3ff"}.ion-ios-checkmark-circle:before{content:"\f14a"}.ion-ios-checkmark-circle-outline:before{content:"\f149"}.ion-ios-clipboard:before{content:"\f14c"}.ion-ios-clock:before{content:"\f403"}.ion-ios-close:before{content:"\f406"}.ion-ios-close-circle:before{content:"\f14e"}.ion-ios-close-circle-outline:before{content:"\f14d"}.ion-ios-cloud:before{content:"\f40c"}.ion-ios-cloud-circle:before{content:"\f152"}.ion-ios-cloud-done:before{content:"\f154"}.ion-ios-cloud-download:before{content:"\f408"}.ion-ios-cloud-outline:before{content:"\f409"}.ion-ios-cloud-upload:before{content:"\f40b"}.ion-ios-cloudy:before{content:"\f410"}.ion-ios-cloudy-night:before{content:"\f40e"}.ion-ios-code:before{content:"\f157"}.ion-ios-code-download:before{content:"\f155"}.ion-ios-code-working:before{content:"\f156"}.ion-ios-cog:before{content:"\f412"}.ion-ios-color-fill:before{content:"\f159"}.ion-ios-color-filter:before{content:"\f414"}.ion-ios-color-palette:before{content:"\f15b"}.ion-ios-color-wand:before{content:"\f416"}.ion-ios-compass:before{content:"\f15d"}.ion-ios-construct:before{content:"\f15f"}.ion-ios-contact:before{content:"\f41a"}.ion-ios-contacts:before{content:"\f161"}.ion-ios-contract:before{content:"\f162"}.ion-ios-contrast:before{content:"\f163"}.ion-ios-copy:before{content:"\f41c"}.ion-ios-create:before{content:"\f165"}.ion-ios-crop:before{content:"\f41e"}.ion-ios-cube:before{content:"\f168"}.ion-ios-cut:before{content:"\f16a"}.ion-ios-desktop:before{content:"\f16c"}.ion-ios-disc:before{content:"\f16e"}.ion-ios-document:before{content:"\f170"}.ion-ios-done-all:before{content:"\f171"}.ion-ios-download:before{content:"\f420"}.ion-ios-easel:before{content:"\f173"}.ion-ios-egg:before{content:"\f175"}.ion-ios-exit:before{content:"\f177"}.ion-ios-expand:before{content:"\f178"}.ion-ios-eye:before{content:"\f425"}.ion-ios-eye-off:before{content:"\f17a"}.ion-ios-fastforward:before{content:"\f427"}.ion-ios-female:before{content:"\f17b"}.ion-ios-filing:before{content:"\f429"}.ion-ios-film:before{content:"\f42b"}.ion-ios-finger-print:before{content:"\f17c"}.ion-ios-fitness:before{content:"\f1ab"}.ion-ios-flag:before{content:"\f42d"}.ion-ios-flame:before{content:"\f42f"}.ion-ios-flash:before{content:"\f17e"}.ion-ios-flash-off:before{content:"\f12f"}.ion-ios-flashlight:before{content:"\f141"}.ion-ios-flask:before{content:"\f431"}.ion-ios-flower:before{content:"\f433"}.ion-ios-folder:before{content:"\f435"}.ion-ios-folder-open:before{content:"\f180"}.ion-ios-football:before{content:"\f437"}.ion-ios-funnel:before{content:"\f182"}.ion-ios-gift:before{content:"\f191"}.ion-ios-git-branch:before{content:"\f183"}.ion-ios-git-commit:before{content:"\f184"}.ion-ios-git-compare:before{content:"\f185"}.ion-ios-git-merge:before{content:"\f186"}.ion-ios-git-network:before{content:"\f187"}.ion-ios-git-pull-request:before{content:"\f188"}.ion-ios-glasses:before{content:"\f43f"}.ion-ios-globe:before{content:"\f18a"}.ion-ios-grid:before{content:"\f18c"}.ion-ios-hammer:before{content:"\f18e"}.ion-ios-hand:before{content:"\f190"}.ion-ios-happy:before{content:"\f192"}.ion-ios-headset:before{content:"\f194"}.ion-ios-heart:before{content:"\f443"}.ion-ios-heart-dislike:before{content:"\f13f"}.ion-ios-heart-empty:before{content:"\f19b"}.ion-ios-heart-half:before{content:"\f19d"}.ion-ios-help:before{content:"\f446"}.ion-ios-help-buoy:before{content:"\f196"}.ion-ios-help-circle:before{content:"\f198"}.ion-ios-help-circle-outline:before{content:"\f197"}.ion-ios-home:before{content:"\f448"}.ion-ios-hourglass:before{content:"\f103"}.ion-ios-ice-cream:before{content:"\f19a"}.ion-ios-image:before{content:"\f19c"}.ion-ios-images:before{content:"\f19e"}.ion-ios-infinite:before{content:"\f44a"}.ion-ios-information:before{content:"\f44d"}.ion-ios-information-circle:before{content:"\f1a0"}.ion-ios-information-circle-outline:before{content:"\f19f"}.ion-ios-jet:before{content:"\f1a5"}.ion-ios-journal:before{content:"\f189"}.ion-ios-key:before{content:"\f1a7"}.ion-ios-keypad:before{content:"\f450"}.ion-ios-laptop:before{content:"\f1a8"}.ion-ios-leaf:before{content:"\f1aa"}.ion-ios-link:before{content:"\f22a"}.ion-ios-list:before{content:"\f454"}.ion-ios-list-box:before{content:"\f143"}.ion-ios-locate:before{content:"\f1ae"}.ion-ios-lock:before{content:"\f1b0"}.ion-ios-log-in:before{content:"\f1b1"}.ion-ios-log-out:before{content:"\f1b2"}.ion-ios-magnet:before{content:"\f1b4"}.ion-ios-mail:before{content:"\f1b8"}.ion-ios-mail-open:before{content:"\f1b6"}.ion-ios-mail-unread:before{content:"\f145"}.ion-ios-male:before{content:"\f1b9"}.ion-ios-man:before{content:"\f1bb"}.ion-ios-map:before{content:"\f1bd"}.ion-ios-medal:before{content:"\f1bf"}.ion-ios-medical:before{content:"\f45c"}.ion-ios-medkit:before{content:"\f45e"}.ion-ios-megaphone:before{content:"\f1c1"}.ion-ios-menu:before{content:"\f1c3"}.ion-ios-mic:before{content:"\f461"}.ion-ios-mic-off:before{content:"\f45f"}.ion-ios-microphone:before{content:"\f1c6"}.ion-ios-moon:before{content:"\f468"}.ion-ios-more:before{content:"\f1c8"}.ion-ios-move:before{content:"\f1cb"}.ion-ios-musical-note:before{content:"\f46b"}.ion-ios-musical-notes:before{content:"\f46c"}.ion-ios-navigate:before{content:"\f46e"}.ion-ios-notifications:before{content:"\f1d3"}.ion-ios-notifications-off:before{content:"\f1d1"}.ion-ios-notifications-outline:before{content:"\f133"}.ion-ios-nuclear:before{content:"\f1d5"}.ion-ios-nutrition:before{content:"\f470"}.ion-ios-open:before{content:"\f1d7"}.ion-ios-options:before{content:"\f1d9"}.ion-ios-outlet:before{content:"\f1db"}.ion-ios-paper:before{content:"\f472"}.ion-ios-paper-plane:before{content:"\f1dd"}.ion-ios-partly-sunny:before{content:"\f1df"}.ion-ios-pause:before{content:"\f478"}.ion-ios-paw:before{content:"\f47a"}.ion-ios-people:before{content:"\f47c"}.ion-ios-person:before{content:"\f47e"}.ion-ios-person-add:before{content:"\f1e1"}.ion-ios-phone-landscape:before{content:"\f1e2"}.ion-ios-phone-portrait:before{content:"\f1e3"}.ion-ios-photos:before{content:"\f482"}.ion-ios-pie:before{content:"\f484"}.ion-ios-pin:before{content:"\f1e5"}.ion-ios-pint:before{content:"\f486"}.ion-ios-pizza:before{content:"\f1e7"}.ion-ios-planet:before{content:"\f1eb"}.ion-ios-play:before{content:"\f488"}.ion-ios-play-circle:before{content:"\f113"}.ion-ios-podium:before{content:"\f1ed"}.ion-ios-power:before{content:"\f1ef"}.ion-ios-pricetag:before{content:"\f48d"}.ion-ios-pricetags:before{content:"\f48f"}.ion-ios-print:before{content:"\f1f1"}.ion-ios-pulse:before{content:"\f493"}.ion-ios-qr-scanner:before{content:"\f1f3"}.ion-ios-quote:before{content:"\f1f5"}.ion-ios-radio:before{content:"\f1f9"}.ion-ios-radio-button-off:before{content:"\f1f6"}.ion-ios-radio-button-on:before{content:"\f1f7"}.ion-ios-rainy:before{content:"\f495"}.ion-ios-recording:before{content:"\f497"}.ion-ios-redo:before{content:"\f499"}.ion-ios-refresh:before{content:"\f49c"}.ion-ios-refresh-circle:before{content:"\f135"}.ion-ios-remove:before{content:"\f1fc"}.ion-ios-remove-circle:before{content:"\f1fb"}.ion-ios-remove-circle-outline:before{content:"\f1fa"}.ion-ios-reorder:before{content:"\f1fd"}.ion-ios-repeat:before{content:"\f1fe"}.ion-ios-resize:before{content:"\f1ff"}.ion-ios-restaurant:before{content:"\f201"}.ion-ios-return-left:before{content:"\f202"}.ion-ios-return-right:before{content:"\f203"}.ion-ios-reverse-camera:before{content:"\f49f"}.ion-ios-rewind:before{content:"\f4a1"}.ion-ios-ribbon:before{content:"\f205"}.ion-ios-rocket:before{content:"\f14b"}.ion-ios-rose:before{content:"\f4a3"}.ion-ios-sad:before{content:"\f207"}.ion-ios-save:before{content:"\f1a6"}.ion-ios-school:before{content:"\f209"}.ion-ios-search:before{content:"\f4a5"}.ion-ios-send:before{content:"\f20c"}.ion-ios-settings:before{content:"\f4a7"}.ion-ios-share:before{content:"\f211"}.ion-ios-share-alt:before{content:"\f20f"}.ion-ios-shirt:before{content:"\f213"}.ion-ios-shuffle:before{content:"\f4a9"}.ion-ios-skip-backward:before{content:"\f215"}.ion-ios-skip-forward:before{content:"\f217"}.ion-ios-snow:before{content:"\f218"}.ion-ios-speedometer:before{content:"\f4b0"}.ion-ios-square:before{content:"\f21a"}.ion-ios-square-outline:before{content:"\f15c"}.ion-ios-star:before{content:"\f4b3"}.ion-ios-star-half:before{content:"\f4b1"}.ion-ios-star-outline:before{content:"\f4b2"}.ion-ios-stats:before{content:"\f21c"}.ion-ios-stopwatch:before{content:"\f4b5"}.ion-ios-subway:before{content:"\f21e"}.ion-ios-sunny:before{content:"\f4b7"}.ion-ios-swap:before{content:"\f21f"}.ion-ios-switch:before{content:"\f221"}.ion-ios-sync:before{content:"\f222"}.ion-ios-tablet-landscape:before{content:"\f223"}.ion-ios-tablet-portrait:before{content:"\f24e"}.ion-ios-tennisball:before{content:"\f4bb"}.ion-ios-text:before{content:"\f250"}.ion-ios-thermometer:before{content:"\f252"}.ion-ios-thumbs-down:before{content:"\f254"}.ion-ios-thumbs-up:before{content:"\f256"}.ion-ios-thunderstorm:before{content:"\f4bd"}.ion-ios-time:before{content:"\f4bf"}.ion-ios-timer:before{content:"\f4c1"}.ion-ios-today:before{content:"\f14f"}.ion-ios-train:before{content:"\f258"}.ion-ios-transgender:before{content:"\f259"}.ion-ios-trash:before{content:"\f4c5"}.ion-ios-trending-down:before{content:"\f25a"}.ion-ios-trending-up:before{content:"\f25b"}.ion-ios-trophy:before{content:"\f25d"}.ion-ios-tv:before{content:"\f115"}.ion-ios-umbrella:before{content:"\f25f"}.ion-ios-undo:before{content:"\f4c7"}.ion-ios-unlock:before{content:"\f261"}.ion-ios-videocam:before{content:"\f4cd"}.ion-ios-volume-high:before{content:"\f11c"}.ion-ios-volume-low:before{content:"\f11e"}.ion-ios-volume-mute:before{content:"\f263"}.ion-ios-volume-off:before{content:"\f264"}.ion-ios-walk:before{content:"\f266"}.ion-ios-wallet:before{content:"\f18b"}.ion-ios-warning:before{content:"\f268"}.ion-ios-watch:before{content:"\f269"}.ion-ios-water:before{content:"\f26b"}.ion-ios-wifi:before{content:"\f26d"}.ion-ios-wine:before{content:"\f26f"}.ion-ios-woman:before{content:"\f271"}.ion-logo-android:before{content:"\f225"}.ion-logo-angular:before{content:"\f227"}.ion-logo-apple:before{content:"\f229"}.ion-logo-bitbucket:before{content:"\f193"}.ion-logo-bitcoin:before{content:"\f22b"}.ion-logo-buffer:before{content:"\f22d"}.ion-logo-chrome:before{content:"\f22f"}.ion-logo-closed-captioning:before{content:"\f105"}.ion-logo-codepen:before{content:"\f230"}.ion-logo-css3:before{content:"\f231"}.ion-logo-designernews:before{content:"\f232"}.ion-logo-dribbble:before{content:"\f233"}.ion-logo-dropbox:before{content:"\f234"}.ion-logo-euro:before{content:"\f235"}.ion-logo-facebook:before{content:"\f236"}.ion-logo-flickr:before{content:"\f107"}.ion-logo-foursquare:before{content:"\f237"}.ion-logo-freebsd-devil:before{content:"\f238"}.ion-logo-game-controller-a:before{content:"\f13b"}.ion-logo-game-controller-b:before{content:"\f181"}.ion-logo-github:before{content:"\f239"}.ion-logo-google:before{content:"\f23a"}.ion-logo-googleplus:before{content:"\f23b"}.ion-logo-hackernews:before{content:"\f23c"}.ion-logo-html5:before{content:"\f23d"}.ion-logo-instagram:before{content:"\f23e"}.ion-logo-ionic:before{content:"\f150"}.ion-logo-ionitron:before{content:"\f151"}.ion-logo-javascript:before{content:"\f23f"}.ion-logo-linkedin:before{content:"\f240"}.ion-logo-markdown:before{content:"\f241"}.ion-logo-model-s:before{content:"\f153"}.ion-logo-no-smoking:before{content:"\f109"}.ion-logo-nodejs:before{content:"\f242"}.ion-logo-npm:before{content:"\f195"}.ion-logo-octocat:before{content:"\f243"}.ion-logo-pinterest:before{content:"\f244"}.ion-logo-playstation:before{content:"\f245"}.ion-logo-polymer:before{content:"\f15e"}.ion-logo-python:before{content:"\f246"}.ion-logo-reddit:before{content:"\f247"}.ion-logo-rss:before{content:"\f248"}.ion-logo-sass:before{content:"\f249"}.ion-logo-skype:before{content:"\f24a"}.ion-logo-slack:before{content:"\f10b"}.ion-logo-snapchat:before{content:"\f24b"}.ion-logo-steam:before{content:"\f24c"}.ion-logo-tumblr:before{content:"\f24d"}.ion-logo-tux:before{content:"\f2ae"}.ion-logo-twitch:before{content:"\f2af"}.ion-logo-twitter:before{content:"\f2b0"}.ion-logo-usd:before{content:"\f2b1"}.ion-logo-vimeo:before{content:"\f2c4"}.ion-logo-vk:before{content:"\f10d"}.ion-logo-whatsapp:before{content:"\f2c5"}.ion-logo-windows:before{content:"\f32f"}.ion-logo-wordpress:before{content:"\f330"}.ion-logo-xbox:before{content:"\f34c"}.ion-logo-xing:before{content:"\f10f"}.ion-logo-yahoo:before{content:"\f34d"}.ion-logo-yen:before{content:"\f34e"}.ion-logo-youtube:before{content:"\f34f"}.ion-md-add:before{content:"\f273"}.ion-md-add-circle:before{content:"\f272"}.ion-md-add-circle-outline:before{content:"\f158"}.ion-md-airplane:before{content:"\f15a"}.ion-md-alarm:before{content:"\f274"}.ion-md-albums:before{content:"\f275"}.ion-md-alert:before{content:"\f276"}.ion-md-american-football:before{content:"\f277"}.ion-md-analytics:before{content:"\f278"}.ion-md-aperture:before{content:"\f279"}.ion-md-apps:before{content:"\f27a"}.ion-md-appstore:before{content:"\f27b"}.ion-md-archive:before{content:"\f27c"}.ion-md-arrow-back:before{content:"\f27d"}.ion-md-arrow-down:before{content:"\f27e"}.ion-md-arrow-dropdown:before{content:"\f280"}.ion-md-arrow-dropdown-circle:before{content:"\f27f"}.ion-md-arrow-dropleft:before{content:"\f282"}.ion-md-arrow-dropleft-circle:before{content:"\f281"}.ion-md-arrow-dropright:before{content:"\f284"}.ion-md-arrow-dropright-circle:before{content:"\f283"}.ion-md-arrow-dropup:before{content:"\f286"}.ion-md-arrow-dropup-circle:before{content:"\f285"}.ion-md-arrow-forward:before{content:"\f287"}.ion-md-arrow-round-back:before{content:"\f288"}.ion-md-arrow-round-down:before{content:"\f289"}.ion-md-arrow-round-forward:before{content:"\f28a"}.ion-md-arrow-round-up:before{content:"\f28b"}.ion-md-arrow-up:before{content:"\f28c"}.ion-md-at:before{content:"\f28d"}.ion-md-attach:before{content:"\f28e"}.ion-md-backspace:before{content:"\f28f"}.ion-md-barcode:before{content:"\f290"}.ion-md-baseball:before{content:"\f291"}.ion-md-basket:before{content:"\f292"}.ion-md-basketball:before{content:"\f293"}.ion-md-battery-charging:before{content:"\f294"}.ion-md-battery-dead:before{content:"\f295"}.ion-md-battery-full:before{content:"\f296"}.ion-md-beaker:before{content:"\f297"}.ion-md-bed:before{content:"\f160"}.ion-md-beer:before{content:"\f298"}.ion-md-bicycle:before{content:"\f299"}.ion-md-bluetooth:before{content:"\f29a"}.ion-md-boat:before{content:"\f29b"}.ion-md-body:before{content:"\f29c"}.ion-md-bonfire:before{content:"\f29d"}.ion-md-book:before{content:"\f29e"}.ion-md-bookmark:before{content:"\f29f"}.ion-md-bookmarks:before{content:"\f2a0"}.ion-md-bowtie:before{content:"\f2a1"}.ion-md-briefcase:before{content:"\f2a2"}.ion-md-browsers:before{content:"\f2a3"}.ion-md-brush:before{content:"\f2a4"}.ion-md-bug:before{content:"\f2a5"}.ion-md-build:before{content:"\f2a6"}.ion-md-bulb:before{content:"\f2a7"}.ion-md-bus:before{content:"\f2a8"}.ion-md-business:before{content:"\f1a4"}.ion-md-cafe:before{content:"\f2a9"}.ion-md-calculator:before{content:"\f2aa"}.ion-md-calendar:before{content:"\f2ab"}.ion-md-call:before{content:"\f2ac"}.ion-md-camera:before{content:"\f2ad"}.ion-md-car:before{content:"\f2b2"}.ion-md-card:before{content:"\f2b3"}.ion-md-cart:before{content:"\f2b4"}.ion-md-cash:before{content:"\f2b5"}.ion-md-cellular:before{content:"\f164"}.ion-md-chatboxes:before{content:"\f2b6"}.ion-md-chatbubbles:before{content:"\f2b7"}.ion-md-checkbox:before{content:"\f2b9"}.ion-md-checkbox-outline:before{content:"\f2b8"}.ion-md-checkmark:before{content:"\f2bc"}.ion-md-checkmark-circle:before{content:"\f2bb"}.ion-md-checkmark-circle-outline:before{content:"\f2ba"}.ion-md-clipboard:before{content:"\f2bd"}.ion-md-clock:before{content:"\f2be"}.ion-md-close:before{content:"\f2c0"}.ion-md-close-circle:before{content:"\f2bf"}.ion-md-close-circle-outline:before{content:"\f166"}.ion-md-cloud:before{content:"\f2c9"}.ion-md-cloud-circle:before{content:"\f2c2"}.ion-md-cloud-done:before{content:"\f2c3"}.ion-md-cloud-download:before{content:"\f2c6"}.ion-md-cloud-outline:before{content:"\f2c7"}.ion-md-cloud-upload:before{content:"\f2c8"}.ion-md-cloudy:before{content:"\f2cb"}.ion-md-cloudy-night:before{content:"\f2ca"}.ion-md-code:before{content:"\f2ce"}.ion-md-code-download:before{content:"\f2cc"}.ion-md-code-working:before{content:"\f2cd"}.ion-md-cog:before{content:"\f2cf"}.ion-md-color-fill:before{content:"\f2d0"}.ion-md-color-filter:before{content:"\f2d1"}.ion-md-color-palette:before{content:"\f2d2"}.ion-md-color-wand:before{content:"\f2d3"}.ion-md-compass:before{content:"\f2d4"}.ion-md-construct:before{content:"\f2d5"}.ion-md-contact:before{content:"\f2d6"}.ion-md-contacts:before{content:"\f2d7"}.ion-md-contract:before{content:"\f2d8"}.ion-md-contrast:before{content:"\f2d9"}.ion-md-copy:before{content:"\f2da"}.ion-md-create:before{content:"\f2db"}.ion-md-crop:before{content:"\f2dc"}.ion-md-cube:before{content:"\f2dd"}.ion-md-cut:before{content:"\f2de"}.ion-md-desktop:before{content:"\f2df"}.ion-md-disc:before{content:"\f2e0"}.ion-md-document:before{content:"\f2e1"}.ion-md-done-all:before{content:"\f2e2"}.ion-md-download:before{content:"\f2e3"}.ion-md-easel:before{content:"\f2e4"}.ion-md-egg:before{content:"\f2e5"}.ion-md-exit:before{content:"\f2e6"}.ion-md-expand:before{content:"\f2e7"}.ion-md-eye:before{content:"\f2e9"}.ion-md-eye-off:before{content:"\f2e8"}.ion-md-fastforward:before{content:"\f2ea"}.ion-md-female:before{content:"\f2eb"}.ion-md-filing:before{content:"\f2ec"}.ion-md-film:before{content:"\f2ed"}.ion-md-finger-print:before{content:"\f2ee"}.ion-md-fitness:before{content:"\f1ac"}.ion-md-flag:before{content:"\f2ef"}.ion-md-flame:before{content:"\f2f0"}.ion-md-flash:before{content:"\f2f1"}.ion-md-flash-off:before{content:"\f169"}.ion-md-flashlight:before{content:"\f16b"}.ion-md-flask:before{content:"\f2f2"}.ion-md-flower:before{content:"\f2f3"}.ion-md-folder:before{content:"\f2f5"}.ion-md-folder-open:before{content:"\f2f4"}.ion-md-football:before{content:"\f2f6"}.ion-md-funnel:before{content:"\f2f7"}.ion-md-gift:before{content:"\f199"}.ion-md-git-branch:before{content:"\f2fa"}.ion-md-git-commit:before{content:"\f2fb"}.ion-md-git-compare:before{content:"\f2fc"}.ion-md-git-merge:before{content:"\f2fd"}.ion-md-git-network:before{content:"\f2fe"}.ion-md-git-pull-request:before{content:"\f2ff"}.ion-md-glasses:before{content:"\f300"}.ion-md-globe:before{content:"\f301"}.ion-md-grid:before{content:"\f302"}.ion-md-hammer:before{content:"\f303"}.ion-md-hand:before{content:"\f304"}.ion-md-happy:before{content:"\f305"}.ion-md-headset:before{content:"\f306"}.ion-md-heart:before{content:"\f308"}.ion-md-heart-dislike:before{content:"\f167"}.ion-md-heart-empty:before{content:"\f1a1"}.ion-md-heart-half:before{content:"\f1a2"}.ion-md-help:before{content:"\f30b"}.ion-md-help-buoy:before{content:"\f309"}.ion-md-help-circle:before{content:"\f30a"}.ion-md-help-circle-outline:before{content:"\f16d"}.ion-md-home:before{content:"\f30c"}.ion-md-hourglass:before{content:"\f111"}.ion-md-ice-cream:before{content:"\f30d"}.ion-md-image:before{content:"\f30e"}.ion-md-images:before{content:"\f30f"}.ion-md-infinite:before{content:"\f310"}.ion-md-information:before{content:"\f312"}.ion-md-information-circle:before{content:"\f311"}.ion-md-information-circle-outline:before{content:"\f16f"}.ion-md-jet:before{content:"\f315"}.ion-md-journal:before{content:"\f18d"}.ion-md-key:before{content:"\f316"}.ion-md-keypad:before{content:"\f317"}.ion-md-laptop:before{content:"\f318"}.ion-md-leaf:before{content:"\f319"}.ion-md-link:before{content:"\f22e"}.ion-md-list:before{content:"\f31b"}.ion-md-list-box:before{content:"\f31a"}.ion-md-locate:before{content:"\f31c"}.ion-md-lock:before{content:"\f31d"}.ion-md-log-in:before{content:"\f31e"}.ion-md-log-out:before{content:"\f31f"}.ion-md-magnet:before{content:"\f320"}.ion-md-mail:before{content:"\f322"}.ion-md-mail-open:before{content:"\f321"}.ion-md-mail-unread:before{content:"\f172"}.ion-md-male:before{content:"\f323"}.ion-md-man:before{content:"\f324"}.ion-md-map:before{content:"\f325"}.ion-md-medal:before{content:"\f326"}.ion-md-medical:before{content:"\f327"}.ion-md-medkit:before{content:"\f328"}.ion-md-megaphone:before{content:"\f329"}.ion-md-menu:before{content:"\f32a"}.ion-md-mic:before{content:"\f32c"}.ion-md-mic-off:before{content:"\f32b"}.ion-md-microphone:before{content:"\f32d"}.ion-md-moon:before{content:"\f32e"}.ion-md-more:before{content:"\f1c9"}.ion-md-move:before{content:"\f331"}.ion-md-musical-note:before{content:"\f332"}.ion-md-musical-notes:before{content:"\f333"}.ion-md-navigate:before{content:"\f334"}.ion-md-notifications:before{content:"\f338"}.ion-md-notifications-off:before{content:"\f336"}.ion-md-notifications-outline:before{content:"\f337"}.ion-md-nuclear:before{content:"\f339"}.ion-md-nutrition:before{content:"\f33a"}.ion-md-open:before{content:"\f33b"}.ion-md-options:before{content:"\f33c"}.ion-md-outlet:before{content:"\f33d"}.ion-md-paper:before{content:"\f33f"}.ion-md-paper-plane:before{content:"\f33e"}.ion-md-partly-sunny:before{content:"\f340"}.ion-md-pause:before{content:"\f341"}.ion-md-paw:before{content:"\f342"}.ion-md-people:before{content:"\f343"}.ion-md-person:before{content:"\f345"}.ion-md-person-add:before{content:"\f344"}.ion-md-phone-landscape:before{content:"\f346"}.ion-md-phone-portrait:before{content:"\f347"}.ion-md-photos:before{content:"\f348"}.ion-md-pie:before{content:"\f349"}.ion-md-pin:before{content:"\f34a"}.ion-md-pint:before{content:"\f34b"}.ion-md-pizza:before{content:"\f354"}.ion-md-planet:before{content:"\f356"}.ion-md-play:before{content:"\f357"}.ion-md-play-circle:before{content:"\f174"}.ion-md-podium:before{content:"\f358"}.ion-md-power:before{content:"\f359"}.ion-md-pricetag:before{content:"\f35a"}.ion-md-pricetags:before{content:"\f35b"}.ion-md-print:before{content:"\f35c"}.ion-md-pulse:before{content:"\f35d"}.ion-md-qr-scanner:before{content:"\f35e"}.ion-md-quote:before{content:"\f35f"}.ion-md-radio:before{content:"\f362"}.ion-md-radio-button-off:before{content:"\f360"}.ion-md-radio-button-on:before{content:"\f361"}.ion-md-rainy:before{content:"\f363"}.ion-md-recording:before{content:"\f364"}.ion-md-redo:before{content:"\f365"}.ion-md-refresh:before{content:"\f366"}.ion-md-refresh-circle:before{content:"\f228"}.ion-md-remove:before{content:"\f368"}.ion-md-remove-circle:before{content:"\f367"}.ion-md-remove-circle-outline:before{content:"\f176"}.ion-md-reorder:before{content:"\f369"}.ion-md-repeat:before{content:"\f36a"}.ion-md-resize:before{content:"\f36b"}.ion-md-restaurant:before{content:"\f36c"}.ion-md-return-left:before{content:"\f36d"}.ion-md-return-right:before{content:"\f36e"}.ion-md-reverse-camera:before{content:"\f36f"}.ion-md-rewind:before{content:"\f370"}.ion-md-ribbon:before{content:"\f371"}.ion-md-rocket:before{content:"\f179"}.ion-md-rose:before{content:"\f372"}.ion-md-sad:before{content:"\f373"}.ion-md-save:before{content:"\f1a9"}.ion-md-school:before{content:"\f374"}.ion-md-search:before{content:"\f375"}.ion-md-send:before{content:"\f376"}.ion-md-settings:before{content:"\f377"}.ion-md-share:before{content:"\f379"}.ion-md-share-alt:before{content:"\f378"}.ion-md-shirt:before{content:"\f37a"}.ion-md-shuffle:before{content:"\f37b"}.ion-md-skip-backward:before{content:"\f37c"}.ion-md-skip-forward:before{content:"\f37d"}.ion-md-snow:before{content:"\f37e"}.ion-md-speedometer:before{content:"\f37f"}.ion-md-square:before{content:"\f381"}.ion-md-square-outline:before{content:"\f380"}.ion-md-star:before{content:"\f384"}.ion-md-star-half:before{content:"\f382"}.ion-md-star-outline:before{content:"\f383"}.ion-md-stats:before{content:"\f385"}.ion-md-stopwatch:before{content:"\f386"}.ion-md-subway:before{content:"\f387"}.ion-md-sunny:before{content:"\f388"}.ion-md-swap:before{content:"\f389"}.ion-md-switch:before{content:"\f38a"}.ion-md-sync:before{content:"\f38b"}.ion-md-tablet-landscape:before{content:"\f38c"}.ion-md-tablet-portrait:before{content:"\f38d"}.ion-md-tennisball:before{content:"\f38e"}.ion-md-text:before{content:"\f38f"}.ion-md-thermometer:before{content:"\f390"}.ion-md-thumbs-down:before{content:"\f391"}.ion-md-thumbs-up:before{content:"\f392"}.ion-md-thunderstorm:before{content:"\f393"}.ion-md-time:before{content:"\f394"}.ion-md-timer:before{content:"\f395"}.ion-md-today:before{content:"\f17d"}.ion-md-train:before{content:"\f396"}.ion-md-transgender:before{content:"\f397"}.ion-md-trash:before{content:"\f398"}.ion-md-trending-down:before{content:"\f399"}.ion-md-trending-up:before{content:"\f39a"}.ion-md-trophy:before{content:"\f39b"}.ion-md-tv:before{content:"\f17f"}.ion-md-umbrella:before{content:"\f39c"}.ion-md-undo:before{content:"\f39d"}.ion-md-unlock:before{content:"\f39e"}.ion-md-videocam:before{content:"\f39f"}.ion-md-volume-high:before{content:"\f123"}.ion-md-volume-low:before{content:"\f131"}.ion-md-volume-mute:before{content:"\f3a1"}.ion-md-volume-off:before{content:"\f3a2"}.ion-md-walk:before{content:"\f3a4"}.ion-md-wallet:before{content:"\f18f"}.ion-md-warning:before{content:"\f3a5"}.ion-md-watch:before{content:"\f3a6"}.ion-md-water:before{content:"\f3a7"}.ion-md-wifi:before{content:"\f3a8"}.ion-md-wine:before{content:"\f3a9"}.ion-md-woman:before{content:"\f3aa"} diff --git a/public/assets/lib/ionicons/esm/es5/5nonw4yz.js b/public/assets/lib/ionicons/esm/es5/5nonw4yz.js new file mode 100755 index 0000000..0790e78 --- /dev/null +++ b/public/assets/lib/ionicons/esm/es5/5nonw4yz.js @@ -0,0 +1,2 @@ +/*! Built with http://stenciljs.com */ +import{h}from"./ionicons.core.js";var Icon=function(){function e(){this.isVisible=!1,this.lazy=!0}return e.prototype.componentWillLoad=function(){var e=this;this.waitUntilVisible(this.el,"50px",function(){e.isVisible=!0,e.loadIcon()})},e.prototype.componentDidUnload=function(){this.io&&(this.io.disconnect(),this.io=void 0)},e.prototype.waitUntilVisible=function(e,t,i){var n=this;if(this.lazy&&this.win&&this.win.IntersectionObserver){var r=this.io=new this.win.IntersectionObserver(function(e){e[0].isIntersecting&&(r.disconnect(),n.io=void 0,i())},{rootMargin:t});r.observe(e)}else i()},e.prototype.loadIcon=function(){var e=this;if(!this.isServer&&this.isVisible){var t=this.getUrl();t&&getSvgContent(t).then(function(t){e.svgContent=validateContent(e.doc,t,e.el["s-sc"])})}if(!this.ariaLabel){var i=getName(this.name,this.mode,this.ios,this.md);i&&(this.ariaLabel=i.replace("ios-","").replace("md-","").replace(/\-/g," "))}},e.prototype.getUrl=function(){var e=getSrc(this.src);return e||((e=getName(this.name,this.mode,this.ios,this.md))?this.getNamedUrl(e):(e=getSrc(this.icon))?e:(e=getName(this.icon,this.mode,this.ios,this.md))?this.getNamedUrl(e):null)},e.prototype.getNamedUrl=function(e){return this.resourcesUrl+"svg/"+e+".svg"},e.prototype.hostData=function(){var e;return{role:"img",class:Object.assign({},createColorClasses(this.color),(e={},e["icon-"+this.size]=!!this.size,e))}},e.prototype.render=function(){return!this.isServer&&this.svgContent?h("div",{class:"icon-inner",innerHTML:this.svgContent}):h("div",{class:"icon-inner"})},Object.defineProperty(e,"is",{get:function(){return"ion-icon"},enumerable:!0,configurable:!0}),Object.defineProperty(e,"encapsulation",{get:function(){return"shadow"},enumerable:!0,configurable:!0}),Object.defineProperty(e,"properties",{get:function(){return{ariaLabel:{type:String,attr:"aria-label",reflectToAttr:!0,mutable:!0},color:{type:String,attr:"color"},doc:{context:"document"},el:{elementRef:!0},icon:{type:String,attr:"icon",watchCallbacks:["loadIcon"]},ios:{type:String,attr:"ios"},isServer:{context:"isServer"},isVisible:{state:!0},lazy:{type:Boolean,attr:"lazy"},md:{type:String,attr:"md"},mode:{type:String,attr:"mode"},name:{type:String,attr:"name",watchCallbacks:["loadIcon"]},resourcesUrl:{context:"resourcesUrl"},size:{type:String,attr:"size"},src:{type:String,attr:"src",watchCallbacks:["loadIcon"]},svgContent:{state:!0},win:{context:"window"}}},enumerable:!0,configurable:!0}),Object.defineProperty(e,"style",{get:function(){return":host{display:inline-block;width:1em;height:1em;contain:strict;-webkit-box-sizing:content-box!important;box-sizing:content-box!important}:host(.ion-color){color:var(--ion-color-base)!important}:host(.icon-small){font-size:var(--ion-icon-size-small,18px)!important}:host(.icon-large){font-size:var(--ion-icon-size-large,32px)!important}.icon-inner,svg{display:block;height:100%;width:100%}svg{fill:currentColor;stroke:currentColor}:host(.ion-color-primary){--ion-color-base:var(--ion-color-primary, #3880ff)}:host(.ion-color-secondary){--ion-color-base:var(--ion-color-secondary, #0cd1e8)}:host(.ion-color-tertiary){--ion-color-base:var(--ion-color-tertiary, #f4a942)}:host(.ion-color-success){--ion-color-base:var(--ion-color-success, #10dc60)}:host(.ion-color-warning){--ion-color-base:var(--ion-color-warning, #ffce00)}:host(.ion-color-danger){--ion-color-base:var(--ion-color-danger, #f14141)}:host(.ion-color-light){--ion-color-base:var(--ion-color-light, #f4f5f8)}:host(.ion-color-medium){--ion-color-base:var(--ion-color-medium, #989aa2)}:host(.ion-color-dark){--ion-color-base:var(--ion-color-dark, #222428)}"},enumerable:!0,configurable:!0}),e}(),requests=new Map;function getSvgContent(e){var t=requests.get(e);return t||(t=fetch(e,{cache:"force-cache"}).then(function(e){return e.ok?e.text():Promise.resolve(null)}),requests.set(e,t)),t}function getName(e,t,i,n){return t=(t||"md").toLowerCase(),i&&"ios"===t?e=i.toLowerCase():n&&"md"===t?e=n.toLowerCase():e&&(e=e.toLowerCase(),/^md-|^ios-|^logo-/.test(e)||(e=t+"-"+e)),"string"!=typeof e||""===e.trim()?null:""!==e.replace(/[a-z]|-|\d/gi,"")?null:e}function getSrc(e){return"string"==typeof e&&(e=e.trim()).length>0&&/(\/|\.)/.test(e)?e:null}function validateContent(e,t,i){if(t){var n=e.createDocumentFragment(),r=e.createElement("div");r.innerHTML=t,n.appendChild(r);for(var o=r.childNodes.length-1;o>=0;o--)"svg"!==r.childNodes[o].nodeName.toLowerCase()&&r.removeChild(r.childNodes[o]);var s=r.firstElementChild;if(s&&"svg"===s.nodeName.toLowerCase()&&(i&&s.setAttribute(i,""),isValid(s)))return r.innerHTML}return""}function isValid(e){if(1===e.nodeType){if("script"===e.nodeName.toLowerCase())return!1;for(var t=0;t0&&/(\/|\.)/.test(e)?e:null}function validateContent(e,t,i){if(t){var n=e.createDocumentFragment(),r=e.createElement("div");r.innerHTML=t,n.appendChild(r);for(var o=r.childNodes.length-1;o>=0;o--)"svg"!==r.childNodes[o].nodeName.toLowerCase()&&r.removeChild(r.childNodes[o]);var s=r.firstElementChild;if(s&&"svg"===s.nodeName.toLowerCase()&&(i&&s.setAttribute(i,""),isValid(s)))return r.innerHTML}return""}function isValid(e){if(1===e.nodeType){if("script"===e.nodeName.toLowerCase())return!1;for(var t=0;t-1&&r.splice(e,1),r.length||(i["s-init"]&&i["s-init"](),i.$initLoad&&i.$initLoad())),n.u.delete(t))}function i(n,t){for(var e,r,i=null,o=!1,u=!1,f=arguments.length;f-- >2;)R.push(arguments[f]);for(;R.length>0;){var c=R.pop();if(c&&void 0!==c.pop)for(f=c.length;f--;)R.push(c[f]);else"boolean"==typeof c&&(c=null),(u="function"!=typeof n)&&(null==c?c="":"number"==typeof c?c=String(c):"string"!=typeof c&&(u=!1)),u&&o?i[i.length-1].vtext+=c:null===i?i=[u?{vtext:c}:c]:i.push(u?{vtext:c}:c),o=u}if(null!=t){if(t.className&&(t.class=t.className),"object"==typeof t.class){for(f in t.class)t.class[f]&&R.push(f);t.class=R.join(" "),R.length=0}null!=t.key&&(e=t.key),null!=t.name&&(r=t.name)}return"function"==typeof n?n(Object.assign({},t,{children:i}),F):{vtag:n,vchildren:i,vtext:void 0,vattrs:t,vkey:e,vname:r,f:void 0,c:!1}}function o(n){return{vtag:n.vtag,vchildren:n.vchildren,vtext:n.vtext,vattrs:n.vattrs,vkey:n.vkey,vname:n.vname}}function u(n,t,e,r){t.split(" ").forEach(function(t){n[t]=!0,e&&(n[t+"-"+e]=!0,r&&(n[t+"-"+e+"-"+r]=n[t+"-"+r]=!0))})}function f(n,t){n.a.has(t)||(n.a.set(t,!0),n.s?n.queue.write(function(){return c(n,t)}):n.queue.tick(function(){return c(n,t)}))}function c(n,t,e,r,i,o){if(n.a.delete(t),!n.l.has(t)){if(r=n.v.get(t),e=!r){if((i=n.u.get(t))&&i.$rendered&&(i["s-rn"]=!0),i&&!i["s-rn"])return(i["s-rc"]=i["s-rc"]||[]).push(function(){c(n,t)}),void(i.$onRender=i["s-rc"]);r=function u(n,t,e,r,i,o,f){try{(function c(n,t,e,r,i,o,u){for(u in n.d.set(r,e),n.p.has(e)||n.p.set(e,{}),(o=Object.assign({color:{type:String}},t.properties)).mode={type:String},o)s(n,o[u],e,r,u,i)})(n,i=n.m(t).y,t,r=new i,e),function a(n,t,e){if(t){var r=n.d.get(e);t.forEach(function(t){e[t.method]={emit:function(e){n.b(r,t.name,{bubbles:t.bubbles,composed:t.composed,cancelable:t.cancelable,detail:e})}}})}}(n,i.events,r);try{if(o=n.w.get(t)){for(f=0;f0)throw new Error("The following keys were attempted to be set with hostData() from the "+t.n+" component: "+m.join(", ")+". If you would like to modify these please set @Prop({ mutable: true, reflectToAttr: true}) on the @Prop() decorator.")}o&&(y=y?Object.assign(y,o):o),n.P=!1,c&&(y=function b(n,t,e){return n=n||{},Object.keys(t).forEach(function(r){"theme"===r?u(n.class=n.class||{},t[r],e.mode,e.color):"class"===r?u(n[r]=n[r]||{},t[r]):n[r]=t[r]}),n}(y,c,r));var w=n.T.get(e)||{};w.f=f;var g=i(null,y,h);g.c=!0,n.T.set(e,n.render(e,w,g,s,a))}n._&&n._.x(e),e["s-rn"]=!0,e.$onRender&&(e["s-rc"]=e.$onRender),e["s-rc"]&&(e["s-rc"].forEach(function(n){return n()}),e["s-rc"]=null)}catch(t){n.P=!1,n.g(t,8,e,!0)}})(n,n.m(t),t,e);try{r?t["s-init"]():(e.componentDidUpdate&&e.componentDidUpdate(),g(n.T.get(t))),t["s-hmr-load"]&&t["s-hmr-load"]()}catch(e){n.g(e,6,t,!0)}}function s(n,t,r,i,o,u,f,c){if(t.type||t.state){var a=n.p.get(r);t.state||(!t.attr||void 0!==a[o]&&""!==a[o]||(f=u&&u.N)&&S(c=f[t.attr])&&(a[o]=e(t.type,c)),r.hasOwnProperty(o)&&(void 0===a[o]&&(a[o]=e(t.type,r[o])),"mode"!==o&&delete r[o])),i.hasOwnProperty(o)&&void 0===a[o]&&(a[o]=i[o]),t.watchCallbacks&&(a[H+o]=t.watchCallbacks.slice()),d(i,o,function s(t){return(t=n.p.get(n.d.get(this)))&&t[o]},function p(e,r){(r=n.d.get(this))&&(t.state||t.mutable)&&l(n,r,o,e)})}else if(t.elementRef)v(i,o,r);else if(t.method)v(r,o,i[o].bind(i));else if(t.context){var h=n.S(t.context);void 0!==h&&v(i,o,h.W&&h.W(r)||h)}else t.connect&&v(i,o,n.D(t.connect))}function l(n,t,e,r,i,o,u){(i=n.p.get(t))||n.p.set(t,i={});var c=i[e];if(r!==c&&(i[e]=r,o=n.v.get(t))){if(u=i[H+e])for(var a=0;a=0;o--)(u=a[o])["s-hn"]!==p&&u["s-ol"]&&(t.nn(u),t.tn(c(u),u,f(u)),t.nn(u["s-ol"]),u["s-ol"]=null,d=!0),i&&r(u,i);n.V=!1}function i(n,r,i,o,u,c,a,s){var l=n["s-cr"]||n.$defaultHolder;for((a=l&&t.en(l)||n).shadowRoot&&t.rn(a)===p&&(a=a.shadowRoot);u<=c;++u)o[u]&&(s=S(o[u].vtext)?t.Y(o[u].vtext):e(null,i,u,n))&&(o[u].f=s,t.tn(a,s,f(r)))}function o(n,e,i,o){for(;e<=i;++e)S(n[e])&&(o=n[e].f,v=!0,o["s-ol"]?t.nn(o["s-ol"]):r(o,!0),t.nn(o))}function u(n,t){return n.vtag===t.vtag&&n.vkey===t.vkey&&("slot"!==n.vtag||n.vname===t.vname)}function f(n){return n&&n["s-ol"]?n["s-ol"]:n}function c(n){return t.en(n["s-ol"]?n["s-ol"]:n)}var a,s,l,v,d,p,h,y=[];return function m(w,g,M,j,k,$,A,E,O,P,T,_){if(p=t.rn(w),h=w["s-cr"],a=j,s="shadow"!==k?$:null,l=w["s-sc"],d=v=!1,function a(s,l,v){var d=l.f=s.f,p=s.vchildren,h=l.vchildren;B=l.f&&S(t.in(l.f))&&void 0!==l.f.ownerSVGElement,B="svg"===l.vtag||"foreignObject"!==l.vtag&&B,S(l.vtext)?(v=d["s-cr"]||d.$defaultHolder)?t.on(t.en(v),l.vtext):s.vtext!==l.vtext&&t.on(d,l.vtext):("slot"!==l.vtag&&b(n,s,l,B),S(p)&&S(h)?function y(n,s,l,v,d,p,h,m){for(var b=0,w=0,g=s.length-1,M=s[0],j=s[g],k=v.length-1,$=v[0],A=v[k];b<=g&&w<=k;)if(null==M)M=s[++b];else if(null==j)j=s[--g];else if(null==$)$=v[++w];else if(null==A)A=v[--k];else if(u(M,$))a(M,$),M=s[++b],$=v[++w];else if(u(j,A))a(j,A),j=s[--g],A=v[--k];else if(u(M,A))"slot"!==M.vtag&&"slot"!==A.vtag||r(t.en(M.f)),a(M,A),t.tn(n,M.f,t.un(j.f)),M=s[++b],A=v[--k];else if(u(j,$))"slot"!==M.vtag&&"slot"!==A.vtag||r(t.en(j.f)),a(j,$),t.tn(n,j.f,M.f),j=s[--g],$=v[++w];else{for(d=null,p=b;p<=g;++p)if(s[p]&&S(s[p].vkey)&&s[p].vkey===$.vkey){d=p;break}S(d)?((m=s[d]).vtag!==$.vtag?h=e(s&&s[w],l,d,n):(a(m,$),s[d]=void 0,h=m.f),$=v[++w]):(h=e(s&&s[w],l,w,n),$=v[++w]),h&&t.tn(c(M.f),h,f(M.f))}b>g?i(n,null==v[k+1]?null:v[k+1].f,l,v,w,k):w>k&&o(s,b,g)}(d,p,l,h):S(h)?(S(s.vtext)&&t.on(d,""),i(d,null,l,h,0,h.length-1)):S(p)&&o(p,0,p.length-1)),B&&"svg"===l.vtag&&(B=!1)}(g,M),S(s)&&t.O(g.f,C,s),d){for(function n(e,r,i,o,u,f,c,a,s,l){for(u=0,f=(r=t.X(e)).length;u=0;c--)(o=a[c])["s-cn"]||o["s-nr"]||o["s-hn"]===i["s-hn"]||((3===(l=t.fn(o))||8===l)&&""===s||1===l&&null===t.cn(o,"slot")&&""===s||1===l&&t.cn(o,"slot")===s)&&(y.some(function(n){return n.an===o})||(v=!0,o["s-sn"]=s,y.push({sn:i,an:o})));1===t.fn(i)&&n(i)}}(M.f),A=0;A1&&(v=i.qn(t,s[0]),e=s[1]),v){var p=o;(s=e.split(".")).length>1&&(e=s[0],p=function(n){n.keyCode===N[s[1]]&&o(n)}),a=i.Fn?{capture:!!u,passive:!!f}:!!u,n.Ln(v,e,p,a),d||r.set(t,d={}),d[l]=function(){v&&n.Rn(v,e,p,a),d[l]=null}}},U:function(n,t){var e=r.get(n);e&&(t?e[t]&&e[t]():Object.keys(e).forEach(function(n){e[n]&&e[n]()}))},An:function(n,t){return n.attachShadow(t)}};i.j=!!i.Dn.documentElement.attachShadow,t.location.search.indexOf("shadow=false")>0&&(i.j=!1),"function"!=typeof t.CustomEvent&&(t.CustomEvent=function(n,t,r){return(r=e.createEvent("CustomEvent")).initCustomEvent(n,t.bubbles,t.cancelable,t.detail),r},t.CustomEvent.prototype=t.Event.prototype),i.In=function(n,e,r){return n&&n.dispatchEvent(new t.CustomEvent(e,r))};try{t.addEventListener("e",null,Object.defineProperty({},"passive",{get:function(){return i.Fn=!0}}))}catch(n){}return i.in=function(n,t){return(t=i.en(n))&&11===i.fn(t)?t.host:t},i}(l,r,o);e.isServer=e.isPrerender=!(e.isClient=!0),e.window=r,e.location=r.location,e.document=o,e.resourcesUrl=e.publicPath=u,e.enableListener=function(n,t,e,r,i){return function o(n,t,e,r,i,u){if(t){var f=n.d.get(t),c=n.m(f);if(c&&c.dn)if(r){var a=c.dn.find(function(n){return n.t===e});a&&n.k.B(f,e,function(n){return t[a.e](n)},a.o,void 0===u?a.i:!!u,i)}else n.k.U(f,e)}}(y,n,t,e,r,i)},e.emit=function(n,t,r){return v.In(n,e.eventNameFn?e.eventNameFn(t):t,r)},l.h=i,l.Context=e;var p=r["s-defined"]=r.$definedCmps=r["s-defined"]||r.$definedCmps||{},h=0,y={k:v,Bn:function m(n,t){if(!r.customElements.get(n.n)){$(y,a[n.n]=n,t.prototype,c);var e=t.observedAttributes=[];for(var i in n.C)n.C[i].F&&e.push(n.C[i].F);r.customElements.define(n.n,t)}},b:e.emit,m:function(n){return a[v.rn(n)]},S:function(n){return e[n]},isClient:!0,Tn:function(n){return!(!p[v.rn(n)]&&!y.m(n))},Cn:function(){return t+h++},g:function(n,t,e){},D:function(n){return function t(n,e,r){return{create:A(n,e,r,"create"),componentOnReady:A(n,e,r,"componentOnReady")}}(v,s,n)},queue:e.queue=function b(n,t){function e(n){for(var t=0;t0&&(s.push.apply(s,a),a.length=0),(v=c.length+a.length+s.length>0)?n.raf(i):l=0}var o=function(){return t.performance.now()},u=Promise.resolve(),f=[],c=[],a=[],s=[],l=0,v=!1;return n.raf||(n.raf=t.requestAnimationFrame.bind(t)),{tick:function(n){f.push(n),1===f.length&&u.then(function(){return e(f)})},read:function(t){c.push(t),v||(v=!0,n.raf(i))},write:function(t){a.push(t),v||(v=!0,n.raf(i))}}}(l,r),xn:function g(n,t,e){if(n.y)f(y,t);else{var r={mode:t.mode,scoped:2===n.encapsulation||1===n.encapsulation&&!v.j};n.jn(r).then(function(e){try{n.y=e,function r(n,t,e,i,o){if(i){var u=t.n+(o||_);t[u]||(t[u]=i)}}(0,n,n.encapsulation,e.style,e.styleMode)}catch(t){n.y=function i(){}}f(y,t)})}},u:new WeakMap,Un:new WeakMap,Pn:new WeakMap,On:new WeakMap,_n:new WeakMap,d:new WeakMap,M:new WeakMap,v:new WeakMap,l:new WeakMap,a:new WeakMap,Sn:new WeakMap,w:new WeakMap,T:new WeakMap,p:new WeakMap};y.render=w(y,v);var M=v.Dn.documentElement;return M["s-ld"]=[],M["s-rn"]=!0,M["s-init"]=function(){y._n.set(M,l.loaded=y.s=!0),v.In(r,"appload",{detail:{namespace:t}})},y.A=function(t,e,r,i){(function o(t,e,r,i){var o=r.encapsulation,u=2===o||1===o&&!t.k.j,f=r.n+i.mode,c=r[f];if(u&&(i["s-sc"]=n(r,i.mode)),c||(c=r[f=r.n+_],u&&(i["s-sc"]=n(r))),c){var a=e.Dn.head;if(e.j)if(1===o)a=i.shadowRoot;else for(var s=i;s=e.en(s);)if(s.host&&s.host.shadowRoot){a=s.host.shadowRoot;break}var l=t.Un.get(a);if(l||t.Un.set(a,l={}),!l[f]){var v=void 0;if(t._?v=t._.zn(i,f,c):((v=e.G("style")).innerHTML=c,l[f]=!0),v){e.O(v,"data-style-tag",r.n),i.mode&&e.O(v,"data-style-mode",r.n),i["s-sc"]&&e.O(v,"data-style-scoped","true");var d=a.querySelectorAll("[data-styles]");e.tn(a,v,d.length&&d[d.length-1].nextSibling||a.firstChild)}}}})(t,e,r,i)},function k(n,t,e,r){var i=e.Qn=e.Qn||{};return i.Yn=i.Yn||[],i.Yn.push(function o(n,t,e){return{namespace:t,Zn:function(n){return n&&n.tagName?Promise.all([j(e,n.tagName),function t(n,e){return Promise.resolve(n.v.get(e))}(e,n)]).then(function(n){return n[0]&&n[1]?{Gn:n[0],Jn:n[1]}:null}):Promise.resolve(null)},Kn:function(n){return j(e,n)},Vn:function(){return Promise.all(n.components.map(function(n){return j(e,n[0])})).then(function(n){return n.filter(function(n){return n})})}}}(n,t,r)),i.Zn||(i.Zn=function(n){return Promise.all(i.Yn.map(function(t){return t.Zn(n)})).then(function(n){return n.find(function(n){return!!n})})}),i.Vn||(i.Vn=function(){var n=[];return i.Yn.forEach(function(t){n.push(t.Vn())}),Promise.all(n).then(function(n){var t=[];return n.forEach(function(n){n.forEach(function(n){t.push(n)})}),t})}),i}(l,t,r,y),function E(n,t,e,r,i,o){if(t.componentOnReady=function(t,e){if(!t.nodeName.includes("-"))return e(null),!1;var r=n.m(t);if(r)if(n._n.has(t))e(t);else{var i=n.Sn.get(t)||[];i.push(e),n.Sn.set(t,i)}return!!r},i){for(o=i.length-1;o>=0;o--)t.componentOnReady(i[o][0],i[o][1])&&i.splice(o,1);for(o=0;o0){for(var e=n["s-apps"],i=0,o=0;o>>0;if("function"!==typeof c)throw new TypeError("predicate must be a function");for(var a=0;a>>0;if(0===n)return!1;var i,o,a=0|e,u=Math.max(0<=a?a:n-Math.abs(a),0);for(;u1)&&Zt(this)}}}),ot(u,h,{value:function(e){-1<_.call(a,e)&&o[h].apply(this,arguments)}}),o[d]&&ot(u,p,{value:o[d]}),o[v]&&ot(u,g,{value:o[v]}),i&&(f[c]=i),e=e.toUpperCase(),G[e]={constructor:t,create:i?[i,et(e)]:[e]},Z.set(t,e),n[s](e.toLowerCase(),f),en(e),Y[e].r()}function Gt(e){var t=G[e.toUpperCase()];return t&&t.constructor}function Yt(e){return typeof e=="string"?e:e&&e.is||""}function Zt(e){var t=e[h],n=t?e.attributes:j,r=n.length,i;while(r--)i=n[r],t.call(e,i.name||i.nodeName,null,i.value||i.nodeValue)}function en(e){return e=e.toUpperCase(),e in Y||(Y[e]={},Y[e].p=new K(function(t){Y[e].r=t})),Y[e].p}function tn(){X&&delete e.customElements,B(e,"customElements",{configurable:!0,value:new Kt}),B(e,"CustomElementRegistry",{configurable:!0,value:Kt});for(var t=function(t){var r=e[t];if(r){e[t]=function(t){var i,s;return t||(t=this),t[W]||(Q=!0,i=G[Z.get(t.constructor)],s=V&&i.create.length===1,t=s?Reflect.construct(r,j,i.constructor):n.createElement.apply(n,i.create),t[W]=!0,Q=!1,s||Zt(t)),t},e[t].prototype=r.prototype;try{r.prototype.constructor=e[t]}catch(i){z=!0,B(r,W,{value:e[t]})}}},r=i.get(/^HTML[A-Z]*[a-z]/),o=r.length;o--;t(r[o]));n.createElement=function(e,t){var n=Yt(t);return n?gt.call(this,e,et(n)):gt.call(this,e)},St||(Tt=!0,n[s](""))}var n=e.document,r=e.Object,i=function(e){var t=/^[A-Z]+[a-z]/,n=function(e){var t=[],n;for(n in s)e.test(n)&&t.push(n);return t},i=function(e,t){t=t.toLowerCase(),t in s||(s[e]=(s[e]||[]).concat(t),s[t]=s[t.toUpperCase()]=e)},s=(r.create||r)(null),o={},u,a,f,l;for(a in e)for(l in e[a]){f=e[a][l],s[l]=f;for(u=0;u>0),u="addEventListener",a="attached",f="Callback",l="detached",c="extends",h="attributeChanged"+f,p=a+f,d="connected"+f,v="disconnected"+f,m="created"+f,g=l+f,y="ADDITION",b="MODIFICATION",w="REMOVAL",E="DOMAttrModified",S="DOMContentLoaded",x="DOMSubtreeModified",T="<",N="=",C=/^[A-Z][A-Z0-9]*(?:-[A-Z0-9]+)+$/,k=["ANNOTATION-XML","COLOR-PROFILE","FONT-FACE","FONT-FACE-SRC","FONT-FACE-URI","FONT-FACE-FORMAT","FONT-FACE-NAME","MISSING-GLYPH"],L=[],A=[],O="",M=n.documentElement,_=L.indexOf||function(e){for(var t=this.length;t--&&this[t]!==e;);return t},D=r.prototype,P=D.hasOwnProperty,H=D.isPrototypeOf,B=r.defineProperty,j=[],F=r.getOwnPropertyDescriptor,I=r.getOwnPropertyNames,q=r.getPrototypeOf,R=r.setPrototypeOf,U=!!r.__proto__,z=!1,W="__dreCEv1",X=e.customElements,V=!/^force/.test(t.type)&&!!(X&&X.define&&X.get&&X.whenDefined),$=r.create||r,J=e.Map||function(){var t=[],n=[],r;return{get:function(e){return n[_.call(t,e)]},set:function(e,i){r=_.call(t,e),r<0?n[t.push(e)-1]=i:n[r]=i}}},K=e.Promise||function(e){function i(e){n=!0;while(t.length)t.shift()(e)}var t=[],n=!1,r={"catch":function(){return r},then:function(e){return t.push(e),n&&setTimeout(i,1),r}};return e(i),r},Q=!1,G=$(null),Y=$(null),Z=new J,et=function(e){return e.toLowerCase()},tt=r.create||function sn(e){return e?(sn.prototype=e,new sn):this},nt=R||(U?function(e,t){return e.__proto__=t,e}:I&&F?function(){function e(e,t){for(var n,r=I(t),i=0,s=r.length;ithis.status;this.statusText="statusText"in b?b.statusText:"OK";this.headers=new d(b.headers);this.url=b.url||"";this._initBody(a)}if(!e.fetch){var D="Symbol"in e&&"iterator"in Symbol,m;if(m="FileReader"in e&&"Blob"in e)try{new Blob,m=!0}catch(a){m=!1}var g={searchParams:"URLSearchParams"in e,iterable:D, +blob:m,formData:"FormData"in e,arrayBuffer:"ArrayBuffer"in e};if(g.arrayBuffer){var E="[object Int8Array];[object Uint8Array];[object Uint8ClampedArray];[object Int16Array];[object Uint16Array];[object Int32Array];[object Uint32Array];[object Float32Array];[object Float64Array]".split(";");var y=function(a){return a&&DataView.prototype.isPrototypeOf(a)};var z=ArrayBuffer.isView||function(a){return a&&-1this.length)a=this.length;return this.substring(a-b.length,a)===b}}); +/*! +String.prototype.includes +*/ +String.prototype.includes||(String.prototype.includes=function(b,a){"number"!==typeof a&&(a=0);return a+b.length>this.length?!1:-1!==this.indexOf(b,a)}); +/*! +String.prototype.startsWith +*/ +String.prototype.startsWith||Object.defineProperty(String.prototype,"startsWith",{writable:!0,configurable:!0,value:function(b,a){return this.substr(!a||0>a?0:+a,b.length)===b}}); +} \ No newline at end of file diff --git a/public/assets/lib/ionicons/esm/index.js b/public/assets/lib/ionicons/esm/index.js new file mode 100755 index 0000000..77e93ac --- /dev/null +++ b/public/assets/lib/ionicons/esm/index.js @@ -0,0 +1,2 @@ +// ionicons: ES Module +export * from './es5/ionicons.define.js'; \ No newline at end of file diff --git a/public/assets/lib/ionicons/fonts/ionicons.eot b/public/assets/lib/ionicons/fonts/ionicons.eot new file mode 100755 index 0000000..4b1fd0f Binary files /dev/null and b/public/assets/lib/ionicons/fonts/ionicons.eot differ diff --git a/public/assets/lib/ionicons/fonts/ionicons.svg b/public/assets/lib/ionicons/fonts/ionicons.svg new file mode 100755 index 0000000..ba35c41 --- /dev/null +++ b/public/assets/lib/ionicons/fonts/ionicons.svg @@ -0,0 +1,2090 @@ + + + + + +Created by FontForge 20160407 at Thu Jun 14 08:50:34 2018 + By Adam Bradley +Copyright (c) 2018, Adam Bradley + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/assets/lib/ionicons/fonts/ionicons.ttf b/public/assets/lib/ionicons/fonts/ionicons.ttf new file mode 100755 index 0000000..67bd842 Binary files /dev/null and b/public/assets/lib/ionicons/fonts/ionicons.ttf differ diff --git a/public/assets/lib/ionicons/fonts/ionicons.woff b/public/assets/lib/ionicons/fonts/ionicons.woff new file mode 100755 index 0000000..ec1c1f8 Binary files /dev/null and b/public/assets/lib/ionicons/fonts/ionicons.woff differ diff --git a/public/assets/lib/ionicons/fonts/ionicons.woff2 b/public/assets/lib/ionicons/fonts/ionicons.woff2 new file mode 100755 index 0000000..4233951 Binary files /dev/null and b/public/assets/lib/ionicons/fonts/ionicons.woff2 differ diff --git a/public/assets/lib/ionicons/index.js b/public/assets/lib/ionicons/index.js new file mode 100755 index 0000000..7d4ad1a --- /dev/null +++ b/public/assets/lib/ionicons/index.js @@ -0,0 +1 @@ +// ionicons: CommonJS Main \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons.js b/public/assets/lib/ionicons/ionicons.js new file mode 100755 index 0000000..ba11719 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons.js @@ -0,0 +1,5 @@ +/*! + * Built with http://stenciljs.com + * 2018-06-29T13:20:28 + */ +!function(e,n,t,r,i,o,s,c,u,a,l,d,p,m){for((l=e.ionicons=e.ionicons||{}).components=u,(p=u.filter(function(e){return e[2]}).map(function(e){return e[0]})).length&&((d=n.createElement("style")).innerHTML=p.join()+"{visibility:hidden}.hydrated{visibility:inherit}",d.setAttribute("data-styles",""),n.head.insertBefore(d,n.head.firstChild)),function(e,n,t){(e["s-apps"]=e["s-apps"]||[]).push("ionicons"),t.componentOnReady||(t.componentOnReady=function(){var n=this;function t(t){if(n.nodeName.indexOf("-")>0){for(var r=e["s-apps"],i=0,o=0;o=0&&!(m=p[d]).src&&!m.hasAttribute("data-resources-url");d--);p=m.getAttribute("data-resources-url"),!i&&p&&(i=p),!i&&m.src&&(i=(p=m.src.split("/").slice(0,-1)).join("/")+(p.length?"/":"")+"ionicons/"),d=n.createElement("script"),function(e,n,t,r){return!(n.search.indexOf("core=esm")>0)&&(!(!(n.search.indexOf("core=es5")>0||"file:"===n.protocol)&&e.customElements&&e.customElements.define&&e.fetch&&e.CSS&&e.CSS.supports&&e.CSS.supports("color","var(--c)")&&"noModule"in t)||function(e){try{return new Function('import("")'),!1}catch(e){}return!0}())}(e,e.location,d)?d.src=i+"ionicons.z18qlu2u.js":(d.src=i+"ionicons.suuqn5vt.js",d.setAttribute("type","module"),d.setAttribute("crossorigin",!0)),d.setAttribute("data-resources-url",i),d.setAttribute("data-namespace","ionicons"),n.head.appendChild(d)}(window,document,0,0,0,0,0,0,[["ion-icon","5nonw4yz",1,[["ariaLabel",2,1,"aria-label",2],["color",1,0,1,2],["doc",3,0,0,0,"document"],["el",7],["icon",1,0,1,2],["ios",1,0,1,2],["isServer",3,0,0,0,"isServer"],["isVisible",5],["lazy",1,0,1,3],["md",1,0,1,2],["mode",1,0,1,2],["name",1,0,1,2],["resourcesUrl",3,0,0,0,"resourcesUrl"],["size",1,0,1,2],["src",1,0,1,2],["svgContent",5],["win",3,0,0,0,"window"]],1]],HTMLElement.prototype); \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/5nonw4yz.es5.js b/public/assets/lib/ionicons/ionicons/5nonw4yz.es5.js new file mode 100755 index 0000000..f8e9d78 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/5nonw4yz.es5.js @@ -0,0 +1,2 @@ +/*! Built with http://stenciljs.com */ +ionicons.loadBundle("5nonw4yz",["exports"],function(e){var t=window.ionicons.h,i=function(){function e(){this.isVisible=!1,this.lazy=!0}return e.prototype.componentWillLoad=function(){var e=this;this.waitUntilVisible(this.el,"50px",function(){e.isVisible=!0,e.loadIcon()})},e.prototype.componentDidUnload=function(){this.io&&(this.io.disconnect(),this.io=void 0)},e.prototype.waitUntilVisible=function(e,t,i){var n=this;if(this.lazy&&this.win&&this.win.IntersectionObserver){var r=this.io=new this.win.IntersectionObserver(function(e){e[0].isIntersecting&&(r.disconnect(),n.io=void 0,i())},{rootMargin:t});r.observe(e)}else i()},e.prototype.loadIcon=function(){var e=this;if(!this.isServer&&this.isVisible){var t=this.getUrl();t&&function(e){var t=n.get(e);return t||(t=fetch(e,{cache:"force-cache"}).then(function(e){return e.ok?e.text():Promise.resolve(null)}),n.set(e,t)),t}(t).then(function(t){e.svgContent=function(e,t,i){if(t){var n=e.createDocumentFragment(),r=e.createElement("div");r.innerHTML=t,n.appendChild(r);for(var o=r.childNodes.length-1;o>=0;o--)"svg"!==r.childNodes[o].nodeName.toLowerCase()&&r.removeChild(r.childNodes[o]);var s=r.firstElementChild;if(s&&"svg"===s.nodeName.toLowerCase()&&(i&&s.setAttribute(i,""),function e(t){if(1===t.nodeType){if("script"===t.nodeName.toLowerCase())return!1;for(var i=0;i0&&/(\/|\.)/.test(e)?e:null}e.IonIcon=i,Object.defineProperty(e,"__esModule",{value:!0})}); \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/5nonw4yz.js b/public/assets/lib/ionicons/ionicons/5nonw4yz.js new file mode 100755 index 0000000..fba099a --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/5nonw4yz.js @@ -0,0 +1,2 @@ +/*! Built with http://stenciljs.com */ +const{h:t}=window.ionicons;class e{constructor(){this.isVisible=!1,this.lazy=!0}componentWillLoad(){this.waitUntilVisible(this.el,"50px",()=>{this.isVisible=!0,this.loadIcon()})}componentDidUnload(){this.io&&(this.io.disconnect(),this.io=void 0)}waitUntilVisible(t,e,i){if(this.lazy&&this.win&&this.win.IntersectionObserver){const s=this.io=new this.win.IntersectionObserver(t=>{t[0].isIntersecting&&(s.disconnect(),this.io=void 0,i())},{rootMargin:e});s.observe(t)}else i()}loadIcon(){if(!this.isServer&&this.isVisible){const t=this.getUrl();t&&function(t){let e=i.get(t);return e||(e=fetch(t,{cache:"force-cache"}).then(t=>t.ok?t.text():Promise.resolve(null)),i.set(t,e)),e}(t).then(t=>{this.svgContent=function(t,e,i){if(e){const s=t.createDocumentFragment(),n=t.createElement("div");n.innerHTML=e,s.appendChild(n);for(let t=n.childNodes.length-1;t>=0;t--)"svg"!==n.childNodes[t].nodeName.toLowerCase()&&n.removeChild(n.childNodes[t]);const o=n.firstElementChild;if(o&&"svg"===o.nodeName.toLowerCase()&&(i&&o.setAttribute(i,""),function t(e){if(1===e.nodeType){if("script"===e.nodeName.toLowerCase())return!1;for(var i=0;i0&&/(\/|\.)/.test(t)?t:null}export{e as IonIcon}; \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/5nonw4yz.sc.es5.js b/public/assets/lib/ionicons/ionicons/5nonw4yz.sc.es5.js new file mode 100755 index 0000000..93bd306 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/5nonw4yz.sc.es5.js @@ -0,0 +1,2 @@ +/*! Built with http://stenciljs.com */ +ionicons.loadBundle("5nonw4yz",["exports"],function(e){var t=window.ionicons.h,i=function(){function e(){this.isVisible=!1,this.lazy=!0}return e.prototype.componentWillLoad=function(){var e=this;this.waitUntilVisible(this.el,"50px",function(){e.isVisible=!0,e.loadIcon()})},e.prototype.componentDidUnload=function(){this.io&&(this.io.disconnect(),this.io=void 0)},e.prototype.waitUntilVisible=function(e,t,i){var n=this;if(this.lazy&&this.win&&this.win.IntersectionObserver){var r=this.io=new this.win.IntersectionObserver(function(e){e[0].isIntersecting&&(r.disconnect(),n.io=void 0,i())},{rootMargin:t});r.observe(e)}else i()},e.prototype.loadIcon=function(){var e=this;if(!this.isServer&&this.isVisible){var t=this.getUrl();t&&function(e){var t=n.get(e);return t||(t=fetch(e,{cache:"force-cache"}).then(function(e){return e.ok?e.text():Promise.resolve(null)}),n.set(e,t)),t}(t).then(function(t){e.svgContent=function(e,t,i){if(t){var n=e.createDocumentFragment(),r=e.createElement("div");r.innerHTML=t,n.appendChild(r);for(var o=r.childNodes.length-1;o>=0;o--)"svg"!==r.childNodes[o].nodeName.toLowerCase()&&r.removeChild(r.childNodes[o]);var s=r.firstElementChild;if(s&&"svg"===s.nodeName.toLowerCase()&&(i&&s.setAttribute(i,""),function e(t){if(1===t.nodeType){if("script"===t.nodeName.toLowerCase())return!1;for(var i=0;i0&&/(\/|\.)/.test(e)?e:null}e.IonIcon=i,Object.defineProperty(e,"__esModule",{value:!0})}); \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/5nonw4yz.sc.js b/public/assets/lib/ionicons/ionicons/5nonw4yz.sc.js new file mode 100755 index 0000000..1500dd0 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/5nonw4yz.sc.js @@ -0,0 +1,2 @@ +/*! Built with http://stenciljs.com */ +const{h:t}=window.ionicons;class e{constructor(){this.isVisible=!1,this.lazy=!0}componentWillLoad(){this.waitUntilVisible(this.el,"50px",()=>{this.isVisible=!0,this.loadIcon()})}componentDidUnload(){this.io&&(this.io.disconnect(),this.io=void 0)}waitUntilVisible(t,e,i){if(this.lazy&&this.win&&this.win.IntersectionObserver){const s=this.io=new this.win.IntersectionObserver(t=>{t[0].isIntersecting&&(s.disconnect(),this.io=void 0,i())},{rootMargin:e});s.observe(t)}else i()}loadIcon(){if(!this.isServer&&this.isVisible){const t=this.getUrl();t&&function(t){let e=i.get(t);return e||(e=fetch(t,{cache:"force-cache"}).then(t=>t.ok?t.text():Promise.resolve(null)),i.set(t,e)),e}(t).then(t=>{this.svgContent=function(t,e,i){if(e){const s=t.createDocumentFragment(),n=t.createElement("div");n.innerHTML=e,s.appendChild(n);for(let t=n.childNodes.length-1;t>=0;t--)"svg"!==n.childNodes[t].nodeName.toLowerCase()&&n.removeChild(n.childNodes[t]);const o=n.firstElementChild;if(o&&"svg"===o.nodeName.toLowerCase()&&(i&&o.setAttribute(i,""),function t(e){if(1===e.nodeType){if("script"===e.nodeName.toLowerCase())return!1;for(var i=0;i0&&/(\/|\.)/.test(t)?t:null}export{e as IonIcon}; \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/data.json b/public/assets/lib/ionicons/ionicons/data.json new file mode 100755 index 0000000..1f7e6b3 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/data.json @@ -0,0 +1 @@ +{"icons":[{"icons":["ios-add-circle-outline","md-add-circle-outline"],"tags":["circle"]},{"icons":["ios-add-circle","md-add-circle"],"tags":["add","circle"]},{"icons":["ios-add","md-add"],"tags":["add","include","invite","plus"]},{"icons":["ios-airplane","md-airplane"],"tags":["airplane","plane"]},{"icons":["ios-alarm","md-alarm"],"tags":["alarm"]},{"icons":["ios-albums","md-albums"],"tags":["albums","boxes","slides","square"]},{"icons":["ios-alert","md-alert"],"tags":["!","alert","attention","exclamation","notice","warning"]},{"icons":["ios-american-football","md-american-football"],"tags":["american","football"]},{"icons":["ios-analytics","md-analytics"],"tags":["analytics","data","metrics","track"]},{"icons":["ios-aperture","md-aperture"],"tags":["aperture","dark","images","levels","light","settings"]},{"icons":["ios-apps","md-apps"],"tags":["apps","applications"]},{"icons":["ios-appstore","md-appstore"],"tags":["appstore","store"]},{"icons":["ios-archive","md-archive"],"tags":["archive","email"]},{"icons":["ios-arrow-back","md-arrow-back"],"tags":["arrow","back","chevron","navigation"]},{"icons":["ios-arrow-down","md-arrow-down"],"tags":["arrow","chevron","down"]},{"icons":["ios-arrow-dropdown-circle","md-arrow-dropdown-circle"],"tags":["arrow","circle","dropdown"]},{"icons":["ios-arrow-dropdown","md-arrow-dropdown"],"tags":["arrow","dropdown"]},{"icons":["ios-arrow-dropleft-circle","md-arrow-dropleft-circle"],"tags":["arrow","circle","dropleft"]},{"icons":["ios-arrow-dropleft","md-arrow-dropleft"],"tags":["arrow","dropleft"]},{"icons":["ios-arrow-dropright-circle","md-arrow-dropright-circle"],"tags":["arrow","circle","dropright"]},{"icons":["ios-arrow-dropright","md-arrow-dropright"],"tags":["arrow","dropright"]},{"icons":["ios-arrow-dropup-circle","md-arrow-dropup-circle"],"tags":["arrow","circle","dropup"]},{"icons":["ios-arrow-dropup","md-arrow-dropup"],"tags":["arrow","dropup"]},{"icons":["ios-arrow-forward","md-arrow-forward"],"tags":["arrow","chevron","forward","navigation"]},{"icons":["ios-arrow-round-back","md-arrow-round-back"],"tags":["arrow","back","round"]},{"icons":["ios-arrow-round-down","md-arrow-round-down"],"tags":["arrow","down","round"]},{"icons":["ios-arrow-round-forward","md-arrow-round-forward"],"tags":["arrow","forward","round"]},{"icons":["ios-arrow-round-up","md-arrow-round-up"],"tags":["arrow","round","up"]},{"icons":["ios-arrow-up","md-arrow-up"],"tags":["arrow","chevron","up"]},{"icons":["ios-at","md-at"],"tags":["@","at"]},{"icons":["ios-attach","md-attach"],"tags":["attach"]},{"icons":["ios-backspace","md-backspace"],"tags":["backspace"]},{"icons":["ios-barcode","md-barcode"],"tags":["barcode","camera","reader"]},{"icons":["ios-baseball","md-baseball"],"tags":["baseball"]},{"icons":["ios-basket","md-basket"],"tags":["basket"]},{"icons":["ios-basketball","md-basketball"],"tags":["basketball"]},{"icons":["ios-battery-charging","md-battery-charging"],"tags":["battery","charging"]},{"icons":["ios-battery-dead","md-battery-dead"],"tags":["battery","dead"]},{"icons":["ios-battery-full","md-battery-full"],"tags":["battery","full"]},{"icons":["ios-beaker","md-beaker"],"tags":["beaker","flask","mixture","potion"]},{"icons":["ios-bed","md-bed"],"tags":["bed","sleep"]},{"icons":["ios-beer","md-beer"],"tags":["beer","drink","eat","food"]},{"icons":["ios-bicycle","md-bicycle"],"tags":["bicycle"]},{"icons":["ios-bluetooth","md-bluetooth"],"tags":["bluetooth","cloud","connection"]},{"icons":["ios-boat","md-boat"],"tags":["boat"]},{"icons":["ios-body","md-body"],"tags":["body"]},{"icons":["ios-bonfire","md-bonfire"],"tags":["bonfire","heat","hot"]},{"icons":["ios-book","md-book"],"tags":["book","read"]},{"icons":["ios-bookmark","md-bookmark"],"tags":["bookmark","favorite","save","tag"]},{"icons":["ios-bookmarks","md-bookmarks"],"tags":["bookmarks","favorite"]},{"icons":["ios-bowtie","md-bowtie"],"tags":["bowtie"]},{"icons":["ios-briefcase","md-briefcase"],"tags":["briefcase","folder","organize"]},{"icons":["ios-browsers","md-browsers"],"tags":["browsers","square"]},{"icons":["ios-brush","md-brush"],"tags":["brush"]},{"icons":["ios-bug","md-bug"],"tags":["bug","develop","error","hacker","program"]},{"icons":["ios-build","md-build"],"tags":["build"]},{"icons":["ios-bulb","md-bulb"],"tags":["bulb"]},{"icons":["ios-bus","md-bus"],"tags":["bus"]},{"icons":["ios-business","md-business"],"tags":["business"]},{"icons":["ios-cafe","md-cafe"],"tags":["cafe"]},{"icons":["ios-calculator","md-calculator"],"tags":["arithmatic","calculator","math"]},{"icons":["ios-calendar","md-calendar"],"tags":["calendar","date","month","week"]},{"icons":["ios-call","md-call"],"tags":["call","telephone"]},{"icons":["ios-camera","md-camera"],"tags":["camera","image","photo"]},{"icons":["ios-car","md-car"],"tags":["car"]},{"icons":["ios-card","md-card"],"tags":["$","card","cash","credit","debit","dollars","money","price","shopping"]},{"icons":["ios-cart","md-cart"],"tags":["cart"]},{"icons":["ios-cash","md-cash"],"tags":["$","cash","credit","debit","dollars","money","price","shopping"]},{"icons":["ios-cellular","md-cellular"],"tags":["cellular"]},{"icons":["ios-chatboxes","md-chatboxes"],"tags":["chatboxes","talk"]},{"icons":["ios-chatbubbles","md-chatbubbles"],"tags":["chatbubbles","talk"]},{"icons":["ios-checkbox-outline","md-checkbox-outline"],"tags":["checkbox"]},{"icons":["ios-checkbox","md-checkbox"],"tags":["checkbox"]},{"icons":["ios-checkmark-circle-outline","md-checkmark-circle-outline"],"tags":["checkmark"]},{"icons":["ios-checkmark-circle","md-checkmark-circle"],"tags":["checkmark","circle"]},{"icons":["ios-checkmark","md-checkmark"],"tags":["checkmark"]},{"icons":["ios-clipboard","md-clipboard"],"tags":["clipboard","write"]},{"icons":["ios-clock","md-clock"],"tags":["clock","time"]},{"icons":["ios-close-circle-outline","md-close-circle-outline"],"tags":["close","cicle"]},{"icons":["ios-close-circle","md-close-circle"],"tags":["circle","close"]},{"icons":["ios-close","md-close"],"tags":["close","delete","remove"]},{"icons":["ios-cloud-circle","md-cloud-circle"],"tags":["circle","cloud"]},{"icons":["ios-cloud-done","md-cloud-done"],"tags":["cloud","done"]},{"icons":["ios-cloud-download","md-cloud-download"],"tags":["cloud","download","storage"]},{"icons":["ios-cloud-outline","md-cloud-outline"],"tags":["cloud"]},{"icons":["ios-cloud-upload","md-cloud-upload"],"tags":["cloud","storage","upload"]},{"icons":["ios-cloud","md-cloud"],"tags":["cloud","storage","weather","whether"]},{"icons":["ios-cloudy-night","md-cloudy-night"],"tags":["cloudy","night","overcast","weather","whether"]},{"icons":["ios-cloudy","md-cloudy"],"tags":["cloudy","overcast","weather","whether"]},{"icons":["ios-code-download","md-code-download"],"tags":["code","develop","download","hacker","program"]},{"icons":["ios-code-working","md-code-working"],"tags":["code","develop","hacker","program","working"]},{"icons":["ios-code","md-code"],"tags":["code","develop","hacker","program"]},{"icons":["ios-cog","md-cog"],"tags":["cog","gear","options","settings"]},{"icons":["ios-color-fill","md-color-fill"],"tags":["color","fill"]},{"icons":["ios-color-filter","md-color-filter"],"tags":["color","filter"]},{"icons":["ios-color-palette","md-color-palette"],"tags":["color","palette"]},{"icons":["ios-color-wand","md-color-wand"],"tags":["color","wand"]},{"icons":["ios-compass","md-compass"],"tags":["compass","directions","location","navigation"]},{"icons":["ios-construct","md-construct"],"tags":["construct"]},{"icons":["ios-contact","md-contact"],"tags":["contact","people","users"]},{"icons":["ios-contacts","md-contacts"],"tags":["contacts","people","users"]},{"icons":["ios-contract","md-contract"],"tags":["contract"]},{"icons":["ios-contrast","md-contrast"],"tags":["contrast","dark","images","levels","light","settings"]},{"icons":["ios-copy","md-copy"],"tags":["copy","duplicate","paper"]},{"icons":["ios-create","md-create"],"tags":["create"]},{"icons":["ios-crop","md-crop"],"tags":["crop"]},{"icons":["ios-cube","md-cube"],"tags":["box","container","cube","square"]},{"icons":["ios-cut","md-cut"],"tags":["cut"]},{"icons":["ios-desktop","md-desktop"],"tags":["desktop"]},{"icons":["ios-disc","md-disc"],"tags":["cd","disc","vinyl"]},{"icons":["ios-document","md-document"],"tags":["document","file","paper"]},{"icons":["ios-done-all","md-done-all"],"tags":["all","done"]},{"icons":["ios-download","md-download"],"tags":["download","export"]},{"icons":["ios-easel","md-easel"],"tags":["easel"]},{"icons":["ios-egg","md-egg"],"tags":["baby","bird","birth","egg","twitter"]},{"icons":["ios-exit","md-exit"],"tags":["exit"]},{"icons":["ios-expand","md-expand"],"tags":["expand"]},{"icons":["ios-eye-off","md-eye-off"],"tags":["eye","off"]},{"icons":["ios-eye","md-eye"],"tags":["exposed","eye","look","see","view"]},{"icons":["ios-fastforward","md-fastforward"],"tags":["fastforward","jump","next","skip"]},{"icons":["ios-female","md-female"],"tags":["dudette","female","girl","lady"]},{"icons":["ios-filing","md-filing"],"tags":["archive","filing"]},{"icons":["ios-film","md-film"],"tags":["film"]},{"icons":["ios-finger-print","md-finger-print"],"tags":["finger","print"]},{"icons":["ios-fitness","md-fitness"],"tags":["fitness"]},{"icons":["ios-flag","md-flag"],"tags":["favorite","flag","marker"]},{"icons":["ios-flame","md-flame"],"tags":["fire","flame","heat","hot"]},{"icons":["ios-flash-off","md-flash-off"],"tags":["flash"]},{"icons":["ios-flash","md-flash"],"tags":["flash","lightning","weather","whether"]},{"icons":["ios-flashlight","md-flashlight"],"tags":["flashlight"]},{"icons":["ios-flask","md-flask"],"tags":["bubbles","flask","mixture","potion"]},{"icons":["ios-flower","md-flower"],"tags":["flower"]},{"icons":["ios-folder-open","md-folder-open"],"tags":["folder","open"]},{"icons":["ios-folder","md-folder"],"tags":["file","folder"]},{"icons":["ios-football","md-football"],"tags":["football","soccer"]},{"icons":["ios-funnel","md-funnel"],"tags":["funnel","sort"]},{"icons":["ios-gift","md-gift"],"tags":["gift"]},{"icons":["ios-git-branch","md-git-branch"],"tags":["branch","git"]},{"icons":["ios-git-commit","md-git-commit"],"tags":["commit","git"]},{"icons":["ios-git-compare","md-git-compare"],"tags":["compare","git"]},{"icons":["ios-git-merge","md-git-merge"],"tags":["git","merge"]},{"icons":["ios-git-network","md-git-network"],"tags":["git","network"]},{"icons":["ios-git-pull-request","md-git-pull-request"],"tags":["git","pull","request"]},{"icons":["ios-glasses","md-glasses"],"tags":["glasses","look","reading","see","steve"]},{"icons":["ios-globe","md-globe"],"tags":["globe"]},{"icons":["ios-grid","md-grid"],"tags":["grid","menu"]},{"icons":["ios-hammer","md-hammer"],"tags":["hammer","options","settings","tools"]},{"icons":["ios-hand","md-hand"],"tags":["hand","stop"]},{"icons":["ios-happy","md-happy"],"tags":["fun","good","happy","like","yes"]},{"icons":["ios-headset","md-headset"],"tags":["headset"]},{"icons":["ios-heart","md-heart"],"tags":["heart","love"]},{"icons":["ios-heart-dislike","md-heart-dislike"],"tags":["dislike","heart","love"]},{"icons":["ios-heart-empty","md-heart-empty"],"tags":["empty","heart","love"]},{"icons":["ios-heart-half","md-heart-half"],"tags":["half","heart","love"]},{"icons":["ios-help-buoy","md-help-buoy"],"tags":["?","buoy","help","question"]},{"icons":["ios-help-circle-outline","md-help-circle-outline"],"tags":["help"]},{"icons":["ios-help-circle","md-help-circle"],"tags":["circle","help"]},{"icons":["ios-help","md-help"],"tags":["?","help","information","question"]},{"icons":["ios-home","md-home"],"tags":["home","house"]},{"icons":["ios-hourglass","md-hourglass"],"tags":["hourglass"]},{"icons":["ios-ice-cream","md-ice-cream"],"tags":["cream","ice"]},{"icons":["ios-image","md-image"],"tags":["camera","image","photo"]},{"icons":["ios-images","md-images"],"tags":["images","photo"]},{"icons":["ios-infinite","md-infinite"],"tags":["forever","infinite","loop"]},{"icons":["ios-information-circle-outline","md-information-circle-outline"],"tags":["information"]},{"icons":["ios-information-circle","md-information-circle"],"tags":["circle","information"]},{"icons":["ios-information","md-information"],"tags":["help","information","knowledge"]},{"icons":["ios-jet","md-jet"],"tags":["fly","jet","plane"]},{"icons":["ios-journal","md-journal"],"tags":["journal"]},{"icons":["ios-key","md-key"],"tags":["access","key"]},{"icons":["ios-keypad","md-keypad"],"tags":["keypad","type"]},{"icons":["ios-laptop","md-laptop"],"tags":["apple","laptop","macbook","osx"]},{"icons":["ios-leaf","md-leaf"],"tags":["green","leaf","nature","plant","recycle"]},{"icons":["ios-link","md-link"],"tags":["anchor","attach","chain","href","link"]},{"icons":["ios-list-box","md-list-box"],"tags":["box","list"]},{"icons":["ios-list","md-list"],"tags":["list"]},{"icons":["ios-locate","md-locate"],"tags":["gps","locate","maps","navigate"]},{"icons":["ios-lock","md-lock"],"tags":["lock"]},{"icons":["ios-log-in","md-log-in"],"tags":["in","log","signin"]},{"icons":["ios-log-out","md-log-out"],"tags":["log","out","signout"]},{"icons":["ios-magnet","md-magnet"],"tags":["attraction","magnet","sticky"]},{"icons":["ios-mail-open","md-mail-open"],"tags":["mail","open"]},{"icons":["ios-mail-unread","md-mail-unread"],"tags":["mail","unread"]},{"icons":["ios-mail","md-mail"],"tags":["email","mail"]},{"icons":["ios-male","md-male"],"tags":["boy","dude","guy","male","male"]},{"icons":["ios-man","md-man"],"tags":["boy","dude","guy","male","man"]},{"icons":["ios-map","md-map"],"tags":["gps","map","navigation","pin"]},{"icons":["ios-medal","md-medal"],"tags":["medal"]},{"icons":["ios-medical","md-medical"],"tags":["medical"]},{"icons":["ios-medkit","md-medkit"],"tags":["case","disease","firstaid","health","medkit","sick"]},{"icons":["ios-megaphone","md-megaphone"],"tags":["megaphone"]},{"icons":["ios-menu","md-menu"],"tags":["menu"]},{"icons":["ios-mic-off","md-mic-off"],"tags":["mic","noise","off","sound","speaker","talk"]},{"icons":["ios-mic","md-mic"],"tags":["mic","noise","sound","speaker","talk"]},{"icons":["ios-microphone","md-microphone"],"tags":["microphone","music","noise","recorde","sound","speak"]},{"icons":["ios-moon","md-moon"],"tags":["dark","moon","night","sky"]},{"icons":["ios-more","md-more"],"tags":["more","options"]},{"icons":["ios-move","md-move"],"tags":["move"]},{"icons":["ios-musical-note","md-musical-note"],"tags":["listening","musical","noise","note","play","sound"]},{"icons":["ios-musical-notes","md-musical-notes"],"tags":["listening","musical","noise","notes","play","sound"]},{"icons":["ios-navigate","md-navigate"],"tags":["gps","location","map","navigate","pin"]},{"icons":["ios-notifications-off","md-notifications-off"],"tags":["notifications","off"]},{"icons":["ios-notifications-outline","md-notifications-outline"],"tags":["notifications"]},{"icons":["ios-notifications","md-notifications"],"tags":["notifications"]},{"icons":["ios-nuclear","md-nuclear"],"tags":["danger","hazard","nuclear","warning"]},{"icons":["ios-nutrition","md-nutrition"],"tags":["nutrition"]},{"icons":["ios-open","md-open"],"tags":["open"]},{"icons":["ios-options","md-options"],"tags":["options"]},{"icons":["ios-outlet","md-outlet"],"tags":["computer","digital","electricity","outlet"]},{"icons":["ios-paper-plane","md-paper-plane"],"tags":["paper","plane"]},{"icons":["ios-paper","md-paper"],"tags":["feed","paper","paper"]},{"icons":["ios-partly-sunny","md-partly-sunny"],"tags":["partly","sunny"]},{"icons":["ios-pause","md-pause"],"tags":["break","freeze","hold","music","pause"]},{"icons":["ios-paw","md-paw"],"tags":["paw"]},{"icons":["ios-people","md-people"],"tags":["head","human","people","person","stalker","users"]},{"icons":["ios-person-add","md-person-add"],"tags":["add","head","human","member","new","person","staff","users"]},{"icons":["ios-person","md-person"],"tags":["head","human","person","staff","users"]},{"icons":["ios-phone-landscape","md-phone-landscape"],"tags":["landscape","phone"]},{"icons":["ios-phone-portrait","md-phone-portrait"],"tags":["phone","portrait"]},{"icons":["ios-photos","md-photos"],"tags":["images","photos","square","stills"]},{"icons":["ios-pie","md-pie"],"tags":["cog","options","pie","settings"]},{"icons":["ios-pin","md-pin"],"tags":["gps","navigation","pin"]},{"icons":["ios-pint","md-pint"],"tags":["pint"]},{"icons":["ios-pizza","md-pizza"],"tags":["drink","eat","food","pizza"]},{"icons":["ios-planet","md-planet"],"tags":["globe","home","nature","planet","planet","space"]},{"icons":["ios-play-circle","md-play-circle"],"tags":["play"]},{"icons":["ios-play","md-play"],"tags":["arrow","music","play","right","watch"]},{"icons":["ios-podium","md-podium"],"tags":["award","compete","competition","lose","podium","win"]},{"icons":["ios-power","md-power"],"tags":["off","on","power"]},{"icons":["ios-pricetag","md-pricetag"],"tags":["$","commerce","items","money","pricetag","shopping"]},{"icons":["ios-pricetags","md-pricetags"],"tags":["$","commerce","items","money","pricetags","shopping"]},{"icons":["ios-print","md-print"],"tags":["print"]},{"icons":["ios-pulse","md-pulse"],"tags":["hot","live","pulse","rate"]},{"icons":["ios-qr-scanner","md-qr-scanner"],"tags":["qr","reader","scanner"]},{"icons":["ios-quote","md-quote"],"tags":["chat","quotation","quote"]},{"icons":["ios-radio-button-off","md-radio-button-off"],"tags":["button","off","radio"]},{"icons":["ios-radio-button-on","md-radio-button-on"],"tags":["button","on","radio"]},{"icons":["ios-radio","md-radio"],"tags":["radio"]},{"icons":["ios-rainy","md-rainy"],"tags":["cloud","rainy","water","weather","whether"]},{"icons":["ios-recording","md-recording"],"tags":["film","recording","tape","voicemail"]},{"icons":["ios-redo","md-redo"],"tags":["forward","redo"]},{"icons":["ios-refresh-circle","md-refresh-circle"],"tags":["circle","refresh"]},{"icons":["ios-refresh","md-refresh"],"tags":["refresh","reload","renew","reset"]},{"icons":["ios-remove-circle-outline","md-remove-circle-outline"],"tags":["remove"]},{"icons":["ios-remove-circle","md-remove-circle"],"tags":["circle","remove"]},{"icons":["ios-remove","md-remove"],"tags":["minus","remove","subtract"]},{"icons":["ios-reorder","md-reorder"],"tags":["reorder"]},{"icons":["ios-repeat","md-repeat"],"tags":["repeat"]},{"icons":["ios-resize","md-resize"],"tags":["resize"]},{"icons":["ios-restaurant","md-restaurant"],"tags":["restaurant"]},{"icons":["ios-return-left","md-return-left"],"tags":["left","return"]},{"icons":["ios-return-right","md-return-right"],"tags":["return","right"]},{"icons":["ios-reverse-camera","md-reverse-camera"],"tags":["camera","picture","reverse"]},{"icons":["ios-rewind","md-rewind"],"tags":["back","music","previous","rewind"]},{"icons":["ios-ribbon","md-ribbon"],"tags":["ribbon"]},{"icons":["ios-rocket","md-rocket"],"tags":["rocket"]},{"icons":["ios-rose","md-rose"],"tags":["rose"]},{"icons":["ios-sad","md-sad"],"tags":["bad","cry","no","sad"]},{"icons":["ios-save","md-save"],"tags":["save"]},{"icons":["ios-school","md-school"],"tags":["school"]},{"icons":["ios-search","md-search"],"tags":["magnifyingglass","search"]},{"icons":["ios-send","md-send"],"tags":["email","paper","send"]},{"icons":["ios-settings","md-settings"],"tags":["options","settings"]},{"icons":["ios-share-alt","md-share-alt"],"tags":["alt","share"]},{"icons":["ios-share","md-share"],"tags":["share"]},{"icons":["ios-shirt","md-shirt"],"tags":["shirt"]},{"icons":["ios-shuffle","md-shuffle"],"tags":["random","shuffle"]},{"icons":["ios-skip-backward","md-skip-backward"],"tags":["backward","music","previous","skip"]},{"icons":["ios-skip-forward","md-skip-forward"],"tags":["forward","music","next","skip"]},{"icons":["ios-snow","md-snow"],"tags":["snow"]},{"icons":["ios-speedometer","md-speedometer"],"tags":["drive","level","speed","speedometer"]},{"icons":["ios-square-outline","md-square-outline"],"tags":["square"]},{"icons":["ios-square","md-square"],"tags":["square"]},{"icons":["ios-star-half","md-star-half"],"tags":["favorite","half","rate","star"]},{"icons":["ios-star-outline","md-star-outline"],"tags":["star"]},{"icons":["ios-star","md-star"],"tags":["favorite","star"]},{"icons":["ios-stats","md-stats"],"tags":["stats"]},{"icons":["ios-stopwatch","md-stopwatch"],"tags":["stopwatch"]},{"icons":["ios-subway","md-subway"],"tags":["subway"]},{"icons":["ios-sunny","md-sunny"],"tags":["light","sky","sunny","weather","whether"]},{"icons":["ios-swap","md-swap"],"tags":["swap"]},{"icons":["ios-switch","md-switch"],"tags":["switch"]},{"icons":["ios-sync","md-sync"],"tags":["sync"]},{"icons":["ios-tablet-landscape","md-tablet-landscape"],"tags":["landscape","tablet"]},{"icons":["ios-tablet-portrait","md-tablet-portrait"],"tags":["portrait","tablet"]},{"icons":["ios-tennisball","md-tennisball"],"tags":["tennisball"]},{"icons":["ios-text","md-text"],"tags":["text"]},{"icons":["ios-thermometer","md-thermometer"],"tags":["cold","heat","hot","mercury","temperature","thermometer"]},{"icons":["ios-thumbs-down","md-thumbs-down"],"tags":["down","thumbs"]},{"icons":["ios-thumbs-up","md-thumbs-up"],"tags":["thumbs","up"]},{"icons":["ios-thunderstorm","md-thunderstorm"],"tags":["cloudy","lightning","overcast","rain","sky","storm","thunderstorm","weather","whether"]},{"icons":["ios-time","md-time"],"tags":["clock","hour","minute","second","time","watch"]},{"icons":["ios-timer","md-timer"],"tags":["clock","timer"]},{"icons":["ios-today","md-today"],"tags":["today"]},{"icons":["ios-train","md-train"],"tags":["train"]},{"icons":["ios-transgender","md-transgender"],"tags":["transgender"]},{"icons":["ios-trash","md-trash"],"tags":["close","delete","remove","trash"]},{"icons":["ios-trending-down","md-trending-down"],"tags":["down","trending"]},{"icons":["ios-trending-up","md-trending-up"],"tags":["trending","up"]},{"icons":["ios-trophy","md-trophy"],"tags":["award","compete","competition","lose","trophy","win"]},{"icons":["ios-tv","md-tv"],"tags":["television","tv"]},{"icons":["ios-umbrella","md-umbrella"],"tags":["dry","rain","shelter","umbrella","wet"]},{"icons":["ios-undo","md-undo"],"tags":["reply","undo"]},{"icons":["ios-unlock","md-unlock"],"tags":["unlock"]},{"icons":["ios-videocam","md-videocam"],"tags":["camera","film","movie","videocam"]},{"icons":["ios-volume-high","md-volume-high"],"tags":["volume"]},{"icons":["ios-volume-low","md-volume-low"],"tags":["volume"]},{"icons":["ios-volume-mute","md-volume-mute"],"tags":["mute","sound","volume"]},{"icons":["ios-volume-off","md-volume-off"],"tags":["off","volume"]},{"icons":["ios-wallet","md-wallet"],"tags":["cash","money","wallet"]},{"icons":["ios-walk","md-walk"],"tags":["walk"]},{"icons":["ios-warning","md-warning"],"tags":["warning"]},{"icons":["ios-watch","md-watch"],"tags":["watch"]},{"icons":["ios-water","md-water"],"tags":["water"]},{"icons":["ios-wifi","md-wifi"],"tags":["bars","connection","internet","wifi"]},{"icons":["ios-wine","md-wine"],"tags":["wine"]},{"icons":["ios-woman","md-woman"],"tags":["dudette","female","girl","lady","woman"]},{"icons":["logo-android"],"tags":["android"]},{"icons":["logo-angular"],"tags":["angular"]},{"icons":["logo-apple"],"tags":["apple"]},{"icons":["logo-bitbucket"],"tags":["bitbucket"]},{"icons":["logo-bitcoin"],"tags":["bitcoin"]},{"icons":["logo-buffer"],"tags":["buffer"]},{"icons":["logo-chrome"],"tags":["chrome"]},{"icons":["logo-closed-captioning"],"tags":["closed-captioning"]},{"icons":["logo-codepen"],"tags":["codepen"]},{"icons":["logo-css3"],"tags":["css3"]},{"icons":["logo-designernews"],"tags":["designernews"]},{"icons":["logo-dribbble"],"tags":["dribbble"]},{"icons":["logo-dropbox"],"tags":["dropbox"]},{"icons":["logo-euro"],"tags":["euro"]},{"icons":["logo-facebook"],"tags":["facebook"]},{"icons":["logo-flickr"],"tags":["flickr"]},{"icons":["logo-foursquare"],"tags":["foursquare"]},{"icons":["logo-freebsd-devil"],"tags":["freebsd-devil"]},{"icons":["logo-game-controller-a"],"tags":["controller","game"]},{"icons":["logo-game-controller-b"],"tags":["controller","game"]},{"icons":["logo-github"],"tags":["github"]},{"icons":["logo-google"],"tags":["google"]},{"icons":["logo-googleplus"],"tags":["googleplus"]},{"icons":["logo-hackernews"],"tags":["hackernews"]},{"icons":["logo-html5"],"tags":["html5"]},{"icons":["logo-instagram"],"tags":["instagram"]},{"icons":["logo-ionic"],"tags":["ionic"]},{"icons":["logo-ionitron"],"tags":["ionitron"]},{"icons":["logo-javascript"],"tags":["javascript"]},{"icons":["logo-linkedin"],"tags":["linkedin"]},{"icons":["logo-markdown"],"tags":["markdown"]},{"icons":["logo-model-s"],"tags":["model-s"]},{"icons":["logo-no-smoking"],"tags":["no-smoking"]},{"icons":["logo-nodejs"],"tags":["nodejs"]},{"icons":["logo-npm"],"tags":["npm"]},{"icons":["logo-octocat"],"tags":["octocat"]},{"icons":["logo-pinterest"],"tags":["pinterest"]},{"icons":["logo-playstation"],"tags":["playstation"]},{"icons":["logo-polymer"],"tags":["polymer"]},{"icons":["logo-python"],"tags":["python"]},{"icons":["logo-reddit"],"tags":["reddit"]},{"icons":["logo-rss"],"tags":["rss"]},{"icons":["logo-sass"],"tags":["sass"]},{"icons":["logo-skype"],"tags":["skype"]},{"icons":["logo-slack"],"tags":["slack"]},{"icons":["logo-snapchat"],"tags":["snapchat"]},{"icons":["logo-steam"],"tags":["steam"]},{"icons":["logo-tumblr"],"tags":["tumblr"]},{"icons":["logo-tux"],"tags":["tux"]},{"icons":["logo-twitch"],"tags":["twitch"]},{"icons":["logo-twitter"],"tags":["twitter"]},{"icons":["logo-usd"],"tags":["usd"]},{"icons":["logo-vimeo"],"tags":["vimeo"]},{"icons":["logo-vk"],"tags":["vk"]},{"icons":["logo-whatsapp"],"tags":["whatsapp"]},{"icons":["logo-windows"],"tags":["windows"]},{"icons":["logo-wordpress"],"tags":["wordpress"]},{"icons":["logo-xbox"],"tags":["xbox"]},{"icons":["logo-xing"],"tags":["xing"]},{"icons":["logo-yahoo"],"tags":["yahoo"]},{"icons":["logo-yen"],"tags":["yen"]},{"icons":["logo-youtube"],"tags":["youtube"]}],"version":"4.2.5"} \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/ionicons.global.js b/public/assets/lib/ionicons/ionicons/ionicons.global.js new file mode 100755 index 0000000..e093881 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/ionicons.global.js @@ -0,0 +1,4 @@ +/*! Built with http://stenciljs.com */ +(function(namespace,resourcesUrl){"use strict"; + +})("ionicons"); \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/ionicons.suuqn5vt.js b/public/assets/lib/ionicons/ionicons/ionicons.suuqn5vt.js new file mode 100755 index 0000000..435db64 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/ionicons.suuqn5vt.js @@ -0,0 +1,5 @@ +/*! Built with http://stenciljs.com */ +(function(Context,namespace,hydratedCssClass,resourcesUrl,s){"use strict"; +s=document.querySelector("script[data-namespace='ionicons']");if(s){resourcesUrl=s.getAttribute('data-resources-url');} +(function(t,e,n,o){"use strict";function i(t,e){const n=`data-${t.t}`;return e&&e!==S?`${n}-${e}`:n}function r(t){return{e:t[0],n:t[1],o:!!t[2],i:!!t[3],r:!!t[4]}}function s(t,e){if(L(e)&&"object"!=typeof e&&"function"!=typeof e){if(t===Boolean||3===t)return"false"!==e&&(""===e||!!e);if(t===Number||4===t)return parseFloat(e);if(t===String||2===t)return e.toString()}return e}function c(t,e,n,o){const i=t.s.get(e);i&&((o=i["s-ld"]||i.$activeLoading)&&((n=o.indexOf(e))>-1&&o.splice(n,1),o.length||(i["s-init"]&&i["s-init"](),i.$initLoad&&i.$initLoad())),t.s.delete(e))}function l(t,e){let n,o,i=null,r=!1,s=!1;for(var c=arguments.length;c-- >2;)B.push(arguments[c]);for(;B.length>0;){let e=B.pop();if(e&&void 0!==e.pop)for(c=e.length;c--;)B.push(e[c]);else"boolean"==typeof e&&(e=null),(s="function"!=typeof t)&&(null==e?e="":"number"==typeof e?e=String(e):"string"!=typeof e&&(s=!1)),s&&r?i[i.length-1].vtext+=e:null===i?i=[s?{vtext:e}:e]:i.push(s?{vtext:e}:e),r=s}if(null!=e){if(e.className&&(e.class=e.className),"object"==typeof e.class){for(c in e.class)e.class[c]&&B.push(c);e.class=B.join(" "),B.length=0}null!=e.key&&(n=e.key),null!=e.name&&(o=e.name)}return"function"==typeof t?t(Object.assign({},e,{children:i}),H):{vtag:t,vchildren:i,vtext:void 0,vattrs:e,vkey:n,vname:o,c:void 0,l:!1}}function f(t){return{vtag:t.vtag,vchildren:t.vchildren,vtext:t.vtext,vattrs:t.vattrs,vkey:t.vkey,vname:t.vname}}function u(t,e,n,o){e.split(" ").forEach(e=>{t[e]=!0,n&&(t[`${e}-${n}`]=!0,o&&(t[`${e}-${n}-${o}`]=t[`${e}-${o}`]=!0))})}function a(t,e){t.f.has(e)||(t.f.set(e,!0),t.u?t.queue.write(()=>d(t,e)):t.queue.tick(()=>d(t,e)))}function d(t,e,n,o,i,r){if(t.f.delete(e),!t.a.has(e)){if(o=t.d.get(e),n=!o){if((i=t.s.get(e))&&i.$rendered&&(i["s-rn"]=!0),i&&!i["s-rn"])return(i["s-rc"]=i["s-rc"]||[]).push(()=>{d(t,e)}),void(i.$onRender=i["s-rc"]);o=function s(t,e,n,o,i,r,c){try{(function l(t,e,n,o,i,r,s){for(s in t.p.set(o,n),t.m.has(n)||t.m.set(n,{}),(r=Object.assign({color:{type:String}},e.properties)).mode={type:String},r)m(t,r[s],n,o,s,i)})(t,i=t.b(e).v,e,o=new i,n),function f(t,e,n){if(e){const o=t.p.get(n);e.forEach(e=>{n[e.method]={emit:n=>{t.y(o,e.name,{bubbles:e.bubbles,composed:e.composed,cancelable:e.cancelable,detail:n})}}})}}(t,i.events,o);try{if(r=t.w.get(e)){for(c=0;cp(t,e,o,n)):p(t,e,o,n)}}function p(t,e,n,o){(function i(t,e,n,o){try{const i=e.v.host,r=e.v.encapsulation,s="shadow"===r&&t.j.M;let c,f;if(c=function i(t,e,n){return t&&Object.keys(t).forEach(o=>{t[o].reflectToAttr&&((n=n||{})[o]=e[o])}),n}(e.v.properties,o),f=s?n.shadowRoot:n,!n["s-rn"]){t.C(t,t.j,e,n);const i=n["s-sc"];i&&(t.j.O(n,function r(t){return`${t}-host`}(i),""),o.render||t.j.O(n,function s(t){return`${t}-slot`}(i),""))}if(o.render||o.hostData||i||c){t.x=!0;const a=o.render&&o.render();let d;if((d=o.hostData&&o.hostData())&&e.N){const t=Object.keys(d).reduce((t,n)=>{return e.N[n]?t.concat(n):e.N[q(n)]?t.concat(q(n)):t},[]);if(t.length>0)throw new Error("The following keys were attempted to be set with hostData() from the "+`${e.t} component: ${t.join(", ")}. `+"If you would like to modify these please set @Prop({ mutable: true, reflectToAttr: true}) on the @Prop() decorator.")}c&&(d=d?Object.assign(d,c):c),t.x=!1,i&&(d=function c(t,e,n){return t=t||{},Object.keys(e).forEach(o=>{"theme"===o?u(t.class=t.class||{},e[o],n.mode,n.color):"class"===o?u(t[o]=t[o]||{},e[o]):t[o]=e[o]}),t}(d,i,o));const p=t.W.get(n)||{};p.c=f;const m=l(null,d,a);m.l=!0,t.W.set(n,t.render(n,p,m,s,r))}t.P&&t.P.T(n),n["s-rn"]=!0,n.$onRender&&(n["s-rc"]=n.$onRender),n["s-rc"]&&(n["s-rc"].forEach(t=>t()),n["s-rc"]=null)}catch(e){t.x=!1,t.g(e,8,n,!0)}})(t,t.b(e),e,n);try{o?e["s-init"]():(n.componentDidUpdate&&n.componentDidUpdate(),j(t.W.get(e))),e["s-hmr-load"]&&e["s-hmr-load"]()}catch(n){t.g(n,6,e,!0)}}function m(t,e,n,o,i,r,c,l){if(e.type||e.state){const f=t.m.get(n);e.state||(!e.attr||void 0!==f[i]&&""!==f[i]||(c=r&&r.S)&&L(l=c[e.attr])&&(f[i]=s(e.type,l)),n.hasOwnProperty(i)&&(void 0===f[i]&&(f[i]=s(e.type,n[i])),"mode"!==i&&delete n[i])),o.hasOwnProperty(i)&&void 0===f[i]&&(f[i]=o[i]),e.watchCallbacks&&(f[F+i]=e.watchCallbacks.slice()),b(o,i,function f(e){return(e=t.m.get(t.p.get(this)))&&e[i]},function u(n,o){(o=t.p.get(this))&&(e.state||e.mutable)&&v(t,o,i,n)})}else if(e.elementRef)h(o,i,n);else if(e.method)h(n,i,o[i].bind(o));else if(e.context){const r=t.A(e.context);void 0!==r&&h(o,i,r.R&&r.R(n)||r)}else e.connect&&h(o,i,t.L(e.connect))}function v(t,e,n,o,i,r,s){(i=t.m.get(e))||t.m.set(e,i={});const c=i[n];if(o!==c&&(i[n]=o,r=t.d.get(e))){if(s=i[F+n])for(let t=0;t!n.includes(t)),s=w(e.className).filter(t=>!r.includes(t)),c=n.filter(e=>!t.includes(e)&&!s.includes(e));s.push(...c),e.className=s.join(" ")}}function w(t){return null==t||""===t?[]:t.trim().split(/\s+/)}function g(t,e,n){try{t[e]=n}catch(t){}}function k(t,e,n,o,i){const r=11===n.c.nodeType&&n.c.host?n.c.host:n.c,s=e&&e.vattrs||A,c=n.vattrs||A;for(i in s)c&&null!=c[i]||null==s[i]||$(t,r,i,s[i],void 0,o,n.l);for(i in c)i in s&&c[i]===("value"===i||"checked"===i?r[i]:s[i])||$(t,r,i,s[i],c[i],o,n.l)}function M(t,e){function n(i,r,s,c,l,f,p,b,y){if(b=r.vchildren[s],u||(m=!0,"slot"===b.vtag&&(d&&e.O(c,d+"-slot",""),b.vchildren?b.Q=!0:b.Z=!0)),L(b.vtext))b.c=e.G(b.vtext);else if(b.Z)b.c=e.G("");else{if(f=b.c=Q||"svg"===b.vtag?e.J("http://www.w3.org/2000/svg",b.vtag):e.K(b.Q?"slot-fb":b.vtag),Q="svg"===b.vtag||"foreignObject"!==b.vtag&&Q,k(t,null,b,Q),L(d)&&f["s-si"]!==d&&e.O(f,f["s-si"]=d,""),L(a)&&e.O(f,T,a+"."+s+(function t(e){if(e)for(var n=0;n=0;r--)(s=f[r])["s-hn"]!==v&&s["s-ol"]&&(e.tt(s),e.et(l(s),s,c(s)),e.tt(s["s-ol"]),s["s-ol"]=null,m=!0),i&&o(s,i);t.Y=!1}function i(t,o,i,r,s,l,f,u){const a=t["s-cr"]||t.$defaultHolder;for((f=a&&e.nt(a)||t).shadowRoot&&e.ot(f)===v&&(f=f.shadowRoot);s<=l;++s)r[s]&&(u=L(r[s].vtext)?e.G(r[s].vtext):n(null,i,s,t))&&(r[s].c=u,e.et(f,u,c(o)))}function r(t,n,i,r){for(;n<=i;++n)L(t[n])&&(r=t[n].c,p=!0,r["s-ol"]?e.tt(r["s-ol"]):o(r,!0),e.tt(r))}function s(t,e){return t.vtag===e.vtag&&t.vkey===e.vkey&&("slot"!==t.vtag||t.vname===e.vname)}function c(t){return t&&t["s-ol"]?t["s-ol"]:t}function l(t){return e.nt(t["s-ol"]?t["s-ol"]:t)}const f=[];let u,a,d,p,m,v,h;return function b(y,$,w,g,M,j,C,O,x,N,W,E){if(v=e.ot(y),h=y["s-cr"],u=g,a="shadow"!==M?j:null,d=y["s-sc"],m=p=!1,function f(u,a,d){const p=a.c=u.c,m=u.vchildren,v=a.vchildren;Q=a.c&&L(e.it(a.c))&&void 0!==a.c.ownerSVGElement,Q="svg"===a.vtag||"foreignObject"!==a.vtag&&Q,L(a.vtext)?(d=p["s-cr"]||p.$defaultHolder)?e.rt(e.nt(d),a.vtext):u.vtext!==a.vtext&&e.rt(p,a.vtext):("slot"!==a.vtag&&k(t,u,a,Q),L(m)&&L(v)?function h(t,u,a,d,p,m,v,b){let y=0,$=0,w=u.length-1,g=u[0],k=u[w],M=d.length-1,j=d[0],C=d[M];for(;y<=w&&$<=M;)if(null==g)g=u[++y];else if(null==k)k=u[--w];else if(null==j)j=d[++$];else if(null==C)C=d[--M];else if(s(g,j))f(g,j),g=u[++y],j=d[++$];else if(s(k,C))f(k,C),k=u[--w],C=d[--M];else if(s(g,C))"slot"!==g.vtag&&"slot"!==C.vtag||o(e.nt(g.c)),f(g,C),e.et(t,g.c,e.st(k.c)),g=u[++y],C=d[--M];else if(s(k,j))"slot"!==g.vtag&&"slot"!==C.vtag||o(e.nt(k.c)),f(k,j),e.et(t,k.c,g.c),k=u[--w],j=d[++$];else{for(p=null,m=y;m<=w;++m)if(u[m]&&L(u[m].vkey)&&u[m].vkey===j.vkey){p=m;break}L(p)?((b=u[p]).vtag!==j.vtag?v=n(u&&u[$],a,p,t):(f(b,j),u[p]=void 0,v=b.c),j=d[++$]):(v=n(u&&u[$],a,$,t),j=d[++$]),v&&e.et(l(g.c),v,c(g.c))}y>w?i(t,null==d[M+1]?null:d[M+1].c,a,d,$,M):$>M&&r(u,y,w)}(p,m,a,v):L(v)?(L(u.vtext)&&e.rt(p,""),i(p,null,a,v,0,v.length-1)):L(m)&&r(m,0,m.length-1)),Q&&"svg"===a.vtag&&(Q=!1)}($,w),L(a)&&e.O($.c,P,a),m){for(function t(n,o,i,r,s,c,l,u,a,d){for(s=0,c=(o=e._(n)).length;s=0;l--)(r=u[l])["s-cn"]||r["s-nr"]||r["s-hn"]===i["s-hn"]||((3===(d=e.ct(r))||8===d)&&""===a||1===d&&null===e.lt(r,"slot")&&""===a||1===d&&e.lt(r,"slot")===a)&&(f.some(t=>t.ft===r)||(p=!0,r["s-sn"]=a,f.push({ut:i,ft:r})));1===e.ct(i)&&t(i)}}(w.c),C=0;C{j(t,e)}))}function C(t,e,n,o,i){const r=t.ct(e);let s,c,l,f;if(i&&1===r){(c=t.lt(e,T))&&(l=c.split("."))[0]===o&&((f={}).vtag=t.ot(f.c=e),n.vchildren||(n.vchildren=[]),n.vchildren[l[1]]=f,n=f,i=""!==l[2]);for(let r=0;r{n.o||t.j.U(e,n.e,function o(t,e,n,i){return o=>{(i=t.d.get(e))?i[n](o):((i=t.w.get(e)||[]).push(n,o),t.w.set(e,i))}}(t,e,n.n),n.r,n.i)})}function x(t,e){const n={nodeName:e},o=t.b(n);if(!o||!o.v)return Promise.resolve(null);const i=o.v,r=function s(t){return Object.keys(t).reduce((e,n)=>{const o=t[n];let i;const r={name:n};if(o.state)i="states",r.mt=o.watchCallbacks||[];else if(o.elementRef)i="elements";else if(o.method)i="methods";else{i="props";let t="any";o.type&&(t=o.type,"function"==typeof o.type&&(t=o.type.name)),r.type=t.toLowerCase(),r.mutable=o.mutable||!1,r.connect=o.connect||"-",r.context=o.connect||"-",r.mt=o.watchCallbacks||[]}return e[i].push(r),e},{vt:[],ht:[],bt:[],yt:[]})}(i.properties||{}),c=(o.pt||[]).map(t=>{return{$t:t.e,capture:t.r,disabled:t.o,passive:t.i,method:t.n}}),l=i.events||[],f=Object.assign({wt:i.is,gt:o.kt||"unknown",encapsulation:i.encapsulation||"none"},r,{events:{Mt:l,listeners:c}});return Promise.resolve(f)}function N(t,e,n,o,i){return n.mode||(n.mode=t.jt(n)),n["s-cr"]||t.lt(n,P)||t.M&&1===e.encapsulation||(n["s-cr"]=t.G(""),n["s-cr"]["s-cn"]=!0,t.et(n,n["s-cr"],t._(n)[0])),t.M||1!==e.encapsulation||"shadowRoot"in HTMLElement.prototype||(n.shadowRoot=n),1===e.encapsulation&&t.M&&!n.shadowRoot&&t.Ct(n,{mode:"open"}),o={Ot:n["s-id"],S:{}},e.N&&Object.keys(e.N).forEach(r=>{(i=e.N[r].I)&&(o.S[i]=t.lt(n,i))}),o}function W(t,e,n,o){n.connectedCallback=function(){(function n(t,e,o){t.xt.has(o)||(t.xt.set(o,!0),O(t,o)),t.a.delete(o),t.Nt.has(o)||(t.Nt.set(o,!0),o["s-id"]||(o["s-id"]=t.Wt()),function i(t,e,n){for(n=e;n=t.j.it(n);)if(t.Et(n)){t.Pt.has(e)||(t.s.set(e,n),n.$activeLoading&&(n["s-ld"]=n.$activeLoading),(n["s-ld"]=n["s-ld"]||[]).push(e));break}}(t,o),t.queue.tick(()=>{t.k.set(o,N(t.j,e,o)),t.Tt(e,o)}))})(t,e,this)},n.attributeChangedCallback=function(t,n,o){(function i(t,e,n,o,r,c,l){if(t&&o!==r)for(c in t)if((l=t[c]).I&&D(l.I)===D(n)){e[c]=s(l.B,r);break}})(e.N,this,t,n,o)},n.disconnectedCallback=function(){(function e(t,n){if(!t.Y&&function o(t,e){for(;e;){if(!t.nt(e))return 9!==t.ct(e);e=t.nt(e)}}(t.j,n)){t.a.set(n,!0),c(t,n),j(t.W.get(n),!0),t.j.z(n),t.xt.delete(n);{const e=t.d.get(n);e&&e.componentDidUnload&&e.componentDidUnload()}t.P&&t.P.St(n),[t.s,t.At,t.k].forEach(t=>t.delete(n))}})(t,this)},n["s-init"]=function(){(function e(t,n,o,i,r){if(!t.Pt.has(n)&&(i=t.d.get(n))&&!t.a.has(n)&&(!n["s-ld"]||!n["s-ld"].length)){delete n["s-ld"],t.Pt.set(n,!0);try{j(t.W.get(n)),(r=t.At.get(n))&&(r.forEach(t=>t(n)),t.At.delete(n)),i.componentDidLoad&&i.componentDidLoad()}catch(e){t.g(e,4,n)}n.classList.add(o),c(t,n)}})(t,this,o)},n["s-hmr"]=function(n){(function o(t,e,n,i){e.v=null,t.Pt.delete(n);const r=t.d.get(n);r&&(t.p.delete(r),t.d.delete(n)),t.j.z(n),t.xt.delete(n),e.pt=null,n["s-hmr-load"]=(()=>{delete n["s-hmr-load"],function o(t,e,n){t.xt.has(n)||(t.xt.set(n,!0),e.v&&e.v.listeners&&(e.pt=e.v.listeners.map(t=>{return{n:t.method,e:t.name,r:!!t.capture,i:!!t.passive,o:!!t.disabled}}),O(t,n)))}(t,e,n)}),t.k.set(n,N(t.j,e,n)),t.Tt(e,n,i)})(t,e,this,n)},n.forceUpdate=function(){a(t,this)},function i(t,e,n){e&&Object.keys(e).forEach(o=>{const i=e[o],r=i.Rt;1===r||2===r?b(n,o,function e(){return(t.m.get(this)||{})[o]},function e(n){v(t,this,o,s(i.B,n))}):6===r&&h(n,o,I)})}(t,e.N,n)}function E(t,e,n,o){return function(){const i=arguments;return function r(t,e,n){let o=e[n];const i=t.Lt.body;return i?(o||(o=i.querySelector(n)),o||(o=e[n]=t.K(n),t.V(i,o)),o.componentOnReady()):Promise.resolve()}(t,e,n).then(t=>t[o].apply(t,i))}}const P="data-ssrv",T="data-ssrc",S="$",A={},R={enter:13,escape:27,space:32,tab:9,left:37,up:38,right:39,down:40},L=t=>null!=t,D=t=>t.toLowerCase(),q=t=>D(t).split("-").map(t=>t.charAt(0).toUpperCase()+t.slice(1)).join(""),I=()=>{},B=[],H={forEach:(t,e)=>{t.forEach(t=>e(f(t)))},map:(t,e)=>{return t.map(t=>(function n(t){return{vtag:t.vtag,vchildren:t.vchildren,vtext:t.vtext,vattrs:t.vattrs,vkey:t.vkey,vname:t.vname}})(e(f(t))))}},F="wc-",U={allowfullscreen:1,async:1,autofocus:1,autoplay:1,checked:1,controls:1,disabled:1,enabled:1,formnovalidate:1,hidden:1,multiple:1,noresize:1,readonly:1,required:1,selected:1,spellcheck:1},z="http://www.w3.org/1999/xlink";let Q=!1;(function Z(t,e,n,o,s,c){function f(t,e){if(!n.customElements.get(t.t)){W(y,u[t.t]=t,e.prototype,c);{const n=e.observedAttributes=[];for(const e in t.N)t.N[e].I&&n.push(t.N[e].I)}n.customElements.define(t.t,e)}}const u={html:{}},d={},p=n[t]=n[t]||{},m=function v(t,e,n){t.Dt||(t.Dt=((t,e,n,o)=>t.addEventListener(e,n,o)),t.qt=((t,e,n,o)=>t.removeEventListener(e,n,o)));const o=new WeakMap,i={Lt:n,It:!1,ct:t=>t.nodeType,K:t=>n.createElement(t),J:(t,e)=>n.createElementNS(t,e),G:t=>n.createTextNode(t),X:t=>n.createComment(t),et:(t,e,n)=>t.insertBefore(e,n),tt:t=>t.remove(),V:(t,e)=>t.appendChild(e),_:t=>t.childNodes,nt:t=>t.parentNode,st:t=>t.nextSibling,at:t=>t.previousSibling,ot:t=>D(t.nodeName),dt:t=>t.textContent,rt:(t,e)=>t.textContent=e,lt:(t,e)=>t.getAttribute(e),O:(t,e,n)=>t.setAttribute(e,n),Bt:(t,e,n,o)=>t.setAttributeNS(e,n,o),H:(t,e)=>t.removeAttribute(e),F:(t,e)=>t.hasAttribute(e),jt:e=>e.getAttribute("mode")||(t.Context||{}).mode,Ht:(t,o)=>{return"child"===o?t.firstElementChild:"parent"===o?i.it(t):"body"===o?n.body:"document"===o?n:"window"===o?e:t},U:(e,n,r,s,c,l,f,u)=>{const a=n;let d=e,p=o.get(e);if(p&&p[a]&&p[a](),"string"==typeof l?d=i.Ht(e,l):"object"==typeof l?d=l:(u=n.split(":")).length>1&&(d=i.Ht(e,u[0]),n=u[1]),!d)return;let m=r;(u=n.split(".")).length>1&&(n=u[0],m=(t=>{t.keyCode===R[u[1]]&&r(t)})),f=i.It?{capture:!!s,passive:!!c}:!!s,t.Dt(d,n,m,f),p||o.set(e,p={}),p[a]=(()=>{d&&t.qt(d,n,m,f),p[a]=null})},z:(t,e)=>{const n=o.get(t);n&&(e?n[e]&&n[e]():Object.keys(n).forEach(t=>{n[t]&&n[t]()}))},Ct:(t,e)=>t.attachShadow(e)};i.M=!!i.Lt.documentElement.attachShadow,e.location.search.indexOf("shadow=false")>0&&(i.M=!1),i.Ft=((t,n,o)=>t&&t.dispatchEvent(new e.CustomEvent(n,o)));try{e.addEventListener("e",null,Object.defineProperty({},"passive",{get:()=>i.It=!0}))}catch(t){}return i.it=((t,e)=>(e=i.nt(t))&&11===i.ct(e)?e.host:e),i}(p,n,o);e.isServer=e.isPrerender=!(e.isClient=!0),e.window=n,e.location=n.location,e.document=o,e.resourcesUrl=e.publicPath=s,e.enableListener=((t,e,n,o,i)=>(function r(t,e,n,o,i,s){if(e){const r=t.p.get(e),c=t.b(r);if(c&&c.pt)if(o){const o=c.pt.find(t=>t.e===n);o&&t.j.U(r,n,t=>e[o.n](t),o.r,void 0===s?o.i:!!s,i)}else t.j.z(r,n)}})(y,t,e,n,o,i)),e.emit=((t,n,o)=>m.Ft(t,e.eventNameFn?e.eventNameFn(n):n,o)),p.h=l,p.Context=e;const h=n["s-defined"]=n.$definedCmps=n["s-defined"]||n.$definedCmps||{};let b=0;const y={j:m,Ut:f,y:e.emit,b:t=>u[m.ot(t)],A:t=>e[t],isClient:!0,Et:t=>!(!h[m.ot(t)]&&!y.b(t)),Wt:()=>t+b++,g:(t,e,n)=>void 0,L:t=>(function e(t,n,o){return{create:E(t,n,o,"create"),componentOnReady:E(t,n,o,"componentOnReady")}})(m,d,t),queue:e.queue=function $(t,e){function n(t){for(let e=0;e0&&(u.push(...f),f.length=0),(d=l.length+f.length+u.length>0)?t.raf(i):a=0}const r=()=>e.performance.now(),s=Promise.resolve(),c=[],l=[],f=[],u=[];let a=0,d=!1;return t.raf||(t.raf=e.requestAnimationFrame.bind(e)),{tick(t){c.push(t),1===c.length&&s.then(()=>n(c))},read(e){l.push(e),d||(d=!0,t.raf(i))},write(e){f.push(e),d||(d=!0,t.raf(i))}}}(p,n),Tt:function w(t,e,n){if(t.v)a(y,e);else{const o="string"==typeof t.kt?t.kt:t.kt[e.mode],i=2===t.encapsulation||1===t.encapsulation&&!m.M;let r=s+o+(i?".sc":"")+".js";n&&(r+="?s-hmr="+n),import(r).then(n=>{try{t.v=n[q(t.t)],function o(t,e,n,i,r){if(i){const o=e.t+(r||S);if(!e[o]){const s=t.K("template");e[o]=s;{const o=[""),o.push(i),o.push(""),s.innerHTML=o.join("")}t.V(t.Lt.head,s)}}}(m,t,t.encapsulation,t.v.style,t.v.styleMode)}catch(e){t.v=class{}}a(y,e)}).catch(t=>void 0)}},s:new WeakMap,zt:new WeakMap,Nt:new WeakMap,xt:new WeakMap,Pt:new WeakMap,p:new WeakMap,k:new WeakMap,d:new WeakMap,a:new WeakMap,f:new WeakMap,At:new WeakMap,w:new WeakMap,W:new WeakMap,m:new WeakMap};y.render=M(y,m);const g=m.Lt.documentElement;g["s-ld"]=[],g["s-rn"]=!0,g["s-init"]=(()=>{y.Pt.set(g,p.loaded=y.u=!0),m.Ft(n,"appload",{detail:{namespace:t}})}),function k(t,e,n){const o=n.querySelectorAll(`[${P}]`),i=o.length;let r,s,c,l,f,u;if(i>0)for(t.Pt.set(n,!0),l=0;l{(function r(t,e,n,o){const r=n.encapsulation,s=2===r||1===r&&!t.j.M;let c=n.t+o.mode,l=n[c];if(s&&(o["s-sc"]=i(n,o.mode)),l||(l=n[c=n.t+S],s&&(o["s-sc"]=i(n))),l){let n=e.Lt.head;if(e.M)if(1===r)n=o.shadowRoot;else{let t=o;for(;t=e.nt(t);)if(t.host&&t.host.shadowRoot){n=t.host.shadowRoot;break}}let i=t.zt.get(n);if(i||t.zt.set(n,i={}),!i[c]){let t;{t=l.content.cloneNode(!0),i[c]=!0;const o=n.querySelectorAll("[data-styles]");e.et(n,t,o.length&&o[o.length-1].nextSibling||n.firstChild)}}}})(t,e,n,o)}),function j(t,e,n,o){const i=n.Qt=n.Qt||{};return i.Zt=i.Zt||[],i.Zt.push(function r(t,e,n){return{namespace:e,Gt:t=>{return t&&t.tagName?Promise.all([x(n,t.tagName),function e(t,n){return Promise.resolve(t.d.get(n))}(n,t)]).then(t=>{return t[0]&&t[1]?{Jt:t[0],Kt:t[1]}:null}):Promise.resolve(null)},Vt:t=>{return x(n,t)},Xt:()=>{return Promise.all(t.components.map(t=>{return x(n,t[0])})).then(t=>{return t.filter(t=>t)})}}}(t,e,o)),i.Gt||(i.Gt=(t=>{return Promise.all(i.Zt.map(e=>{return e.Gt(t)})).then(t=>{return t.find(t=>!!t)})})),i.Xt||(i.Xt=(()=>{const t=[];return i.Zt.forEach(e=>{t.push(e.Xt())}),Promise.all(t).then(t=>{const e=[];return t.forEach(t=>{t.forEach(t=>{e.push(t)})}),e})})),i}(p,t,n,y),(p.components||[]).map(t=>{const e=function n(t,e,o){const i={t:t[0],N:{color:{I:"color"}}};i.kt=t[1];const s=t[3];if(s)for(e=0;ef(t,class extends HTMLElement{})),function O(t,e,n,o,i,r){if(e.componentOnReady=((e,n)=>{if(!e.nodeName.includes("-"))return n(null),!1;const o=t.b(e);if(o)if(t.Pt.has(e))n(e);else{const o=t.At.get(e)||[];o.push(n),t.At.set(e,o)}return!!o}),i){for(r=i.length-1;r>=0;r--)e.componentOnReady(i[r][0],i[r][1])&&i.splice(r,1);for(r=0;r1)&&Zt(this)}}}),ot(u,h,{value:function(e){-1<_.call(a,e)&&o[h].apply(this,arguments)}}),o[d]&&ot(u,p,{value:o[d]}),o[v]&&ot(u,g,{value:o[v]}),i&&(f[c]=i),e=e.toUpperCase(),G[e]={constructor:t,create:i?[i,et(e)]:[e]},Z.set(t,e),n[s](e.toLowerCase(),f),en(e),Y[e].r()}function Gt(e){var t=G[e.toUpperCase()];return t&&t.constructor}function Yt(e){return typeof e=="string"?e:e&&e.is||""}function Zt(e){var t=e[h],n=t?e.attributes:j,r=n.length,i;while(r--)i=n[r],t.call(e,i.name||i.nodeName,null,i.value||i.nodeValue)}function en(e){return e=e.toUpperCase(),e in Y||(Y[e]={},Y[e].p=new K(function(t){Y[e].r=t})),Y[e].p}function tn(){X&&delete e.customElements,B(e,"customElements",{configurable:!0,value:new Kt}),B(e,"CustomElementRegistry",{configurable:!0,value:Kt});for(var t=function(t){var r=e[t];if(r){e[t]=function(t){var i,s;return t||(t=this),t[W]||(Q=!0,i=G[Z.get(t.constructor)],s=V&&i.create.length===1,t=s?Reflect.construct(r,j,i.constructor):n.createElement.apply(n,i.create),t[W]=!0,Q=!1,s||Zt(t)),t},e[t].prototype=r.prototype;try{r.prototype.constructor=e[t]}catch(i){z=!0,B(r,W,{value:e[t]})}}},r=i.get(/^HTML[A-Z]*[a-z]/),o=r.length;o--;t(r[o]));n.createElement=function(e,t){var n=Yt(t);return n?gt.call(this,e,et(n)):gt.call(this,e)},St||(Tt=!0,n[s](""))}var n=e.document,r=e.Object,i=function(e){var t=/^[A-Z]+[a-z]/,n=function(e){var t=[],n;for(n in s)e.test(n)&&t.push(n);return t},i=function(e,t){t=t.toLowerCase(),t in s||(s[e]=(s[e]||[]).concat(t),s[t]=s[t.toUpperCase()]=e)},s=(r.create||r)(null),o={},u,a,f,l;for(a in e)for(l in e[a]){f=e[a][l],s[l]=f;for(u=0;u>0),u="addEventListener",a="attached",f="Callback",l="detached",c="extends",h="attributeChanged"+f,p=a+f,d="connected"+f,v="disconnected"+f,m="created"+f,g=l+f,y="ADDITION",b="MODIFICATION",w="REMOVAL",E="DOMAttrModified",S="DOMContentLoaded",x="DOMSubtreeModified",T="<",N="=",C=/^[A-Z][A-Z0-9]*(?:-[A-Z0-9]+)+$/,k=["ANNOTATION-XML","COLOR-PROFILE","FONT-FACE","FONT-FACE-SRC","FONT-FACE-URI","FONT-FACE-FORMAT","FONT-FACE-NAME","MISSING-GLYPH"],L=[],A=[],O="",M=n.documentElement,_=L.indexOf||function(e){for(var t=this.length;t--&&this[t]!==e;);return t},D=r.prototype,P=D.hasOwnProperty,H=D.isPrototypeOf,B=r.defineProperty,j=[],F=r.getOwnPropertyDescriptor,I=r.getOwnPropertyNames,q=r.getPrototypeOf,R=r.setPrototypeOf,U=!!r.__proto__,z=!1,W="__dreCEv1",X=e.customElements,V=!/^force/.test(t.type)&&!!(X&&X.define&&X.get&&X.whenDefined),$=r.create||r,J=e.Map||function(){var t=[],n=[],r;return{get:function(e){return n[_.call(t,e)]},set:function(e,i){r=_.call(t,e),r<0?n[t.push(e)-1]=i:n[r]=i}}},K=e.Promise||function(e){function i(e){n=!0;while(t.length)t.shift()(e)}var t=[],n=!1,r={"catch":function(){return r},then:function(e){return t.push(e),n&&setTimeout(i,1),r}};return e(i),r},Q=!1,G=$(null),Y=$(null),Z=new J,et=function(e){return e.toLowerCase()},tt=r.create||function sn(e){return e?(sn.prototype=e,new sn):this},nt=R||(U?function(e,t){return e.__proto__=t,e}:I&&F?function(){function e(e,t){for(var n,r=I(t),i=0,s=r.length;i>>0;if("function"!==typeof c)throw new TypeError("predicate must be a function");for(var a=0;a>>0;if(0===n)return!1;var i,o,a=0|e,u=Math.max(0<=a?a:n-Math.abs(a),0);for(;uthis.length)a=this.length;return this.substring(a-b.length,a)===b}}); +/*! +String.prototype.includes +*/ +String.prototype.includes||(String.prototype.includes=function(b,a){"number"!==typeof a&&(a=0);return a+b.length>this.length?!1:-1!==this.indexOf(b,a)}); +/*! +String.prototype.startsWith +*/ +String.prototype.startsWith||Object.defineProperty(String.prototype,"startsWith",{writable:!0,configurable:!0,value:function(b,a){return this.substr(!a||0>a?0:+a,b.length)===b}}); +/*! +es6-promise - a tiny implementation of Promises/A+. +Copyright (c) 2014 Yehuda Katz, Tom Dale, Stefan Penner and contributors (Conversion to ES6 API by Jake Archibald) +Licensed under MIT license +See https://raw.githubusercontent.com/stefanpenner/es6-promise/master/LICENSE +v4.2.4+314e4831 +*/ +(window.ES6Promise=function(){function t(){var t=setTimeout;return function(){return t(r,1)}}function r(){for(var t=0;tthis.status;this.statusText="statusText"in b?b.statusText:"OK";this.headers=new d(b.headers);this.url=b.url||"";this._initBody(a)}if(!e.fetch){var D="Symbol"in e&&"iterator"in Symbol,m;if(m="FileReader"in e&&"Blob"in e)try{new Blob,m=!0}catch(a){m=!1}var g={searchParams:"URLSearchParams"in e,iterable:D, +blob:m,formData:"FormData"in e,arrayBuffer:"ArrayBuffer"in e};if(g.arrayBuffer){var E="[object Int8Array];[object Uint8Array];[object Uint8ClampedArray];[object Int16Array];[object Uint16Array];[object Int32Array];[object Uint32Array];[object Float32Array];[object Float64Array]".split(";");var y=function(a){return a&&DataView.prototype.isPrototypeOf(a)};var z=ArrayBuffer.isView||function(a){return a&&-1-1&&r.splice(e,1),r.length||(i["s-init"]&&i["s-init"](),i.$initLoad&&i.$initLoad())),n.f.delete(t))}function v(n,t){for(var e,r,i=null,u=!1,o=!1,f=arguments.length;f-- >2;)rn.push(arguments[f]);for(;rn.length>0;){var c=rn.pop();if(c&&void 0!==c.pop)for(f=c.length;f--;)rn.push(c[f]);else"boolean"==typeof c&&(c=null),(o="function"!=typeof n)&&(null==c?c="":"number"==typeof c?c=String(c):"string"!=typeof c&&(o=!1)),o&&u?i[i.length-1].vtext+=c:null===i?i=[o?{vtext:c}:c]:i.push(o?{vtext:c}:c),u=o}if(null!=t){if(t.className&&(t.class=t.className),"object"==typeof t.class){for(f in t.class)t.class[f]&&rn.push(f);t.class=rn.join(" "),rn.length=0}null!=t.key&&(e=t.key),null!=t.name&&(r=t.name)}return"function"==typeof n?n(Object.assign({},t,{children:i}),un):{vtag:n,vchildren:i,vtext:void 0,vattrs:t,vkey:e,vname:r,c:void 0,a:!1}}function p(n){return{vtag:n.vtag,vchildren:n.vchildren,vtext:n.vtext,vattrs:n.vattrs,vkey:n.vkey,vname:n.vname}}function d(n,t,e,r){t.split(" ").forEach(function(t){n[t]=!0,e&&(n[t+"-"+e]=!0,r&&(n[t+"-"+e+"-"+r]=n[t+"-"+r]=!0))})}function h(n,t){n.s.has(t)||(n.s.set(t,!0),n.l?n.queue.write(function(){return m(n,t)}):n.queue.tick(function(){return m(n,t)}))}function m(n,t,e,r,i,u){if(n.s.delete(t),!n.v.has(t)){if(r=n.p.get(t),e=!r){if((i=n.f.get(t))&&i.$rendered&&(i["s-rn"]=!0),i&&!i["s-rn"])return(i["s-rc"]=i["s-rc"]||[]).push(function(){m(n,t)}),void(i.$onRender=i["s-rc"]);r=function o(n,t,e,r,i,u,f){try{(function c(n,t,e,r,i,u,o){for(o in n.d.set(r,e),n.m.has(e)||n.m.set(e,{}),(u=Object.assign({color:{type:String}},t.properties)).mode={type:String},u)y(n,u[o],e,r,o,i)})(n,i=n.y(t).b,t,r=new i,e),function a(n,t,e){if(t){var r=n.d.get(e);t.forEach(function(t){e[t.method]={emit:function(e){n.g(r,t.name,{bubbles:t.bubbles,composed:t.composed,cancelable:t.cancelable,detail:e})}}})}}(n,i.events,r);try{if(u=n.w.get(t)){for(f=0;f0)throw new Error("The following keys were attempted to be set with hostData() from the "+t.t+" component: "+b.join(", ")+". If you would like to modify these please set @Prop({ mutable: true, reflectToAttr: true}) on the @Prop() decorator.")}i&&(m=m?Object.assign(m,i):i),n.N=!1,c&&(m=function y(n,t,e){return n=n||{},Object.keys(t).forEach(function(r){"theme"===r?d(n.class=n.class||{},t[r],e.mode,e.color):"class"===r?d(n[r]=n[r]||{},t[r]):n[r]=t[r]}),n}(m,c,r));var g=n.S.get(e)||{};g.c=u;var w=v(null,m,h);w.a=!0,n.S.set(e,n.render(e,g,w,s,a))}n.W&&n.W.A(e),e["s-rn"]=!0,e.$onRender&&(e["s-rc"]=e.$onRender),e["s-rc"]&&(e["s-rc"].forEach(function(n){return n()}),e["s-rc"]=null)}catch(t){n.N=!1,n.k(t,8,e,!0)}})(n,n.y(t),t,e);try{r?t["s-init"]():(e.componentDidUpdate&&e.componentDidUpdate(),C(n.S.get(t))),t["s-hmr-load"]&&t["s-hmr-load"]()}catch(e){n.k(e,6,t,!0)}}function y(n,t,e,r,i,u,o,f){if(t.type||t.state){var c=n.m.get(e);t.state||(!t.attr||void 0!==c[i]&&""!==c[i]||(o=u&&u.T)&&V(f=o[t.attr])&&(c[i]=s(t.type,f)),e.hasOwnProperty(i)&&(void 0===c[i]&&(c[i]=s(t.type,e[i])),"mode"!==i&&delete e[i])),r.hasOwnProperty(i)&&void 0===c[i]&&(c[i]=r[i]),t.watchCallbacks&&(c[on+i]=t.watchCallbacks.slice()),k(r,i,function a(t){return(t=n.m.get(n.d.get(this)))&&t[i]},function l(e,r){(r=n.d.get(this))&&(t.state||t.mutable)&&g(n,r,i,e)})}else if(t.elementRef)w(r,i,e);else if(t.method)w(e,i,r[i].bind(r));else if(t.context){var v=n.R(t.context);void 0!==v&&w(r,i,v.L&&v.L(e)||v)}else t.connect&&w(r,i,n.I(t.connect))}function g(n,t,e,r,i,u,o){(i=n.m.get(t))||n.m.set(t,i={});var f=i[e];if(r!==f&&(i[e]=r,u=n.p.get(t))){if(o=i[on+e])for(var c=0;c=0;u--)(o=a[u])["s-hn"]!==d&&o["s-ol"]&&(t.tn(o),t.en(c(o),o,f(o)),t.tn(o["s-ol"]),o["s-ol"]=null,p=!0),i&&r(o,i);n.V=!1}function i(n,r,i,u,o,c,a,s){var l=n["s-cr"]||n.$defaultHolder;for((a=l&&t.rn(l)||n).shadowRoot&&t.in(a)===d&&(a=a.shadowRoot);o<=c;++o)u[o]&&(s=V(u[o].vtext)?t.K(u[o].vtext):e(null,i,o,n))&&(u[o].c=s,t.en(a,s,f(r)))}function u(n,e,i,u){for(;e<=i;++e)V(n[e])&&(u=n[e].c,v=!0,u["s-ol"]?t.tn(u["s-ol"]):r(u,!0),t.tn(u))}function o(n,t){return n.vtag===t.vtag&&n.vkey===t.vkey&&("slot"!==n.vtag||n.vname===t.vname)}function f(n){return n&&n["s-ol"]?n["s-ol"]:n}function c(n){return t.rn(n["s-ol"]?n["s-ol"]:n)}var a,s,l,v,p,d,h,m=[];return function b(y,g,w,k,M,$,j,O,x,C,N,P){if(d=t.in(y),h=y["s-cr"],a=k,s="shadow"!==M?$:null,l=y["s-sc"],p=v=!1,function a(s,l,v){var p=l.c=s.c,d=s.vchildren,h=l.vchildren;an=l.c&&V(t.un(l.c))&&void 0!==l.c.ownerSVGElement,an="svg"===l.vtag||"foreignObject"!==l.vtag&&an,V(l.vtext)?(v=p["s-cr"]||p.$defaultHolder)?t.on(t.rn(v),l.vtext):s.vtext!==l.vtext&&t.on(p,l.vtext):("slot"!==l.vtag&&E(n,s,l,an),V(d)&&V(h)?function m(n,s,l,v,p,d,h,b){for(var y=0,g=0,w=s.length-1,k=s[0],M=s[w],$=v.length-1,j=v[0],O=v[$];y<=w&&g<=$;)if(null==k)k=s[++y];else if(null==M)M=s[--w];else if(null==j)j=v[++g];else if(null==O)O=v[--$];else if(o(k,j))a(k,j),k=s[++y],j=v[++g];else if(o(M,O))a(M,O),M=s[--w],O=v[--$];else if(o(k,O))"slot"!==k.vtag&&"slot"!==O.vtag||r(t.rn(k.c)),a(k,O),t.en(n,k.c,t.fn(M.c)),k=s[++y],O=v[--$];else if(o(M,j))"slot"!==k.vtag&&"slot"!==O.vtag||r(t.rn(M.c)),a(M,j),t.en(n,M.c,k.c),M=s[--w],j=v[++g];else{for(p=null,d=y;d<=w;++d)if(s[d]&&V(s[d].vkey)&&s[d].vkey===j.vkey){p=d;break}V(p)?((b=s[p]).vtag!==j.vtag?h=e(s&&s[g],l,p,n):(a(b,j),s[p]=void 0,h=b.c),j=v[++g]):(h=e(s&&s[g],l,g,n),j=v[++g]),h&&t.en(c(k.c),h,f(k.c))}y>w?i(n,null==v[$+1]?null:v[$+1].c,l,v,g,$):g>$&&u(s,y,w)}(p,d,l,h):V(h)?(V(s.vtext)&&t.on(p,""),i(p,null,l,h,0,h.length-1)):V(d)&&u(d,0,d.length-1)),an&&"svg"===l.vtag&&(an=!1)}(g,w),V(s)&&t.C(g.c,K,s),p){for(function n(e,r,i,u,o,f,c,a,s,l){for(o=0,f=(r=t.nn(e)).length;o=0;c--)(u=a[c])["s-cn"]||u["s-nr"]||u["s-hn"]===i["s-hn"]||((3===(l=t.cn(u))||8===l)&&""===s||1===l&&null===t.an(u,"slot")&&""===s||1===l&&t.an(u,"slot")===s)&&(m.some(function(n){return n.sn===u})||(v=!0,u["s-sn"]=s,m.push({ln:i,sn:u})));1===t.cn(i)&&n(i)}}(w.c),j=0;j0?f.join(",").trim():void 0}}(n,e);if(!r)return t.push(n.substring(e,n.length)),n.length;var u=r._n,o=null!=r.Dn?D(r.Dn):void 0;return t.push(n.substring(e,r.start),function(n){return function t(n,e,r){return n[e]?n[e]:r?I(r,n):""}(n,u,o)}),r.end}function I(n,t){for(var e="",r=0;r0&&n.parsedSelector.split(",").forEach(function(n){n=n.trim(),e.push({selector:n,qn:r,nt:1,tt:t})}),t++}),e}(t),et:r.length>1}}function F(n,t){var e=H(t.innerHTML);e.rt=t,n.push(e)}function z(n,t,e){return Y(n=Y(n=Y(n,"\\["+o(t)+"\\]","["+o(e)+"]"),"\\["+u(t)+"\\]","["+u(e)+"]"),"\\["+f(t)+"\\]","["+f(e)+"]")}function Y(n,t,e){return n.replace(new RegExp(t,"g"),e)}function Z(n,t,e){var r=e.href;return fetch(r).then(function(n){return n.text()}).then(function(i){if(function u(n){return n.indexOf("var(")>-1||On.test(n)}(i)&&e.parentNode){(function o(n){return En.lastIndex=0,En.test(n)})(i)&&(i=function f(n,t){var e=t.replace(/[^/]*$/,"");return n.replace(En,function(n,t){var r=e+t;return n.replace(t,r)})}(i,r));var c=n.createElement("style");c.innerHTML=i,F(t,c),e.parentNode.insertBefore(c,e),e.remove()}}).catch(function(n){})}var K="data-ssrv",Q="data-ssrc",X="$",G={},J={enter:13,escape:27,space:32,tab:9,left:37,up:38,right:39,down:40},V=function(n){return null!=n},nn=function(n){return n.toLowerCase()},tn=function(n){return nn(n).split("-").map(function(n){return n.charAt(0).toUpperCase()+n.slice(1)}).join("")},en=function(){},rn=[],un={forEach:function(n,t){n.forEach(function(n){return t(p(n))})},map:function(n,t){return n.map(function(n){return function e(n){return{vtag:n.vtag,vchildren:n.vchildren,vtext:n.vtext,vattrs:n.vattrs,vkey:n.vkey,vname:n.vname}}(t(p(n)))})}},on="wc-",fn={allowfullscreen:1,async:1,autofocus:1,autoplay:1,checked:1,controls:1,disabled:1,enabled:1,formnovalidate:1,hidden:1,multiple:1,noresize:1,readonly:1,required:1,selected:1,spellcheck:1},cn="http://www.w3.org/1999/xlink",an=!1,sn=function sn(){this.start=0,this.end=0,this.previous=null,this.parent=null,this.rules=null,this.parsedCssText="",this.cssText="",this.atRule=!1,this.type=0,this.keyframesName="",this.selector="",this.parsedSelector=""},ln={Qn:1,Zn:7,zn:4,Kn:1e3},vn="{",pn="}",dn={Xn:/\/\*[^*]*\*+([^/*][^*]*\*+)*\//gim,Gn:/@import[^;]*;/gim,it:/(?:^[^;\-\s}]+)?--[^;{}]*?:[^{};]*?(?:[;\n]|$)/gim,ut:/(?:^[^;\-\s}]+)?--[^;{}]*?:[^{};]*?{[^}]*?}(?:[;\n]|$)?/gim,ot:/@apply\s*\(?[^);]*\)?\s*(?:[;\n]|$)?/gim,ft:/[^;:]*?:[^;]*?var\([^;]*\)(?:[;\n]|$)?/gim,Yn:/^@[^\s]*keyframes/,Fn:/\s+/g},hn="--",mn="@media",bn="@",yn=/\bvar\(/,gn=/\B--[\w-]+\s*:/,wn=/\/\*[^*]*\*+([^/*][^*]*\*+)*\//gim,kn=/^[\t ]+\n/gm,Mn=/[^{}]*{\s*}/gm,$n="!important",jn=/(?:^|[;\s{]\s*)(--[\w-]*?)\s*:\s*(?:((?:'(?:\\'|.)*?'|"(?:\\"|.)*?"|\([^)]*?\)|[^};{])+)|\{([^}]*)\}(?:(?=[;\s}])|$))/gm,On=/[\s;{]--[-a-zA-Z0-9]+\s*:/m,En=/url[\s]*\([\s]*['"]?(?![http|/])([^\'\"\)]*)[\s]*['"]?\)[\s]*/gim,xn=function(){function n(n,t){this.ct=n,this.at=t,this.st=0,this.lt=new WeakMap,this.vt=new WeakMap,this.pt=[],this.dt=new Map}return n.prototype.ht=function(){var n=this;return new Promise(function(t){n.ct.requestAnimationFrame(function(){(function e(n,t){return function e(n,t){for(var e=[],r=n.querySelectorAll('link[rel="stylesheet"][href]'),i=0;i0&&(Nn=!0),Nn&&(Cn=new xn(n,t)),function Sn(n,t,e,r,u,o,f){function s(n,t){if(!e.customElements.get(n.t)){P[n.t]=!0,A(R,w[n.t]=n,t.prototype,o);var r=[];for(var i in n.P)n.P[i].q&&r.push(n.P[i].q);t.observedAttributes=r,e.customElements.define(n.t,t)}}function l(n,t){return t&&M.delete(n.replace(/^\.\//,"")),null==n?null:M.get(n.replace(/^\.\//,""))}function p(n){return"exports"===n||"require"===n||!!l(n)}function d(n,t,e){var r={};try{e.apply(null,t.map(function(n){return"exports"===n?r:"require"===n?m:l(n)}))}catch(n){}void 0!==n&&(M.set(n,r),n&&!n.endsWith(".js")&&Object.keys(r).forEach(function(n){for(var t=n.replace(/-/g,"").toLowerCase(),e=Object.keys(w),i=0;i=0;n--){var t=k[n],e=t[0],r=t[1],i=t[2];r.every(p)&&!p(e)&&(k.splice(n,1),d(e,r,i))}}()}function y(n,t,e){var r=2===n.encapsulation||1===n.encapsulation&&!E.j,i=u+t+(r?".sc":"")+".es5.js";e&&(i+="?s-hmr="+e),g(i)}function g(n){function t(){clearTimeout(e),r.onerror=r.onload=null,E.tn(r),$.delete(n)}var e,r;$.has(n)||($.add(n),(r=E.X("script")).charset="utf-8",r.async=!0,r.src=n,e=setTimeout(t,12e4),r.onerror=r.onload=t,E.G(E.In.head,r))}var w={html:{}},k=[],M=new Map,$=new Set,j={},O=e[n]=e[n]||{},E=function C(n,t,e){n.Mt||(n.Mt=function(n,t,e,r){return n.addEventListener(t,e,r)},n.$t=function(n,t,e,r){return n.removeEventListener(t,e,r)});var r=new WeakMap,i={In:e,jt:!1,cn:function(n){return n.nodeType},X:function(n){return e.createElement(n)},Q:function(n,t){return e.createElementNS(n,t)},K:function(n){return e.createTextNode(n)},J:function(n){return e.createComment(n)},en:function(n,t,e){return n.insertBefore(t,e)},tn:function(n){return n.remove()},G:function(n,t){return n.appendChild(t)},nn:function(n){return n.childNodes},rn:function(n){return n.parentNode},fn:function(n){return n.nextSibling},vn:function(n){return n.previousSibling},in:function(n){return nn(n.nodeName)},pn:function(n){return n.textContent},on:function(n,t){return n.textContent=t},an:function(n,t){return n.getAttribute(t)},C:function(n,t,e){return n.setAttribute(t,e)},Ot:function(n,t,e,r){return n.setAttributeNS(t,e,r)},B:function(n,t){return n.removeAttribute(t)},H:function(n,t){return n.hasAttribute(t)},On:function(t){return t.getAttribute("mode")||(n.Context||{}).mode},Et:function(n,r){return"child"===r?n.firstElementChild:"parent"===r?i.un(n):"body"===r?e.body:"document"===r?e:"window"===r?t:n},F:function(t,e,u,o,f,c,a,s){var l=e,v=t,p=r.get(t);if(p&&p[l]&&p[l](),"string"==typeof c?v=i.Et(t,c):"object"==typeof c?v=c:(s=e.split(":")).length>1&&(v=i.Et(t,s[0]),e=s[1]),v){var d=u;(s=e.split(".")).length>1&&(e=s[0],d=function(n){n.keyCode===J[s[1]]&&u(n)}),a=i.jt?{capture:!!o,passive:!!f}:!!o,n.Mt(v,e,d,a),p||r.set(t,p={}),p[l]=function(){v&&n.$t(v,e,d,a),p[l]=null}}},z:function(n,t){var e=r.get(n);e&&(t?e[t]&&e[t]():Object.keys(e).forEach(function(n){e[n]&&e[n]()}))},En:function(n,t){return n.attachShadow(t)}};i.j=!!i.In.documentElement.attachShadow,t.location.search.indexOf("shadow=false")>0&&(i.j=!1),"function"!=typeof t.CustomEvent&&(t.CustomEvent=function(n,t,r){return(r=e.createEvent("CustomEvent")).initCustomEvent(n,t.bubbles,t.cancelable,t.detail),r},t.CustomEvent.prototype=t.Event.prototype),i.xt=function(n,e,r){return n&&n.dispatchEvent(new t.CustomEvent(e,r))};try{t.addEventListener("e",null,Object.defineProperty({},"passive",{get:function(){return i.jt=!0}}))}catch(n){}return i.un=function(n,t){return(t=i.rn(n))&&11===i.cn(t)?t.host:t},i}(O,e,r);E.j,t.isServer=t.isPrerender=!(t.isClient=!0),t.window=e,t.location=e.location,t.document=r,t.resourcesUrl=t.publicPath=u,t.enableListener=function(n,t,e,r,i){return function u(n,t,e,r,i,o){if(t){var f=n.d.get(t),c=n.y(f);if(c&&c.dn)if(r){var a=c.dn.find(function(n){return n.e===e});a&&n.O.F(f,e,function(n){return t[a.r](n)},a.o,void 0===o?a.u:!!o,i)}else n.O.z(f,e)}}(R,n,t,e,r,i)},t.emit=function(n,e,r){return E.xt(n,t.eventNameFn?t.eventNameFn(e):e,r)},O.h=v,O.Context=t;var P=e["s-defined"]=e.$definedCmps=e["s-defined"]||e.$definedCmps||{},W=0,R={O:E,Ct:s,g:t.emit,W:f,y:function(n){return w[E.in(n)]},R:function(n){return t[n]},isClient:!0,Sn:function(n){return!(!P[E.in(n)]&&!R.y(n))},k:function(n,t,e){},Pn:function(){return n+W++},I:function(n){return function t(n,e,r){return{create:T(n,e,r,"create"),componentOnReady:T(n,e,r,"componentOnReady")}}(E,j,n)},queue:t.queue=function L(n,t){function e(n){for(var t=0;t0&&(s.push.apply(s,a),a.length=0),(v=c.length+a.length+s.length>0)?n.raf(i):l=0}var u=function(){return t.performance.now()},o=Promise.resolve(),f=[],c=[],a=[],s=[],l=0,v=!1;return n.raf||(n.raf=t.requestAnimationFrame.bind(t)),{tick:function(n){f.push(n),1===f.length&&o.then(function(){return e(f)})},read:function(t){c.push(t),v||(v=!0,n.raf(i))},write:function(t){a.push(t),v||(v=!0,n.raf(i))}}}(O,e),An:function I(n,t,e){var r="string"==typeof n.$n?n.$n:n.$n[t.mode];l(r,e)?h(R,t):(k.push([void 0,[r],function(){h(R,t)}]),f&&q?q.push(function(){return y(n,r,e)}):y(n,r,e))},f:new WeakMap,Nt:new WeakMap,Nn:new WeakMap,Cn:new WeakMap,Wn:new WeakMap,d:new WeakMap,M:new WeakMap,p:new WeakMap,v:new WeakMap,s:new WeakMap,Rn:new WeakMap,w:new WeakMap,S:new WeakMap,m:new WeakMap};R.render=x(R,E);var _=E.In.documentElement;_["s-ld"]=[],_["s-rn"]=!0,_["s-init"]=function(){R.Wn.set(_,O.loaded=R.l=!0),E.xt(e,"appload",{detail:{namespace:n}})},function D(n,t,e){var r,i,u,o,f,c,a=e.querySelectorAll("["+K+"]"),s=a.length;if(s>0)for(n.Wn.set(e,!0),o=0;o=0;u--)t.componentOnReady(i[u][0],i[u][1])&&i.splice(u,1);for(u=0;u \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-add-circle.svg b/public/assets/lib/ionicons/ionicons/svg/ios-add-circle.svg new file mode 100755 index 0000000..11bda99 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-add-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-add.svg b/public/assets/lib/ionicons/ionicons/svg/ios-add.svg new file mode 100755 index 0000000..a5bed0d --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-add.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-airplane.svg b/public/assets/lib/ionicons/ionicons/svg/ios-airplane.svg new file mode 100755 index 0000000..92a1718 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-airplane.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-alarm.svg b/public/assets/lib/ionicons/ionicons/svg/ios-alarm.svg new file mode 100755 index 0000000..d3fbe81 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-alarm.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-albums.svg b/public/assets/lib/ionicons/ionicons/svg/ios-albums.svg new file mode 100755 index 0000000..134189f --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-albums.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-alert.svg b/public/assets/lib/ionicons/ionicons/svg/ios-alert.svg new file mode 100755 index 0000000..55dcb52 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-alert.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-american-football.svg b/public/assets/lib/ionicons/ionicons/svg/ios-american-football.svg new file mode 100755 index 0000000..aa76149 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-american-football.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-analytics.svg b/public/assets/lib/ionicons/ionicons/svg/ios-analytics.svg new file mode 100755 index 0000000..69dd11e --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-analytics.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-aperture.svg b/public/assets/lib/ionicons/ionicons/svg/ios-aperture.svg new file mode 100755 index 0000000..7a5f18a --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-aperture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-apps.svg b/public/assets/lib/ionicons/ionicons/svg/ios-apps.svg new file mode 100755 index 0000000..576d29d --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-apps.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-appstore.svg b/public/assets/lib/ionicons/ionicons/svg/ios-appstore.svg new file mode 100755 index 0000000..f78e7fb --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-appstore.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-archive.svg b/public/assets/lib/ionicons/ionicons/svg/ios-archive.svg new file mode 100755 index 0000000..3359d36 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-archive.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-arrow-back.svg b/public/assets/lib/ionicons/ionicons/svg/ios-arrow-back.svg new file mode 100755 index 0000000..7ed23a9 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-arrow-back.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-arrow-down.svg b/public/assets/lib/ionicons/ionicons/svg/ios-arrow-down.svg new file mode 100755 index 0000000..61576d7 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-arrow-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-arrow-dropdown-circle.svg b/public/assets/lib/ionicons/ionicons/svg/ios-arrow-dropdown-circle.svg new file mode 100755 index 0000000..741c983 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-arrow-dropdown-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-arrow-dropdown.svg b/public/assets/lib/ionicons/ionicons/svg/ios-arrow-dropdown.svg new file mode 100755 index 0000000..dcdfdfe --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-arrow-dropdown.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-arrow-dropleft-circle.svg b/public/assets/lib/ionicons/ionicons/svg/ios-arrow-dropleft-circle.svg new file mode 100755 index 0000000..e05f601 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-arrow-dropleft-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-arrow-dropleft.svg b/public/assets/lib/ionicons/ionicons/svg/ios-arrow-dropleft.svg new file mode 100755 index 0000000..3dfcac4 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-arrow-dropleft.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-arrow-dropright-circle.svg b/public/assets/lib/ionicons/ionicons/svg/ios-arrow-dropright-circle.svg new file mode 100755 index 0000000..2d3c190 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-arrow-dropright-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-arrow-dropright.svg b/public/assets/lib/ionicons/ionicons/svg/ios-arrow-dropright.svg new file mode 100755 index 0000000..010f9e6 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-arrow-dropright.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-arrow-dropup-circle.svg b/public/assets/lib/ionicons/ionicons/svg/ios-arrow-dropup-circle.svg new file mode 100755 index 0000000..1eb32f7 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-arrow-dropup-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-arrow-dropup.svg b/public/assets/lib/ionicons/ionicons/svg/ios-arrow-dropup.svg new file mode 100755 index 0000000..b34be92 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-arrow-dropup.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-arrow-forward.svg b/public/assets/lib/ionicons/ionicons/svg/ios-arrow-forward.svg new file mode 100755 index 0000000..a822315 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-arrow-forward.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-arrow-round-back.svg b/public/assets/lib/ionicons/ionicons/svg/ios-arrow-round-back.svg new file mode 100755 index 0000000..87e4da7 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-arrow-round-back.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-arrow-round-down.svg b/public/assets/lib/ionicons/ionicons/svg/ios-arrow-round-down.svg new file mode 100755 index 0000000..c25cb46 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-arrow-round-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-arrow-round-forward.svg b/public/assets/lib/ionicons/ionicons/svg/ios-arrow-round-forward.svg new file mode 100755 index 0000000..6d064f4 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-arrow-round-forward.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-arrow-round-up.svg b/public/assets/lib/ionicons/ionicons/svg/ios-arrow-round-up.svg new file mode 100755 index 0000000..49c427f --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-arrow-round-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-arrow-up.svg b/public/assets/lib/ionicons/ionicons/svg/ios-arrow-up.svg new file mode 100755 index 0000000..08641ae --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-arrow-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-at.svg b/public/assets/lib/ionicons/ionicons/svg/ios-at.svg new file mode 100755 index 0000000..7753a97 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-at.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-attach.svg b/public/assets/lib/ionicons/ionicons/svg/ios-attach.svg new file mode 100755 index 0000000..066e97b --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-attach.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-backspace.svg b/public/assets/lib/ionicons/ionicons/svg/ios-backspace.svg new file mode 100755 index 0000000..ad507d3 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-backspace.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-barcode.svg b/public/assets/lib/ionicons/ionicons/svg/ios-barcode.svg new file mode 100755 index 0000000..65b23b0 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-barcode.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-baseball.svg b/public/assets/lib/ionicons/ionicons/svg/ios-baseball.svg new file mode 100755 index 0000000..0b15215 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-baseball.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-basket.svg b/public/assets/lib/ionicons/ionicons/svg/ios-basket.svg new file mode 100755 index 0000000..5c09d4e --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-basket.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-basketball.svg b/public/assets/lib/ionicons/ionicons/svg/ios-basketball.svg new file mode 100755 index 0000000..224274a --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-basketball.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-battery-charging.svg b/public/assets/lib/ionicons/ionicons/svg/ios-battery-charging.svg new file mode 100755 index 0000000..b4f83c8 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-battery-charging.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-battery-dead.svg b/public/assets/lib/ionicons/ionicons/svg/ios-battery-dead.svg new file mode 100755 index 0000000..4d6fc40 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-battery-dead.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-battery-full.svg b/public/assets/lib/ionicons/ionicons/svg/ios-battery-full.svg new file mode 100755 index 0000000..7d38316 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-battery-full.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-beaker.svg b/public/assets/lib/ionicons/ionicons/svg/ios-beaker.svg new file mode 100755 index 0000000..08c2fbe --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-beaker.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-bed.svg b/public/assets/lib/ionicons/ionicons/svg/ios-bed.svg new file mode 100755 index 0000000..1e71d6f --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-bed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-beer.svg b/public/assets/lib/ionicons/ionicons/svg/ios-beer.svg new file mode 100755 index 0000000..674960f --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-beer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-bicycle.svg b/public/assets/lib/ionicons/ionicons/svg/ios-bicycle.svg new file mode 100755 index 0000000..de83ebf --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-bicycle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-bluetooth.svg b/public/assets/lib/ionicons/ionicons/svg/ios-bluetooth.svg new file mode 100755 index 0000000..62d5ffe --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-bluetooth.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-boat.svg b/public/assets/lib/ionicons/ionicons/svg/ios-boat.svg new file mode 100755 index 0000000..c1f3a8f --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-boat.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-body.svg b/public/assets/lib/ionicons/ionicons/svg/ios-body.svg new file mode 100755 index 0000000..e2042b9 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-body.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-bonfire.svg b/public/assets/lib/ionicons/ionicons/svg/ios-bonfire.svg new file mode 100755 index 0000000..0764908 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-bonfire.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-book.svg b/public/assets/lib/ionicons/ionicons/svg/ios-book.svg new file mode 100755 index 0000000..759fbab --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-book.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-bookmark.svg b/public/assets/lib/ionicons/ionicons/svg/ios-bookmark.svg new file mode 100755 index 0000000..660cdf0 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-bookmark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-bookmarks.svg b/public/assets/lib/ionicons/ionicons/svg/ios-bookmarks.svg new file mode 100755 index 0000000..144db59 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-bookmarks.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-bowtie.svg b/public/assets/lib/ionicons/ionicons/svg/ios-bowtie.svg new file mode 100755 index 0000000..c5ac4a7 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-bowtie.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-briefcase.svg b/public/assets/lib/ionicons/ionicons/svg/ios-briefcase.svg new file mode 100755 index 0000000..c50170f --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-briefcase.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-browsers.svg b/public/assets/lib/ionicons/ionicons/svg/ios-browsers.svg new file mode 100755 index 0000000..2965d98 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-browsers.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-brush.svg b/public/assets/lib/ionicons/ionicons/svg/ios-brush.svg new file mode 100755 index 0000000..a735ed6 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-brush.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-bug.svg b/public/assets/lib/ionicons/ionicons/svg/ios-bug.svg new file mode 100755 index 0000000..8b3c94e --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-bug.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-build.svg b/public/assets/lib/ionicons/ionicons/svg/ios-build.svg new file mode 100755 index 0000000..771a9e6 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-build.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-bulb.svg b/public/assets/lib/ionicons/ionicons/svg/ios-bulb.svg new file mode 100755 index 0000000..b87500a --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-bulb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-bus.svg b/public/assets/lib/ionicons/ionicons/svg/ios-bus.svg new file mode 100755 index 0000000..b940f4c --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-bus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-business.svg b/public/assets/lib/ionicons/ionicons/svg/ios-business.svg new file mode 100755 index 0000000..3385cdf --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-business.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-cafe.svg b/public/assets/lib/ionicons/ionicons/svg/ios-cafe.svg new file mode 100755 index 0000000..01456a4 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-cafe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-calculator.svg b/public/assets/lib/ionicons/ionicons/svg/ios-calculator.svg new file mode 100755 index 0000000..27d594d --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-calculator.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-calendar.svg b/public/assets/lib/ionicons/ionicons/svg/ios-calendar.svg new file mode 100755 index 0000000..63681be --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-calendar.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-call.svg b/public/assets/lib/ionicons/ionicons/svg/ios-call.svg new file mode 100755 index 0000000..c7a99dd --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-call.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-camera.svg b/public/assets/lib/ionicons/ionicons/svg/ios-camera.svg new file mode 100755 index 0000000..3aeb0d8 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-camera.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-car.svg b/public/assets/lib/ionicons/ionicons/svg/ios-car.svg new file mode 100755 index 0000000..e703fbe --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-car.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-card.svg b/public/assets/lib/ionicons/ionicons/svg/ios-card.svg new file mode 100755 index 0000000..1390e0f --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-card.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-cart.svg b/public/assets/lib/ionicons/ionicons/svg/ios-cart.svg new file mode 100755 index 0000000..d2827b0 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-cart.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-cash.svg b/public/assets/lib/ionicons/ionicons/svg/ios-cash.svg new file mode 100755 index 0000000..1311f38 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-cash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-cellular.svg b/public/assets/lib/ionicons/ionicons/svg/ios-cellular.svg new file mode 100755 index 0000000..c7d0f9f --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-cellular.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-chatboxes.svg b/public/assets/lib/ionicons/ionicons/svg/ios-chatboxes.svg new file mode 100755 index 0000000..11fb734 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-chatboxes.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-chatbubbles.svg b/public/assets/lib/ionicons/ionicons/svg/ios-chatbubbles.svg new file mode 100755 index 0000000..54c0bf5 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-chatbubbles.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-checkbox-outline.svg b/public/assets/lib/ionicons/ionicons/svg/ios-checkbox-outline.svg new file mode 100755 index 0000000..abc8378 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-checkbox-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-checkbox.svg b/public/assets/lib/ionicons/ionicons/svg/ios-checkbox.svg new file mode 100755 index 0000000..d1687a0 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-checkbox.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-checkmark-circle-outline.svg b/public/assets/lib/ionicons/ionicons/svg/ios-checkmark-circle-outline.svg new file mode 100755 index 0000000..6f9326f --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-checkmark-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-checkmark-circle.svg b/public/assets/lib/ionicons/ionicons/svg/ios-checkmark-circle.svg new file mode 100755 index 0000000..20e6fcc --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-checkmark-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-checkmark.svg b/public/assets/lib/ionicons/ionicons/svg/ios-checkmark.svg new file mode 100755 index 0000000..c61aa04 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-checkmark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-clipboard.svg b/public/assets/lib/ionicons/ionicons/svg/ios-clipboard.svg new file mode 100755 index 0000000..5135fba --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-clipboard.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-clock.svg b/public/assets/lib/ionicons/ionicons/svg/ios-clock.svg new file mode 100755 index 0000000..3860e94 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-clock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-close-circle-outline.svg b/public/assets/lib/ionicons/ionicons/svg/ios-close-circle-outline.svg new file mode 100755 index 0000000..c288c19 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-close-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-close-circle.svg b/public/assets/lib/ionicons/ionicons/svg/ios-close-circle.svg new file mode 100755 index 0000000..d495180 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-close-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-close.svg b/public/assets/lib/ionicons/ionicons/svg/ios-close.svg new file mode 100755 index 0000000..5f62c99 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-close.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-cloud-circle.svg b/public/assets/lib/ionicons/ionicons/svg/ios-cloud-circle.svg new file mode 100755 index 0000000..fe3dfce --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-cloud-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-cloud-done.svg b/public/assets/lib/ionicons/ionicons/svg/ios-cloud-done.svg new file mode 100755 index 0000000..f9d64d3 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-cloud-done.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-cloud-download.svg b/public/assets/lib/ionicons/ionicons/svg/ios-cloud-download.svg new file mode 100755 index 0000000..8938739 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-cloud-download.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-cloud-outline.svg b/public/assets/lib/ionicons/ionicons/svg/ios-cloud-outline.svg new file mode 100755 index 0000000..1951a5c --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-cloud-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-cloud-upload.svg b/public/assets/lib/ionicons/ionicons/svg/ios-cloud-upload.svg new file mode 100755 index 0000000..f089ecd --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-cloud-upload.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-cloud.svg b/public/assets/lib/ionicons/ionicons/svg/ios-cloud.svg new file mode 100755 index 0000000..083d9db --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-cloud.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-cloudy-night.svg b/public/assets/lib/ionicons/ionicons/svg/ios-cloudy-night.svg new file mode 100755 index 0000000..ecbd8ed --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-cloudy-night.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-cloudy.svg b/public/assets/lib/ionicons/ionicons/svg/ios-cloudy.svg new file mode 100755 index 0000000..9865008 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-cloudy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-code-download.svg b/public/assets/lib/ionicons/ionicons/svg/ios-code-download.svg new file mode 100755 index 0000000..42b41ba --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-code-download.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-code-working.svg b/public/assets/lib/ionicons/ionicons/svg/ios-code-working.svg new file mode 100755 index 0000000..8bb9ada --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-code-working.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-code.svg b/public/assets/lib/ionicons/ionicons/svg/ios-code.svg new file mode 100755 index 0000000..ecb946d --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-code.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-cog.svg b/public/assets/lib/ionicons/ionicons/svg/ios-cog.svg new file mode 100755 index 0000000..f5f71fc --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-cog.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-color-fill.svg b/public/assets/lib/ionicons/ionicons/svg/ios-color-fill.svg new file mode 100755 index 0000000..76ca096 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-color-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-color-filter.svg b/public/assets/lib/ionicons/ionicons/svg/ios-color-filter.svg new file mode 100755 index 0000000..0f4ea41 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-color-filter.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-color-palette.svg b/public/assets/lib/ionicons/ionicons/svg/ios-color-palette.svg new file mode 100755 index 0000000..613ccc3 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-color-palette.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-color-wand.svg b/public/assets/lib/ionicons/ionicons/svg/ios-color-wand.svg new file mode 100755 index 0000000..da3de6a --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-color-wand.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-compass.svg b/public/assets/lib/ionicons/ionicons/svg/ios-compass.svg new file mode 100755 index 0000000..9686fc6 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-compass.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-construct.svg b/public/assets/lib/ionicons/ionicons/svg/ios-construct.svg new file mode 100755 index 0000000..ec421ee --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-construct.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-contact.svg b/public/assets/lib/ionicons/ionicons/svg/ios-contact.svg new file mode 100755 index 0000000..50a2c95 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-contact.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-contacts.svg b/public/assets/lib/ionicons/ionicons/svg/ios-contacts.svg new file mode 100755 index 0000000..a1a1b71 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-contacts.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-contract.svg b/public/assets/lib/ionicons/ionicons/svg/ios-contract.svg new file mode 100755 index 0000000..293176e --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-contract.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-contrast.svg b/public/assets/lib/ionicons/ionicons/svg/ios-contrast.svg new file mode 100755 index 0000000..d591047 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-contrast.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-copy.svg b/public/assets/lib/ionicons/ionicons/svg/ios-copy.svg new file mode 100755 index 0000000..0956897 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-copy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-create.svg b/public/assets/lib/ionicons/ionicons/svg/ios-create.svg new file mode 100755 index 0000000..6104993 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-create.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-crop.svg b/public/assets/lib/ionicons/ionicons/svg/ios-crop.svg new file mode 100755 index 0000000..905fed2 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-crop.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-cube.svg b/public/assets/lib/ionicons/ionicons/svg/ios-cube.svg new file mode 100755 index 0000000..1ae3808 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-cube.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-cut.svg b/public/assets/lib/ionicons/ionicons/svg/ios-cut.svg new file mode 100755 index 0000000..44568d0 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-cut.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-desktop.svg b/public/assets/lib/ionicons/ionicons/svg/ios-desktop.svg new file mode 100755 index 0000000..ab02b19 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-desktop.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-disc.svg b/public/assets/lib/ionicons/ionicons/svg/ios-disc.svg new file mode 100755 index 0000000..7e49199 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-disc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-document.svg b/public/assets/lib/ionicons/ionicons/svg/ios-document.svg new file mode 100755 index 0000000..fb3237a --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-document.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-done-all.svg b/public/assets/lib/ionicons/ionicons/svg/ios-done-all.svg new file mode 100755 index 0000000..58d765c --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-done-all.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-download.svg b/public/assets/lib/ionicons/ionicons/svg/ios-download.svg new file mode 100755 index 0000000..9023e7d --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-download.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-easel.svg b/public/assets/lib/ionicons/ionicons/svg/ios-easel.svg new file mode 100755 index 0000000..bed13dd --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-easel.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-egg.svg b/public/assets/lib/ionicons/ionicons/svg/ios-egg.svg new file mode 100755 index 0000000..7d11267 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-egg.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-exit.svg b/public/assets/lib/ionicons/ionicons/svg/ios-exit.svg new file mode 100755 index 0000000..c3fa887 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-exit.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-expand.svg b/public/assets/lib/ionicons/ionicons/svg/ios-expand.svg new file mode 100755 index 0000000..d0c7b19 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-expand.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-eye-off.svg b/public/assets/lib/ionicons/ionicons/svg/ios-eye-off.svg new file mode 100755 index 0000000..e73da8e --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-eye-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-eye.svg b/public/assets/lib/ionicons/ionicons/svg/ios-eye.svg new file mode 100755 index 0000000..5533529 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-eye.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-fastforward.svg b/public/assets/lib/ionicons/ionicons/svg/ios-fastforward.svg new file mode 100755 index 0000000..9ee1827 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-fastforward.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-female.svg b/public/assets/lib/ionicons/ionicons/svg/ios-female.svg new file mode 100755 index 0000000..54f7b92 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-female.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-filing.svg b/public/assets/lib/ionicons/ionicons/svg/ios-filing.svg new file mode 100755 index 0000000..ea721c1 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-filing.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-film.svg b/public/assets/lib/ionicons/ionicons/svg/ios-film.svg new file mode 100755 index 0000000..86cd2b8 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-film.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-finger-print.svg b/public/assets/lib/ionicons/ionicons/svg/ios-finger-print.svg new file mode 100755 index 0000000..697f4f2 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-finger-print.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-fitness.svg b/public/assets/lib/ionicons/ionicons/svg/ios-fitness.svg new file mode 100755 index 0000000..f1802eb --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-fitness.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-flag.svg b/public/assets/lib/ionicons/ionicons/svg/ios-flag.svg new file mode 100755 index 0000000..d6a02f9 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-flag.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-flame.svg b/public/assets/lib/ionicons/ionicons/svg/ios-flame.svg new file mode 100755 index 0000000..2e4524c --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-flame.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-flash-off.svg b/public/assets/lib/ionicons/ionicons/svg/ios-flash-off.svg new file mode 100755 index 0000000..1cddba7 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-flash-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-flash.svg b/public/assets/lib/ionicons/ionicons/svg/ios-flash.svg new file mode 100755 index 0000000..6cc6290 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-flash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-flashlight.svg b/public/assets/lib/ionicons/ionicons/svg/ios-flashlight.svg new file mode 100755 index 0000000..258d80f --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-flashlight.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-flask.svg b/public/assets/lib/ionicons/ionicons/svg/ios-flask.svg new file mode 100755 index 0000000..6f2dee3 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-flask.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-flower.svg b/public/assets/lib/ionicons/ionicons/svg/ios-flower.svg new file mode 100755 index 0000000..ee76010 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-flower.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-folder-open.svg b/public/assets/lib/ionicons/ionicons/svg/ios-folder-open.svg new file mode 100755 index 0000000..912539b --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-folder-open.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-folder.svg b/public/assets/lib/ionicons/ionicons/svg/ios-folder.svg new file mode 100755 index 0000000..628441b --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-folder.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-football.svg b/public/assets/lib/ionicons/ionicons/svg/ios-football.svg new file mode 100755 index 0000000..e32b6d9 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-football.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-funnel.svg b/public/assets/lib/ionicons/ionicons/svg/ios-funnel.svg new file mode 100755 index 0000000..d6692a6 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-funnel.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-gift.svg b/public/assets/lib/ionicons/ionicons/svg/ios-gift.svg new file mode 100755 index 0000000..5956415 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-gift.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-git-branch.svg b/public/assets/lib/ionicons/ionicons/svg/ios-git-branch.svg new file mode 100755 index 0000000..2631ab4 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-git-branch.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-git-commit.svg b/public/assets/lib/ionicons/ionicons/svg/ios-git-commit.svg new file mode 100755 index 0000000..79cbd6b --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-git-commit.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-git-compare.svg b/public/assets/lib/ionicons/ionicons/svg/ios-git-compare.svg new file mode 100755 index 0000000..bc1a394 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-git-compare.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-git-merge.svg b/public/assets/lib/ionicons/ionicons/svg/ios-git-merge.svg new file mode 100755 index 0000000..c3f95c2 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-git-merge.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-git-network.svg b/public/assets/lib/ionicons/ionicons/svg/ios-git-network.svg new file mode 100755 index 0000000..f265506 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-git-network.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-git-pull-request.svg b/public/assets/lib/ionicons/ionicons/svg/ios-git-pull-request.svg new file mode 100755 index 0000000..25338b7 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-git-pull-request.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-glasses.svg b/public/assets/lib/ionicons/ionicons/svg/ios-glasses.svg new file mode 100755 index 0000000..b9b641a --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-glasses.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-globe.svg b/public/assets/lib/ionicons/ionicons/svg/ios-globe.svg new file mode 100755 index 0000000..2b64a6e --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-globe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-grid.svg b/public/assets/lib/ionicons/ionicons/svg/ios-grid.svg new file mode 100755 index 0000000..1060187 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-grid.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-hammer.svg b/public/assets/lib/ionicons/ionicons/svg/ios-hammer.svg new file mode 100755 index 0000000..656b5a2 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-hammer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-hand.svg b/public/assets/lib/ionicons/ionicons/svg/ios-hand.svg new file mode 100755 index 0000000..3310dc1 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-hand.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-happy.svg b/public/assets/lib/ionicons/ionicons/svg/ios-happy.svg new file mode 100755 index 0000000..e447437 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-happy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-headset.svg b/public/assets/lib/ionicons/ionicons/svg/ios-headset.svg new file mode 100755 index 0000000..b16de8e --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-headset.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-heart-dislike.svg b/public/assets/lib/ionicons/ionicons/svg/ios-heart-dislike.svg new file mode 100755 index 0000000..58f54fb --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-heart-dislike.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-heart-empty.svg b/public/assets/lib/ionicons/ionicons/svg/ios-heart-empty.svg new file mode 100755 index 0000000..c14d0d9 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-heart-empty.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-heart-half.svg b/public/assets/lib/ionicons/ionicons/svg/ios-heart-half.svg new file mode 100755 index 0000000..cb01381 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-heart-half.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-heart.svg b/public/assets/lib/ionicons/ionicons/svg/ios-heart.svg new file mode 100755 index 0000000..b890a67 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-heart.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-help-buoy.svg b/public/assets/lib/ionicons/ionicons/svg/ios-help-buoy.svg new file mode 100755 index 0000000..2933efb --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-help-buoy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-help-circle-outline.svg b/public/assets/lib/ionicons/ionicons/svg/ios-help-circle-outline.svg new file mode 100755 index 0000000..7587f83 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-help-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-help-circle.svg b/public/assets/lib/ionicons/ionicons/svg/ios-help-circle.svg new file mode 100755 index 0000000..6f7b114 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-help-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-help.svg b/public/assets/lib/ionicons/ionicons/svg/ios-help.svg new file mode 100755 index 0000000..88065b3 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-help.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-home.svg b/public/assets/lib/ionicons/ionicons/svg/ios-home.svg new file mode 100755 index 0000000..aab2080 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-home.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-hourglass.svg b/public/assets/lib/ionicons/ionicons/svg/ios-hourglass.svg new file mode 100755 index 0000000..5065d80 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-hourglass.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-ice-cream.svg b/public/assets/lib/ionicons/ionicons/svg/ios-ice-cream.svg new file mode 100755 index 0000000..5abeb02 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-ice-cream.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-image.svg b/public/assets/lib/ionicons/ionicons/svg/ios-image.svg new file mode 100755 index 0000000..adc6840 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-image.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-images.svg b/public/assets/lib/ionicons/ionicons/svg/ios-images.svg new file mode 100755 index 0000000..39f2e38 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-images.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-infinite.svg b/public/assets/lib/ionicons/ionicons/svg/ios-infinite.svg new file mode 100755 index 0000000..fb54408 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-infinite.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-information-circle-outline.svg b/public/assets/lib/ionicons/ionicons/svg/ios-information-circle-outline.svg new file mode 100755 index 0000000..10a794c --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-information-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-information-circle.svg b/public/assets/lib/ionicons/ionicons/svg/ios-information-circle.svg new file mode 100755 index 0000000..f7fb292 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-information-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-information.svg b/public/assets/lib/ionicons/ionicons/svg/ios-information.svg new file mode 100755 index 0000000..31a3528 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-information.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-jet.svg b/public/assets/lib/ionicons/ionicons/svg/ios-jet.svg new file mode 100755 index 0000000..9c9d5ff --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-jet.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-journal.svg b/public/assets/lib/ionicons/ionicons/svg/ios-journal.svg new file mode 100755 index 0000000..5e698fd --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-journal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-key.svg b/public/assets/lib/ionicons/ionicons/svg/ios-key.svg new file mode 100755 index 0000000..c0420e7 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-key.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-keypad.svg b/public/assets/lib/ionicons/ionicons/svg/ios-keypad.svg new file mode 100755 index 0000000..7991d61 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-keypad.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-laptop.svg b/public/assets/lib/ionicons/ionicons/svg/ios-laptop.svg new file mode 100755 index 0000000..bfb360b --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-laptop.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-leaf.svg b/public/assets/lib/ionicons/ionicons/svg/ios-leaf.svg new file mode 100755 index 0000000..813fe86 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-leaf.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-link.svg b/public/assets/lib/ionicons/ionicons/svg/ios-link.svg new file mode 100755 index 0000000..a0c14bc --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-link.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-list-box.svg b/public/assets/lib/ionicons/ionicons/svg/ios-list-box.svg new file mode 100755 index 0000000..78eeb84 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-list-box.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-list.svg b/public/assets/lib/ionicons/ionicons/svg/ios-list.svg new file mode 100755 index 0000000..46de590 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-list.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-locate.svg b/public/assets/lib/ionicons/ionicons/svg/ios-locate.svg new file mode 100755 index 0000000..fcbd77e --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-locate.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-lock.svg b/public/assets/lib/ionicons/ionicons/svg/ios-lock.svg new file mode 100755 index 0000000..c3646bd --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-lock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-log-in.svg b/public/assets/lib/ionicons/ionicons/svg/ios-log-in.svg new file mode 100755 index 0000000..6944782 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-log-in.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-log-out.svg b/public/assets/lib/ionicons/ionicons/svg/ios-log-out.svg new file mode 100755 index 0000000..92a380f --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-log-out.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-magnet.svg b/public/assets/lib/ionicons/ionicons/svg/ios-magnet.svg new file mode 100755 index 0000000..0358666 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-magnet.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-mail-open.svg b/public/assets/lib/ionicons/ionicons/svg/ios-mail-open.svg new file mode 100755 index 0000000..5ea25ed --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-mail-open.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-mail-unread.svg b/public/assets/lib/ionicons/ionicons/svg/ios-mail-unread.svg new file mode 100755 index 0000000..3ab87e6 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-mail-unread.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-mail.svg b/public/assets/lib/ionicons/ionicons/svg/ios-mail.svg new file mode 100755 index 0000000..baeed04 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-mail.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-male.svg b/public/assets/lib/ionicons/ionicons/svg/ios-male.svg new file mode 100755 index 0000000..ea82cf6 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-male.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-man.svg b/public/assets/lib/ionicons/ionicons/svg/ios-man.svg new file mode 100755 index 0000000..1c30cc4 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-man.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-map.svg b/public/assets/lib/ionicons/ionicons/svg/ios-map.svg new file mode 100755 index 0000000..4f69e45 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-map.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-medal.svg b/public/assets/lib/ionicons/ionicons/svg/ios-medal.svg new file mode 100755 index 0000000..1a472cc --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-medal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-medical.svg b/public/assets/lib/ionicons/ionicons/svg/ios-medical.svg new file mode 100755 index 0000000..4f23397 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-medical.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-medkit.svg b/public/assets/lib/ionicons/ionicons/svg/ios-medkit.svg new file mode 100755 index 0000000..69d9f92 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-medkit.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-megaphone.svg b/public/assets/lib/ionicons/ionicons/svg/ios-megaphone.svg new file mode 100755 index 0000000..5e370d8 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-megaphone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-menu.svg b/public/assets/lib/ionicons/ionicons/svg/ios-menu.svg new file mode 100755 index 0000000..1b005ed --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-menu.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-mic-off.svg b/public/assets/lib/ionicons/ionicons/svg/ios-mic-off.svg new file mode 100755 index 0000000..6148d3e --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-mic-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-mic.svg b/public/assets/lib/ionicons/ionicons/svg/ios-mic.svg new file mode 100755 index 0000000..319dca8 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-mic.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-microphone.svg b/public/assets/lib/ionicons/ionicons/svg/ios-microphone.svg new file mode 100755 index 0000000..c108ad8 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-microphone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-moon.svg b/public/assets/lib/ionicons/ionicons/svg/ios-moon.svg new file mode 100755 index 0000000..56e26a6 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-moon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-more.svg b/public/assets/lib/ionicons/ionicons/svg/ios-more.svg new file mode 100755 index 0000000..b34de47 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-more.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-move.svg b/public/assets/lib/ionicons/ionicons/svg/ios-move.svg new file mode 100755 index 0000000..1f78523 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-move.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-musical-note.svg b/public/assets/lib/ionicons/ionicons/svg/ios-musical-note.svg new file mode 100755 index 0000000..13e42c8 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-musical-note.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-musical-notes.svg b/public/assets/lib/ionicons/ionicons/svg/ios-musical-notes.svg new file mode 100755 index 0000000..aba0726 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-musical-notes.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-navigate.svg b/public/assets/lib/ionicons/ionicons/svg/ios-navigate.svg new file mode 100755 index 0000000..7859b5d --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-navigate.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-notifications-off.svg b/public/assets/lib/ionicons/ionicons/svg/ios-notifications-off.svg new file mode 100755 index 0000000..6fd6b26 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-notifications-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-notifications-outline.svg b/public/assets/lib/ionicons/ionicons/svg/ios-notifications-outline.svg new file mode 100755 index 0000000..13e2ce4 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-notifications-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-notifications.svg b/public/assets/lib/ionicons/ionicons/svg/ios-notifications.svg new file mode 100755 index 0000000..398b684 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-notifications.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-nuclear.svg b/public/assets/lib/ionicons/ionicons/svg/ios-nuclear.svg new file mode 100755 index 0000000..62a0cb8 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-nuclear.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-nutrition.svg b/public/assets/lib/ionicons/ionicons/svg/ios-nutrition.svg new file mode 100755 index 0000000..d710358 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-nutrition.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-open.svg b/public/assets/lib/ionicons/ionicons/svg/ios-open.svg new file mode 100755 index 0000000..f713027 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-open.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-options.svg b/public/assets/lib/ionicons/ionicons/svg/ios-options.svg new file mode 100755 index 0000000..448ba83 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-options.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-outlet.svg b/public/assets/lib/ionicons/ionicons/svg/ios-outlet.svg new file mode 100755 index 0000000..dd8ec17 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-outlet.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-paper-plane.svg b/public/assets/lib/ionicons/ionicons/svg/ios-paper-plane.svg new file mode 100755 index 0000000..e9a3ad1 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-paper-plane.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-paper.svg b/public/assets/lib/ionicons/ionicons/svg/ios-paper.svg new file mode 100755 index 0000000..9017fc4 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-paper.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-partly-sunny.svg b/public/assets/lib/ionicons/ionicons/svg/ios-partly-sunny.svg new file mode 100755 index 0000000..3b28809 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-partly-sunny.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-pause.svg b/public/assets/lib/ionicons/ionicons/svg/ios-pause.svg new file mode 100755 index 0000000..b110aff --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-pause.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-paw.svg b/public/assets/lib/ionicons/ionicons/svg/ios-paw.svg new file mode 100755 index 0000000..3eee81d --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-paw.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-people.svg b/public/assets/lib/ionicons/ionicons/svg/ios-people.svg new file mode 100755 index 0000000..ae6c4cd --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-people.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-person-add.svg b/public/assets/lib/ionicons/ionicons/svg/ios-person-add.svg new file mode 100755 index 0000000..f125ba4 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-person-add.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-person.svg b/public/assets/lib/ionicons/ionicons/svg/ios-person.svg new file mode 100755 index 0000000..49824c6 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-person.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-phone-landscape.svg b/public/assets/lib/ionicons/ionicons/svg/ios-phone-landscape.svg new file mode 100755 index 0000000..6794eb5 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-phone-landscape.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-phone-portrait.svg b/public/assets/lib/ionicons/ionicons/svg/ios-phone-portrait.svg new file mode 100755 index 0000000..4f8a6a1 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-phone-portrait.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-photos.svg b/public/assets/lib/ionicons/ionicons/svg/ios-photos.svg new file mode 100755 index 0000000..462d0f0 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-photos.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-pie.svg b/public/assets/lib/ionicons/ionicons/svg/ios-pie.svg new file mode 100755 index 0000000..48eadb9 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-pie.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-pin.svg b/public/assets/lib/ionicons/ionicons/svg/ios-pin.svg new file mode 100755 index 0000000..5afa889 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-pin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-pint.svg b/public/assets/lib/ionicons/ionicons/svg/ios-pint.svg new file mode 100755 index 0000000..e8a8287 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-pint.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-pizza.svg b/public/assets/lib/ionicons/ionicons/svg/ios-pizza.svg new file mode 100755 index 0000000..09d375c --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-pizza.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-planet.svg b/public/assets/lib/ionicons/ionicons/svg/ios-planet.svg new file mode 100755 index 0000000..eead09f --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-planet.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-play-circle.svg b/public/assets/lib/ionicons/ionicons/svg/ios-play-circle.svg new file mode 100755 index 0000000..894d0b4 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-play-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-play.svg b/public/assets/lib/ionicons/ionicons/svg/ios-play.svg new file mode 100755 index 0000000..d0f0110 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-play.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-podium.svg b/public/assets/lib/ionicons/ionicons/svg/ios-podium.svg new file mode 100755 index 0000000..8624a51 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-podium.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-power.svg b/public/assets/lib/ionicons/ionicons/svg/ios-power.svg new file mode 100755 index 0000000..48debf3 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-power.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-pricetag.svg b/public/assets/lib/ionicons/ionicons/svg/ios-pricetag.svg new file mode 100755 index 0000000..63edb7b --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-pricetag.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-pricetags.svg b/public/assets/lib/ionicons/ionicons/svg/ios-pricetags.svg new file mode 100755 index 0000000..c8fc420 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-pricetags.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-print.svg b/public/assets/lib/ionicons/ionicons/svg/ios-print.svg new file mode 100755 index 0000000..61f3814 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-print.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-pulse.svg b/public/assets/lib/ionicons/ionicons/svg/ios-pulse.svg new file mode 100755 index 0000000..6663e77 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-pulse.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-qr-scanner.svg b/public/assets/lib/ionicons/ionicons/svg/ios-qr-scanner.svg new file mode 100755 index 0000000..ab1a51e --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-qr-scanner.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-quote.svg b/public/assets/lib/ionicons/ionicons/svg/ios-quote.svg new file mode 100755 index 0000000..9a4327e --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-quote.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-radio-button-off.svg b/public/assets/lib/ionicons/ionicons/svg/ios-radio-button-off.svg new file mode 100755 index 0000000..7a3dc70 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-radio-button-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-radio-button-on.svg b/public/assets/lib/ionicons/ionicons/svg/ios-radio-button-on.svg new file mode 100755 index 0000000..b0b138d --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-radio-button-on.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-radio.svg b/public/assets/lib/ionicons/ionicons/svg/ios-radio.svg new file mode 100755 index 0000000..be95087 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-radio.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-rainy.svg b/public/assets/lib/ionicons/ionicons/svg/ios-rainy.svg new file mode 100755 index 0000000..d34352a --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-rainy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-recording.svg b/public/assets/lib/ionicons/ionicons/svg/ios-recording.svg new file mode 100755 index 0000000..d1aec0f --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-recording.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-redo.svg b/public/assets/lib/ionicons/ionicons/svg/ios-redo.svg new file mode 100755 index 0000000..a1fa5dc --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-redo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-refresh-circle.svg b/public/assets/lib/ionicons/ionicons/svg/ios-refresh-circle.svg new file mode 100755 index 0000000..538de23 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-refresh-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-refresh.svg b/public/assets/lib/ionicons/ionicons/svg/ios-refresh.svg new file mode 100755 index 0000000..af1c931 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-refresh.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-remove-circle-outline.svg b/public/assets/lib/ionicons/ionicons/svg/ios-remove-circle-outline.svg new file mode 100755 index 0000000..0e62fc8 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-remove-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-remove-circle.svg b/public/assets/lib/ionicons/ionicons/svg/ios-remove-circle.svg new file mode 100755 index 0000000..e8234ed --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-remove-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-remove.svg b/public/assets/lib/ionicons/ionicons/svg/ios-remove.svg new file mode 100755 index 0000000..e25ce1a --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-remove.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-reorder.svg b/public/assets/lib/ionicons/ionicons/svg/ios-reorder.svg new file mode 100755 index 0000000..c3f0686 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-reorder.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-repeat.svg b/public/assets/lib/ionicons/ionicons/svg/ios-repeat.svg new file mode 100755 index 0000000..6e13b51 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-repeat.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-resize.svg b/public/assets/lib/ionicons/ionicons/svg/ios-resize.svg new file mode 100755 index 0000000..fc79155 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-resize.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-restaurant.svg b/public/assets/lib/ionicons/ionicons/svg/ios-restaurant.svg new file mode 100755 index 0000000..bb7172d --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-restaurant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-return-left.svg b/public/assets/lib/ionicons/ionicons/svg/ios-return-left.svg new file mode 100755 index 0000000..3decff9 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-return-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-return-right.svg b/public/assets/lib/ionicons/ionicons/svg/ios-return-right.svg new file mode 100755 index 0000000..9a26661 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-return-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-reverse-camera.svg b/public/assets/lib/ionicons/ionicons/svg/ios-reverse-camera.svg new file mode 100755 index 0000000..3b7fedd --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-reverse-camera.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-rewind.svg b/public/assets/lib/ionicons/ionicons/svg/ios-rewind.svg new file mode 100755 index 0000000..5a2e44a --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-rewind.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-ribbon.svg b/public/assets/lib/ionicons/ionicons/svg/ios-ribbon.svg new file mode 100755 index 0000000..58a98b5 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-ribbon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-rocket.svg b/public/assets/lib/ionicons/ionicons/svg/ios-rocket.svg new file mode 100755 index 0000000..45d70af --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-rocket.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-rose.svg b/public/assets/lib/ionicons/ionicons/svg/ios-rose.svg new file mode 100755 index 0000000..ff49bd4 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-rose.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-sad.svg b/public/assets/lib/ionicons/ionicons/svg/ios-sad.svg new file mode 100755 index 0000000..a87f3fa --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-sad.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-save.svg b/public/assets/lib/ionicons/ionicons/svg/ios-save.svg new file mode 100755 index 0000000..eb3421b --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-save.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-school.svg b/public/assets/lib/ionicons/ionicons/svg/ios-school.svg new file mode 100755 index 0000000..e0f7d5e --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-school.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-search.svg b/public/assets/lib/ionicons/ionicons/svg/ios-search.svg new file mode 100755 index 0000000..08e3142 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-search.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-send.svg b/public/assets/lib/ionicons/ionicons/svg/ios-send.svg new file mode 100755 index 0000000..1f2c1ba --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-send.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-settings.svg b/public/assets/lib/ionicons/ionicons/svg/ios-settings.svg new file mode 100755 index 0000000..7542495 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-settings.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-share-alt.svg b/public/assets/lib/ionicons/ionicons/svg/ios-share-alt.svg new file mode 100755 index 0000000..dda0a5f --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-share-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-share.svg b/public/assets/lib/ionicons/ionicons/svg/ios-share.svg new file mode 100755 index 0000000..2eff09f --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-share.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-shirt.svg b/public/assets/lib/ionicons/ionicons/svg/ios-shirt.svg new file mode 100755 index 0000000..a9c9f66 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-shirt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-shuffle.svg b/public/assets/lib/ionicons/ionicons/svg/ios-shuffle.svg new file mode 100755 index 0000000..ffcdc62 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-shuffle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-skip-backward.svg b/public/assets/lib/ionicons/ionicons/svg/ios-skip-backward.svg new file mode 100755 index 0000000..363de6c --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-skip-backward.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-skip-forward.svg b/public/assets/lib/ionicons/ionicons/svg/ios-skip-forward.svg new file mode 100755 index 0000000..e478834 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-skip-forward.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-snow.svg b/public/assets/lib/ionicons/ionicons/svg/ios-snow.svg new file mode 100755 index 0000000..ccf1161 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-snow.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-speedometer.svg b/public/assets/lib/ionicons/ionicons/svg/ios-speedometer.svg new file mode 100755 index 0000000..d16c4ff --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-speedometer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-square-outline.svg b/public/assets/lib/ionicons/ionicons/svg/ios-square-outline.svg new file mode 100755 index 0000000..60e38a2 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-square-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-square.svg b/public/assets/lib/ionicons/ionicons/svg/ios-square.svg new file mode 100755 index 0000000..ad89728 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-star-half.svg b/public/assets/lib/ionicons/ionicons/svg/ios-star-half.svg new file mode 100755 index 0000000..9a953e0 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-star-half.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-star-outline.svg b/public/assets/lib/ionicons/ionicons/svg/ios-star-outline.svg new file mode 100755 index 0000000..241e4d0 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-star-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-star.svg b/public/assets/lib/ionicons/ionicons/svg/ios-star.svg new file mode 100755 index 0000000..b190c67 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-star.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-stats.svg b/public/assets/lib/ionicons/ionicons/svg/ios-stats.svg new file mode 100755 index 0000000..0abb9c2 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-stats.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-stopwatch.svg b/public/assets/lib/ionicons/ionicons/svg/ios-stopwatch.svg new file mode 100755 index 0000000..5cbfb9e --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-stopwatch.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-subway.svg b/public/assets/lib/ionicons/ionicons/svg/ios-subway.svg new file mode 100755 index 0000000..af4a476 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-subway.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-sunny.svg b/public/assets/lib/ionicons/ionicons/svg/ios-sunny.svg new file mode 100755 index 0000000..a585aff --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-sunny.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-swap.svg b/public/assets/lib/ionicons/ionicons/svg/ios-swap.svg new file mode 100755 index 0000000..b602db7 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-swap.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-switch.svg b/public/assets/lib/ionicons/ionicons/svg/ios-switch.svg new file mode 100755 index 0000000..f161e6a --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-switch.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-sync.svg b/public/assets/lib/ionicons/ionicons/svg/ios-sync.svg new file mode 100755 index 0000000..be31138 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-sync.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-tablet-landscape.svg b/public/assets/lib/ionicons/ionicons/svg/ios-tablet-landscape.svg new file mode 100755 index 0000000..9ecd3a8 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-tablet-landscape.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-tablet-portrait.svg b/public/assets/lib/ionicons/ionicons/svg/ios-tablet-portrait.svg new file mode 100755 index 0000000..64de392 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-tablet-portrait.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-tennisball.svg b/public/assets/lib/ionicons/ionicons/svg/ios-tennisball.svg new file mode 100755 index 0000000..acf0197 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-tennisball.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-text.svg b/public/assets/lib/ionicons/ionicons/svg/ios-text.svg new file mode 100755 index 0000000..7c228d9 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-text.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-thermometer.svg b/public/assets/lib/ionicons/ionicons/svg/ios-thermometer.svg new file mode 100755 index 0000000..044e4ac --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-thermometer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-thumbs-down.svg b/public/assets/lib/ionicons/ionicons/svg/ios-thumbs-down.svg new file mode 100755 index 0000000..4203869 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-thumbs-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-thumbs-up.svg b/public/assets/lib/ionicons/ionicons/svg/ios-thumbs-up.svg new file mode 100755 index 0000000..8e7b615 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-thumbs-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-thunderstorm.svg b/public/assets/lib/ionicons/ionicons/svg/ios-thunderstorm.svg new file mode 100755 index 0000000..2001589 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-thunderstorm.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-time.svg b/public/assets/lib/ionicons/ionicons/svg/ios-time.svg new file mode 100755 index 0000000..90aeb21 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-time.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-timer.svg b/public/assets/lib/ionicons/ionicons/svg/ios-timer.svg new file mode 100755 index 0000000..b2110a7 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-timer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-today.svg b/public/assets/lib/ionicons/ionicons/svg/ios-today.svg new file mode 100755 index 0000000..0e60ac4 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-today.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-train.svg b/public/assets/lib/ionicons/ionicons/svg/ios-train.svg new file mode 100755 index 0000000..fb560c8 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-train.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-transgender.svg b/public/assets/lib/ionicons/ionicons/svg/ios-transgender.svg new file mode 100755 index 0000000..3116f70 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-transgender.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-trash.svg b/public/assets/lib/ionicons/ionicons/svg/ios-trash.svg new file mode 100755 index 0000000..7b5fc1b --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-trash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-trending-down.svg b/public/assets/lib/ionicons/ionicons/svg/ios-trending-down.svg new file mode 100755 index 0000000..81a86b1 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-trending-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-trending-up.svg b/public/assets/lib/ionicons/ionicons/svg/ios-trending-up.svg new file mode 100755 index 0000000..504e5ae --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-trending-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-trophy.svg b/public/assets/lib/ionicons/ionicons/svg/ios-trophy.svg new file mode 100755 index 0000000..4ca2c59 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-trophy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-tv.svg b/public/assets/lib/ionicons/ionicons/svg/ios-tv.svg new file mode 100755 index 0000000..b0a11b5 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-tv.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-umbrella.svg b/public/assets/lib/ionicons/ionicons/svg/ios-umbrella.svg new file mode 100755 index 0000000..9f44701 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-umbrella.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-undo.svg b/public/assets/lib/ionicons/ionicons/svg/ios-undo.svg new file mode 100755 index 0000000..69ada1f --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-undo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-unlock.svg b/public/assets/lib/ionicons/ionicons/svg/ios-unlock.svg new file mode 100755 index 0000000..589905c --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-unlock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-videocam.svg b/public/assets/lib/ionicons/ionicons/svg/ios-videocam.svg new file mode 100755 index 0000000..4902c46 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-videocam.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-volume-high.svg b/public/assets/lib/ionicons/ionicons/svg/ios-volume-high.svg new file mode 100755 index 0000000..4c592aa --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-volume-high.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-volume-low.svg b/public/assets/lib/ionicons/ionicons/svg/ios-volume-low.svg new file mode 100755 index 0000000..3d35049 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-volume-low.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-volume-mute.svg b/public/assets/lib/ionicons/ionicons/svg/ios-volume-mute.svg new file mode 100755 index 0000000..a8195dc --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-volume-mute.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-volume-off.svg b/public/assets/lib/ionicons/ionicons/svg/ios-volume-off.svg new file mode 100755 index 0000000..8dc405b --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-volume-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-walk.svg b/public/assets/lib/ionicons/ionicons/svg/ios-walk.svg new file mode 100755 index 0000000..4ca44ee --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-walk.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-wallet.svg b/public/assets/lib/ionicons/ionicons/svg/ios-wallet.svg new file mode 100755 index 0000000..ae2d84d --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-wallet.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-warning.svg b/public/assets/lib/ionicons/ionicons/svg/ios-warning.svg new file mode 100755 index 0000000..693460a --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-warning.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-watch.svg b/public/assets/lib/ionicons/ionicons/svg/ios-watch.svg new file mode 100755 index 0000000..95e755f --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-watch.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-water.svg b/public/assets/lib/ionicons/ionicons/svg/ios-water.svg new file mode 100755 index 0000000..b5c5b88 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-water.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-wifi.svg b/public/assets/lib/ionicons/ionicons/svg/ios-wifi.svg new file mode 100755 index 0000000..bb4b1a7 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-wifi.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-wine.svg b/public/assets/lib/ionicons/ionicons/svg/ios-wine.svg new file mode 100755 index 0000000..8dff790 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-wine.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/ios-woman.svg b/public/assets/lib/ionicons/ionicons/svg/ios-woman.svg new file mode 100755 index 0000000..be998ed --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/ios-woman.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/logo-android.svg b/public/assets/lib/ionicons/ionicons/svg/logo-android.svg new file mode 100755 index 0000000..4d8da82 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/logo-android.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/logo-angular.svg b/public/assets/lib/ionicons/ionicons/svg/logo-angular.svg new file mode 100755 index 0000000..78b721c --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/logo-angular.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/logo-apple.svg b/public/assets/lib/ionicons/ionicons/svg/logo-apple.svg new file mode 100755 index 0000000..4e2d15f --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/logo-apple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/logo-bitbucket.svg b/public/assets/lib/ionicons/ionicons/svg/logo-bitbucket.svg new file mode 100755 index 0000000..7a829ad --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/logo-bitbucket.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/logo-bitcoin.svg b/public/assets/lib/ionicons/ionicons/svg/logo-bitcoin.svg new file mode 100755 index 0000000..4ff0d36 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/logo-bitcoin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/logo-buffer.svg b/public/assets/lib/ionicons/ionicons/svg/logo-buffer.svg new file mode 100755 index 0000000..28627e8 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/logo-buffer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/logo-chrome.svg b/public/assets/lib/ionicons/ionicons/svg/logo-chrome.svg new file mode 100755 index 0000000..46f267c --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/logo-chrome.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/logo-closed-captioning.svg b/public/assets/lib/ionicons/ionicons/svg/logo-closed-captioning.svg new file mode 100755 index 0000000..0eb6e33 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/logo-closed-captioning.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/logo-codepen.svg b/public/assets/lib/ionicons/ionicons/svg/logo-codepen.svg new file mode 100755 index 0000000..7e27fac --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/logo-codepen.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/logo-css3.svg b/public/assets/lib/ionicons/ionicons/svg/logo-css3.svg new file mode 100755 index 0000000..789b469 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/logo-css3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/logo-designernews.svg b/public/assets/lib/ionicons/ionicons/svg/logo-designernews.svg new file mode 100755 index 0000000..1cc24ef --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/logo-designernews.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/logo-dribbble.svg b/public/assets/lib/ionicons/ionicons/svg/logo-dribbble.svg new file mode 100755 index 0000000..f8d5361 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/logo-dribbble.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/logo-dropbox.svg b/public/assets/lib/ionicons/ionicons/svg/logo-dropbox.svg new file mode 100755 index 0000000..564e2b5 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/logo-dropbox.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/logo-euro.svg b/public/assets/lib/ionicons/ionicons/svg/logo-euro.svg new file mode 100755 index 0000000..ec93afa --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/logo-euro.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/logo-facebook.svg b/public/assets/lib/ionicons/ionicons/svg/logo-facebook.svg new file mode 100755 index 0000000..f3366f0 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/logo-facebook.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/logo-flickr.svg b/public/assets/lib/ionicons/ionicons/svg/logo-flickr.svg new file mode 100755 index 0000000..e97b179 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/logo-flickr.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/logo-foursquare.svg b/public/assets/lib/ionicons/ionicons/svg/logo-foursquare.svg new file mode 100755 index 0000000..ce3aff3 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/logo-foursquare.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/logo-freebsd-devil.svg b/public/assets/lib/ionicons/ionicons/svg/logo-freebsd-devil.svg new file mode 100755 index 0000000..0aa045d --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/logo-freebsd-devil.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/logo-game-controller-a.svg b/public/assets/lib/ionicons/ionicons/svg/logo-game-controller-a.svg new file mode 100755 index 0000000..6a9eda4 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/logo-game-controller-a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/logo-game-controller-b.svg b/public/assets/lib/ionicons/ionicons/svg/logo-game-controller-b.svg new file mode 100755 index 0000000..054ed35 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/logo-game-controller-b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/logo-github.svg b/public/assets/lib/ionicons/ionicons/svg/logo-github.svg new file mode 100755 index 0000000..7078569 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/logo-github.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/logo-google.svg b/public/assets/lib/ionicons/ionicons/svg/logo-google.svg new file mode 100755 index 0000000..62fdb5a --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/logo-google.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/logo-googleplus.svg b/public/assets/lib/ionicons/ionicons/svg/logo-googleplus.svg new file mode 100755 index 0000000..fad4987 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/logo-googleplus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/logo-hackernews.svg b/public/assets/lib/ionicons/ionicons/svg/logo-hackernews.svg new file mode 100755 index 0000000..22d0b4d --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/logo-hackernews.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/logo-html5.svg b/public/assets/lib/ionicons/ionicons/svg/logo-html5.svg new file mode 100755 index 0000000..aaa471c --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/logo-html5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/logo-instagram.svg b/public/assets/lib/ionicons/ionicons/svg/logo-instagram.svg new file mode 100755 index 0000000..1f8448c --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/logo-instagram.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/logo-ionic.svg b/public/assets/lib/ionicons/ionicons/svg/logo-ionic.svg new file mode 100755 index 0000000..2267dc8 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/logo-ionic.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/logo-ionitron.svg b/public/assets/lib/ionicons/ionicons/svg/logo-ionitron.svg new file mode 100755 index 0000000..7d96a7b --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/logo-ionitron.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/logo-javascript.svg b/public/assets/lib/ionicons/ionicons/svg/logo-javascript.svg new file mode 100755 index 0000000..1eaca16 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/logo-javascript.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/logo-linkedin.svg b/public/assets/lib/ionicons/ionicons/svg/logo-linkedin.svg new file mode 100755 index 0000000..1d1193f --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/logo-linkedin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/logo-markdown.svg b/public/assets/lib/ionicons/ionicons/svg/logo-markdown.svg new file mode 100755 index 0000000..b9880e7 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/logo-markdown.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/logo-model-s.svg b/public/assets/lib/ionicons/ionicons/svg/logo-model-s.svg new file mode 100755 index 0000000..65401da --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/logo-model-s.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/logo-no-smoking.svg b/public/assets/lib/ionicons/ionicons/svg/logo-no-smoking.svg new file mode 100755 index 0000000..bf99aad --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/logo-no-smoking.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/logo-nodejs.svg b/public/assets/lib/ionicons/ionicons/svg/logo-nodejs.svg new file mode 100755 index 0000000..f796e5d --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/logo-nodejs.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/logo-npm.svg b/public/assets/lib/ionicons/ionicons/svg/logo-npm.svg new file mode 100755 index 0000000..bb0ed3d --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/logo-npm.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/logo-octocat.svg b/public/assets/lib/ionicons/ionicons/svg/logo-octocat.svg new file mode 100755 index 0000000..89788f6 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/logo-octocat.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/logo-pinterest.svg b/public/assets/lib/ionicons/ionicons/svg/logo-pinterest.svg new file mode 100755 index 0000000..47ee181 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/logo-pinterest.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/logo-playstation.svg b/public/assets/lib/ionicons/ionicons/svg/logo-playstation.svg new file mode 100755 index 0000000..819fcf4 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/logo-playstation.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/logo-polymer.svg b/public/assets/lib/ionicons/ionicons/svg/logo-polymer.svg new file mode 100755 index 0000000..e7d0dd6 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/logo-polymer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/logo-python.svg b/public/assets/lib/ionicons/ionicons/svg/logo-python.svg new file mode 100755 index 0000000..ad45530 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/logo-python.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/logo-reddit.svg b/public/assets/lib/ionicons/ionicons/svg/logo-reddit.svg new file mode 100755 index 0000000..cdc2db7 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/logo-reddit.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/logo-rss.svg b/public/assets/lib/ionicons/ionicons/svg/logo-rss.svg new file mode 100755 index 0000000..0a9a9cd --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/logo-rss.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/logo-sass.svg b/public/assets/lib/ionicons/ionicons/svg/logo-sass.svg new file mode 100755 index 0000000..30082e9 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/logo-sass.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/logo-skype.svg b/public/assets/lib/ionicons/ionicons/svg/logo-skype.svg new file mode 100755 index 0000000..e119d18 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/logo-skype.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/logo-slack.svg b/public/assets/lib/ionicons/ionicons/svg/logo-slack.svg new file mode 100755 index 0000000..e5187a4 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/logo-slack.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/logo-snapchat.svg b/public/assets/lib/ionicons/ionicons/svg/logo-snapchat.svg new file mode 100755 index 0000000..90f9b4e --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/logo-snapchat.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/logo-steam.svg b/public/assets/lib/ionicons/ionicons/svg/logo-steam.svg new file mode 100755 index 0000000..c6e8195 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/logo-steam.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/logo-tumblr.svg b/public/assets/lib/ionicons/ionicons/svg/logo-tumblr.svg new file mode 100755 index 0000000..c249ad6 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/logo-tumblr.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/logo-tux.svg b/public/assets/lib/ionicons/ionicons/svg/logo-tux.svg new file mode 100755 index 0000000..a80cc3f --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/logo-tux.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/logo-twitch.svg b/public/assets/lib/ionicons/ionicons/svg/logo-twitch.svg new file mode 100755 index 0000000..259225a --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/logo-twitch.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/logo-twitter.svg b/public/assets/lib/ionicons/ionicons/svg/logo-twitter.svg new file mode 100755 index 0000000..50a3c35 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/logo-twitter.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/logo-usd.svg b/public/assets/lib/ionicons/ionicons/svg/logo-usd.svg new file mode 100755 index 0000000..a6507e4 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/logo-usd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/logo-vimeo.svg b/public/assets/lib/ionicons/ionicons/svg/logo-vimeo.svg new file mode 100755 index 0000000..91f6992 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/logo-vimeo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/logo-vk.svg b/public/assets/lib/ionicons/ionicons/svg/logo-vk.svg new file mode 100755 index 0000000..6202093 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/logo-vk.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/logo-whatsapp.svg b/public/assets/lib/ionicons/ionicons/svg/logo-whatsapp.svg new file mode 100755 index 0000000..270774d --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/logo-whatsapp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/logo-windows.svg b/public/assets/lib/ionicons/ionicons/svg/logo-windows.svg new file mode 100755 index 0000000..1c66e95 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/logo-windows.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/logo-wordpress.svg b/public/assets/lib/ionicons/ionicons/svg/logo-wordpress.svg new file mode 100755 index 0000000..af460ce --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/logo-wordpress.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/logo-xbox.svg b/public/assets/lib/ionicons/ionicons/svg/logo-xbox.svg new file mode 100755 index 0000000..6f7f942 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/logo-xbox.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/logo-xing.svg b/public/assets/lib/ionicons/ionicons/svg/logo-xing.svg new file mode 100755 index 0000000..2aa1146 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/logo-xing.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/logo-yahoo.svg b/public/assets/lib/ionicons/ionicons/svg/logo-yahoo.svg new file mode 100755 index 0000000..3b29a9a --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/logo-yahoo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/logo-yen.svg b/public/assets/lib/ionicons/ionicons/svg/logo-yen.svg new file mode 100755 index 0000000..8e35349 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/logo-yen.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/logo-youtube.svg b/public/assets/lib/ionicons/ionicons/svg/logo-youtube.svg new file mode 100755 index 0000000..3440999 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/logo-youtube.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-add-circle-outline.svg b/public/assets/lib/ionicons/ionicons/svg/md-add-circle-outline.svg new file mode 100755 index 0000000..f9eb075 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-add-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-add-circle.svg b/public/assets/lib/ionicons/ionicons/svg/md-add-circle.svg new file mode 100755 index 0000000..d74e8ca --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-add-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-add.svg b/public/assets/lib/ionicons/ionicons/svg/md-add.svg new file mode 100755 index 0000000..00ffc63 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-add.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-airplane.svg b/public/assets/lib/ionicons/ionicons/svg/md-airplane.svg new file mode 100755 index 0000000..1b13a6c --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-airplane.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-alarm.svg b/public/assets/lib/ionicons/ionicons/svg/md-alarm.svg new file mode 100755 index 0000000..fb62135 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-alarm.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-albums.svg b/public/assets/lib/ionicons/ionicons/svg/md-albums.svg new file mode 100755 index 0000000..6c5b630 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-albums.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-alert.svg b/public/assets/lib/ionicons/ionicons/svg/md-alert.svg new file mode 100755 index 0000000..70bf707 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-alert.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-american-football.svg b/public/assets/lib/ionicons/ionicons/svg/md-american-football.svg new file mode 100755 index 0000000..a80db1a --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-american-football.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-analytics.svg b/public/assets/lib/ionicons/ionicons/svg/md-analytics.svg new file mode 100755 index 0000000..f5a9d39 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-analytics.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-aperture.svg b/public/assets/lib/ionicons/ionicons/svg/md-aperture.svg new file mode 100755 index 0000000..ce53eb4 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-aperture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-apps.svg b/public/assets/lib/ionicons/ionicons/svg/md-apps.svg new file mode 100755 index 0000000..ae1d4bd --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-apps.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-appstore.svg b/public/assets/lib/ionicons/ionicons/svg/md-appstore.svg new file mode 100755 index 0000000..6ecd144 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-appstore.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-archive.svg b/public/assets/lib/ionicons/ionicons/svg/md-archive.svg new file mode 100755 index 0000000..c4a5341 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-archive.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-arrow-back.svg b/public/assets/lib/ionicons/ionicons/svg/md-arrow-back.svg new file mode 100755 index 0000000..3647bff --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-arrow-back.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-arrow-down.svg b/public/assets/lib/ionicons/ionicons/svg/md-arrow-down.svg new file mode 100755 index 0000000..1dd60b8 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-arrow-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-arrow-dropdown-circle.svg b/public/assets/lib/ionicons/ionicons/svg/md-arrow-dropdown-circle.svg new file mode 100755 index 0000000..7e61ac3 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-arrow-dropdown-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-arrow-dropdown.svg b/public/assets/lib/ionicons/ionicons/svg/md-arrow-dropdown.svg new file mode 100755 index 0000000..a2207e0 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-arrow-dropdown.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-arrow-dropleft-circle.svg b/public/assets/lib/ionicons/ionicons/svg/md-arrow-dropleft-circle.svg new file mode 100755 index 0000000..8d2a19e --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-arrow-dropleft-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-arrow-dropleft.svg b/public/assets/lib/ionicons/ionicons/svg/md-arrow-dropleft.svg new file mode 100755 index 0000000..282843d --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-arrow-dropleft.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-arrow-dropright-circle.svg b/public/assets/lib/ionicons/ionicons/svg/md-arrow-dropright-circle.svg new file mode 100755 index 0000000..2822030 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-arrow-dropright-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-arrow-dropright.svg b/public/assets/lib/ionicons/ionicons/svg/md-arrow-dropright.svg new file mode 100755 index 0000000..d0881ba --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-arrow-dropright.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-arrow-dropup-circle.svg b/public/assets/lib/ionicons/ionicons/svg/md-arrow-dropup-circle.svg new file mode 100755 index 0000000..eea2302 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-arrow-dropup-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-arrow-dropup.svg b/public/assets/lib/ionicons/ionicons/svg/md-arrow-dropup.svg new file mode 100755 index 0000000..5eb7fd4 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-arrow-dropup.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-arrow-forward.svg b/public/assets/lib/ionicons/ionicons/svg/md-arrow-forward.svg new file mode 100755 index 0000000..f56a75f --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-arrow-forward.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-arrow-round-back.svg b/public/assets/lib/ionicons/ionicons/svg/md-arrow-round-back.svg new file mode 100755 index 0000000..4a7063f --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-arrow-round-back.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-arrow-round-down.svg b/public/assets/lib/ionicons/ionicons/svg/md-arrow-round-down.svg new file mode 100755 index 0000000..acf2acf --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-arrow-round-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-arrow-round-forward.svg b/public/assets/lib/ionicons/ionicons/svg/md-arrow-round-forward.svg new file mode 100755 index 0000000..357258b --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-arrow-round-forward.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-arrow-round-up.svg b/public/assets/lib/ionicons/ionicons/svg/md-arrow-round-up.svg new file mode 100755 index 0000000..1128a65 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-arrow-round-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-arrow-up.svg b/public/assets/lib/ionicons/ionicons/svg/md-arrow-up.svg new file mode 100755 index 0000000..59a2852 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-arrow-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-at.svg b/public/assets/lib/ionicons/ionicons/svg/md-at.svg new file mode 100755 index 0000000..c51b738 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-at.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-attach.svg b/public/assets/lib/ionicons/ionicons/svg/md-attach.svg new file mode 100755 index 0000000..10c1673 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-attach.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-backspace.svg b/public/assets/lib/ionicons/ionicons/svg/md-backspace.svg new file mode 100755 index 0000000..4817cca --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-backspace.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-barcode.svg b/public/assets/lib/ionicons/ionicons/svg/md-barcode.svg new file mode 100755 index 0000000..00b16bf --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-barcode.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-baseball.svg b/public/assets/lib/ionicons/ionicons/svg/md-baseball.svg new file mode 100755 index 0000000..172bd4c --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-baseball.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-basket.svg b/public/assets/lib/ionicons/ionicons/svg/md-basket.svg new file mode 100755 index 0000000..6535217 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-basket.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-basketball.svg b/public/assets/lib/ionicons/ionicons/svg/md-basketball.svg new file mode 100755 index 0000000..297ceb7 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-basketball.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-battery-charging.svg b/public/assets/lib/ionicons/ionicons/svg/md-battery-charging.svg new file mode 100755 index 0000000..bdc34a9 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-battery-charging.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-battery-dead.svg b/public/assets/lib/ionicons/ionicons/svg/md-battery-dead.svg new file mode 100755 index 0000000..3aa8649 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-battery-dead.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-battery-full.svg b/public/assets/lib/ionicons/ionicons/svg/md-battery-full.svg new file mode 100755 index 0000000..b5d8cec --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-battery-full.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-beaker.svg b/public/assets/lib/ionicons/ionicons/svg/md-beaker.svg new file mode 100755 index 0000000..52a794a --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-beaker.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-bed.svg b/public/assets/lib/ionicons/ionicons/svg/md-bed.svg new file mode 100755 index 0000000..797a26b --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-bed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-beer.svg b/public/assets/lib/ionicons/ionicons/svg/md-beer.svg new file mode 100755 index 0000000..82b64c9 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-beer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-bicycle.svg b/public/assets/lib/ionicons/ionicons/svg/md-bicycle.svg new file mode 100755 index 0000000..2118780 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-bicycle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-bluetooth.svg b/public/assets/lib/ionicons/ionicons/svg/md-bluetooth.svg new file mode 100755 index 0000000..d58a0a4 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-bluetooth.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-boat.svg b/public/assets/lib/ionicons/ionicons/svg/md-boat.svg new file mode 100755 index 0000000..461bf6e --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-boat.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-body.svg b/public/assets/lib/ionicons/ionicons/svg/md-body.svg new file mode 100755 index 0000000..585f289 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-body.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-bonfire.svg b/public/assets/lib/ionicons/ionicons/svg/md-bonfire.svg new file mode 100755 index 0000000..711da71 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-bonfire.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-book.svg b/public/assets/lib/ionicons/ionicons/svg/md-book.svg new file mode 100755 index 0000000..be087b8 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-book.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-bookmark.svg b/public/assets/lib/ionicons/ionicons/svg/md-bookmark.svg new file mode 100755 index 0000000..805c8bb --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-bookmark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-bookmarks.svg b/public/assets/lib/ionicons/ionicons/svg/md-bookmarks.svg new file mode 100755 index 0000000..430cfe3 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-bookmarks.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-bowtie.svg b/public/assets/lib/ionicons/ionicons/svg/md-bowtie.svg new file mode 100755 index 0000000..08ee73f --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-bowtie.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-briefcase.svg b/public/assets/lib/ionicons/ionicons/svg/md-briefcase.svg new file mode 100755 index 0000000..da8d0c3 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-briefcase.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-browsers.svg b/public/assets/lib/ionicons/ionicons/svg/md-browsers.svg new file mode 100755 index 0000000..00e6c98 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-browsers.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-brush.svg b/public/assets/lib/ionicons/ionicons/svg/md-brush.svg new file mode 100755 index 0000000..1e85afa --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-brush.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-bug.svg b/public/assets/lib/ionicons/ionicons/svg/md-bug.svg new file mode 100755 index 0000000..5ed28c2 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-bug.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-build.svg b/public/assets/lib/ionicons/ionicons/svg/md-build.svg new file mode 100755 index 0000000..c0a715a --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-build.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-bulb.svg b/public/assets/lib/ionicons/ionicons/svg/md-bulb.svg new file mode 100755 index 0000000..343cf2e --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-bulb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-bus.svg b/public/assets/lib/ionicons/ionicons/svg/md-bus.svg new file mode 100755 index 0000000..51c29b2 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-bus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-business.svg b/public/assets/lib/ionicons/ionicons/svg/md-business.svg new file mode 100755 index 0000000..bb95489 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-business.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-cafe.svg b/public/assets/lib/ionicons/ionicons/svg/md-cafe.svg new file mode 100755 index 0000000..d474b06 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-cafe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-calculator.svg b/public/assets/lib/ionicons/ionicons/svg/md-calculator.svg new file mode 100755 index 0000000..0fa81b3 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-calculator.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-calendar.svg b/public/assets/lib/ionicons/ionicons/svg/md-calendar.svg new file mode 100755 index 0000000..f0f2aa6 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-calendar.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-call.svg b/public/assets/lib/ionicons/ionicons/svg/md-call.svg new file mode 100755 index 0000000..894e31e --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-call.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-camera.svg b/public/assets/lib/ionicons/ionicons/svg/md-camera.svg new file mode 100755 index 0000000..1c87350 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-camera.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-car.svg b/public/assets/lib/ionicons/ionicons/svg/md-car.svg new file mode 100755 index 0000000..e6765a9 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-car.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-card.svg b/public/assets/lib/ionicons/ionicons/svg/md-card.svg new file mode 100755 index 0000000..5a70c43 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-card.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-cart.svg b/public/assets/lib/ionicons/ionicons/svg/md-cart.svg new file mode 100755 index 0000000..cf9ca7f --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-cart.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-cash.svg b/public/assets/lib/ionicons/ionicons/svg/md-cash.svg new file mode 100755 index 0000000..471d2bd --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-cash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-cellular.svg b/public/assets/lib/ionicons/ionicons/svg/md-cellular.svg new file mode 100755 index 0000000..051fe00 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-cellular.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-chatboxes.svg b/public/assets/lib/ionicons/ionicons/svg/md-chatboxes.svg new file mode 100755 index 0000000..fddc128 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-chatboxes.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-chatbubbles.svg b/public/assets/lib/ionicons/ionicons/svg/md-chatbubbles.svg new file mode 100755 index 0000000..47bf6f5 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-chatbubbles.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-checkbox-outline.svg b/public/assets/lib/ionicons/ionicons/svg/md-checkbox-outline.svg new file mode 100755 index 0000000..7cf97f1 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-checkbox-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-checkbox.svg b/public/assets/lib/ionicons/ionicons/svg/md-checkbox.svg new file mode 100755 index 0000000..d827c8a --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-checkbox.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-checkmark-circle-outline.svg b/public/assets/lib/ionicons/ionicons/svg/md-checkmark-circle-outline.svg new file mode 100755 index 0000000..4e40c88 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-checkmark-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-checkmark-circle.svg b/public/assets/lib/ionicons/ionicons/svg/md-checkmark-circle.svg new file mode 100755 index 0000000..4437260 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-checkmark-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-checkmark.svg b/public/assets/lib/ionicons/ionicons/svg/md-checkmark.svg new file mode 100755 index 0000000..a8161a3 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-checkmark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-clipboard.svg b/public/assets/lib/ionicons/ionicons/svg/md-clipboard.svg new file mode 100755 index 0000000..2779592 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-clipboard.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-clock.svg b/public/assets/lib/ionicons/ionicons/svg/md-clock.svg new file mode 100755 index 0000000..952c4ec --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-clock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-close-circle-outline.svg b/public/assets/lib/ionicons/ionicons/svg/md-close-circle-outline.svg new file mode 100755 index 0000000..df518c5 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-close-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-close-circle.svg b/public/assets/lib/ionicons/ionicons/svg/md-close-circle.svg new file mode 100755 index 0000000..9fde939 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-close-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-close.svg b/public/assets/lib/ionicons/ionicons/svg/md-close.svg new file mode 100755 index 0000000..62a2e2c --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-close.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-cloud-circle.svg b/public/assets/lib/ionicons/ionicons/svg/md-cloud-circle.svg new file mode 100755 index 0000000..9a5a254 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-cloud-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-cloud-done.svg b/public/assets/lib/ionicons/ionicons/svg/md-cloud-done.svg new file mode 100755 index 0000000..e989d85 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-cloud-done.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-cloud-download.svg b/public/assets/lib/ionicons/ionicons/svg/md-cloud-download.svg new file mode 100755 index 0000000..5818298 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-cloud-download.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-cloud-outline.svg b/public/assets/lib/ionicons/ionicons/svg/md-cloud-outline.svg new file mode 100755 index 0000000..2a354e2 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-cloud-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-cloud-upload.svg b/public/assets/lib/ionicons/ionicons/svg/md-cloud-upload.svg new file mode 100755 index 0000000..a1620ba --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-cloud-upload.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-cloud.svg b/public/assets/lib/ionicons/ionicons/svg/md-cloud.svg new file mode 100755 index 0000000..573be58 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-cloud.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-cloudy-night.svg b/public/assets/lib/ionicons/ionicons/svg/md-cloudy-night.svg new file mode 100755 index 0000000..9e55fc5 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-cloudy-night.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-cloudy.svg b/public/assets/lib/ionicons/ionicons/svg/md-cloudy.svg new file mode 100755 index 0000000..f4497aa --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-cloudy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-code-download.svg b/public/assets/lib/ionicons/ionicons/svg/md-code-download.svg new file mode 100755 index 0000000..763b06e --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-code-download.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-code-working.svg b/public/assets/lib/ionicons/ionicons/svg/md-code-working.svg new file mode 100755 index 0000000..727162d --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-code-working.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-code.svg b/public/assets/lib/ionicons/ionicons/svg/md-code.svg new file mode 100755 index 0000000..ab8b70e --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-code.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-cog.svg b/public/assets/lib/ionicons/ionicons/svg/md-cog.svg new file mode 100755 index 0000000..6d5047a --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-cog.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-color-fill.svg b/public/assets/lib/ionicons/ionicons/svg/md-color-fill.svg new file mode 100755 index 0000000..b895f3d --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-color-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-color-filter.svg b/public/assets/lib/ionicons/ionicons/svg/md-color-filter.svg new file mode 100755 index 0000000..f981cd7 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-color-filter.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-color-palette.svg b/public/assets/lib/ionicons/ionicons/svg/md-color-palette.svg new file mode 100755 index 0000000..97269b5 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-color-palette.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-color-wand.svg b/public/assets/lib/ionicons/ionicons/svg/md-color-wand.svg new file mode 100755 index 0000000..7d7be8f --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-color-wand.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-compass.svg b/public/assets/lib/ionicons/ionicons/svg/md-compass.svg new file mode 100755 index 0000000..ed85822 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-compass.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-construct.svg b/public/assets/lib/ionicons/ionicons/svg/md-construct.svg new file mode 100755 index 0000000..62bd342 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-construct.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-contact.svg b/public/assets/lib/ionicons/ionicons/svg/md-contact.svg new file mode 100755 index 0000000..7313751 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-contact.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-contacts.svg b/public/assets/lib/ionicons/ionicons/svg/md-contacts.svg new file mode 100755 index 0000000..0f541ed --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-contacts.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-contract.svg b/public/assets/lib/ionicons/ionicons/svg/md-contract.svg new file mode 100755 index 0000000..3f5d7ea --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-contract.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-contrast.svg b/public/assets/lib/ionicons/ionicons/svg/md-contrast.svg new file mode 100755 index 0000000..70297b7 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-contrast.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-copy.svg b/public/assets/lib/ionicons/ionicons/svg/md-copy.svg new file mode 100755 index 0000000..1ad4952 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-copy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-create.svg b/public/assets/lib/ionicons/ionicons/svg/md-create.svg new file mode 100755 index 0000000..f7e8611 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-create.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-crop.svg b/public/assets/lib/ionicons/ionicons/svg/md-crop.svg new file mode 100755 index 0000000..bd379ab --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-crop.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-cube.svg b/public/assets/lib/ionicons/ionicons/svg/md-cube.svg new file mode 100755 index 0000000..a16bc50 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-cube.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-cut.svg b/public/assets/lib/ionicons/ionicons/svg/md-cut.svg new file mode 100755 index 0000000..e1dbdcb --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-cut.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-desktop.svg b/public/assets/lib/ionicons/ionicons/svg/md-desktop.svg new file mode 100755 index 0000000..4b95c82 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-desktop.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-disc.svg b/public/assets/lib/ionicons/ionicons/svg/md-disc.svg new file mode 100755 index 0000000..c844337 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-disc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-document.svg b/public/assets/lib/ionicons/ionicons/svg/md-document.svg new file mode 100755 index 0000000..5fdf6b6 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-document.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-done-all.svg b/public/assets/lib/ionicons/ionicons/svg/md-done-all.svg new file mode 100755 index 0000000..af67fcb --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-done-all.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-download.svg b/public/assets/lib/ionicons/ionicons/svg/md-download.svg new file mode 100755 index 0000000..c760c2d --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-download.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-easel.svg b/public/assets/lib/ionicons/ionicons/svg/md-easel.svg new file mode 100755 index 0000000..982c3a0 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-easel.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-egg.svg b/public/assets/lib/ionicons/ionicons/svg/md-egg.svg new file mode 100755 index 0000000..decf599 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-egg.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-exit.svg b/public/assets/lib/ionicons/ionicons/svg/md-exit.svg new file mode 100755 index 0000000..bc3460b --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-exit.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-expand.svg b/public/assets/lib/ionicons/ionicons/svg/md-expand.svg new file mode 100755 index 0000000..2d28ba2 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-expand.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-eye-off.svg b/public/assets/lib/ionicons/ionicons/svg/md-eye-off.svg new file mode 100755 index 0000000..43825d2 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-eye-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-eye.svg b/public/assets/lib/ionicons/ionicons/svg/md-eye.svg new file mode 100755 index 0000000..fb42350 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-eye.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-fastforward.svg b/public/assets/lib/ionicons/ionicons/svg/md-fastforward.svg new file mode 100755 index 0000000..9deeb44 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-fastforward.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-female.svg b/public/assets/lib/ionicons/ionicons/svg/md-female.svg new file mode 100755 index 0000000..d6b6822 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-female.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-filing.svg b/public/assets/lib/ionicons/ionicons/svg/md-filing.svg new file mode 100755 index 0000000..341e8ff --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-filing.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-film.svg b/public/assets/lib/ionicons/ionicons/svg/md-film.svg new file mode 100755 index 0000000..df1919b --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-film.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-finger-print.svg b/public/assets/lib/ionicons/ionicons/svg/md-finger-print.svg new file mode 100755 index 0000000..a94c9d6 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-finger-print.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-fitness.svg b/public/assets/lib/ionicons/ionicons/svg/md-fitness.svg new file mode 100755 index 0000000..b8618b4 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-fitness.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-flag.svg b/public/assets/lib/ionicons/ionicons/svg/md-flag.svg new file mode 100755 index 0000000..bc77583 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-flag.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-flame.svg b/public/assets/lib/ionicons/ionicons/svg/md-flame.svg new file mode 100755 index 0000000..002e087 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-flame.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-flash-off.svg b/public/assets/lib/ionicons/ionicons/svg/md-flash-off.svg new file mode 100755 index 0000000..12e7fc8 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-flash-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-flash.svg b/public/assets/lib/ionicons/ionicons/svg/md-flash.svg new file mode 100755 index 0000000..da94434 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-flash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-flashlight.svg b/public/assets/lib/ionicons/ionicons/svg/md-flashlight.svg new file mode 100755 index 0000000..3431dfa --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-flashlight.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-flask.svg b/public/assets/lib/ionicons/ionicons/svg/md-flask.svg new file mode 100755 index 0000000..6f09ff8 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-flask.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-flower.svg b/public/assets/lib/ionicons/ionicons/svg/md-flower.svg new file mode 100755 index 0000000..06f22d4 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-flower.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-folder-open.svg b/public/assets/lib/ionicons/ionicons/svg/md-folder-open.svg new file mode 100755 index 0000000..28b01a8 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-folder-open.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-folder.svg b/public/assets/lib/ionicons/ionicons/svg/md-folder.svg new file mode 100755 index 0000000..6db3699 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-folder.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-football.svg b/public/assets/lib/ionicons/ionicons/svg/md-football.svg new file mode 100755 index 0000000..47293cf --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-football.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-funnel.svg b/public/assets/lib/ionicons/ionicons/svg/md-funnel.svg new file mode 100755 index 0000000..0c598d7 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-funnel.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-gift.svg b/public/assets/lib/ionicons/ionicons/svg/md-gift.svg new file mode 100755 index 0000000..c214e61 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-gift.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-git-branch.svg b/public/assets/lib/ionicons/ionicons/svg/md-git-branch.svg new file mode 100755 index 0000000..65b210e --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-git-branch.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-git-commit.svg b/public/assets/lib/ionicons/ionicons/svg/md-git-commit.svg new file mode 100755 index 0000000..2e21d77 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-git-commit.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-git-compare.svg b/public/assets/lib/ionicons/ionicons/svg/md-git-compare.svg new file mode 100755 index 0000000..a660cbc --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-git-compare.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-git-merge.svg b/public/assets/lib/ionicons/ionicons/svg/md-git-merge.svg new file mode 100755 index 0000000..238d88d --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-git-merge.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-git-network.svg b/public/assets/lib/ionicons/ionicons/svg/md-git-network.svg new file mode 100755 index 0000000..d8f5fc7 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-git-network.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-git-pull-request.svg b/public/assets/lib/ionicons/ionicons/svg/md-git-pull-request.svg new file mode 100755 index 0000000..3bb2161 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-git-pull-request.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-glasses.svg b/public/assets/lib/ionicons/ionicons/svg/md-glasses.svg new file mode 100755 index 0000000..6aa1f6d --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-glasses.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-globe.svg b/public/assets/lib/ionicons/ionicons/svg/md-globe.svg new file mode 100755 index 0000000..72f247b --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-globe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-grid.svg b/public/assets/lib/ionicons/ionicons/svg/md-grid.svg new file mode 100755 index 0000000..ea1563d --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-grid.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-hammer.svg b/public/assets/lib/ionicons/ionicons/svg/md-hammer.svg new file mode 100755 index 0000000..f4742e7 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-hammer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-hand.svg b/public/assets/lib/ionicons/ionicons/svg/md-hand.svg new file mode 100755 index 0000000..1d9d5f0 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-hand.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-happy.svg b/public/assets/lib/ionicons/ionicons/svg/md-happy.svg new file mode 100755 index 0000000..cb88a80 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-happy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-headset.svg b/public/assets/lib/ionicons/ionicons/svg/md-headset.svg new file mode 100755 index 0000000..a13a2e9 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-headset.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-heart-dislike.svg b/public/assets/lib/ionicons/ionicons/svg/md-heart-dislike.svg new file mode 100755 index 0000000..630414c --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-heart-dislike.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-heart-empty.svg b/public/assets/lib/ionicons/ionicons/svg/md-heart-empty.svg new file mode 100755 index 0000000..dd8c164 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-heart-empty.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-heart-half.svg b/public/assets/lib/ionicons/ionicons/svg/md-heart-half.svg new file mode 100755 index 0000000..279d32a --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-heart-half.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-heart.svg b/public/assets/lib/ionicons/ionicons/svg/md-heart.svg new file mode 100755 index 0000000..cb049a8 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-heart.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-help-buoy.svg b/public/assets/lib/ionicons/ionicons/svg/md-help-buoy.svg new file mode 100755 index 0000000..903abcb --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-help-buoy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-help-circle-outline.svg b/public/assets/lib/ionicons/ionicons/svg/md-help-circle-outline.svg new file mode 100755 index 0000000..744df13 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-help-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-help-circle.svg b/public/assets/lib/ionicons/ionicons/svg/md-help-circle.svg new file mode 100755 index 0000000..61ada93 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-help-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-help.svg b/public/assets/lib/ionicons/ionicons/svg/md-help.svg new file mode 100755 index 0000000..d9cac00 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-help.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-home.svg b/public/assets/lib/ionicons/ionicons/svg/md-home.svg new file mode 100755 index 0000000..ac6302f --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-home.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-hourglass.svg b/public/assets/lib/ionicons/ionicons/svg/md-hourglass.svg new file mode 100755 index 0000000..fce2faf --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-hourglass.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-ice-cream.svg b/public/assets/lib/ionicons/ionicons/svg/md-ice-cream.svg new file mode 100755 index 0000000..4de64f9 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-ice-cream.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-image.svg b/public/assets/lib/ionicons/ionicons/svg/md-image.svg new file mode 100755 index 0000000..97dc805 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-image.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-images.svg b/public/assets/lib/ionicons/ionicons/svg/md-images.svg new file mode 100755 index 0000000..d78752f --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-images.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-infinite.svg b/public/assets/lib/ionicons/ionicons/svg/md-infinite.svg new file mode 100755 index 0000000..be0af3b --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-infinite.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-information-circle-outline.svg b/public/assets/lib/ionicons/ionicons/svg/md-information-circle-outline.svg new file mode 100755 index 0000000..01c631e --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-information-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-information-circle.svg b/public/assets/lib/ionicons/ionicons/svg/md-information-circle.svg new file mode 100755 index 0000000..ea00a95 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-information-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-information.svg b/public/assets/lib/ionicons/ionicons/svg/md-information.svg new file mode 100755 index 0000000..69cc2d3 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-information.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-jet.svg b/public/assets/lib/ionicons/ionicons/svg/md-jet.svg new file mode 100755 index 0000000..9557e45 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-jet.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-journal.svg b/public/assets/lib/ionicons/ionicons/svg/md-journal.svg new file mode 100755 index 0000000..0c7e5ea --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-journal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-key.svg b/public/assets/lib/ionicons/ionicons/svg/md-key.svg new file mode 100755 index 0000000..125b48d --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-key.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-keypad.svg b/public/assets/lib/ionicons/ionicons/svg/md-keypad.svg new file mode 100755 index 0000000..4969b1c --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-keypad.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-laptop.svg b/public/assets/lib/ionicons/ionicons/svg/md-laptop.svg new file mode 100755 index 0000000..7f7e466 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-laptop.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-leaf.svg b/public/assets/lib/ionicons/ionicons/svg/md-leaf.svg new file mode 100755 index 0000000..faa2235 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-leaf.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-link.svg b/public/assets/lib/ionicons/ionicons/svg/md-link.svg new file mode 100755 index 0000000..399a1d9 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-link.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-list-box.svg b/public/assets/lib/ionicons/ionicons/svg/md-list-box.svg new file mode 100755 index 0000000..ad44a0d --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-list-box.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-list.svg b/public/assets/lib/ionicons/ionicons/svg/md-list.svg new file mode 100755 index 0000000..b939cbb --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-list.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-locate.svg b/public/assets/lib/ionicons/ionicons/svg/md-locate.svg new file mode 100755 index 0000000..a39064e --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-locate.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-lock.svg b/public/assets/lib/ionicons/ionicons/svg/md-lock.svg new file mode 100755 index 0000000..0751d0e --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-lock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-log-in.svg b/public/assets/lib/ionicons/ionicons/svg/md-log-in.svg new file mode 100755 index 0000000..0252a53 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-log-in.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-log-out.svg b/public/assets/lib/ionicons/ionicons/svg/md-log-out.svg new file mode 100755 index 0000000..9c5bfa6 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-log-out.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-magnet.svg b/public/assets/lib/ionicons/ionicons/svg/md-magnet.svg new file mode 100755 index 0000000..a7a8fc7 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-magnet.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-mail-open.svg b/public/assets/lib/ionicons/ionicons/svg/md-mail-open.svg new file mode 100755 index 0000000..16155b6 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-mail-open.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-mail-unread.svg b/public/assets/lib/ionicons/ionicons/svg/md-mail-unread.svg new file mode 100755 index 0000000..944133e --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-mail-unread.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-mail.svg b/public/assets/lib/ionicons/ionicons/svg/md-mail.svg new file mode 100755 index 0000000..a146cfc --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-mail.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-male.svg b/public/assets/lib/ionicons/ionicons/svg/md-male.svg new file mode 100755 index 0000000..777f7ba --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-male.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-man.svg b/public/assets/lib/ionicons/ionicons/svg/md-man.svg new file mode 100755 index 0000000..4cec2ab --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-man.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-map.svg b/public/assets/lib/ionicons/ionicons/svg/md-map.svg new file mode 100755 index 0000000..4e0b4e8 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-map.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-medal.svg b/public/assets/lib/ionicons/ionicons/svg/md-medal.svg new file mode 100755 index 0000000..ec2fd3b --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-medal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-medical.svg b/public/assets/lib/ionicons/ionicons/svg/md-medical.svg new file mode 100755 index 0000000..24b7aa1 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-medical.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-medkit.svg b/public/assets/lib/ionicons/ionicons/svg/md-medkit.svg new file mode 100755 index 0000000..1318374 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-medkit.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-megaphone.svg b/public/assets/lib/ionicons/ionicons/svg/md-megaphone.svg new file mode 100755 index 0000000..f7c7932 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-megaphone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-menu.svg b/public/assets/lib/ionicons/ionicons/svg/md-menu.svg new file mode 100755 index 0000000..30a009c --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-menu.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-mic-off.svg b/public/assets/lib/ionicons/ionicons/svg/md-mic-off.svg new file mode 100755 index 0000000..9ed494e --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-mic-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-mic.svg b/public/assets/lib/ionicons/ionicons/svg/md-mic.svg new file mode 100755 index 0000000..c370e2b --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-mic.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-microphone.svg b/public/assets/lib/ionicons/ionicons/svg/md-microphone.svg new file mode 100755 index 0000000..77c5cbf --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-microphone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-moon.svg b/public/assets/lib/ionicons/ionicons/svg/md-moon.svg new file mode 100755 index 0000000..38acf12 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-moon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-more.svg b/public/assets/lib/ionicons/ionicons/svg/md-more.svg new file mode 100755 index 0000000..6ebfc41 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-more.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-move.svg b/public/assets/lib/ionicons/ionicons/svg/md-move.svg new file mode 100755 index 0000000..16ba270 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-move.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-musical-note.svg b/public/assets/lib/ionicons/ionicons/svg/md-musical-note.svg new file mode 100755 index 0000000..a3227db --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-musical-note.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-musical-notes.svg b/public/assets/lib/ionicons/ionicons/svg/md-musical-notes.svg new file mode 100755 index 0000000..ecfed3a --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-musical-notes.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-navigate.svg b/public/assets/lib/ionicons/ionicons/svg/md-navigate.svg new file mode 100755 index 0000000..ee249ce --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-navigate.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-notifications-off.svg b/public/assets/lib/ionicons/ionicons/svg/md-notifications-off.svg new file mode 100755 index 0000000..31e9fd3 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-notifications-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-notifications-outline.svg b/public/assets/lib/ionicons/ionicons/svg/md-notifications-outline.svg new file mode 100755 index 0000000..320990c --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-notifications-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-notifications.svg b/public/assets/lib/ionicons/ionicons/svg/md-notifications.svg new file mode 100755 index 0000000..1710d02 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-notifications.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-nuclear.svg b/public/assets/lib/ionicons/ionicons/svg/md-nuclear.svg new file mode 100755 index 0000000..f645777 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-nuclear.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-nutrition.svg b/public/assets/lib/ionicons/ionicons/svg/md-nutrition.svg new file mode 100755 index 0000000..54e1df9 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-nutrition.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-open.svg b/public/assets/lib/ionicons/ionicons/svg/md-open.svg new file mode 100755 index 0000000..8277ad9 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-open.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-options.svg b/public/assets/lib/ionicons/ionicons/svg/md-options.svg new file mode 100755 index 0000000..47a9bca --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-options.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-outlet.svg b/public/assets/lib/ionicons/ionicons/svg/md-outlet.svg new file mode 100755 index 0000000..2599120 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-outlet.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-paper-plane.svg b/public/assets/lib/ionicons/ionicons/svg/md-paper-plane.svg new file mode 100755 index 0000000..6b0dae2 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-paper-plane.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-paper.svg b/public/assets/lib/ionicons/ionicons/svg/md-paper.svg new file mode 100755 index 0000000..69d23bb --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-paper.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-partly-sunny.svg b/public/assets/lib/ionicons/ionicons/svg/md-partly-sunny.svg new file mode 100755 index 0000000..5bb5fa2 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-partly-sunny.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-pause.svg b/public/assets/lib/ionicons/ionicons/svg/md-pause.svg new file mode 100755 index 0000000..48baa51 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-pause.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-paw.svg b/public/assets/lib/ionicons/ionicons/svg/md-paw.svg new file mode 100755 index 0000000..eef3263 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-paw.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-people.svg b/public/assets/lib/ionicons/ionicons/svg/md-people.svg new file mode 100755 index 0000000..88cd072 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-people.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-person-add.svg b/public/assets/lib/ionicons/ionicons/svg/md-person-add.svg new file mode 100755 index 0000000..992971c --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-person-add.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-person.svg b/public/assets/lib/ionicons/ionicons/svg/md-person.svg new file mode 100755 index 0000000..cf00860 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-person.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-phone-landscape.svg b/public/assets/lib/ionicons/ionicons/svg/md-phone-landscape.svg new file mode 100755 index 0000000..16ded88 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-phone-landscape.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-phone-portrait.svg b/public/assets/lib/ionicons/ionicons/svg/md-phone-portrait.svg new file mode 100755 index 0000000..c28400f --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-phone-portrait.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-photos.svg b/public/assets/lib/ionicons/ionicons/svg/md-photos.svg new file mode 100755 index 0000000..ce2831c --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-photos.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-pie.svg b/public/assets/lib/ionicons/ionicons/svg/md-pie.svg new file mode 100755 index 0000000..bc5892b --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-pie.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-pin.svg b/public/assets/lib/ionicons/ionicons/svg/md-pin.svg new file mode 100755 index 0000000..bdbe064 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-pin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-pint.svg b/public/assets/lib/ionicons/ionicons/svg/md-pint.svg new file mode 100755 index 0000000..26135fb --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-pint.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-pizza.svg b/public/assets/lib/ionicons/ionicons/svg/md-pizza.svg new file mode 100755 index 0000000..4290815 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-pizza.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-planet.svg b/public/assets/lib/ionicons/ionicons/svg/md-planet.svg new file mode 100755 index 0000000..dbce976 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-planet.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-play-circle.svg b/public/assets/lib/ionicons/ionicons/svg/md-play-circle.svg new file mode 100755 index 0000000..ff8963e --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-play-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-play.svg b/public/assets/lib/ionicons/ionicons/svg/md-play.svg new file mode 100755 index 0000000..9ef742f --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-play.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-podium.svg b/public/assets/lib/ionicons/ionicons/svg/md-podium.svg new file mode 100755 index 0000000..5ed7038 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-podium.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-power.svg b/public/assets/lib/ionicons/ionicons/svg/md-power.svg new file mode 100755 index 0000000..669872d --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-power.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-pricetag.svg b/public/assets/lib/ionicons/ionicons/svg/md-pricetag.svg new file mode 100755 index 0000000..fc8b0c4 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-pricetag.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-pricetags.svg b/public/assets/lib/ionicons/ionicons/svg/md-pricetags.svg new file mode 100755 index 0000000..442ac99 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-pricetags.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-print.svg b/public/assets/lib/ionicons/ionicons/svg/md-print.svg new file mode 100755 index 0000000..caea61c --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-print.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-pulse.svg b/public/assets/lib/ionicons/ionicons/svg/md-pulse.svg new file mode 100755 index 0000000..a8f592d --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-pulse.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-qr-scanner.svg b/public/assets/lib/ionicons/ionicons/svg/md-qr-scanner.svg new file mode 100755 index 0000000..f18169f --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-qr-scanner.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-quote.svg b/public/assets/lib/ionicons/ionicons/svg/md-quote.svg new file mode 100755 index 0000000..18999c9 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-quote.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-radio-button-off.svg b/public/assets/lib/ionicons/ionicons/svg/md-radio-button-off.svg new file mode 100755 index 0000000..8be080f --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-radio-button-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-radio-button-on.svg b/public/assets/lib/ionicons/ionicons/svg/md-radio-button-on.svg new file mode 100755 index 0000000..e566909 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-radio-button-on.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-radio.svg b/public/assets/lib/ionicons/ionicons/svg/md-radio.svg new file mode 100755 index 0000000..b5e81bf --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-radio.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-rainy.svg b/public/assets/lib/ionicons/ionicons/svg/md-rainy.svg new file mode 100755 index 0000000..8d95ca8 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-rainy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-recording.svg b/public/assets/lib/ionicons/ionicons/svg/md-recording.svg new file mode 100755 index 0000000..c48ae97 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-recording.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-redo.svg b/public/assets/lib/ionicons/ionicons/svg/md-redo.svg new file mode 100755 index 0000000..2520616 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-redo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-refresh-circle.svg b/public/assets/lib/ionicons/ionicons/svg/md-refresh-circle.svg new file mode 100755 index 0000000..254370d --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-refresh-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-refresh.svg b/public/assets/lib/ionicons/ionicons/svg/md-refresh.svg new file mode 100755 index 0000000..714b88c --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-refresh.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-remove-circle-outline.svg b/public/assets/lib/ionicons/ionicons/svg/md-remove-circle-outline.svg new file mode 100755 index 0000000..95868b5 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-remove-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-remove-circle.svg b/public/assets/lib/ionicons/ionicons/svg/md-remove-circle.svg new file mode 100755 index 0000000..2af49ef --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-remove-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-remove.svg b/public/assets/lib/ionicons/ionicons/svg/md-remove.svg new file mode 100755 index 0000000..d359763 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-remove.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-reorder.svg b/public/assets/lib/ionicons/ionicons/svg/md-reorder.svg new file mode 100755 index 0000000..480fabc --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-reorder.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-repeat.svg b/public/assets/lib/ionicons/ionicons/svg/md-repeat.svg new file mode 100755 index 0000000..3d14a1d --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-repeat.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-resize.svg b/public/assets/lib/ionicons/ionicons/svg/md-resize.svg new file mode 100755 index 0000000..b9e27de --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-resize.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-restaurant.svg b/public/assets/lib/ionicons/ionicons/svg/md-restaurant.svg new file mode 100755 index 0000000..3ce9eee --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-restaurant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-return-left.svg b/public/assets/lib/ionicons/ionicons/svg/md-return-left.svg new file mode 100755 index 0000000..c6f1aee --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-return-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-return-right.svg b/public/assets/lib/ionicons/ionicons/svg/md-return-right.svg new file mode 100755 index 0000000..c9ec959 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-return-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-reverse-camera.svg b/public/assets/lib/ionicons/ionicons/svg/md-reverse-camera.svg new file mode 100755 index 0000000..f1f5533 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-reverse-camera.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-rewind.svg b/public/assets/lib/ionicons/ionicons/svg/md-rewind.svg new file mode 100755 index 0000000..8e27b18 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-rewind.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-ribbon.svg b/public/assets/lib/ionicons/ionicons/svg/md-ribbon.svg new file mode 100755 index 0000000..74d16b6 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-ribbon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-rocket.svg b/public/assets/lib/ionicons/ionicons/svg/md-rocket.svg new file mode 100755 index 0000000..07dbfec --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-rocket.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-rose.svg b/public/assets/lib/ionicons/ionicons/svg/md-rose.svg new file mode 100755 index 0000000..a8e1955 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-rose.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-sad.svg b/public/assets/lib/ionicons/ionicons/svg/md-sad.svg new file mode 100755 index 0000000..7815239 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-sad.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-save.svg b/public/assets/lib/ionicons/ionicons/svg/md-save.svg new file mode 100755 index 0000000..3926b0a --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-save.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-school.svg b/public/assets/lib/ionicons/ionicons/svg/md-school.svg new file mode 100755 index 0000000..fa4f023 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-school.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-search.svg b/public/assets/lib/ionicons/ionicons/svg/md-search.svg new file mode 100755 index 0000000..dff874a --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-search.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-send.svg b/public/assets/lib/ionicons/ionicons/svg/md-send.svg new file mode 100755 index 0000000..0bd525c --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-send.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-settings.svg b/public/assets/lib/ionicons/ionicons/svg/md-settings.svg new file mode 100755 index 0000000..0df80e9 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-settings.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-share-alt.svg b/public/assets/lib/ionicons/ionicons/svg/md-share-alt.svg new file mode 100755 index 0000000..72d3cbe --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-share-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-share.svg b/public/assets/lib/ionicons/ionicons/svg/md-share.svg new file mode 100755 index 0000000..ae94b98 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-share.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-shirt.svg b/public/assets/lib/ionicons/ionicons/svg/md-shirt.svg new file mode 100755 index 0000000..4805f91 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-shirt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-shuffle.svg b/public/assets/lib/ionicons/ionicons/svg/md-shuffle.svg new file mode 100755 index 0000000..1a3491e --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-shuffle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-skip-backward.svg b/public/assets/lib/ionicons/ionicons/svg/md-skip-backward.svg new file mode 100755 index 0000000..7d29031 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-skip-backward.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-skip-forward.svg b/public/assets/lib/ionicons/ionicons/svg/md-skip-forward.svg new file mode 100755 index 0000000..a847f69 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-skip-forward.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-snow.svg b/public/assets/lib/ionicons/ionicons/svg/md-snow.svg new file mode 100755 index 0000000..70494a5 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-snow.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-speedometer.svg b/public/assets/lib/ionicons/ionicons/svg/md-speedometer.svg new file mode 100755 index 0000000..f8c5702 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-speedometer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-square-outline.svg b/public/assets/lib/ionicons/ionicons/svg/md-square-outline.svg new file mode 100755 index 0000000..911dce2 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-square-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-square.svg b/public/assets/lib/ionicons/ionicons/svg/md-square.svg new file mode 100755 index 0000000..3a4587b --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-star-half.svg b/public/assets/lib/ionicons/ionicons/svg/md-star-half.svg new file mode 100755 index 0000000..4dee2dd --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-star-half.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-star-outline.svg b/public/assets/lib/ionicons/ionicons/svg/md-star-outline.svg new file mode 100755 index 0000000..79a6adb --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-star-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-star.svg b/public/assets/lib/ionicons/ionicons/svg/md-star.svg new file mode 100755 index 0000000..1eba524 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-star.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-stats.svg b/public/assets/lib/ionicons/ionicons/svg/md-stats.svg new file mode 100755 index 0000000..c5a648f --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-stats.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-stopwatch.svg b/public/assets/lib/ionicons/ionicons/svg/md-stopwatch.svg new file mode 100755 index 0000000..0d0c6a2 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-stopwatch.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-subway.svg b/public/assets/lib/ionicons/ionicons/svg/md-subway.svg new file mode 100755 index 0000000..b68622b --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-subway.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-sunny.svg b/public/assets/lib/ionicons/ionicons/svg/md-sunny.svg new file mode 100755 index 0000000..2de1bf5 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-sunny.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-swap.svg b/public/assets/lib/ionicons/ionicons/svg/md-swap.svg new file mode 100755 index 0000000..a6a6979 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-swap.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-switch.svg b/public/assets/lib/ionicons/ionicons/svg/md-switch.svg new file mode 100755 index 0000000..dd50b19 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-switch.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-sync.svg b/public/assets/lib/ionicons/ionicons/svg/md-sync.svg new file mode 100755 index 0000000..b477d94 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-sync.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-tablet-landscape.svg b/public/assets/lib/ionicons/ionicons/svg/md-tablet-landscape.svg new file mode 100755 index 0000000..01d7d94 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-tablet-landscape.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-tablet-portrait.svg b/public/assets/lib/ionicons/ionicons/svg/md-tablet-portrait.svg new file mode 100755 index 0000000..e454705 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-tablet-portrait.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-tennisball.svg b/public/assets/lib/ionicons/ionicons/svg/md-tennisball.svg new file mode 100755 index 0000000..170e529 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-tennisball.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-text.svg b/public/assets/lib/ionicons/ionicons/svg/md-text.svg new file mode 100755 index 0000000..760d081 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-text.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-thermometer.svg b/public/assets/lib/ionicons/ionicons/svg/md-thermometer.svg new file mode 100755 index 0000000..993bb7b --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-thermometer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-thumbs-down.svg b/public/assets/lib/ionicons/ionicons/svg/md-thumbs-down.svg new file mode 100755 index 0000000..8e057c4 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-thumbs-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-thumbs-up.svg b/public/assets/lib/ionicons/ionicons/svg/md-thumbs-up.svg new file mode 100755 index 0000000..f042167 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-thumbs-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-thunderstorm.svg b/public/assets/lib/ionicons/ionicons/svg/md-thunderstorm.svg new file mode 100755 index 0000000..d1e0127 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-thunderstorm.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-time.svg b/public/assets/lib/ionicons/ionicons/svg/md-time.svg new file mode 100755 index 0000000..e87dc25 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-time.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-timer.svg b/public/assets/lib/ionicons/ionicons/svg/md-timer.svg new file mode 100755 index 0000000..714c012 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-timer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-today.svg b/public/assets/lib/ionicons/ionicons/svg/md-today.svg new file mode 100755 index 0000000..59d0a16 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-today.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-train.svg b/public/assets/lib/ionicons/ionicons/svg/md-train.svg new file mode 100755 index 0000000..da6146e --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-train.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-transgender.svg b/public/assets/lib/ionicons/ionicons/svg/md-transgender.svg new file mode 100755 index 0000000..e945ea6 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-transgender.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-trash.svg b/public/assets/lib/ionicons/ionicons/svg/md-trash.svg new file mode 100755 index 0000000..d7da9e1 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-trash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-trending-down.svg b/public/assets/lib/ionicons/ionicons/svg/md-trending-down.svg new file mode 100755 index 0000000..4e3e81f --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-trending-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-trending-up.svg b/public/assets/lib/ionicons/ionicons/svg/md-trending-up.svg new file mode 100755 index 0000000..1f0daba --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-trending-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-trophy.svg b/public/assets/lib/ionicons/ionicons/svg/md-trophy.svg new file mode 100755 index 0000000..f24c027 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-trophy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-tv.svg b/public/assets/lib/ionicons/ionicons/svg/md-tv.svg new file mode 100755 index 0000000..12e69de --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-tv.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-umbrella.svg b/public/assets/lib/ionicons/ionicons/svg/md-umbrella.svg new file mode 100755 index 0000000..f4ff127 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-umbrella.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-undo.svg b/public/assets/lib/ionicons/ionicons/svg/md-undo.svg new file mode 100755 index 0000000..4569f59 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-undo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-unlock.svg b/public/assets/lib/ionicons/ionicons/svg/md-unlock.svg new file mode 100755 index 0000000..56176db --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-unlock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-videocam.svg b/public/assets/lib/ionicons/ionicons/svg/md-videocam.svg new file mode 100755 index 0000000..cef0bca --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-videocam.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-volume-high.svg b/public/assets/lib/ionicons/ionicons/svg/md-volume-high.svg new file mode 100755 index 0000000..c7a0aa2 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-volume-high.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-volume-low.svg b/public/assets/lib/ionicons/ionicons/svg/md-volume-low.svg new file mode 100755 index 0000000..dcbb1a0 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-volume-low.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-volume-mute.svg b/public/assets/lib/ionicons/ionicons/svg/md-volume-mute.svg new file mode 100755 index 0000000..8479b8d --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-volume-mute.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-volume-off.svg b/public/assets/lib/ionicons/ionicons/svg/md-volume-off.svg new file mode 100755 index 0000000..c018c12 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-volume-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-walk.svg b/public/assets/lib/ionicons/ionicons/svg/md-walk.svg new file mode 100755 index 0000000..f1563fb --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-walk.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-wallet.svg b/public/assets/lib/ionicons/ionicons/svg/md-wallet.svg new file mode 100755 index 0000000..77e7167 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-wallet.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-warning.svg b/public/assets/lib/ionicons/ionicons/svg/md-warning.svg new file mode 100755 index 0000000..cb421e6 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-warning.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-watch.svg b/public/assets/lib/ionicons/ionicons/svg/md-watch.svg new file mode 100755 index 0000000..ca1d30b --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-watch.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-water.svg b/public/assets/lib/ionicons/ionicons/svg/md-water.svg new file mode 100755 index 0000000..1706720 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-water.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-wifi.svg b/public/assets/lib/ionicons/ionicons/svg/md-wifi.svg new file mode 100755 index 0000000..3f982d8 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-wifi.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-wine.svg b/public/assets/lib/ionicons/ionicons/svg/md-wine.svg new file mode 100755 index 0000000..0f6d08e --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-wine.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/ionicons/ionicons/svg/md-woman.svg b/public/assets/lib/ionicons/ionicons/svg/md-woman.svg new file mode 100755 index 0000000..d3ef287 --- /dev/null +++ b/public/assets/lib/ionicons/ionicons/svg/md-woman.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/assets/lib/jquery-simple-datetimepicker/CHANGES b/public/assets/lib/jquery-simple-datetimepicker/CHANGES new file mode 100755 index 0000000..910729e --- /dev/null +++ b/public/assets/lib/jquery-simple-datetimepicker/CHANGES @@ -0,0 +1,111 @@ +Version history for query-simple-datetimepicker +https://github.com/mugifly/jquery-simple-datetimepicker/ + +1.12.0 2014-04-25 (JST) + - [Add] Automatically relocate a position of a picker when picker is float-mode. + - [Add] Automatically destroy a picker, when an input-field has lose. + - [Add] The getDate and setDate method is available on PickerHandler Object. + - [Change] Changed a parent element to root, when picker is float-mode (Reported by: Kupid). + +1.11.0 2014-04-25 (JST) + - [Add] Support for allowWdays option (Idea by: elvinlee). + - [Add] Greek locale (Thanks to: sincetomorrow). + - [Fix] Issue at option.current - Setting the custom date and time as default (Thanks to: michelts). + - [Fix] Process for drawing the time cell (Reported by: jhiver). + - [Fix] Past date is selected when clicking on previous (futureOnly) (Reported by: ignatiusreza). + - [Fix] Bug when switching to next month. + - [Fix] If not available a console on this environment. + - [Fix] Position / outerHeight() gives wrong value (Thanks to: ricardocanelas). + +1.10.1 2014-02-16 (JST) + - [Fix] Issue with month jumping (Report by: jcutrell, LinTicket, cnorthwood). + +1.10.0 2014-02-16 (JST) + - [Add] Polish locale (Thanks to: viszman). + - [Add] Romanian locale (Thanks to: IngerAlHaosului). + - [Add] Support for minDate and maxDate options (Thanks to: droidmunkey). + - [Add] Support for minTime and maxTime options (Thanks to: CedricLevasseur). + - [Add] Support for user event-handlers: onInit, onShow, onHide (Idea by: Kupid Wang). + - [Add] Manual handling of the appended picker (handleDtpicker method). + - [Add] Allow focus of input to display datepicker (Thanks to: jpetto). + - [Fix] Use isNaN instead of Number.isNaN (Thanks to: vbatoufflet). + - [Fix] Don't allow scroll to past-month when limiting to future dates (Report by: fredrik-w). + +1.9.0 2013-11-06 (JST) + - [Add] Support for Bower (Thanks to: kmulvey). + - [Change] Improved localization mechanism (Thanks to: LucasTheCure). + - [Change] Refactor - Simplified some codes (Thanks to: LucasTheCure). + - [Fix] Close a picker when date is selected on dateOnly mode (Thanks to: Kwozzie). + +1.8.0 2013-10-17 (JST) + - [Add] Portuguese locale (Thanks to: adc-tcarvalho). + - [Add] Dutch locale (Thanks to: Mondane). + - [Add] Czech locale (Thanks to: Jan Zatloukal). + - [Add] French locale (Thanks to: Jan matll42). + - [Add] Italian locale (Thanks to: Mauro Zuccato). + - [Fix] Fixing positioning when element is inside of nested relative parent (Thanks to: AddoSolutions). + +1.7.0 2013-09-16 + - [Add] Korean locale (Thanks to: perhapsspy). + - [Add] "futureOnly" option and bugfix (Thanks to: camiel). + - [Add] "dateOnly" option (Thanks to: logitick). + - [Fix] Improved date parse (when using dateFormat option). + +1.6.0 2013-09-04 + - [Add] "closeOnSelected" option for close the picker when selected date & time (Idea by: MacDknife). + - [Add] "timelistScroll" option for disable automatic scroll of timelist (Idea by: deviso). + - [Add] Change the months by scroll of mouse-wheel on the calendar (Idea by: deviso). + - [Add] "calendarMouseScroll" option for scroll calendar with mouse wheel (default: true). + - [Add] Today button for calendar (Idea by: Tanver186). + - [Add] "todayButton" option (default: true). + - [Change] Improve design (header, container). + - [Fix] Malfunction of "animation" option (Can't disable animation). + +1.5.0 2013-08-28 + - [Add] Turkish locale (Thanks to: myfell). + - [Add] Spanish locale (Thanks to: maw). + - [Add] Swedish locale (Thanks to: MacDknife). + - [Fix] Be more robust when receiving clearly bogus date strings (Thanks to: maw). + +1.4.0 2013-08-02 + - [Add] Indonesia locale (Thanks to: robzlabz). + - [Fix] "firstDayOfWeek" option and others (Thanks to: thisispiers). + - [Fix] should now gets format mysql-datetime (Thanks to: Orlac). + +1.3.0 2013-06-29 + - [Add] Chinese locale (Thanks to: jasonslyvia). + - [Add] Initial first day of the week (Thanks to: concept1hundred). + - [Add] German locale (Thanks to: rtakeda). + - [Change] Option name: "minute_interval" -> "minuteInterval" + - [Fix] misplaced when located in nested elements (Thanks to: insonifi). + +1.2.0 2013-06-17 + - [Add] Change the interval of minute (Thanks to: AndAniCalik). + +1.1.4 2013-06-02 + - [Add] Brasil locale (Thanks to: Mauricio). + +1.1.3 2013-05-22 + - [Add] Russian locale (Thanks to: rdolgushin). + +1.1.2 2013-05-09 + - [Fixed] IE8 compatibility (Thanks to: mackeian). + +1.1.1 2013-03-12 + - [Fixed] Fixed width of timelist for bug in ie9 (Thanks to: jjsgro). + +1.1.0 2013-03-02 + - [Implement] Option to disable the animation. + - [Improve] Animation and parts. + - [Fixed] Support dateFormat and fix bug (Thanks to: LeandroSe). + - [Fixed] Support Firefox in current date (Thanks: LeandroSe). + - [Improve] Show the month name instead of number in header (Thanks to: dsims). + - [Fixed] appendDtpicker is not overriding the default date with the input's value (Thanks: dsims). + - [Fixed] default month (Thanks: dsims). + +1.0.0 2012-11-02 + - Initial release. + +---- + +Thanks to contributors! diff --git a/public/assets/lib/jquery-simple-datetimepicker/LICENSE.txt b/public/assets/lib/jquery-simple-datetimepicker/LICENSE.txt new file mode 100755 index 0000000..6f69731 --- /dev/null +++ b/public/assets/lib/jquery-simple-datetimepicker/LICENSE.txt @@ -0,0 +1,17 @@ +jquery-simple-datetimepicker (jquery.simple-dtpicker.js) +Copyright (c) 2014 Masanori Ohgita (http://ohgita.info/). +MIT License + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +---- + +Include icon of button, from a part of "Font Awesome" by Dave Gandy - http://fontawesome.io". +http://fortawesome.github.io/Font-Awesome/license/ +> Attribution is no longer required as of Font Awesome 3.0 +> but is much appreciated: "Font Awesome by Dave Gandy - http://fontawesome.io". +Thank you. diff --git a/public/assets/lib/jquery-simple-datetimepicker/jquery.simple-dtpicker.css b/public/assets/lib/jquery-simple-datetimepicker/jquery.simple-dtpicker.css new file mode 100755 index 0000000..72561f2 --- /dev/null +++ b/public/assets/lib/jquery-simple-datetimepicker/jquery.simple-dtpicker.css @@ -0,0 +1,315 @@ +/** + * Style-sheet for dtpicker + * https://github.com/mugifly/jquery-simple-datetimepicker + */ + +.datepicker { + display: inline-block; + font: 15px/1.5 "Helvetica Neue", mplus-2c, Helvetica, Arial, "Hiragino Kaku Gothic Pro", Meiryo, sans-serif; + font-weight: 300; + border: 1px solid #dfdfdf; + border-radius: 3px; + -webkit-border-radius: 3px; + -moz-border-radius: 3px; + box-shadow: 0.5px 0.5px 0px #c8c8c8; + -webkit-box-shadow: 0.5px 0.5px 3px #eeeeee; + -moz-box-shadow: 0.5px 0.5px 3px #eeeeee; +} + +/* + * datepicker_header +*/ + +.datepicker > .datepicker_header{ + padding-top: 2px; + padding-bottom: 2px; + padding-left: 5px; + padding-right: 5px; + background-color: #eeeeee; + color: #3f3f3f; + text-align: center; + font-size: 9pt; + font-weight: bold; + user-select: none; + -webkit-user-select: none; + -moz-user-select: none; +} + +.datepicker > .datepicker_header > a { + user-select: none; + -webkit-user-select: none; + -moz-user-select: none; + cursor: pointer; + color: #3b7796; +} + +.datepicker > .datepicker_header > a:hover { + color: #303030; + background-color: #c8c8c8; +} + +.datepicker > .datepicker_header > a:active { + color: #ffffff; + background-color: #808080; +} + +.datepicker > .datepicker_header > span { + margin-left: 20px; + margin-right: 20px; + user-select: none; + -webkit-user-select: none; + -moz-user-select: none; +} + +.datepicker > .datepicker_header > .icon-home { + position: absolute; + display: block; + float: left; + margin-top: 2px; + margin-left: 5px; + width: 11pt; + height: 11pt; + vertical-align: middle; +} + +.datepicker > .datepicker_header > .icon-home > svg > g > path { + fill: #3b7796; +} + +.datepicker > .datepicker_header > a:hover > svg > g > path { + fill: #303030; /* Icon button hover color */ +} + + +/* + * datepicker_inner_container +*/ + +.datepicker > .datepicker_inner_container { + margin: -2px 0px -2px 0px; + background-color: #d2d2d2; + border: 1px solid #c8c8c8; + border-radius: 3px; + -webkit-border-radius: 3px; + -moz-border-radius: 3px; + + box-shadow: 0.5px 0px 3px #c8c8c8; + -webkit-box-shadow: 0.5px 0px 3px #c8c8c8; + -moz-box-shadow: 0.5px 0px 3px #c8c8c8; +} + +.datepicker > .datepicker_inner_container:after { + content: "."; + display: block; + height: 0; + clear: both; + visibility: hidden; +} + +/* + * datepicker_inner_container > datepicker_calendar +*/ + +.datepicker > .datepicker_inner_container > .datepicker_calendar { + float: left; + width: auto; + + margin-top: -0.5px; + margin-left: -1px; + margin-bottom: -2px; + + background-color: #ffffff; + border: 1px solid #c8c8c8; + + border-top:none; + border-top-left-radius: 3px; + border-bottom-left-radius: 3px; + -webkit-border-top-left-radius: 3px; + -webkit-border-bottom-left-radius: 3px; + -moz-border-radius-topleft: 3px; + -moz-border-radius-bottomleft: 3px; +} + +.datepicker > .datepicker_inner_container > .datepicker_calendar > table { + padding: 10px; +} + +/* + * datepicker_inner_container > datepicker_calendar > datepicker_table > tbody > tr > th (WDay-cell) +*/ + +.datepicker > .datepicker_inner_container > .datepicker_calendar > .datepicker_table > tbody > tr > th { + color: #646464; + width: 18px; + font-size: small; + font-weight: normal; + text-align:center; +} + +/* + * datepicker_inner_container > datepicker_calendar > datepicker_table > tbody > tr > td (Day-cell) +*/ + +.datepicker > .datepicker_inner_container > .datepicker_calendar > .datepicker_table > tbody > tr > td { + color: #000000; + font-size: small; + text-align:center; + + user-select: none; + -webkit-user-select: none; + -moz-user-select: none; + cursor: pointer; +} + +.datepicker > .datepicker_inner_container > .datepicker_calendar > .datepicker_table > tbody > tr > td.today { + border-bottom: #bfbfbf solid 2px; + margin-bottom: -2px; +} + +.datepicker > .datepicker_inner_container > .datepicker_calendar > .datepicker_table > tbody > tr > td.wday_sat { + color: #0044aa; +} + +.datepicker > .datepicker_inner_container > .datepicker_calendar > .datepicker_table > tbody > tr > td.wday_sun { + color: #e13b00; +} + +.datepicker > .datepicker_inner_container > .datepicker_calendar > .datepicker_table > tbody > tr > td.day_another_month { + color: #cccccc; +} + +.datepicker > .datepicker_inner_container > .datepicker_calendar > .datepicker_table > tbody > tr > td.day_in_past { + cursor: default; + color: #cccccc; +} + +.datepicker > .datepicker_inner_container > .datepicker_calendar > .datepicker_table > tbody > tr > td.day_in_unallowed { + cursor: default; + color: #cccccc; +} + +.datepicker > .datepicker_inner_container > .datepicker_calendar > .datepicker_table > tbody > tr > td.out_of_range { + cursor: default; + color: #cccccc; +} + +.datepicker > .datepicker_inner_container > .datepicker_calendar > .datepicker_table > tbody > tr > td.active { + color: #ffffff; + background-color: #808080; +} + +.datepicker > .datepicker_inner_container > .datepicker_calendar > .datepicker_table > tbody > tr > td.hover { + color: #000000; + background-color: #c8c8c8; +} + +/* + * datepicker_inner_container > datepicker_timelist +*/ + +.datepicker > .datepicker_inner_container > .datepicker_timelist { + float: left; + width: 4.2em; + height: 118px; + + margin-top: -0.5px; + padding: 5px; + padding-left: 0px; + padding-right: 0px; + + overflow: auto; + overflow-x: hidden; + + background-color: #ffffff; + + border-top-right-radius: 3px; + border-bottom-right-radius: 3px; + -webkit-border-top-right-radius: 3px; + -webkit-border-bottom-right-radius: 3px; + -moz-border-radius-topright: 3px; + -moz-border-radius-bottomright: 3px; +} + +/* +.datepicker > .datepicker_inner_container > .datepicker_timelist::after { + content: "."; + display: block; + height: 0; + clear: both; + visibility: hidden; +} +*/ + +.datepicker > .datepicker_inner_container > .datepicker_timelist::-webkit-scrollbar { + overflow: hidden; + width: 6px; + background: #fafafa; + + border-top-right-radius: 3px; + border-bottom-right-radius: 3px; + -webkit-border-top-right-radius: 3px; + -webkit-border-bottom-right-radius: 3px; + -moz-border-radius-topright: 3px; + -moz-border-radius-bottomright: 3px; +} + +.datepicker > .datepicker_inner_container > .datepicker_timelist::-webkit-scrollbar:horizontal { + height: 1px; +} + +.datepicker > .datepicker_inner_container > .datepicker_timelist::-webkit-scrollbar-button { + display: none; +} + +.datepicker > .datepicker_inner_container > .datepicker_timelist::-webkit-scrollbar-piece { + background: #eee; +} + +.datepicker > .datepicker_inner_container > .datepicker_timelist::-webkit-scrollbar-piece:start { + background: #eee; +} + +.datepicker > .datepicker_inner_container > .datepicker_timelist::-webkit-scrollbar-thumb { + background: #aaaaaa; + border-radius: 3px; + -webkit-border-radius: 3px; + -moz-border-radius: 3px; +} + +.datepicker > .datepicker_inner_container > .datepicker_timelist::-webkit-scrollbar-corner { + background: #333; +} + +.datepicker > .datepicker_inner_container > .datepicker_timelist > div.timelist_item { + padding-top: 1px; + padding-bottom:1px; + padding-left: 7px; + padding-right: 25px; + margin-top: 5px; + margin-bottom: 2px; + font-size: small; + + user-select: none; + -webkit-user-select: none; + -moz-user-select: none; + cursor: pointer; +} + +.datepicker > .datepicker_inner_container > .datepicker_timelist > div.timelist_item.time_in_past { + cursor: default; + color: #cccccc; +} + +.datepicker > .datepicker_inner_container > .datepicker_timelist > div.timelist_item.out_of_range { + cursor: default; + color: #cccccc; +} +.datepicker > .datepicker_inner_container > .datepicker_timelist > div.timelist_item.active { + color: #ffffff; + background-color: #808080; +} + +.datepicker > .datepicker_inner_container > .datepicker_timelist > div.timelist_item.hover { + color: #000000; + background-color: #c8c8c8; +} diff --git a/public/assets/lib/jquery-simple-datetimepicker/jquery.simple-dtpicker.js b/public/assets/lib/jquery-simple-datetimepicker/jquery.simple-dtpicker.js new file mode 100755 index 0000000..517364d --- /dev/null +++ b/public/assets/lib/jquery-simple-datetimepicker/jquery.simple-dtpicker.js @@ -0,0 +1,1382 @@ +/** + * jquery-simple-datetimepicker (jquery.simple-dtpicker.js) + * v1.12.0 + * (c) Masanori Ohgita - 2014. + * https://github.com/mugifly/jquery-simple-datetimepicker + */ + + (function($) { + var lang = { + en: { + days: ['Su', 'Mo', 'Tu', 'We', 'Th', 'Fr', 'Sa'], + months: [ "Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec" ], + sep: '-', + format: 'YYYY-MM-DD hh:mm', + prevMonth: 'Previous month', + nextMonth: 'Next month', + today: 'Today' + }, + ro:{ + days: ['Dum', 'Lun', 'Mar', 'Mie', 'Joi', 'Vin', 'Sâm'], + months: ['Ian', 'Feb', 'Mar', 'Apr', 'Mai', 'Iun', 'Iul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'], + sep: '.', + format: 'DD.MM.YYYY hh:mm', + prevMonth: 'Luna precedentă', + nextMonth: 'Luna următoare', + today: 'Azi' + }, + + ja: { + days: ['日', '月', '火', '水', '木', '金', '土'], + months: [ "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12" ], + sep: '/', + format: 'YYYY/MM/DD hh:mm' + }, + ru: { + days: ['Вс', 'Пн', 'Вт', 'Ср', 'Чт', 'Пт', 'Сб'], + months: [ "Янв", "Фев", "Мар", "Апр", "Май", "Июн", "Июл", "Авг", "Сен", "Окт", "Ноя", "Дек" ], + format: 'DD.MM.YYYY hh:mm' + }, + br: { + days: ['Dom', 'Seg', 'Ter', 'Qua', 'Qui', 'Sex', 'Sáb'], + months: [ "Janeiro", "Fevereiro", "Março", "Abril", "Maio", "Junho", "Julho", "Agosto", "Setembro", "Outubro", "Novembro", "Dezembro" ], + format: 'DD/MM/YYYY hh:mm' + }, + pt: { + days: ['dom', 'seg', 'ter', 'qua', 'qui', 'sex', 'sáb'], + months: [ "janeiro", "fevereiro", "março", "abril", "maio", "junho", "julho", "agosto", "setembro", "outubro", "novembro", "dezembro" ] + }, + cn: { + days: ['日', '一', '二', '三', '四', '五', '六'], + months: [ "一月", "二月", "三月", "四月", "五月", "六月", "七月", "八月", "九月", "十月", "十一月", "十二月" ] + }, + de: { + days: ['So', 'Mo', 'Di', 'Mi', 'Do', 'Fr', 'Sa'], + months: [ "Jan", "Feb", "März", "Apr", "Mai", "Juni", "Juli", "Aug", "Sept", "Okt", "Nov", "Dez" ], + format: 'DD.MM.YYYY hh:mm' + }, + sv: { + days: ['Sö', 'Må', 'Ti', 'On', 'To', 'Fr', 'Lö'], + months: [ "Jan", "Feb", "Mar", "Apr", "Maj", "Juni", "Juli", "Aug", "Sept", "Okt", "Nov", "Dec" ] + }, + id: { + days: ['Min','Sen','Sel', 'Rab', 'Kam', 'Jum', 'Sab'], + months: [ "Jan", "Feb", "Mar", "Apr", "Mei", "Jun", "Jul", "Agu", "Sep", "Okt", "Nov", "Des" ] + }, + it: { + days: ['Dom','Lun','Mar', 'Mer', 'Gio', 'Ven', 'Sab'], + months: [ "Gen", "Feb", "Mar", "Apr", "Mag", "Giu", "Lug", "Ago", "Set", "Ott", "Nov", "Dic" ], + format: 'DD/MM/YYYY hh:mm' + }, + tr: { + days: ['Pz', 'Pzt', 'Sal', 'Çar', 'Per', 'Cu', 'Cts'], + months: [ "Ock", "Şub", "Mar", "Nis", "May", "Haz", "Tem", "Agu", "Eyl", "Ekm", "Kas", "Arlk" ] + }, + es: { + days: ['dom', 'lun', 'mar', 'miér', 'jue', 'vié', 'sáb'], + months: [ "ene", "feb", "mar", "abr", "may", "jun", "jul", "ago", "sep", "oct", "nov", "dic" ], + format: 'DD/MM/YYYY hh:mm' + }, + ko: { + days: ['일', '월', '화', '수', '목', '금', '토'], + months: [ "1월", "2월", "3월", "4월", "5월", "6월", "7월", "8월", "9월", "10월", "11월", "12월" ] + }, + nl: { + days: ['zo', 'ma', 'di', 'wo', 'do', 'vr', 'za'], + months: [ "jan", "feb", "mrt", "apr", "mei", "jun", "jul", "aug", "sep", "okt", "nov", "dec" ], + format: 'DD-MM-YYYY hh:mm' + }, + cz: { + days: ['Ne', 'Po', 'Út', 'St', 'Čt', 'Pá', 'So'], + months: [ "Led", "Úno", "Bře", "Dub", "Kvě", "Čer", "Čvc", "Srp", "Zář", "Říj", "Lis", "Pro" ], + format: 'DD.MM.YYYY hh:mm' + }, + fr: { + days: ['Dim', 'Lun', 'Mar', 'Mer', 'Jeu', 'Ven', 'Sam'], + months: [ "Janvier", "Février", "Mars", "Avril", "Mai", "Juin", "Juillet", "Août", "Septembre", "Octobre", "Novembre", "Décembre" ], + format: 'DD-MM-YYYY hh:mm' + }, + pl: { + days: ['N', 'Pn', 'Wt', 'Śr', 'Cz', 'Pt', 'So'], + months: [ "Styczeń", "Luty", "Marzec", "Kwiecień", "Maj", "Czerwiec", "Lipiec", "Sierpień", "Wrzesień", "Październik", "Listopad", "Grudzień" ], + sep: '-', + format: 'YYYY-MM-DD hh:mm', + prevMonth: 'Poprzedni miesiąc', + nextMonth: 'Następny miesiąc', + today: 'Dzisiaj' + }, + gr: { + days: ['Κυ', 'Δε', 'Τρ', 'Τε', 'Πε', 'Πα', 'Σα'], + months: [ "Ιαν", "Φεβ", "Μαρ", "Απρ", "Μαϊ", "Ιουν", "Ιουλ", "Αυγ", "Σεπ", "Οκτ", "Νοε", "Δεκ" ], + sep: '-', + format: 'DD-MM-YYYY hh:mm', + prevMonth: 'Προηγ. μήνας', + nextMonth: 'Επόμ. μήνας', + today: 'Σήμερα' + } + }; + /* ----- */ + + /** + PickerHandler Object + **/ + var PickerHandler = function($picker, $input){ + this.$pickerObject = $picker; + this.$inputObject = $input; + }; + + /* Get a picker */ + PickerHandler.prototype.getPicker = function(){ + return this.$pickerObject; + }; + + /* Get a input-field */ + PickerHandler.prototype.getInput = function(){ + return this.$inputObject; + }; + + /* Get the display state of a picker */ + PickerHandler.prototype.isShow = function(){ + var is_show = true; + if (this.$pickerObject.css('display') == 'none') { + is_show = false; + } + return is_show; + }; + + /* Show a picker */ + PickerHandler.prototype.show = function(){ + var $picker = this.$pickerObject; + var $input = this.$inputObject; + + $picker.show(); + + ActivePickerId = $input.data('pickerId'); + + if ($input != null && $picker.data('isInline') === false) { // Float mode + // Relocate a picker to position of the appended input-field + this._relocate(); + } + }; + + /* Hide a picker */ + PickerHandler.prototype.hide = function(){ + var $picker = this.$pickerObject; + var $input = this.$inputObject; + $picker.hide(); + }; + + /* Get a selected date from a picker */ + PickerHandler.prototype.getDate = function(){ + var $picker = this.$pickerObject; + var $input = this.$inputObject; + return getPickedDate($picker); + }; + + /* Set a specific date to a picker */ + PickerHandler.prototype.setDate = function(date){ + var $picker = this.$pickerObject; + var $input = this.$inputObject; + if (!isObj('Date', date)) { + date = new Date(date); + } + + draw_date($picker, { + "isAnim": true, + "isOutputToInputObject": true + }, date); + }; + + /* Destroy a picker */ + PickerHandler.prototype.destroy = function(){ + var $picker = this.$pickerObject; + var picker_id = $picker.data('pickerId'); + PickerObjects[picker_id] = null; + $picker.remove(); + }; + + /* Relocate a picker to position of the appended input-field. */ + PickerHandler.prototype._relocate = function(){ + var $picker = this.$pickerObject; + var $input = this.$inputObject; + + if ($input != null && $picker.data('isInline') === false) { // Float mode + // Move position of a picker - vertical + var input_outer_height = $input.outerHeight({'margin': true}); + if (!isObj('Number', input_outer_height)) { + input_outer_height = $input.outerHeight(); + } + var picker_outer_height = $picker.outerHeight({'margin': true}); + if (!isObj('Number', picker_outer_height)) { + picker_outer_height = $picker.outerHeight(); + } + + if(parseInt($(window).height()) <= ($input.offset().top - $(document).scrollTop() + input_outer_height + picker_outer_height) ){ + // Display to top of an input-field + $picker.parent().css('top', ($input.offset().top - (input_outer_height / 2) - picker_outer_height) + 'px'); + } else { + // Display to bottom of an input-field + $picker.parent().css('top', ($input.offset().top + input_outer_height) + 'px'); + } + // Move position of a picker - horizontal + $picker.parent().css('left', $input.offset().left + 'px'); + // Display on most top of the z-index + $picker.parent().css('z-index', 100000); + } + }; + + /* ----- */ + + var PickerObjects = []; + var InputObjects = []; + var ActivePickerId = -1; + + var getParentPickerObject = function(obj) { + return $(obj).closest('.datepicker'); + }; + + var getPickersInputObject = function($obj) { + var $picker = getParentPickerObject($obj); + if ($picker.data("inputObjectId") != null) { + return $(InputObjects[$picker.data("inputObjectId")]); + } + return null; + }; + + var setToNow = function($obj) { + var $picker = getParentPickerObject($obj); + var date = new Date(); + draw($picker, { + "isAnim": true, + "isOutputToInputObject": true + }, date.getFullYear(), date.getMonth(), date.getDate(), date.getHours(), date.getMinutes()); + }; + + var beforeMonth = function($obj) { + var $picker = getParentPickerObject($obj); + + if ($picker.data('stateAllowBeforeMonth') === false) { // Not allowed + return; + } + + var date = getPickedDate($picker); + var targetMonth_lastDay = new Date(date.getFullYear(), date.getMonth(), 0).getDate(); + if (targetMonth_lastDay < date.getDate()) { + date.setDate(targetMonth_lastDay); + } + draw($picker, { + "isAnim": true, + "isOutputToInputObject": true + }, date.getFullYear(), date.getMonth() - 1, date.getDate(), date.getHours(), date.getMinutes()); + + var todayDate = new Date(); + var isCurrentYear = todayDate.getFullYear() == date.getFullYear(); + var isCurrentMonth = isCurrentYear && todayDate.getMonth() == date.getMonth(); + + if (!isCurrentMonth || !$picker.data("futureOnly")) { + if (targetMonth_lastDay < date.getDate()) { + date.setDate(targetMonth_lastDay); + } + draw($picker, { + "isAnim": true, + "isOutputToInputObject": true + }, date.getFullYear(), date.getMonth() - 1, date.getDate(), date.getHours(), date.getMinutes()); + } + }; + + var nextMonth = function($obj) { + var $picker = getParentPickerObject($obj); + var date = getPickedDate($picker); + var targetMonth_lastDay = new Date(date.getFullYear(), date.getMonth() + 1, 0).getDate(); + if (targetMonth_lastDay < date.getDate()) { + date.setDate(targetMonth_lastDay); + } + + // Check a last date of a next month + if (getLastDate(date.getFullYear(), date.getMonth() + 1) < date.getDate()) { + date.setDate(getLastDate(date.getFullYear(), date.getMonth() + 1)); + } + + draw($picker, { + "isAnim": true, + "isOutputToInputObject": true + }, date.getFullYear(), date.getMonth() + 1, date.getDate(), date.getHours(), date.getMinutes()); + }; + + /** + Check a last date of a specified year and month + **/ + var getLastDate = function(year, month) { + var date = new Date(year, month + 1, 0); + return date.getDate(); + }; + + var getDateFormat = function(format, locale, is_date_only) { + if (format == "default"){ + // Default format + format = translate(locale,'format'); + if (is_date_only) { + // Convert the format to date-only (ex: YYYY/MM/DD) + format = format.substring(0, format.search(' ')); + } + } + return format; // Return date-format + }; + + var normalizeYear = function (year) { + if (year < 99) { // change year for 4 digits + var date = new Date(); + return parseInt(year) + parseInt(date.getFullYear().toString().substr(0, 2) + "00"); + } + return year; + }; + + var parseDate = function (str, opt_date_format) { + var re, m, date; + if(opt_date_format != null){ + // Parse date & time with date-format + + // Match a string with date format + var df = opt_date_format.replace(/(-|\/)/g, '[-\/]') + .replace(/YYYY/gi, '(\\d{2,4})') + .replace(/(YY|MM|DD|hh|mm)/g, '(\\d{1,2})') + .replace(/(M|D|h|m)/g, '(\\d{1,2})'); + re = new RegExp(df); + m = re.exec(str); + if( m != null){ + + // Generate the formats array (convert-table) + var formats = []; + var format_buf = ''; + var format_before_c = ''; + var df_ = opt_date_format; + while (df_ != null && 0 < df_.length) { + var format_c = df_.substring(0, 1); df_ = df_.substring(1, df_.length); + if (format_before_c != format_c) { + if(/(YYYY|YY|MM|DD|mm|dd|M|D|h|m)/.test(format_buf)){ + formats.push( format_buf ); + format_buf = ''; + } else { + format_buf = ''; + } + } + format_buf += format_c; + format_before_c = format_c; + } + if (format_buf !== '' && /(YYYY|YY|MM|DD|mm|dd|M|D|h|m)/.test(format_buf)){ + formats.push( format_buf ); + } + + // Convert a string (with convert-table) to a date object + var year, month, day, hour, min; + var is_successful = false; + for(var i = 0; i < formats.length; i++){ + if(m.length < i){ + break; + } + + var f = formats[i]; + var d = m[i+1]; // Matched part of date + if(f == 'YYYY'){ + year = normalizeYear(d); + is_successful = true; + } else if(f == 'YY'){ + year = parseInt(d) + 2000; + is_successful = true; + } else if(f == 'MM' || f == 'M'){ + month = parseInt(d) - 1; + is_successful = true; + } else if(f == 'DD' || f == 'D'){ + day = d; + is_successful = true; + } else if(f == 'hh' || f == 'h'){ + hour = d; + is_successful = true; + } else if(f == 'mm' || f == 'm'){ + min = d; + is_successful = true; + } + } + + date = new Date(year, month, day, hour, min); + + if(is_successful === true && isNaN(date) === false && isNaN(date.getDate()) === false){ // Parse successful + return date; + } + } + } + + // Parse date & time with common format + re = /^(\d{2,4})[-\/](\d{1,2})[-\/](\d{1,2}) (\d{1,2}):(\d{1,2})$/; + m = re.exec(str); + if (m !== null) { + m[1] = normalizeYear(m[1]); + date = new Date(m[1], m[2] - 1, m[3], m[4], m[5]); + } else { + // Parse for date-only + re = /^(\d{2,4})[-\/](\d{1,2})[-\/](\d{1,2})$/; + m = re.exec(str); + if(m !== null) { + m[1] = normalizeYear(m[1]); + date = new Date(m[1], m[2] - 1, m[3]); + } + } + + if(isNaN(date) === false && isNaN(date.getDate()) === false){ // Parse successful + return date; + } + return false; + }; + + var getFormattedDate = function(date, date_format) { + if(date == null){ + date = new Date(); + } + + var y = date.getFullYear(); + var m = date.getMonth() + 1; + var d = date.getDate(); + var hou = date.getHours(); + var min = date.getMinutes(); + + date_format = date_format.replace(/YYYY/gi, y) + .replace(/YY/g, y - 2000)/* century */ + .replace(/MM/g, zpadding(m)) + .replace(/M/g, m) + .replace(/DD/g, zpadding(d)) + .replace(/D/g, d) + .replace(/hh/g, zpadding(hou)) + .replace(/h/g, hou) + .replace(/mm/g, zpadding(min)) + .replace(/m/g, min); + return date_format; + }; + + var outputToInputObject = function($picker) { + var $inp = getPickersInputObject($picker); + if ($inp == null) { + return; + } + var date = getPickedDate($picker); + var locale = $picker.data("locale"); + var format = getDateFormat($picker.data("dateFormat"), locale, $picker.data('dateOnly')); + + var old = $inp.val(); + $inp.val(getFormattedDate(date, format)); + if (old != $inp.val()) { // only trigger if it actually changed to avoid a nasty loop condition + $inp.trigger("change"); + } + }; + + var getPickedDate = function($obj) { + var $picker = getParentPickerObject($obj); + return $picker.data("pickedDate"); + }; + + var zpadding = function(num) { + num = ("0" + num).slice(-2); + return num; + }; + + var draw_date = function($picker, option, date) { + //console.log("draw_date - " + date.toString()); + draw($picker, option, date.getFullYear(), date.getMonth(), date.getDate(), date.getHours(), date.getMinutes()); + }; + var translate = function(locale, s) { + if (typeof lang[locale][s] !== "undefined"){ + return lang[locale][s]; + } + return lang.en[s]; + }; + var draw = function($picker, option, year, month, day, hour, min) { + var date = new Date(); + + if (hour != null) { + date = new Date(year, month, day, hour, min, 0); + } else if (year != null) { + date = new Date(year, month, day); + } else { + date = new Date(); + } + + /* Read options */ + var isTodayButton = $picker.data("todayButton"); + var isScroll = option.isAnim; /* It same with isAnim */ + if($picker.data("timelistScroll") === false) {// If disabled by user option. + isScroll = false; + } + + var isAnim = option.isAnim; + if($picker.data("animation") === false){ // If disabled by user option. + isAnim = false; + } + + var isFutureOnly = $picker.data("futureOnly"); + var minDate = $picker.data("minDate"); + var maxDate = $picker.data("maxDate"); + + var isOutputToInputObject = option.isOutputToInputObject; + + var minuteInterval = $picker.data("minuteInterval"); + var firstDayOfWeek = $picker.data("firstDayOfWeek"); + + var allowWdays = $picker.data("allowWdays"); + if (allowWdays == null || isObj('Array', allowWdays) === false || allowWdays.length <= 0) { + allowWdays = null; + } + + var minTime = $picker.data("minTime"); + var maxTime = $picker.data("maxTime"); + + /* Check a specified date */ + var todayDate = new Date(); + if (isFutureOnly) { + if (date.getTime() < todayDate.getTime()) { // Already passed + date.setTime(todayDate.getTime()); + } + } + if(allowWdays != null && allowWdays.length <= 6) { + while (true) { + if ($.inArray(date.getDay(), allowWdays) == -1) { // Unallowed wday + // Slide a date + date.setDate(date.getDate() + 1); + } else { + break; + } + } + } + + /* Read locale option */ + var locale = $picker.data("locale"); + if (!lang.hasOwnProperty(locale)) { + locale = 'en'; + } + + /* Calculate dates */ + var firstWday = new Date(date.getFullYear(), date.getMonth(), 1).getDay() - firstDayOfWeek; + var lastDay = new Date(date.getFullYear(), date.getMonth() + 1, 0).getDate(); + var beforeMonthLastDay = new Date(date.getFullYear(), date.getMonth(), 0).getDate(); + var dateBeforeMonth = new Date(date.getFullYear(), date.getMonth(), 0); + var dateNextMonth = new Date(date.getFullYear(), date.getMonth() + 2, 0); + var isCurrentYear = todayDate.getFullYear() == date.getFullYear(); + var isCurrentMonth = isCurrentYear && todayDate.getMonth() == date.getMonth(); + var isCurrentDay = isCurrentMonth && todayDate.getDate() == date.getDate(); + var isPastMonth = false; + if (date.getFullYear() < todayDate.getFullYear() || (isCurrentYear && date.getMonth() < todayDate.getMonth())) { + isPastMonth = true; + } + + /* Collect each part */ + var $header = $picker.children('.datepicker_header'); + var $inner = $picker.children('.datepicker_inner_container'); + var $calendar = $picker.children('.datepicker_inner_container').children('.datepicker_calendar'); + var $table = $calendar.children('.datepicker_table'); + var $timelist = $picker.children('.datepicker_inner_container').children('.datepicker_timelist'); + + /* Grasp a point that will be changed */ + var changePoint = ""; + var oldDate = getPickedDate($picker); + if(oldDate != null){ + if(oldDate.getMonth() != date.getMonth() || oldDate.getDate() != date.getDate()){ + changePoint = "calendar"; + } else if (oldDate.getHours() != date.getHours() || oldDate.getMinutes() != date.getMinutes()){ + if(date.getMinutes() === 0 || date.getMinutes() % minuteInterval === 0){ + changePoint = "timelist"; + } + } + } + + /* Save newly date to Picker data */ + $($picker).data("pickedDate", date); + + /* Fade-out animation */ + if (isAnim === true) { + if(changePoint == "calendar"){ + $calendar.stop().queue([]); + $calendar.fadeTo("fast", 0.8); + }else if(changePoint == "timelist"){ + $timelist.stop().queue([]); + $timelist.fadeTo("fast", 0.8); + } + } + /* Remind timelist scroll state */ + var drawBefore_timeList_scrollTop = $timelist.scrollTop(); + + /* New timelist */ + var timelist_activeTimeCell_offsetTop = -1; + + /* Header ----- */ + $header.children().remove(); + + var cDate = new Date(date.getTime()); + cDate.setMinutes(59); + cDate.setHours(23); + cDate.setSeconds(59); + cDate.setDate(0); // last day of previous month + + var $link_before_month = null; + if ((!isFutureOnly || !isCurrentMonth) && ((minDate == null) || (minDate < cDate.getTime())) + ) { + $link_before_month = $(''); + $link_before_month.text('<'); + $link_before_month.prop('alt', translate(locale,'prevMonth')); + $link_before_month.prop('title', translate(locale,'prevMonth') ); + $link_before_month.click(function() { + beforeMonth($picker); + }); + $picker.data('stateAllowBeforeMonth', true); + } else { + $picker.data('stateAllowBeforeMonth', false); + } + + cDate.setMinutes(0); + cDate.setHours(0); + cDate.setSeconds(0); + cDate.setDate(1); // First day of next month + cDate.setMonth(date.getMonth() + 1); + + var $now_month = $(''); + $now_month.text(date.getFullYear() + " " + translate(locale, 'sep') + " " + translate(locale, 'months')[date.getMonth()]); + + var $link_next_month = null; + if ((maxDate == null) || (maxDate > cDate.getTime())) { + $link_next_month = $(''); + $link_next_month.text('>'); + $link_next_month.prop('alt', translate(locale,'nextMonth')); + $link_next_month.prop('title', translate(locale,'nextMonth')); + $link_next_month.click(function() { + nextMonth($picker); + }); + } + + if (isTodayButton) { + var $link_today = $(''); + /* + This icon resource from a part of "FontAwesome" by Dave Gandy - http://fontawesome.io". + http://fortawesome.github.io/Font-Awesome/license/ + Thankyou. + */ + $link_today.html( decodeURIComponent('%3c%3fxml%20version%3d%221%2e0%22%20encoding%3d%22UTF%2d8%22%20standalone%3d%22no%22%3f%3e%3csvg%20%20xmlns%3adc%3d%22http%3a%2f%2fpurl%2eorg%2fdc%2felements%2f1%2e1%2f%22%20%20xmlns%3acc%3d%22http%3a%2f%2fcreativecommons%2eorg%2fns%23%22%20xmlns%3ardf%3d%22http%3a%2f%2fwww%2ew3%2eorg%2f1999%2f02%2f22%2drdf%2dsyntax%2dns%23%22%20%20xmlns%3asvg%3d%22http%3a%2f%2fwww%2ew3%2eorg%2f2000%2fsvg%22%20xmlns%3d%22http%3a%2f%2fwww%2ew3%2eorg%2f2000%2fsvg%22%20%20version%3d%221%2e1%22%20%20width%3d%22100%25%22%20%20height%3d%22100%25%22%20viewBox%3d%220%200%2010%2010%22%3e%3cg%20transform%3d%22translate%28%2d5%2e5772299%2c%2d26%2e54581%29%22%3e%3cpath%20d%3d%22m%2014%2e149807%2c31%2e130932%20c%200%2c%2d0%2e01241%200%2c%2d0%2e02481%20%2d0%2e0062%2c%2d0%2e03721%20L%2010%2e57723%2c28%2e153784%207%2e0108528%2c31%2e093719%20c%200%2c0%2e01241%20%2d0%2e0062%2c0%2e02481%20%2d0%2e0062%2c0%2e03721%20l%200%2c2%2e97715%20c%200%2c0%2e217084%200%2e1798696%2c0%2e396953%200%2e3969534%2c0%2e396953%20l%202%2e3817196%2c0%200%2c%2d2%2e38172%201%2e5878132%2c0%200%2c2%2e38172%202%2e381719%2c0%20c%200%2e217084%2c0%200%2e396953%2c%2d0%2e179869%200%2e396953%2c%2d0%2e396953%20l%200%2c%2d2%2e97715%20m%201%2e383134%2c%2d0%2e427964%20c%200%2e06823%2c%2d0%2e08063%200%2e05582%2c%2d0%2e210882%20%2d0%2e02481%2c%2d0%2e279108%20l%20%2d1%2e358324%2c%2d1%2e128837%200%2c%2d2%2e530576%20c%200%2c%2d0%2e111643%20%2d0%2e08683%2c%2d0%2e198477%20%2d0%2e198477%2c%2d0%2e198477%20l%20%2d1%2e190859%2c0%20c%20%2d0%2e111643%2c0%20%2d0%2e198477%2c0%2e08683%20%2d0%2e198477%2c0%2e198477%20l%200%2c1%2e209467%20%2d1%2e513384%2c%2d1%2e265289%20c%20%2d0%2e2605%2c%2d0%2e217083%20%2d0%2e682264%2c%2d0%2e217083%20%2d0%2e942764%2c0%20L%205%2e6463253%2c30%2e42386%20c%20%2d0%2e080631%2c0%2e06823%20%2d0%2e093036%2c0%2e198476%20%2d0%2e024809%2c0%2e279108%20l%200%2e3845485%2c0%2e458976%20c%200%2e031012%2c0%2e03721%200%2e080631%2c0%2e06203%200%2e1302503%2c0%2e06823%200%2e055821%2c0%2e0062%200%2e1054407%2c%2d0%2e01241%200%2e1488574%2c%2d0%2e04342%20l%204%2e2920565%2c%2d3%2e578782%204%2e292058%2c3%2e578782%20c%200%2e03721%2c0%2e03101%200%2e08063%2c0%2e04342%200%2e13025%2c0%2e04342%200%2e0062%2c0%200%2e01241%2c0%200%2e01861%2c0%200%2e04962%2c%2d0%2e0062%200%2e09924%2c%2d0%2e03101%200%2e130251%2c%2d0%2e06823%20l%200%2e384549%2c%2d0%2e458976%22%20%2f%3e%3c%2fg%3e%3c%2fsvg%3e') ); + $link_today.addClass('icon-home'); + $link_today.prop('alt', translate(locale,'today')); + $link_today.prop('title', translate(locale,'today')); + $link_today.click(function() { + setToNow($picker); + }); + $header.append($link_today); + } + + if ($link_before_month != null) { + $header.append($link_before_month); + } + $header.append($now_month); + if ($link_next_month != null) { + $header.append($link_next_month); + } + + /* Calendar > Table ----- */ + $table.children().remove(); + var $tr = $(''); + $table.append($tr); + + /* Output wday cells */ + var firstDayDiff = 7 + firstDayOfWeek; + var daysOfWeek = translate(locale,'days'); + var $td; + for (var i = 0; i < 7; i++) { + $td = $(''); + $td.text(daysOfWeek[((i + firstDayDiff) % 7)]); + $tr.append($td); + } + + /* Output day cells */ + var cellNum = Math.ceil((firstWday + lastDay) / 7) * 7; + i = 0; + if(firstWday < 0){ + i = -7; + } + var realDayObj = new Date(date.getTime()); + realDayObj.setHours(0); + realDayObj.setMinutes(0); + realDayObj.setSeconds(0); + for (var zz = 0; i < cellNum; i++) { + var realDay = i + 1 - firstWday; + + var isPast = isPastMonth || (isCurrentMonth && realDay < todayDate.getDate()); + + if (i % 7 === 0) { + $tr = $(''); + $table.append($tr); + } + + $td = $(''); + $td.data("day", realDay); + + $tr.append($td); + + if (firstWday > i) {/* Before months day */ + $td.text(beforeMonthLastDay + realDay); + $td.addClass('day_another_month'); + $td.data("dateStr", dateBeforeMonth.getFullYear() + "/" + (dateBeforeMonth.getMonth() + 1) + "/" + (beforeMonthLastDay + realDay)); + realDayObj.setDate(beforeMonthLastDay + realDay); + realDayObj.setMonth(dateBeforeMonth.getMonth() ); + realDayObj.setYear(dateBeforeMonth.getFullYear() ); + } else if (i < firstWday + lastDay) {/* Now months day */ + $td.text(realDay); + $td.data("dateStr", (date.getFullYear()) + "/" + (date.getMonth() + 1) + "/" + realDay); + realDayObj.setDate( realDay ); + realDayObj.setMonth( date.getMonth() ); + realDayObj.setYear( date.getFullYear() ); + } else {/* Next months day */ + $td.text(realDay - lastDay); + $td.addClass('day_another_month'); + $td.data("dateStr", dateNextMonth.getFullYear() + "/" + (dateNextMonth.getMonth() + 1) + "/" + (realDay - lastDay)); + realDayObj.setDate( realDay - lastDay ); + realDayObj.setMonth( dateNextMonth.getMonth() ); + realDayObj.setYear( dateNextMonth.getFullYear() ); + } + + /* Check a wday */ + var wday = ((i + firstDayDiff) % 7); + if(allowWdays != null) { + if ($.inArray(wday, allowWdays) == -1) { + $td.addClass('day_in_unallowed'); + continue; // Skip + } + } else if (wday === 0) {/* Sunday */ + $td.addClass('wday_sun'); + } else if (wday == 6) {/* Saturday */ + $td.addClass('wday_sat'); + } + + /* Set a special mark class */ + if (realDay == date.getDate()) { /* selected day */ + $td.addClass('active'); + } + + if (isCurrentMonth && realDay == todayDate.getDate()) { /* today */ + $td.addClass('today'); + } + + var realDayObjMN = new Date(realDayObj.getTime()); + realDayObjMN.setHours(23); + realDayObjMN.setMinutes(59); + realDayObjMN.setSeconds(59); + + if ( + // compare to 23:59:59 on the current day (if MIN is 1pm, then we still need to show this day + ((minDate != null) && (minDate > realDayObjMN.getTime())) || ((maxDate != null) && (maxDate < realDayObj.getTime())) // compare to 00:00:00 + ) { // Out of range day + $td.addClass('out_of_range'); + } else if (isFutureOnly && isPast) { // Past day + $td.addClass('day_in_past'); + } else { + /* Set event-handler to day cell */ + $td.click(function() { + if ($(this).hasClass('hover')) { + $(this).removeClass('hover'); + } + $(this).addClass('active'); + + var $picker = getParentPickerObject($(this)); + var targetDate = new Date($(this).data("dateStr")); + var selectedDate = getPickedDate($picker); + draw($picker, { + "isAnim": false, + "isOutputToInputObject": true + }, targetDate.getFullYear(), targetDate.getMonth(), targetDate.getDate(), selectedDate.getHours(), selectedDate.getMinutes()); + if ($picker.data("dateOnly") === true && $picker.data("isInline") === false && $picker.data("closeOnSelected")){ + // Close a picker + ActivePickerId = -1; + $picker.hide(); + } + }); + + $td.hover(function() { + if (! $(this).hasClass('active')) { + $(this).addClass('hover'); + } + }, function() { + if ($(this).hasClass('hover')) { + $(this).removeClass('hover'); + } + }); + } + + /* ---- */ + } + + if ($picker.data("dateOnly") === true) { + /* dateOnly mode */ + $timelist.css("display", "none"); + } else { + /* Timelist ----- */ + $timelist.children().remove(); + + /* Set height to Timelist (Calendar innerHeight - Calendar padding) */ + if ($calendar.innerHeight() > 0) { + $timelist.css("height", $calendar.innerHeight() - 10 + 'px'); + } + + realDayObj = new Date(date.getTime()); + $timelist.css("height", $calendar.innerHeight() - 10 + 'px'); + + /* Output time cells */ + var hour_ = minTime[0]; + var min_ = minTime[1]; + + while( hour_*100+min_ < maxTime[0]*100+maxTime[1] ){ + + var $o = $('
    '); + var is_past_time = hour_ < todayDate.getHours() || (hour_ == todayDate.getHours() && min_ < todayDate.getMinutes()); + var is_past = isCurrentDay && is_past_time; + + $o.addClass('timelist_item'); + $o.text(zpadding(hour_) + ":" + zpadding(min_)); + + $o.data("hour", hour_); + $o.data("min", min_); + + $timelist.append($o); + + realDayObj.setHours(hour_); + realDayObj.setMinutes(min_); + + if ( + ((minDate != null) && (minDate > realDayObj.getTime())) || ((maxDate != null) && (maxDate < realDayObj.getTime())) + ) { // Out of range cell + $o.addClass('out_of_range'); + } else if (isFutureOnly && is_past) { // Past cell + $o.addClass('time_in_past'); + } else { // Normal cell + /* Set event handler to time cell */ + $o.click(function() { + if ($(this).hasClass('hover')) { + $(this).removeClass('hover'); + } + $(this).addClass('active'); + + var $picker = getParentPickerObject($(this)); + var date = getPickedDate($picker); + var hour = $(this).data("hour"); + var min = $(this).data("min"); + draw($picker, { + "isAnim": false, + "isOutputToInputObject": true + }, date.getFullYear(), date.getMonth(), date.getDate(), hour, min); + + if ($picker.data("isInline") === false && $picker.data("closeOnSelected")){ + // Close a picker + ActivePickerId = -1; + $picker.hide(); + } + }); + + $o.hover(function() { + if (! $(this).hasClass('active')) { + $(this).addClass('hover'); + } + }, function() { + if ($(this).hasClass('hover')) { + $(this).removeClass('hover'); + } + }); + } + + if (hour_ == date.getHours() && min_ == date.getMinutes()) { /* selected time */ + $o.addClass('active'); + timelist_activeTimeCell_offsetTop = $o.offset().top; + } + + min_ += minuteInterval; + if (min_ >= 60){ + min_ = min_ - 60; + hour_++; + } + + } + + /* Scroll the timelist */ + if(isScroll === true){ + /* Scroll to new active time-cell position */ + $timelist.scrollTop(timelist_activeTimeCell_offsetTop - $timelist.offset().top); + }else{ + /* Scroll to position that before redraw. */ + $timelist.scrollTop(drawBefore_timeList_scrollTop); + } + } + + /* Fade-in animation */ + if (isAnim === true) { + if(changePoint == "calendar"){ + $calendar.fadeTo("fast", 1.0); + }else if(changePoint == "timelist"){ + $timelist.fadeTo("fast", 1.0); + } + } + + /* Output to InputForm */ + if (isOutputToInputObject === true) { + outputToInputObject($picker); + } + }; + + /* Check for object type */ + var isObj = function(type, obj) { + /* http://qiita.com/Layzie/items/465e715dae14e2f601de */ + var clas = Object.prototype.toString.call(obj).slice(8, -1); + return obj !== undefined && obj !== null && clas === type; + }; + + var init = function($obj, opt) { + /* Container */ + var $picker = $('
    '); + + $picker.destroy = function() { + window.alert('destroy!'); + }; + + $picker.addClass('datepicker'); + $obj.append($picker); + + /* Set current date */ + if(!opt.current) { + opt.current = new Date(); + } else { + var format = getDateFormat(opt.dateFormat, opt.locale, opt.dateOnly); + var date = parseDate(opt.current, format); + if (date) { + opt.current = date; + } else { + opt.current = new Date(); + } + } + + /* Set options data to container object */ + if (opt.inputObjectId != null) { + $picker.data("inputObjectId", opt.inputObjectId); + } + $picker.data("dateOnly", opt.dateOnly); + $picker.data("pickerId", PickerObjects.length); + $picker.data("dateFormat", opt.dateFormat); + $picker.data("locale", opt.locale); + $picker.data("firstDayOfWeek", opt.firstDayOfWeek); + $picker.data("animation", opt.animation); + $picker.data("closeOnSelected", opt.closeOnSelected); + $picker.data("timelistScroll", opt.timelistScroll); + $picker.data("calendarMouseScroll", opt.calendarMouseScroll); + $picker.data("todayButton", opt.todayButton); + $picker.data('futureOnly', opt.futureOnly); + $picker.data('onShow', opt.onShow); + $picker.data('onHide', opt.onHide); + $picker.data('onInit', opt.onInit); + $picker.data('allowWdays', opt.allowWdays); + + var minDate = Date.parse(opt.minDate); + if (isNaN(minDate)) { // invalid date? + $picker.data('minDate', null); // set to null + } else { + $picker.data('minDate', minDate); + } + + var maxDate = Date.parse(opt.maxDate); + if (isNaN(maxDate)) { // invalid date? + $picker.data('maxDate', null); // set to null + } else { + $picker.data('maxDate', maxDate); + } + $picker.data("state", 0); + + if( 5 <= opt.minuteInterval && opt.minuteInterval <= 30 ){ + $picker.data("minuteInterval", opt.minuteInterval); + } else { + $picker.data("minuteInterval", 30); + } + opt.minTime = opt.minTime.split(':'); + opt.maxTime = opt.maxTime.split(':'); + + if(! ((opt.minTime[0] >= 0 ) && (opt.minTime[0] <24 ))){ + opt.minTime[0]="00"; + } + if(! ((opt.maxTime[0] >= 0 ) && (opt.maxTime[0] <24 ))){ + opt.maxTime[0]="23"; + } + if(! ((opt.minTime[1] >= 0 ) && (opt.minTime[1] <60 ))){ + opt.minTime[1]="00"; + } + if(! ((opt.maxTime[1] >= 0 ) && (opt.maxTime[1] <24 ))){ + opt.maxTime[1]="59"; + } + opt.minTime[0]=parseInt(opt.minTime[0]); + opt.minTime[1]=parseInt(opt.minTime[1]); + opt.maxTime[0]=parseInt(opt.maxTime[0]); + opt.maxTime[1]=parseInt(opt.maxTime[1]); + $picker.data('minTime', opt.minTime); + $picker.data('maxTime', opt.maxTime); + + /* Header */ + var $header = $('
    '); + $header.addClass('datepicker_header'); + $picker.append($header); + /* InnerContainer*/ + var $inner = $('
    '); + $inner.addClass('datepicker_inner_container'); + $picker.append($inner); + /* Calendar */ + var $calendar = $('
    '); + $calendar.addClass('datepicker_calendar'); + var $table = $(''); + $table.addClass('datepicker_table'); + $calendar.append($table); + $inner.append($calendar); + /* Timelist */ + var $timelist = $('
    '); + $timelist.addClass('datepicker_timelist'); + $inner.append($timelist); + + /* Set event handler to picker */ + $picker.hover( + function(){ + ActivePickerId = $(this).data("pickerId"); + }, + function(){ + ActivePickerId = -1; + } + ); + + /* Set event-handler to calendar */ + if (opt.calendarMouseScroll) { + if (window.sidebar) { // Mozilla Firefox + $calendar.bind('DOMMouseScroll', function(e){ // Change a month with mouse wheel scroll for Fx + var $picker = getParentPickerObject($(this)); + + // up,left [delta < 0] down,right [delta > 0] + var delta = e.originalEvent.detail; + /* + // this code need to be commented - it's seems to be unnecessary + // normalization (/3) is not needed as we move one month back or forth + if(e.originalEvent.axis !== undefined && e.originalEvent.axis == e.originalEvent.HORIZONTAL_AXIS){ + e.deltaX = delta; + e.deltaY = 0; + } else { + e.deltaX = 0; + e.deltaY = delta; + } + e.deltaX /= 3; + e.deltaY /= 3; + */ + if(delta > 0) { + nextMonth($picker); + } else { + beforeMonth($picker); + } + return false; + }); + } else { // Other browsers + $calendar.bind('mousewheel', function(e){ // Change a month with mouse wheel scroll + var $picker = getParentPickerObject($(this)); + // up [delta > 0] down [delta < 0] + if(e.originalEvent.wheelDelta /120 > 0) { + beforeMonth($picker); + } else { + nextMonth($picker); + } + return false; + }); + } + } + + PickerObjects.push($picker); + + draw_date($picker, { + "isAnim": true, + "isOutputToInputObject": opt.autodateOnStart + }, opt.current); + }; + + var getDefaults = function() { + return { + "current": null, + "dateFormat": "default", + "locale": "en", + "animation": true, + "minuteInterval": 30, + "firstDayOfWeek": 0, + "closeOnSelected": false, + "timelistScroll": true, + "calendarMouseScroll": true, + "todayButton": true, + "dateOnly": false, + "futureOnly": false, + "minDate" : null, + "maxDate" : null, + "autodateOnStart": true, + "minTime":"00:00", + "maxTime":"23:59", + "onShow": null, + "onHide": null, + "allowWdays": null + }; + }; + + /** + * Initialize dtpicker + */ + $.fn.dtpicker = function(config) { + var date = new Date(); + var defaults = getDefaults(); + + defaults.inputObjectId = undefined; + var options = $.extend(defaults, config); + + return this.each(function(i) { + init($(this), options); + }); + }; + + /** + * Initialize dtpicker, append to Text input field + * */ + $.fn.appendDtpicker = function(config) { + var date = new Date(); + var defaults = getDefaults(); + + defaults.inline = false; + var options = $.extend(defaults, config); + + return this.each(function(i) { + /* Checking exist a picker */ + var input = this; + if(0 < $(PickerObjects[$(input).data('pickerId')]).length) { + console.log("dtpicker - Already exist appended picker"); + return; + } + + /* Add input-field with inputsObjects array */ + var inputObjectId = InputObjects.length; + InputObjects.push(input); + + options.inputObjectId = inputObjectId; + + /* Current date */ + var date, strDate, strTime; + if($(input).val() != null && $(input).val() !== ""){ + options.current = $(input).val(); + } + + /* Make parent-div for picker */ + var $d = $('
    '); + if(options.inline){ // Inline mode + $d.insertAfter(input); + } else { // Float mode + $d.css("position","absolute"); + $('body').append($d); + } + + /* Initialize picker */ + + var pickerId = PickerObjects.length; + + var $picker_parent = $($d).dtpicker(options); // call dtpicker() method + + var $picker = $picker_parent.children('.datepicker'); + + /* Link input-field with picker*/ + $(input).data('pickerId', pickerId); + + /* Set event handler to input-field */ + + $(input).keyup(function() { + var $input = $(this); + var $picker = $(PickerObjects[$input.data('pickerId')]); + if ($input.val() != null && ( + $input.data('beforeVal') == null || + ( $input.data('beforeVal') != null && $input.data('beforeVal') != $input.val()) ) + ) { /* beforeValue == null || beforeValue != nowValue */ + var format = getDateFormat($picker.data('dateFormat'), $picker.data('locale'), $picker.data('dateOnly')); + var date = parseDate($input.val(), format); + //console.log("dtpicker - inputKeyup - format: " + format + ", date: " + $input.val() + " -> " + date); + if (date) { + draw_date($picker, { + "isAnim":true, + "isOutputToInputObject":false + }, date); + } + } + $input.data('beforeVal', $input.val()); + }); + + $(input).change(function(){ + $(this).trigger('keyup'); + }); + + var handler = new PickerHandler($picker, $(input)); + + if(options.inline === true){ + /* inline mode */ + $picker.data('isInline',true); + } else { + /* float mode */ + $picker.data('isInline',false); + $picker_parent.css({ + "zIndex": 100 + }); + $picker.css("width","auto"); + + /* Hide this picker */ + $picker.hide(); + + /* Set onClick event handler for input-field */ + $(input).on('click, focus',function(){ + var $input = $(this); + var $picker = $(PickerObjects[$input.data('pickerId')]); + + // Generate the handler of a picker + var handler = new PickerHandler($picker, $input); + // Get the display state of a picker + var is_showed = handler.isShow(); + if (!is_showed) { + // Show a picker + handler.show(); + + // Call a event-hanlder + var func = $picker.data('onShow'); + if (func != null) { + console.log("dtpicker- Call the onShow handler"); + func(handler); + } + } + }); + + // Set an event handler for resizing of a window + (function(handler){ + $(window).resize(function(){ + handler._relocate(); + }); + $(window).scroll(function(){ + handler._relocate(); + }); + })(handler); + } + + // Set an event handler for removing of an input-field + $(input).bind('destroyed', function() { + var $input = $(this); + var $picker = $(PickerObjects[$input.data('pickerId')]); + // Generate the handler of a picker + var handler = new PickerHandler($picker, $input); + // Destroy a picker + handler.destroy(); + }); + + // Call a event-handler + var func = $picker.data('onInit'); + if (func != null) { + console.log("dtpicker- Call the onInit handler"); + func(handler); + } + }); + }; + + /** + * Handle a appended dtpicker + * */ + var methods = { + show : function( ) { + var $input = $(this); + var $picker = $(PickerObjects[$input.data('pickerId')]); + if ($picker != null) { + var handler = new PickerHandler($picker, $input); + // Show a picker + handler.show(); + } + }, + hide : function( ) { + var $input = $(this); + var $picker = $(PickerObjects[$input.data('pickerId')]); + if ($picker != null) { + var handler = new PickerHandler($picker, $input); + // Hide a picker + handler.hide(); + } + }, + setDate : function( date ) { + var $input = $(this); + var $picker = $(PickerObjects[$input.data('pickerId')]); + if ($picker != null) { + var handler = new PickerHandler($picker, $input); + // Set a date + handler.setDate(date); + } + }, + getDate : function( ) { + var $input = $(this); + var $picker = $(PickerObjects[$input.data('pickerId')]); + if ($picker != null) { + var handler = new PickerHandler($picker, $input); + // Get a date + return handler.getDate(); + } + }, + destroy : function( ) { + var $input = $(this); + var $picker = $(PickerObjects[$input.data('pickerId')]); + if ($picker != null) { + var handler = new PickerHandler($picker, $input); + // Destroy a picker + handler.destroy(); + } + } + }; + + $.fn.handleDtpicker = function( method ) { + if ( methods[method] ) { + return methods[ method ].apply( this, Array.prototype.slice.call( arguments, 1 )); + } else if ( typeof method === 'object' || ! method ) { + return methods.init.apply( this, arguments ); + } else { + $.error( 'Method ' + method + ' does not exist on jQuery.handleDtpicker' ); + } + }; + + if (!window.console) { // Not available a console on this environment. + window.console = {}; + window.console.log = function(){}; + } + + /* Define a special event for catch when destroy of an input-field. */ + $.event.special.destroyed = { + remove: function(o) { + if (o.handler) { + o.handler.apply(this, arguments); + } + } + }; + + /* Set event handler to Body element, for hide a floated-picker */ + $(function(){ + $('body').click(function(){ + for(var i=0;i